creating a mask - 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: creating a mask (/thread-6674.html) |
creating a mask - slayerdiangelo - 06-28-2017 I have to generate a mask in which a character is not repeated more than twice,and no two character comes together,what should I do? for e.g:If the characters are a,b,c and the word length is 3,the combinations should not contain strings like:aab,caa,bbc,ccc e.t.c RE: creating a mask - philsmd - 06-28-2017 maskprocessor can be used for this situation (the -q parameter can be used) and the output can be piped into hashcat: Code: mp64 -q 2 -1 abc ?1?1?1 | hashcat -a 0 -m 0 -w 4 hash.txt RE: creating a mask - slayerdiangelo - 06-28-2017 (06-28-2017, 03:37 PM)philsmd Wrote: maskprocessor can be used for this situation (the -q parameter can be used) and the output can be piped into hashcat: So should I download the mask processor? Will it generate a wordlist? How can I pipe it into Hashcat? RE: creating a mask - slayerdiangelo - 06-28-2017 Can u give a working link to dwnld mask processor? RE: creating a mask - atom - 06-29-2017 https://github.com/hashcat/maskprocessor/releases/download/v0.73/maskprocessor-0.73.7z |