76 lines
1.9 KiB
Ruby
76 lines
1.9 KiB
Ruby
##
|
|
# 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 'msf/core'
|
|
|
|
|
|
class Metasploit3 < Msf::Auxiliary
|
|
|
|
# Exploit mixins should be called first
|
|
include Msf::Exploit::Remote::HttpClient
|
|
include Msf::Auxiliary::WmapScanServer
|
|
# Scanner mixin should be near last
|
|
include Msf::Auxiliary::Scanner
|
|
include Msf::Auxiliary::Report
|
|
|
|
def initialize
|
|
super(
|
|
'Name' => 'HTTP WebDAV Website Content Scanner',
|
|
'Description' => 'Detect webservers disclosing its content though WebDAV',
|
|
'Author' => ['et'],
|
|
'License' => MSF_LICENSE
|
|
)
|
|
|
|
register_options(
|
|
[
|
|
OptString.new('PATH', [true, "Path to use", '/']),
|
|
], self.class)
|
|
end
|
|
|
|
def run_host(target_host)
|
|
|
|
begin
|
|
res = send_request_cgi({
|
|
'uri' => normalize_uri(datastore['PATH']),
|
|
'method' => 'PROPFIND',
|
|
'data' => '',
|
|
'ctype' => 'text/xml',
|
|
'version' => '1.0',
|
|
'vhost' => '',
|
|
}, 10)
|
|
|
|
|
|
if res and res.body
|
|
# short url regex
|
|
urlregex = /<a:href[^>]*>(.*?)<\/a:href>/i
|
|
|
|
#print_status("#{res.body}")
|
|
|
|
result = res.body.scan(urlregex).uniq
|
|
|
|
result.each do |u|
|
|
print_status("Found file or directory in WebDAV response (#{target_host}) #{u}")
|
|
|
|
report_note(
|
|
:host => target_host,
|
|
:proto => 'tcp',
|
|
:sname => (ssl ? 'https' : 'http'),
|
|
:port => rport,
|
|
:type => 'WEBDAV_FILE_DIRECTORY',
|
|
:data => u
|
|
)
|
|
|
|
end
|
|
end
|
|
|
|
rescue ::Rex::ConnectionRefused, ::Rex::HostUnreachable, ::Rex::ConnectionTimeout
|
|
rescue ::Timeout::Error, ::Errno::EPIPE
|
|
end
|
|
end
|
|
end
|