How to make masks out of a wordlist?
#1
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
Reply
#2
PACK's statsgen does this, see the "Checking mask coverage" section of:
https://github.com/iphelix/pack
Reply
#3
(01-21-2025, 09:11 PM)penguinkeeper Wrote: PACK's statsgen does this, see the "Checking mask coverage" section of:
https://github.com/iphelix/pack
Thanks, are there progs for Windows?
Reply
#4
(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:
https://github.com/iphelix/pack
Thanks, are there progs for Windows?

Python works on both, linux and windows
Reply
#5
(01-24-2025, 06:37 PM)Snoopy Wrote:
(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:
https://github.com/iphelix/pack
Thanks, are there progs for Windows?

Python works on both, linux and windows
OK, how to make an exe out of these files?
Reply
#6
(Yesterday, 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")
Reply