Lucene search
K

MMS Client

🗓️ 31 Aug 2024 00:00:00Reported by Jay Turla, metasploit.comType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 199 Views

MMS Client module for sending malicious MMS messages to multiple phones

Code
`##  
# This module requires Metasploit: https://metasploit.com/download  
# Current source: https://github.com/rapid7/metasploit-framework  
##  
  
class MetasploitModule < Msf::Auxiliary  
include Msf::Auxiliary::Mms  
  
def initialize(info = {})  
super(update_info(info,  
'Name' => 'MMS Client',  
'Description' => %q{  
This module sends an MMS message to multiple phones of the same carrier.  
You can use it to send a malicious attachment to phones.  
},  
'Author' => [ 'sinn3r' ],  
'License' => MSF_LICENSE  
))  
end  
  
def run  
phone_numbers = datastore['CELLNUMBERS'].split  
print_status("Sending mms message to #{phone_numbers.length} number(s)...")  
begin  
res = send_mms(phone_numbers, datastore['MMSSUBJECT'], datastore['TEXTMESSAGE'], datastore['MMSFILE'], datastore['MMSFILECTYPE'])  
print_status("Done.")  
rescue Rex::Proto::Mms::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

31 Aug 2024 00:00Current
7.4High risk
Vulners AI Score7.4
199