Files
metasploit-gs/data/msfcrawler/scripts.rb
T

30 lines
600 B
Ruby
Raw Normal View History

2010-05-03 17:13:09 +00:00
##
2017-03-13 17:36:21 +01:00
# This module requires Metasploit: http://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
2010-05-03 17:13:09 +00:00
##
2010-04-07 03:32:50 +00:00
require 'pathname'
2014-07-17 00:14:07 +02:00
require 'nokogiri'
2010-04-07 03:32:50 +00:00
require 'uri'
class CrawlerScripts < BaseParser
2013-09-30 13:47:53 -05:00
def parse(request,result)
2014-07-17 00:14:07 +02:00
return unless result['Content-Type'].include? "text/html"
2010-05-03 17:13:09 +00:00
2014-07-17 00:14:07 +02:00
doc = Nokogiri::HTML(result.body.to_s)
doc.xpath("//script").each do |obj|
2013-09-30 13:47:53 -05:00
s = obj['src']
begin
2014-07-17 00:14:07 +02:00
hreq = urltohash('GET', s, request['uri'], nil)
2013-09-30 13:47:53 -05:00
insertnewpath(hreq)
rescue URI::InvalidURIError
2017-03-13 17:36:21 +01:00
# ignored
2013-09-30 13:47:53 -05:00
end
end
2014-07-17 00:14:07 +02:00
2013-09-30 13:47:53 -05:00
end
2014-07-17 00:14:07 +02:00
2010-04-07 03:32:50 +00:00
end