2010-05-03 17:13:09 +00:00
|
|
|
##
|
|
|
|
# $Id$
|
|
|
|
##
|
|
|
|
|
2009-12-30 22:24:22 +00:00
|
|
|
##
|
2010-04-06 16:36:28 +00:00
|
|
|
# This file is part of the Metasploit Framework and may be subject to
|
2009-12-30 22:24:22 +00:00
|
|
|
# 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'
|
|
|
|
|
|
|
|
class Metasploit3 < Msf::Auxiliary
|
|
|
|
|
|
|
|
include Msf::Exploit::Remote::HttpClient
|
|
|
|
include Msf::Auxiliary::WMAPScanServer
|
|
|
|
include Msf::Auxiliary::Scanner
|
|
|
|
include Msf::Auxiliary::Report
|
|
|
|
|
|
|
|
def initialize(info = {})
|
2010-04-06 16:36:28 +00:00
|
|
|
super(update_info(info,
|
2009-12-30 22:24:22 +00:00
|
|
|
'Name' => 'HTTP Vuln scanner',
|
|
|
|
'Description' => %q{
|
2010-04-06 16:36:28 +00:00
|
|
|
This module identifies common vulnerable files or cgis.
|
2009-12-30 22:24:22 +00:00
|
|
|
},
|
|
|
|
'Author' => [ 'et' ],
|
|
|
|
'License' => BSD_LICENSE,
|
2010-05-03 17:13:09 +00:00
|
|
|
'Version' => '$Revision$'))
|
2010-04-06 16:36:28 +00:00
|
|
|
|
2009-12-30 22:24:22 +00:00
|
|
|
register_options(
|
|
|
|
[
|
2010-04-06 16:36:28 +00:00
|
|
|
OptString.new('PATH', [ true, "Original test path", '/']),
|
|
|
|
OptPath.new('VULNCSV',[ true, "Path of vulnerabilities csv file to use" ])
|
|
|
|
], self.class)
|
|
|
|
|
2009-12-30 22:24:22 +00:00
|
|
|
register_advanced_options(
|
|
|
|
[
|
|
|
|
OptInt.new('ErrorCode', [ true, "The expected http code for non existant files", 404]),
|
2010-04-06 16:36:28 +00:00
|
|
|
OptPath.new('HTTP404Sigs', [ false, "Path of 404 signatures to use",
|
2009-12-30 22:24:22 +00:00
|
|
|
File.join(Msf::Config.install_root, "data", "wmap", "wmap_404s.txt")
|
|
|
|
]
|
|
|
|
),
|
|
|
|
OptBool.new('NoDetailMessages', [ false, "Do not display detailed test messages", true ]),
|
|
|
|
OptBool.new('ForceCode', [ false, "Force detection using HTTP code", false ]),
|
|
|
|
OptInt.new('TestThreads', [ true, "Number of test threads", 25])
|
2010-04-06 16:36:28 +00:00
|
|
|
], self.class)
|
|
|
|
|
2009-12-30 22:24:22 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def run_host(ip)
|
|
|
|
conn = false
|
|
|
|
usecode = datastore['ForceCode']
|
2010-04-06 16:36:28 +00:00
|
|
|
|
|
|
|
tpath = datastore['PATH']
|
2009-12-30 22:24:22 +00:00
|
|
|
if tpath[-1,1] != '/'
|
|
|
|
tpath += '/'
|
|
|
|
end
|
2010-04-06 16:36:28 +00:00
|
|
|
|
2009-12-30 22:24:22 +00:00
|
|
|
nt = datastore['TestThreads'].to_i
|
|
|
|
nt = 1 if nt == 0
|
2010-04-06 16:36:28 +00:00
|
|
|
|
2009-12-30 22:24:22 +00:00
|
|
|
dm = datastore['NoDetailMessages']
|
2010-04-06 16:36:28 +00:00
|
|
|
|
2009-12-30 22:24:22 +00:00
|
|
|
queue = []
|
2010-04-06 16:36:28 +00:00
|
|
|
|
2010-07-01 23:33:07 +00:00
|
|
|
File.open(datastore['VULNCSV'], 'rb').each do |testf|
|
2009-12-30 22:24:22 +00:00
|
|
|
queue << testf.strip
|
2010-04-06 16:36:28 +00:00
|
|
|
end
|
|
|
|
|
2009-12-30 22:24:22 +00:00
|
|
|
#
|
|
|
|
# Detect error code
|
2010-04-06 16:36:28 +00:00
|
|
|
#
|
|
|
|
ecode = datastore['ErrorCode'].to_i
|
2009-12-30 22:24:22 +00:00
|
|
|
begin
|
|
|
|
randfile = Rex::Text.rand_text_alpha(5).chomp
|
2010-04-06 16:36:28 +00:00
|
|
|
|
2009-12-30 22:24:22 +00:00
|
|
|
res = send_request_cgi({
|
|
|
|
'uri' => tpath+randfile,
|
|
|
|
'method' => 'GET',
|
|
|
|
'ctype' => 'text/html'
|
|
|
|
}, 20)
|
|
|
|
|
|
|
|
return if not res
|
2010-04-06 16:36:28 +00:00
|
|
|
|
|
|
|
tcode = res.code.to_i
|
2009-12-30 22:24:22 +00:00
|
|
|
|
|
|
|
# Look for a string we can signature on as well
|
|
|
|
if(tcode >= 200 and tcode <= 299)
|
2010-07-01 23:33:07 +00:00
|
|
|
File.open(datastore['HTTP404Sigs'], 'rb').each do |str|
|
2009-12-30 22:24:22 +00:00
|
|
|
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")
|
|
|
|
emesg = res.body[0,256]
|
|
|
|
else
|
|
|
|
print_status("Using custom 404 string of '#{emesg}'")
|
|
|
|
end
|
|
|
|
else
|
|
|
|
ecode = tcode
|
|
|
|
print_status("Using code '#{ecode}' as not found.")
|
|
|
|
end
|
2010-04-06 16:36:28 +00:00
|
|
|
|
2009-12-30 22:24:22 +00:00
|
|
|
rescue ::Rex::ConnectionRefused, ::Rex::HostUnreachable, ::Rex::ConnectionTimeout
|
2010-04-06 16:36:28 +00:00
|
|
|
conn = false
|
|
|
|
rescue ::Timeout::Error, ::Errno::EPIPE
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2009-12-30 22:24:22 +00:00
|
|
|
while(not queue.empty?)
|
|
|
|
t = []
|
2010-04-06 16:36:28 +00:00
|
|
|
1.upto(nt) do
|
2009-12-30 22:24:22 +00:00
|
|
|
t << Thread.new(queue.shift) do |testf|
|
|
|
|
Thread.current.kill if not testf
|
2010-04-06 16:36:28 +00:00
|
|
|
|
2009-12-30 22:24:22 +00:00
|
|
|
testarr = []
|
|
|
|
testfvuln = ""
|
|
|
|
testmesg = ""
|
|
|
|
testnote = ""
|
2010-04-06 16:36:28 +00:00
|
|
|
foundstr = false
|
|
|
|
|
2009-12-30 22:24:22 +00:00
|
|
|
testarr = testf.split(',')
|
2010-04-06 16:36:28 +00:00
|
|
|
|
2009-12-30 22:24:22 +00:00
|
|
|
testfvuln = testarr[0].to_s
|
|
|
|
testmesg = testarr[1].to_s
|
|
|
|
testnote = testarr[2].to_s
|
2010-04-06 16:36:28 +00:00
|
|
|
|
2009-12-30 22:24:22 +00:00
|
|
|
res = send_request_cgi({
|
|
|
|
'uri' => tpath+testfvuln,
|
|
|
|
'method' => 'GET',
|
|
|
|
'ctype' => 'text/plain'
|
|
|
|
}, 20)
|
|
|
|
|
2010-04-06 16:36:28 +00:00
|
|
|
|
|
|
|
if testmesg.empty? or usecode
|
2009-12-30 22:24:22 +00:00
|
|
|
if(not res or ((res.code.to_i == ecode) or (emesg and res.body.index(emesg))))
|
|
|
|
if dm == false
|
2010-04-06 16:36:28 +00:00
|
|
|
print_status("NOT Found #{wmap_base_url}#{tpath}#{testfvuln} #{res.code.to_i}")
|
2009-12-30 22:24:22 +00:00
|
|
|
#blah
|
|
|
|
end
|
|
|
|
else
|
2010-04-06 16:36:28 +00:00
|
|
|
if res.code.to_i == 400 and ecode != 400
|
|
|
|
print_error("Server returned an error code. #{wmap_base_url}#{tpath}#{testfvuln} #{res.code.to_i}")
|
2009-12-30 22:24:22 +00:00
|
|
|
else
|
|
|
|
print_status("FOUND #{wmap_base_url}#{tpath}#{testfvuln} [#{res.code.to_i}] #{testnote}")
|
2010-04-06 16:36:28 +00:00
|
|
|
|
2009-12-30 22:24:22 +00:00
|
|
|
report_note(
|
|
|
|
:host => ip,
|
|
|
|
:proto => 'HTTP',
|
|
|
|
:port => rport,
|
|
|
|
:type => 'FILE',
|
|
|
|
:data => "#{tpath}#{testfvuln} Code: #{res.code}"
|
|
|
|
)
|
2010-04-06 16:36:28 +00:00
|
|
|
end
|
2009-12-30 22:24:22 +00:00
|
|
|
end
|
2010-04-06 16:36:28 +00:00
|
|
|
else
|
2009-12-30 22:24:22 +00:00
|
|
|
if res and res.body.include?(testmesg)
|
|
|
|
print_status("FOUND #{wmap_base_url}#{tpath}#{testfvuln} [#{res.code.to_i}] #{testnote}")
|
2010-04-06 16:36:28 +00:00
|
|
|
|
2009-12-30 22:24:22 +00:00
|
|
|
report_note(
|
|
|
|
:host => ip,
|
|
|
|
:proto => 'HTTP',
|
|
|
|
:port => rport,
|
|
|
|
:type => 'FILE',
|
|
|
|
:data => "#{tpath}#{testfvuln} Code: #{res.code}"
|
|
|
|
)
|
|
|
|
else
|
|
|
|
if dm == false
|
2010-04-06 16:36:28 +00:00
|
|
|
print_status("NOT Found #{wmap_base_url}#{tpath}#{testfvuln} #{res.code.to_i}")
|
2009-12-30 22:24:22 +00:00
|
|
|
#blah
|
|
|
|
end
|
|
|
|
end
|
2010-04-06 16:36:28 +00:00
|
|
|
end
|
2009-12-30 22:24:22 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
t.map{|x| x.join }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2010-04-06 16:36:28 +00:00
|
|
|
|