How to leet-transform only one char ? [edited] - 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: How to leet-transform only one char ? [edited] (/thread-7730.html) |
How to leet-transform only one char ? [edited] - Nay - 08-08-2018 Hello all, How to deal with words like "D1rections" as leetspeak change all occurrences in a word ? I've seen in the wiki that I can use "p" to choose a specific char position to overwrite, but it only works in command-line and not in rule files. Any idea ? Thanks ! RE: How to leet-transform only one char ? [edited] - Nay - 08-12-2018 Hi, I've made some digging but cannot find anything relevant yet. I'm sure workarounds should exist, otherwise words like "Ad0ption", "K0relogic", "D1rections" "l33speak", "le3tspeak" couldn't be found. Team hashcat, how would you deal with such situations ? Many Thanks RE: How to leet-transform only one char ? [edited] - undeath - 08-12-2018 I don't think such cases are easily handled with rules (other than random character replaces). You're much more likely to hit such words using a fingerprint attack. RE: How to leet-transform only one char ? [edited] - Nay - 08-13-2018 Thanks Undeath, I haven't try that attack yet. If I get anything relevant I'll post it here. RE: How to leet-transform only one char ? [edited] - Xanadrel - 08-14-2018 Can also mention using hashcat-legacy with -a 5 (table attack) Code: $ cat dict https://github.com/hashcat/hashcat-legacy Leet table: https://github.com/hashcat/hashcat-legacy/blob/master/tables/leet.table RE: How to leet-transform only one char ? [edited] - Nay - 08-14-2018 That sounds exactly what I was looking for, many thanks. I'm wondering why the mode 5 has been removed with new version of hashcat ? RE: How to leet-transform only one char ? [edited] - undeath - 08-14-2018 It wasn't removed, it has just never been implemented. Note the predecessor of hashcat v3 and later is not hashcat-legacy but oclhashcat. RE: How to leet-transform only one char ? [edited] - Nay - 08-14-2018 Well noted thanks for the precision |