Remove generic modules at this time, until proxy is created and then it can be proxy modules.

git-svn-id: file:///home/svn/framework3/trunk@7190 4d416f70-5f16-0410-b530-b9f4589650da
unstable
et 2009-10-18 20:23:33 +00:00
parent 249cc10cf5
commit f085e7cf59
3 changed files with 0 additions and 176 deletions

View File

@ -1,56 +0,0 @@
##
# 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'
class Metasploit3 < Msf::Auxiliary
include Msf::Exploit::Remote::HttpClient
include Msf::Auxiliary::WMAPScanGeneric
include Msf::Auxiliary::Scanner
def initialize(info = {})
super(update_info(info,
'Name' => 'WMAP Generic Comments Extractor',
'Description' => %q{
This module extracts commented code from http responses stored in the wmap database.
},
'Author' => [ 'et [at] metasploit.com' ],
'License' => BSD_LICENSE,
'Version' => '$Revision: 6479 $'))
end
def wmap_enabled
false
end
def run_host(ip)
hcommregex = /(<!--(.*?)-->|\/\*(.*?)\*\/)/i
#extemails = []
if report_active?
wmap_request_sql(wmap_target_host,wmap_target_port,'').each do |req|
tpath = req.path
result = req.response.scan(hcommregex).uniq
result.each do |c|
print_status("HTML Comment found #{c} in #{tpath}")
rep_id = wmap_base_report_id(
wmap_target_host,
wmap_target_port,
wmap_target_ssl
)
vuln_id = wmap_report(rep_id,'HTML','COMMENT',"#{c}","Comment found in #{tpath}.")
end
end
end
end
end

View File

@ -1,64 +0,0 @@
##
# 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'
class Metasploit3 < Msf::Auxiliary
include Msf::Exploit::Remote::HttpClient
include Msf::Auxiliary::WMAPScanGeneric
include Msf::Auxiliary::Scanner
def initialize(info = {})
super(update_info(info,
'Name' => 'WMAP Generic Email Extractor',
'Description' => %q{
This module extracts email addresses from http responses stored in the wmap database.
},
'Author' => [ 'et [at] metasploit.com' ],
'License' => BSD_LICENSE,
'Version' => '$Revision$'))
register_options(
[
OptString.new('DOMAIN', [ false, "Extract emails from specified domain", ''])
], self.class)
end
def wmap_enabled
false
end
def run_host(ip)
# www.regular-expressions.info/email.html
emailregex = /[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}/i
#extemails = []
if report_active?
wmap_request_sql(wmap_target_host,wmap_target_port,'').each do |req|
result = req.response.scan(emailregex).uniq
result.each do |addr|
if addr.include?(datastore['DOMAIN']) and datastore['DOMAIN']
print_status("Found email #{addr}")
rep_id = wmap_base_report_id(
wmap_target_host,
wmap_target_port,
wmap_target_ssl
)
vuln_id = wmap_report(rep_id,'EMAIL','ADDRESS',"#{addr}","Email address found.")
wmap_report(vuln_id,'LOCATION','PATH',"#{req.path}","Path where email was found.")
end
end
end
end
end
end

View File

@ -1,56 +0,0 @@
##
# 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'
class Metasploit3 < Msf::Auxiliary
include Msf::Exploit::Remote::HttpClient
include Msf::Auxiliary::WMAPScanGeneric
include Msf::Auxiliary::Scanner
def initialize(info = {})
super(update_info(info,
'Name' => 'WMAP Generic Source Code Detection',
'Description' => %q{
This module detects source code in http responses stored in the wmap database.
},
'Author' => [ 'et [at] metasploit.com' ],
'License' => BSD_LICENSE,
'Version' => '$Revision: 6479 $'))
end
def wmap_enabled
false
end
def run_host(ip)
hcommregex = /(<%(.*?)%>|<?(.*?)?>)/i
#extemails = []
if report_active?
wmap_request_sql(wmap_target_host,wmap_target_port,'').each do |req|
tpath = req.path
result = req.response.scan(hcommregex).uniq
result.each do |c|
print_status("Source code found: #{c} in #{tpath}")
rep_id = wmap_base_report_id(
wmap_target_host,
wmap_target_port,
wmap_target_ssl
)
vuln_id = wmap_report(rep_id,'HTML','SOURCE CODE',"#{c}","Source code found in #{tpath}.")
end
end
end
end
end