Skip to content

Instantly share code, notes, and snippets.

@jonaslsl
Created October 27, 2015 17:14
Show Gist options
  • Save jonaslsl/73dd3c86ef972d846542 to your computer and use it in GitHub Desktop.
Save jonaslsl/73dd3c86ef972d846542 to your computer and use it in GitHub Desktop.
puts "Start"
input = File.read("./input.txt")
input.gsub!(/\r\n?/, "\n")
input.each_line do |line|
s = line.strip
puts "./arachni #{s} --report-save-path ./reports"
system("./arachni #{s} --report-save-path ./reports")
end
puts "End"
@jonaslsl
Copy link
Author

Arachni multiple target scanner script

A temporary solution to run Arachni scanner against many targets

How to

  1. insert targets line by line on input.txt file
  2. ./arachni_multi_scan.rb
  3. reports will be on ./reports
  4. export your reports with this link

Requires

Ruby ;)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment