Created
September 5, 2015 00:35
-
-
Save brandonprry/bed266ade292a4be7dbd to your computer and use it in GitHub Desktop.
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
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