![]() |
Change the apply order of rules? - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Misc (https://hashcat.net/forum/forum-15.html) +--- Forum: General Talk (https://hashcat.net/forum/forum-33.html) +--- Thread: Change the apply order of rules? (/thread-5664.html) |
Change the apply order of rules? - n1h2 - 07-17-2016 Is there a way to change the way rules are applied to the words? For example, assume I have the following files: Code: $ cat words Gives me the candidates: Code: $ hashcat --stdout hash -r rules words Is there a way to change the logic so that the words would be applied to the rules, and not the way it is now? This is what I want: Code: a1 Or do I have to apply the rules individually, rerunning hashcat each time? RE: Change the apply order of rules? - atom - 07-17-2016 That's not possible, because of the stdin feature. We can not rewind stdin to restart with rule 2. |