Rules with prefix and suffix in same time - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Support (https://hashcat.net/forum/forum-3.html) +--- Forum: hashcat-utils, maskprocessor, statsprocessor, md5stress, wikistrip (https://hashcat.net/forum/forum-28.html) +--- Thread: Rules with prefix and suffix in same time (/thread-4070.html) |
Rules with prefix and suffix in same time - fonzy35 - 02-11-2015 Ok i'm trying to make a rule that will add prefix numbers 0000-9999 before a dictionary word and a suffix 0000-9999 after the same dictionary word ex.: in the dictionary.txt there's only one word: Birthday with the rule i like to get: 0000Birthday9999 0001Birthday9998 0002Birthday9997 i did this with maskprocessor: mp64.exe -1 0123456789 "^?1^?1^?1^?1$?1$?1$?1$?1" -o Prefix_and_Suffix_numbers_0-9999.rule and it gave me this in a file Prefix_and_Suffix_numbers_0-9999.rule inside: Code: ^0^0^0^0$0$0$0$0 i get syntax error wile running with the dictionary Any ideas? TIA RE: Rules with prefix and suffix in same time - atom - 02-11-2015 Syntax should be fine, but it's to many rules RE: Rules with prefix and suffix in same time - fonzy35 - 02-12-2015 yes you're right it generated a 1.7GB rules file(0000 prefix and suffix 9999) It take for ever to load the bitmap table i did try with rules prefix 000 and suffix 999 work great Thanks |