2010-05-27 21:19:53 +00:00
|
|
|
##
|
2014-10-17 16:47:33 +00:00
|
|
|
# This module requires Metasploit: http://metasploit.com/download
|
2013-10-15 18:50:46 +00:00
|
|
|
# Current source: https://github.com/rapid7/metasploit-framework
|
2010-05-27 21:19:53 +00:00
|
|
|
##
|
|
|
|
|
|
|
|
require 'msf/core'
|
|
|
|
|
2016-03-08 13:02:44 +00:00
|
|
|
class MetasploitModule < Msf::Auxiliary
|
2013-08-30 21:28:54 +00:00
|
|
|
include Msf::Exploit::Remote::Tcp
|
|
|
|
include Msf::Auxiliary::Report
|
|
|
|
include Msf::Auxiliary::Scanner
|
2014-07-18 18:52:18 +00:00
|
|
|
include Msf::Exploit::Remote::SIP
|
2013-08-30 21:28:54 +00:00
|
|
|
|
|
|
|
def initialize
|
|
|
|
super(
|
|
|
|
'Name' => 'SIP Endpoint Scanner (TCP)',
|
|
|
|
'Description' => 'Scan for SIP devices using OPTIONS requests',
|
|
|
|
'Author' => 'hdm',
|
|
|
|
'License' => MSF_LICENSE
|
|
|
|
)
|
|
|
|
|
|
|
|
register_options(
|
|
|
|
[
|
2014-07-18 00:17:31 +00:00
|
|
|
OptString.new('TO', [false, 'The destination username to probe at each host', 'nobody']),
|
2013-08-30 21:28:54 +00:00
|
|
|
Opt::RPORT(5060)
|
|
|
|
], self.class)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Operate on a single system at a time
|
|
|
|
def run_host(ip)
|
2014-07-18 17:29:14 +00:00
|
|
|
begin
|
|
|
|
connect
|
2014-07-19 00:39:52 +00:00
|
|
|
sock.put(create_probe(ip, 'tcp'))
|
2014-07-18 17:29:14 +00:00
|
|
|
res = sock.get_once(-1, 5)
|
2014-08-26 18:40:49 +00:00
|
|
|
report_response(res, rhost, 'tcp') if res
|
2014-07-18 17:29:14 +00:00
|
|
|
rescue ::Interrupt
|
|
|
|
raise $ERROR_INFO
|
|
|
|
ensure
|
|
|
|
disconnect
|
|
|
|
end
|
2013-08-30 21:28:54 +00:00
|
|
|
end
|
2010-05-27 21:19:53 +00:00
|
|
|
end
|