Please note, this is a STATIC archive of website hashcat.net from 08 Oct 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.

hashcat Forum

Full Version: replacement rule
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

Is there a way to make a rule replace more than just one character?

examples:

fishbone --> fishb1
starfall --> *fall
pretending --> pre10ding
hashtag --> #tag

//Kelzo
No, only the opposite direction (-a 5 table attack)
Ok,

next best option would be to modify the password file I guess.

cat pwdfile | egrep '(one)|(ten)' | sed -e 's/one/1/g' -e 's/ten/10/g' >> pwdfile

Smile