Help: Mask for 3-4-5 word combinations separated by hyphen. - 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: Help: Mask for 3-4-5 word combinations separated by hyphen. (/thread-9512.html) |
Help: Mask for 3-4-5 word combinations separated by hyphen. - 102980175isi - 09-17-2020 Hi there, I am looking to crack a -m 22000 hash using the following combinations: dust-not-great man-watch-out and similar words. What is the command I would have to use? Piping an output will not work for me, such as using the "ee.cpp" generator commonly found online. I tried: hashcat -m 22000 myhash.22000 -a 0 -w 3 pass.txt-pass.txt-pass.txt but obviously the program interprets the "pass.txt" lines as all one directory. I am not sure what to do. Much appreciated. Goodbye. RE: Help: Mask for 3-4-5 word combinations separated by hyphen. - 102980175isi - 09-18-2020 I have solved this, thanks for reading. Simply copy pasted "https://github.com/laconicwolf/Password-Scripts/blob/master/combinator3.py" and appended lines: "w1 = d1[h].title() if args.title_case else d1[h]" to: "w1 = d1[h].title() if args.title_case else d1[h] +"-" which does exactly what I need. Edit: This freezes my computer due to memory issues, so it doesnt work. RE: Help: Mask for 3-4-5 word combinations separated by hyphen. - 102980175isi - 09-18-2020 Ok seemed solved again. Just running: ./ee > pass.txt using: https://github.com/wpatoolkit/Word-word-word-Wordlist-Generator then using the list in hashcat. |