metasploit-framework/modules/auxiliary/scanner/http/file_same_name_dir.rb

122 lines
2.4 KiB
Ruby

##
# $Id: file_same_name_dir.rb 13183 2011-07-15 15:33:35Z egypt $
##
##
# This file is part of the Metasploit Framework and may be subject to
# redistribution and commercial restrictions. Please see the Metasploit
# web site for more information on licensing and terms of use.
# http://metasploit.com/
##
require 'rex/proto/http'
require 'msf/core'
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 File Same Name Directory Scanner',
'Description' => %q{
This module identifies the existence of files
in a given directory path named as the same name of the
directory.
Only works if PATH is differenet than '/'.
},
'Author' => [ 'et [at] metasploit.com' ],
'License' => BSD_LICENSE,
'Version' => '$Revision: 13183 $'))
register_options(
[
OptString.new('PATH', [ true, "The directory path to identify files", '/']),
OptString.new('EXT', [ true, "File extension to use", '.aspx']),
], self.class)
end
def run_host(ip)
extensions = [
'.null',
'.backup',
'.bak',
'.c',
'.cfg',
'.class',
'.copy',
'.conf',
'.exe',
'.html',
'.htm',
'.log',
'.old',
'.orig',
'.php',
'.tar',
'.tar.gz',
'.tgz',
'.tmp',
'.temp',
'.txt',
'.zip',
'~',
''
]
tpath = datastore['PATH']
if tpath.eql? "/"||""
print_error("Blank or default PATH set.");
return
end
if tpath[-1,1] != '/'
tpath += '/'
end
testf = tpath.split('/').last
extensions << datastore['EXT']
extensions.each { |ext|
begin
testfext = testf.chomp + ext
res = send_request_cgi({
'uri' => tpath+testfext,
'method' => 'GET',
'ctype' => 'text/plain'
}, 20)
if (res and res.code >= 200 and res.code < 300)
print_status("Found #{wmap_base_url}#{tpath}#{testfext}")
report_note(
:host => ip,
:proto => 'tcp',
:sname => (ssl ? "https" : "http"),
:port => rport,
:type => 'FILE',
:data => "#{tpath}#{testfext} Code: #{res.code}"
)
else
vprint_status("NOT Found #{wmap_base_url}#{tpath}#{testfext}")
end
rescue ::Rex::ConnectionRefused, ::Rex::HostUnreachable, ::Rex::ConnectionTimeout
rescue ::Timeout::Error, ::Errno::EPIPE
end
}
end
end