Hi.
I have a D-Link DIR-600 Router, and I want to see if I can find the password using hydra.
Unfortunately, i can`t find figure out how to fire up hydra.
In the index page, where to put the user and pass, I have this:
What is the sintax for hydra ? I think at some point, that the login will ask me for captcha. Can hydra handle this ?Code:<!-- Start of Login Body --> <div id="login" class="simplecontainer" style="display:none;"> <div class="simplebody"> <div class="orangebox"> <h1>Login</h1> <div class="message">Login to the router : </div> <div class="loginbox"> <span class="name">User Name</span> <span class="delimiter">:</span> <span class="value"> <input type="text" id="loginusr" onkeydown="BODY.OnKeydown(event);" /> </span> </div> <div class="loginbox"> <span class="name">Password</span> <span class="delimiter">:</span> <span class="value"> <input type="password" id="loginpwd" onkeydown="BODY.OnKeydown(event);" /> <input type="button" id="noGAC" value="Login" onClick="BODY.LoginSubmit();" /> </span> </div> <div id="GAC" class="centerline"> <center> <table width="260px" style="text-align:left;"> <tr> <td colspan="2"> <strong>Enter the correct password above and then type the characters you see in the picture below.</strong> <input type="text" id="captcha" class="uppercase" onkeydown="BODY.OnKeydown(event);" /> </td> </tr> <tr> <td height="50px" width="190px" align="center"><span id="auth_img"></span></td> <td><input type="button" onClick="BODY.RefreshCaptcha();" value="Regenerate" valign="middle" /></td> </tr> <tr> <td colspan="2" align="center"> <input type="button" value="Login" onClick="BODY.LoginSubmit();" style="width:90px;" /> </td> </tr> </table> </center> </div> <div class="emptyline"></div> </div> </div> </div> <!-- End of Login Body -->
hydra -l admin -P /root/pass.txt -t 3 192.168.0.1 http-post-form /
I think I must use some informations from the code ...
Thanks !