Rule order and
#2
(02-09-2021, 08:17 PM)puck2 Wrote: Also, is there a way to run a rule on only some portion of the word, to account for an error in data entry?

so that

    week

would become

    w3ek
or
    we3k

(only one e being replaced)

I wrote a (terrible) python3 script to do this for me - I don't know of a rule-based solution.

$ echo week > demo.txt
$ python3 scripts/leetify.py demo.txt
week
we3k
w3ek
w33k

https://github.com/blacktraffic/hashcrac...leetify.py

Code is awful, but you can see how to tweak the substutions.
Reply


Messages In This Thread
Rule order and - by puck2 - 02-09-2021, 08:17 PM
RE: Rule order and - by blacktraffic - 02-10-2021, 09:22 AM