177 lines
4.2 KiB
Ruby
177 lines
4.2 KiB
Ruby
|
##
|
||
|
# $Id$
|
||
|
##
|
||
|
|
||
|
##
|
||
|
# This file is part of the Metasploit Framework and may be subject to
|
||
|
# redistribution and commercial restrictions. Please see the Metasploit
|
||
|
# Framework web site for more information on licensing and terms of use.
|
||
|
# http://metasploit.com/framework/
|
||
|
##
|
||
|
|
||
|
require 'rex/proto/http'
|
||
|
require 'msf/core'
|
||
|
require 'thread'
|
||
|
|
||
|
|
||
|
class Metasploit3 < Msf::Auxiliary
|
||
|
|
||
|
include Msf::Exploit::Remote::HttpClient
|
||
|
include Msf::Auxiliary::WMAPScanDir
|
||
|
include Msf::Auxiliary::Scanner
|
||
|
include Msf::Auxiliary::Report
|
||
|
|
||
|
def initialize(info = {})
|
||
|
super(update_info(info,
|
||
|
'Name' => 'HTTP Directory Scanner',
|
||
|
'Description' => %q{
|
||
|
This module identifies the existence of interesting directories
|
||
|
in a given directory path.
|
||
|
},
|
||
|
'Author' => [ 'et [at] metasploit.com' ],
|
||
|
'License' => BSD_LICENSE,
|
||
|
'Version' => '$Revision$'))
|
||
|
|
||
|
register_options(
|
||
|
[
|
||
|
OptString.new('PATH', [ true, "The path to identify files", '/']),
|
||
|
OptPath.new('DICTIONARY', [ false, "Path of word dictionary to use",
|
||
|
File.join(Msf::Config.install_root, "data", "wmap", "wmap_dirs.txt")
|
||
|
]
|
||
|
)
|
||
|
|
||
|
], self.class)
|
||
|
|
||
|
register_advanced_options(
|
||
|
[
|
||
|
OptInt.new('ErrorCode', [ true, "Error code for non existent directory", 404]),
|
||
|
OptPath.new('HTTP404Sigs', [ false, "Path of 404 signatures to use",
|
||
|
File.join(Msf::Config.install_root, "data", "wmap", "wmap_404s.txt")
|
||
|
]
|
||
|
),
|
||
|
OptBool.new('NoDetailMessages', [ false, "Do not display detailed test messages", true ]),
|
||
|
OptInt.new('TestThreads', [ true, "Number of test threads", 25])
|
||
|
|
||
|
], self.class)
|
||
|
|
||
|
end
|
||
|
|
||
|
def run_host(ip)
|
||
|
conn = true
|
||
|
ecode = nil
|
||
|
emesg = nil
|
||
|
|
||
|
tpath = datastore['PATH']
|
||
|
if tpath[-1,1] != '/'
|
||
|
tpath += '/'
|
||
|
end
|
||
|
|
||
|
ecode = datastore['ErrorCode'].to_i
|
||
|
vhost = datastore['VHOST'] || wmap_target_host
|
||
|
prot = datastore['SSL'] ? 'https' : 'http'
|
||
|
|
||
|
|
||
|
#
|
||
|
# Detect error code
|
||
|
#
|
||
|
begin
|
||
|
randdir = Rex::Text.rand_text_alpha(5).chomp + '/'
|
||
|
res = send_request_cgi({
|
||
|
'uri' => tpath+randdir,
|
||
|
'method' => 'GET',
|
||
|
'ctype' => 'text/html'
|
||
|
}, 20)
|
||
|
|
||
|
return if not res
|
||
|
|
||
|
tcode = res.code.to_i
|
||
|
|
||
|
|
||
|
# Look for a string we can signature on as well
|
||
|
if(tcode >= 200 and tcode <= 299)
|
||
|
|
||
|
File.open(datastore['HTTP404Sigs']).each do |str|
|
||
|
if(res.body.index(str))
|
||
|
emesg = str
|
||
|
break
|
||
|
end
|
||
|
end
|
||
|
|
||
|
if(not emesg)
|
||
|
print_status("Using first 256 bytes of the response as 404 string for #{wmap_target_host}")
|
||
|
emesg = res.body[0,256]
|
||
|
else
|
||
|
print_status("Using custom 404 string of '#{emesg}' for #{wmap_target_host}")
|
||
|
end
|
||
|
else
|
||
|
ecode = tcode
|
||
|
print_status("Using code '#{ecode}' as not found for #{wmap_target_host}")
|
||
|
end
|
||
|
|
||
|
rescue ::Rex::ConnectionRefused, ::Rex::HostUnreachable, ::Rex::ConnectionTimeout
|
||
|
conn = false
|
||
|
rescue ::Timeout::Error, ::Errno::EPIPE
|
||
|
end
|
||
|
|
||
|
return if not conn
|
||
|
|
||
|
nt = datastore['TestThreads'].to_i
|
||
|
nt = 1 if nt == 0
|
||
|
|
||
|
dm = datastore['NoDetailMessages']
|
||
|
|
||
|
queue = []
|
||
|
File.open(datastore['DICTIONARY']).each_line do |testd|
|
||
|
queue << testd.strip + '/'
|
||
|
end
|
||
|
|
||
|
while(not queue.empty?)
|
||
|
t = []
|
||
|
1.upto(nt) do
|
||
|
t << Thread.new(queue.shift) do |testf|
|
||
|
Thread.current.kill if not testf
|
||
|
|
||
|
testfdir = testf
|
||
|
res = send_request_cgi({
|
||
|
'uri' => tpath+testfdir,
|
||
|
'method' => 'GET',
|
||
|
'ctype' => 'text/html'
|
||
|
}, 20)
|
||
|
|
||
|
|
||
|
if(not res or ((res.code.to_i == ecode) or (emesg and res.body.index(emesg))))
|
||
|
if dm == false
|
||
|
print_status("NOT Found #{wmap_base_url}#{tpath}#{testfdir} #{res.code} (#{wmap_target_host})")
|
||
|
end
|
||
|
else
|
||
|
report_note(
|
||
|
:host => ip,
|
||
|
:proto => 'HTTP',
|
||
|
:port => rport,
|
||
|
:type => 'DIRECTORY',
|
||
|
:data => "#{tpath}#{testfdir} Code: #{res.code}"
|
||
|
)
|
||
|
|
||
|
print_status("Found #{wmap_base_url}#{tpath}#{testfdir} #{res.code} (#{wmap_target_host})")
|
||
|
|
||
|
if res.code.to_i == 401
|
||
|
print_status("#{wmap_base_url}#{tpath}#{testfdir} requires authentication: #{res.headers['WWW-Authenticate']}")
|
||
|
|
||
|
report_note(
|
||
|
:host => ip,
|
||
|
:proto => 'HTTP',
|
||
|
:port => rport,
|
||
|
:type => 'WWW_AUTHENTICATE',
|
||
|
:data => "#{tpath}#{testfdir} Auth: #{res.headers['WWW-Authenticate']}"
|
||
|
)
|
||
|
end
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|
||
|
t.map{|x| x.join }
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
|