![]() |
How to make masks out of a wordlist? - 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: How to make masks out of a wordlist? (/thread-12481.html) |
How to make masks out of a wordlist? - Atlantis - 01-21-2025 Does there exist a program to give me masks from found passwords? Say, I found a password 111qqq and it gives me the mask ?d?d?d?l?l?l RE: How to make masks out of a wordlist? - penguinkeeper - 01-21-2025 PACK's statsgen does this, see the "Checking mask coverage" section of: https://github.com/iphelix/pack RE: How to make masks out of a wordlist? - Atlantis - 01-24-2025 (01-21-2025, 09:11 PM)penguinkeeper Wrote: PACK's statsgen does this, see the "Checking mask coverage" section of:Thanks, are there progs for Windows? RE: How to make masks out of a wordlist? - Snoopy - 01-24-2025 (01-24-2025, 06:24 PM)Atlantis Wrote:(01-21-2025, 09:11 PM)penguinkeeper Wrote: PACK's statsgen does this, see the "Checking mask coverage" section of:Thanks, are there progs for Windows? Python works on both, linux and windows RE: How to make masks out of a wordlist? - Atlantis - 01-28-2025 (01-24-2025, 06:37 PM)Snoopy Wrote:OK, how to make an exe out of these files?(01-24-2025, 06:24 PM)Atlantis Wrote:(01-21-2025, 09:11 PM)penguinkeeper Wrote: PACK's statsgen does this, see the "Checking mask coverage" section of:Thanks, are there progs for Windows? RE: How to make masks out of a wordlist? - Snoopy - 01-28-2025 (01-28-2025, 06:50 PM)Atlantis Wrote: OK, how to make an exe out of these files? install python for windows https://www.python.org/ and just run/execute these files p.a.c.k. is quite old but still good, it was written in the style of python 2.7, which is now obsolete, this leads to some incompatibilities, you will have to change/modify all print statements, example given old python 2.7 print "test" to new python 3.* print("test") |