Password Attacks

(OBJ 2.4)

Password Attacks

Brute Force Attack

Dictionary Attack

Password Spraying

Hybrid Attack

John the Ripper Password Hacking tool

Installing John the Ripper

┌──(macc㉿kaliLab)-[~]
└─$ sudo apt-get install john

Example using echo command:

┌──(macc㉿kaliLab)-[~]
└─$ echo -n "password" | md5sum | awk '{print $1}' > mypasswords.txt

See the content added to the file

┌──(macc㉿kaliLab)-[~]
└─$  cat mypasswords.txt
5f4dcc3b5aa765d61d8327deb882cf99

Example using john command:

┌──(macc㉿kaliLab)-[~]
└─$ john -- format=Raw-MD5 mypasswords.txt