40 lines
1.0 KiB
Ruby
40 lines
1.0 KiB
Ruby
##
|
|
# This module requires Metasploit: https://metasploit.com/download
|
|
# Current source: https://github.com/rapid7/metasploit-framework
|
|
##
|
|
|
|
class MetasploitModule < Msf::Auxiliary
|
|
include Msf::Exploit::Remote::Udp
|
|
include Msf::Auxiliary::Report
|
|
include Msf::Auxiliary::UDPScanner
|
|
include Msf::Exploit::Remote::SIP
|
|
|
|
def initialize
|
|
super(
|
|
'Name' => 'SIP Endpoint Scanner (UDP)',
|
|
'Description' => 'Scan for SIP devices using OPTIONS requests',
|
|
'Author' => 'hdm',
|
|
'License' => MSF_LICENSE
|
|
)
|
|
|
|
register_options(
|
|
[
|
|
OptString.new('TO', [false, 'The destination username to probe at each host', 'nobody']),
|
|
Opt::RPORT(5060)
|
|
])
|
|
end
|
|
|
|
def scanner_prescan(batch)
|
|
print_status("Sending SIP UDP OPTIONS requests to #{batch[0]}->#{batch[-1]} (#{batch.length} hosts)")
|
|
@res = {}
|
|
end
|
|
|
|
def scan_host(ip)
|
|
scanner_send(create_probe(ip, 'udp'), ip, datastore['RPORT'])
|
|
end
|
|
|
|
def scanner_process(data, shost, _)
|
|
report_response(data, shost, 'udp')
|
|
end
|
|
end
|