Failing to crack via piping
#1
So I Installed hashcat to open a wallet.dat file. I already have its hash.

I use this command per a bitcointalk thread with the rockyou file to crack:
hashcat.exe --stdout wordlist0.txt -r rules/OneRuleToRuleThemAll.rule | hashcat.exe -m 11300 hash.txt

And I got the nvrtc error. I update both nvidia and AMD and managed to do a simple attack (think it was -a 0)but I can't get that command to work so it seems the issue is when piping. Is there another way to apply that rule or a more conciise command?
Reply
#2
Piping makes no sense in the command you are running. Just run
Code:
hashcat.exe -m 11300 hash.txt wordlist0.txt -r rules/OneRuleToRuleThemAll.rule
Reply