rules attack
#6
(04-02-2020, 05:06 PM)test_kali Wrote: Good morning. I have a SHA-256 hash that matches a word from the RockYou dictionary, with changes o-0, i-1, b-6, and the first letter of the word can be a capital letter. I used some rules like so0, si1, sb6 without success. also I have problem like " Skipping invalid or unsupported rule in file rgl.rule on line 1: ta tc td te tf tg th tj tk tl tm tn tp tq tr ts tt tu tv tw tx ty tz". can you help me ?

T0 will toggle caps for first letter I think. so0 does a global search and replace on o and replaces with 0. I wrote some (really bad) python code to do one at a time, which you'd need to adapt if you use it: https://github.com/blacktraffic/hashcrac...leetify.py

However, you could create a rule file R1 with just "T0" in it, and R2 with just
so0
si1
sb6 
in and try them both:  

hashcat64.exe <blah>  rockyou.txt -r R1 -r R2 

If that doesn't work, you could add 
T0
c
to R1, as 'c' does : Capitalize the first letter and lower the rest 
Reply


Messages In This Thread
rules attack - by test_kali - 04-02-2020, 05:06 PM
RE: rules attack - by philsmd - 04-02-2020, 05:43 PM
RE: rules attack - by test_kali - 04-02-2020, 08:35 PM
RE: rules attack - by philsmd - 04-03-2020, 02:33 AM
RE: rules attack - by test_kali - 04-03-2020, 12:42 PM
RE: rules attack - by blacktraffic - 04-07-2020, 09:01 AM
RE: rules attack - by philsmd - 04-07-2020, 09:14 AM
RE: rules attack - by blacktraffic - 04-07-2020, 10:10 AM