############## Crack Password ############## .. code-block:: bash # NTLM 5a54f0b5d47e4b245c182f515e9b1d15 User_1 # Create hash file echo 'Bob:5a54f0b5d47e4b245c182f515e9b1d15'>/tmp/bobhash # Run with wordlist sudo hashcat -m 1000 -o /tmp/output.txt /tmp/bobhash --username /usr/share/wordlists/rockyou.txt --potfile-path=~/HASHCATPOT # Run without wordlist (try everything from 'a' to complex 9 caracter passwords like '3E~jT#5A!') sudo hashcat -m 1000 -i --increment-min=1 -o /tmp/output.txt /tmp/bobhash --username -a 3 -1?l?u?d?s ?1?1?1?1?1?1?1?1?1 --potfile-path=~/HASHCATPOT .. code-block:: bash # Docx python /usr/share/JohnTheRipper/run/office2john.py lambda.docx > hash.txt sudo hashcat -m 9600 -o result.txt hash.txt /usr/share/wordlists/rockyou.txt --potfile-path=~/HASHCATPOT # RAR /usr/share/JohnTheRipper/run/rar2john ARCHIVE.rar >rar_hash john rar_hash john rar_hash --show | https://thecryptonian.co.uk/brute-force-cheat-sheet-oscp/