Created
December 1, 2009 23:25
-
-
Save postmodern/246744 to your computer and use it in GitHub Desktop.
A simple script for calling Ronin::Scanners::Web
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
require 'ronin/scanners/web' | |
require 'ronin/sql/scanner' | |
require 'ronin/php/lfi/scanner' | |
require 'ronin/php/rfi/scanner' | |
if ARGV.empty? | |
STDERR.puts "usage: #{$0} HOST ..." | |
exit -1 | |
end | |
scanner = Ronin::Scanners::Web.new(:hosts => ARGV) | |
scanner.scan do |category,result| | |
puts "[#{category}] #{result}" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment