rapid7/metasploit-framework

View on GitHub
modules/auxiliary/client/sms/send_text.rb

Summary

Maintainability
A
0 mins
Test Coverage
##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##

class MetasploitModule < Msf::Auxiliary
  include Msf::Auxiliary::Sms

  def initialize(info = {})
    super(update_info(info,
      'Name'           => 'SMS Client',
      'Description'    => %q{
        This module sends a text message to multiple phones of the same carrier.
        You can use it to send a malicious link to phones.

        Please note that you do not use this module to send a media file (attachment).
        In order to send a media file, please use auxiliary/client/mms/send_mms instead.
      },
      'Author'         => [ 'sinn3r' ],
      'License'        => MSF_LICENSE
    ))
  end

  def run
    phone_numbers = datastore['CELLNUMBERS'].split
    print_status("Sending text (#{datastore['SMSMESSAGE'].length} bytes) to #{phone_numbers.length} number(s)...")
    begin
      res = send_text(phone_numbers, datastore['SMSSUBJECT'], datastore['SMSMESSAGE'])
      print_status("Done.")
    rescue Rex::Proto::Sms::Exception => e
      print_error(e.message)
    end
  end
end