Assistance building mask - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Support (https://hashcat.net/forum/forum-3.html) +--- Forum: hashcat (https://hashcat.net/forum/forum-45.html) +--- Thread: Assistance building mask (/thread-7177.html) |
Assistance building mask - Skitz0h - 01-07-2018 Hello, I'm trying to build a mask to take a static string such as "Password" and increment numbers at the end for a maximum of 4 digits, but also add a special character after each iteration as seen below So, "Password1!" to, "Password9999!" I always want to end the auto incremented number with "!" thank you RE: Assistance building mask - undeath - 01-07-2018 That's not possible with auto-increment. Create an hcmask file with all possible masks. RE: Assistance building mask - royce - 01-07-2018 +1. Specifically: Code: $ cat words.list RE: Assistance building mask - Skitz0h - 01-07-2018 Thank you Undeath and Royce, that's exactly what I was looking for - appreciate the examples. |