hashcat Forum
toggles3.rule replacement - Printable Version

+- hashcat Forum (https://hashcat.net/forum)
+-- Forum: Misc (https://hashcat.net/forum/forum-15.html)
+--- Forum: User Contributions (https://hashcat.net/forum/forum-25.html)
+--- Thread: toggles3.rule replacement (/thread-708.html)



toggles3.rule replacement - undeath - 12-02-2011

The toogles3.rule (included in hashcat >0.37) contains many redundant entries. This hits performance quite hard, because it's many!

e.g.:
T0T0T0 <=> T0
T0T0T1 <=> T1
T0T1T2 <=> T2T1T0
... aso

so here is a proper replacement:
(script in python)
Code:
for i in range(10):
    print("T{}".format(i))
    for k in range(i+1,10):
        print("T{}T{}".format(i,k))
        for j in range(k+1,10):
            print("T{}T{}T{}".format(i,k,j))



RE: toggles3.rule replacement - Hash-IT - 12-02-2011

Thank you very much undeath for finding that and pointing it out to everyone. Smile

Can I ask, have you generated new toggle rules now using your new filter ? if so are you willing to share them with hashcat users ?

Very observant of you, great find !

Thanks.


RE: toggles3.rule replacement - atom - 12-03-2011

yes you are right and this is already fixed in the toggle rules from oclHashcat-plus. as a replacement you overwrite them. i will do the same with hashcat v0.38. thanks for reporting.