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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
647 B
Ruby
Raw Normal View History

2010-05-03 17:13:09 +00:00
##
2017-07-24 06:26:21 -07:00
# This module requires Metasploit: https://metasploit.com/download
2017-03-13 17:36:21 +01:00
# 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 CrawlerObjects < 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') # TOOD: use MIXIN
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("//object/embed").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
end
2014-07-17 00:14:07 +02:00
2010-04-07 03:32:50 +00:00
end