Unsure which method to use - 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: Unsure which method to use (/thread-9455.html) |
Unsure which method to use - rantoie - 08-15-2020 Hi all, hashcat is really great! I'm trying to crack my forgotten password on a bitcoin wallet... I was able to extract the hash and I have all the GPU drivers installed, but I'm struggling a little bit with what method would be the best to try to use. I've got a list of possible strings, and then I know back then I was doing things like doing stupid modifications to passwords, like changing E to be a 3 or making A be a 4, or "bitcoin" be bi7coin or bitcoiN, etc. I am pretty sure that if I replaced an "O" with a zero (0) in a word, I would have done it for both instances of the letter "O" when it occurs. The above kind of suggests I use the leetspeak.rule, but my list of possible strings is really short, so I think its too small to be efficiently parallel. I tried ./hashcat.bin -a 0 -m 11300 ./hash.txt ./wordlist.txt -O -w 3 -r rules/unix-ninja-leetspeak.rule, but that finished way too fast (without success). Any suggestions would be appreciated, I'm still reading the wiki and documentation to understand what options would make sense. RE: Unsure which method to use - undeath - 08-16-2020 The attack looks good, especially for your use case. One thing that ruleset does not do is toggling the case of characters. You'd have to chain together with toggles{1,2,3}.rule to include some case toggling. Chances are, one of your leetspeak modifications is not listed in unix-ninja-leetspeak.rule. In that case you can try with Incisive-leetspeak.rule which has a few more rules, again while chaining with the toggles rules. Chaining rulesets simply works by using -r multiple times. RE: Unsure which method to use - rantoie - 08-16-2020 Thanks for the suggestion, I still get the following when I run with the chained toggles{1,2,3}.rule: Code: ./hashcat.bin -a 0 -m 11300 ./hash.txt ./wordlist.txt -O -w 3 -r rules/Incisive-leetspeak.rule -r rules/toggles{1,2,3}.rule A couple notes about the above: 1. The wordlist or mask that you are using is too small still, can I increase that somehow? 2. Approaching final keyspace - workload adjusted. <--- this happens right away, should I do something here? 3. I notice that the Guess.Mod line only has the rules/toggles1.rule, and not the other two, is that ok? 4. I am unaware of 167 H/s is a good speed or not? 5. I xxx'd out a couple things |