71 lines
2.0 KiB
Ruby
71 lines
2.0 KiB
Ruby
##
|
|
# This module requires Metasploit: http://metasploit.com/download
|
|
# Current source: https://github.com/rapid7/metasploit-framework
|
|
##
|
|
|
|
require 'msf/core'
|
|
|
|
class Metasploit3 < Msf::Auxiliary
|
|
|
|
include Msf::Exploit::Remote::Tcp
|
|
include Msf::Auxiliary::Scanner
|
|
include Msf::Auxiliary::Report
|
|
|
|
def initialize(info={})
|
|
super(update_info(info,
|
|
'Name' => 'SerComm Network Device Backdoor Detection',
|
|
'Description' => %q{
|
|
This module can identify SerComm manufactured network devices which
|
|
contain a backdoor, allowing command injection or account disclosure.
|
|
},
|
|
'Author' =>
|
|
[
|
|
'Eloi Vanderbeken <eloi.vanderbeken[at]gmail.com>', # Initial discovery, poc
|
|
'Matt "hostess" Andreko <mandreko[at]accuvant.com>' # Msf module
|
|
],
|
|
'License' => MSF_LICENSE,
|
|
'References' =>
|
|
[
|
|
[ 'OSVDB', '101653' ],
|
|
[ 'URL', 'https://github.com/elvanderb/TCP-32764' ]
|
|
],
|
|
'DisclosureDate' => "Dec 31 2013" ))
|
|
|
|
register_options([
|
|
Opt::RPORT(32764)
|
|
])
|
|
end
|
|
|
|
def do_report(ip, endianess)
|
|
report_vuln({
|
|
:host => ip,
|
|
:port => rport,
|
|
:name => "SerComm Network Device Backdoor",
|
|
:refs => self.references,
|
|
:info => "SerComm Network Device Backdoor found on a #{endianess} device"
|
|
})
|
|
end
|
|
|
|
def run_host(ip)
|
|
begin
|
|
connect
|
|
sock.put(Rex::Text.rand_text(5))
|
|
res = sock.get_once
|
|
disconnect
|
|
|
|
if (res && res.start_with?("MMcS"))
|
|
print_good("#{ip}:#{rport} - Possible backdoor detected - Big Endian")
|
|
do_report(ip, "Big Endian")
|
|
elsif (res && res.start_with?("ScMM"))
|
|
print_good("#{ip}:#{rport} - Possible backdoor detected - Little Endian")
|
|
do_report(ip, "Little Endian")
|
|
else
|
|
vprint_status("#{ip}:#{rport} - Backdoor not detected.")
|
|
end
|
|
rescue Rex::ConnectionError => e
|
|
vprint_status("#{ip}:#{rport} - Connection failed: #{e.class}: #{e}")
|
|
end
|
|
end
|
|
|
|
end
|