Files
metasploit-gs/lib/anemone/extractors/frames.rb
T

8 lines
169 B
Ruby
Raw Normal View History

2012-11-01 21:18:05 +02:00
class Anemone::Extractors::Frames < Anemone::Extractors::Base
2013-08-30 16:28:33 -05:00
def run
doc.css( 'frame', 'iframe' ).map { |a| a.attributes['src'].content rescue next }
end
2012-11-01 21:18:05 +02:00
end