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

40 lines
771 B
Ruby
Raw Normal View History

2010-05-03 17:13:09 +00:00
##
# $Id$
##
##
# 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/
##
# $Revision$
2010-04-07 03:32:50 +00:00
require 'rubygems'
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
2013-09-30 13:47:53 -05:00
hr = ''
m = ''
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
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