replacement rule
#1
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
#2
No, only the opposite direction (-a 5 table attack)
#3
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