Mask, but also the mask doubled over? - 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: Mask, but also the mask doubled over? (/thread-10354.html) |
Mask, but also the mask doubled over? - cipherlab - 09-25-2021 As in, I want to check a password from a mask, but I also speculate that maybe someone pasted their password twice, so I want to check the password doubled over. Then I can check lengths 4-7 but also be checking a few passwords at lengths 8-14 RE: Mask, but also the mask doubled over? - Banaanhangwagen - 09-26-2021 A possible solution could be piping the --stdout of maskattack to another hashcat with only "do nothing" and "make double"-rule in it. hashcat --stdout -a3 ?a?a?a?a?a?a?a --increment-min=4 | hashcat HASH.txt -r RULE.txt RE: Mask, but also the mask doubled over? - cipherlab - 09-27-2021 Helpful, thanks. That'll work |