Lucene search
+L

SMS Client

🗓️ 02 Mar 2017 22:47:55Reported by sinn3r <[email protected]>Type 
metasploit
 metasploit
🔗 www.rapid7.com👁 139 Views

Send text to multiple phones of same carrier to spread malicious links. Do not send media files

Code
##
# 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

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

24 Jul 2017 13:26Current
7.2High risk
Vulners AI Score7.2
139