Rule for targetting CamelCase passwords? - 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: Rule for targetting CamelCase passwords? (/thread-9261.html) |
Rule for targetting CamelCase passwords? - LeBean - 05-27-2020 I'm trying to crack a hash I created which I know has a CamelCase password. I'm using the rockyou wordlist and was trying to find out if there are pre-existing rules to target CamelCase passwords. It would have to take 2 words from the dictionary, capitalise the first letter, then combine them (much like the combinator attack) Any suggestions would be awesome RE: Rule for targetting CamelCase passwords? - philsmd - 05-27-2020 Code: hashcat -m 0 -a 1 -w 3 -j c -k c hash.txt dict1.txt dict2.txt instead of the "c" rule you could also use the toggle rule: -j T0 -k T0 |