2010-06-06 03:48:25 +00:00
|
|
|
##
|
2017-07-24 13:26:21 +00:00
|
|
|
# This module requires Metasploit: https://metasploit.com/download
|
2017-03-13 16:36:21 +00:00
|
|
|
# Current source: https://github.com/rapid7/metasploit-framework
|
2010-06-06 03:48:25 +00:00
|
|
|
##
|
|
|
|
|
|
|
|
require 'pathname'
|
2014-07-16 22:14:07 +00:00
|
|
|
require 'nokogiri'
|
2010-06-06 03:48:25 +00:00
|
|
|
require 'uri'
|
|
|
|
|
|
|
|
class CrawlerFrames < BaseParser
|
|
|
|
|
2013-09-30 18:47:53 +00:00
|
|
|
def parse(request,result)
|
2010-06-06 03:48:25 +00:00
|
|
|
|
2014-07-16 22:14:07 +00:00
|
|
|
return unless result['Content-Type'].include?('text/html')
|
2010-06-06 03:48:25 +00:00
|
|
|
|
2014-07-16 22:14:07 +00:00
|
|
|
doc = Nokogiri::HTML(result.body.to_s)
|
|
|
|
doc.css('iframe').each do |ifra|
|
|
|
|
ir = ifra['src']
|
2010-06-06 03:48:25 +00:00
|
|
|
|
2014-07-16 22:14:07 +00:00
|
|
|
if ir && !ir.match(/^(\#|javascript\:)/)
|
|
|
|
begin
|
|
|
|
hreq = urltohash('GET', ir, request['uri'], nil)
|
|
|
|
insertnewpath(hreq)
|
|
|
|
rescue URI::InvalidURIError
|
2017-03-13 16:36:21 +00:00
|
|
|
# ignored
|
2014-07-16 22:14:07 +00:00
|
|
|
end
|
2013-09-30 18:47:53 +00:00
|
|
|
end
|
2014-07-16 22:14:07 +00:00
|
|
|
|
2013-09-30 18:47:53 +00:00
|
|
|
end
|
|
|
|
end
|
2014-07-16 22:14:07 +00:00
|
|
|
|
2010-06-06 03:48:25 +00:00
|
|
|
end
|
|
|
|
|