Skip to content

Instantly share code, notes, and snippets.

@brandonprry
Created September 5, 2015 00:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brandonprry/bed266ade292a4be7dbd to your computer and use it in GitHub Desktop.
Save brandonprry/bed266ade292a4be7dbd to your computer and use it in GitHub Desktop.
public static void Main (string[] args)
{
using (ArachniSession session = new ArachniSession ("192.168.2.207", 4567, true)) {
using (ArachniManager manager = new ArachniManager (session)) {
var resp = manager.StartScan ("http://192.168.2.87/?searchquery=fdsa&action=search&x=11&y=15");
while (manager.IsBusy ()) {
Thread.Sleep (10000);
Console.Write (".");
}
Console.WriteLine ("done");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment