Cracking less secure login password for beginners
This is beginner level post for learning how to hack less secured password of login page. For this i am going to use some router for cracking the password and of course Hydra to brute force it . What you need Kali Linux ( or any Linux distribution with Hydra installed ) A good wordlists for brute forcing the password which you can download from here Login address of the target You need to know whether the service using SSL connection or not Basic knowledge of HTTP-GET and HTTP-POST form A lot of patience. Common sense Let the hacking Begin STEP 1: Fire up your Kali Linux and go to terminal and type hydra , you should see something like this STEP 2 : Now type " hydra -V -L C:\Users\HACKETT\Desktop\wordlist.txt -P C:\Users\HACKETT\Desktop\wordlist.txt 192.168.1.2 http-get " Options we used in above commands 192.168.1.2 : This is the login address of the target which we are cracking - V : Verbose mode / show login+pass combination for...