Please note, this is a STATIC archive of website hashcat.net from 08 Oct 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.

hashcat Forum

Full Version: Hybrid attack syntax
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
What's wrong with these commands? Nothing is getting appended or prepended to the wordlist.

./oclHashcat-plus64.bin -m 2500 Reagan.hccap rockyou.txt $d$d$d$d

./oclHashcat-plus64.bin -m 2500 Reagan.hccap $d$d$d$d rockyou.txt
well for one, it's ?d, not $d. normally this would error out, but since your shell is interpreting $d as a string of empty variables, it's like those $d's don't even exist.

you're also missing the attack mode for both of those.

-a 6 rockyou.txt ?d?d?d?d
-a 7 ?d?d?d?d rockyou.txt
Thanks epixoip, I'm such a fool!