05-06-2025, 07:57 AM
The command will not crack anything:
hashcat -a 0 -m 1000 --username 1 .\hashes.txt --show .\stockpwd.txt
--username does not have any values, so hashcat thinks that the 1 is a hash. Remove the 1. And then --show will show already cracked hashes, if they exists in the potfile. When using --show, hashcat does not crack anything, so remove --show.
hashcat -a 0 -m 1000 --username 1 .\hashes.txt --show .\stockpwd.txt
--username does not have any values, so hashcat thinks that the 1 is a hash. Remove the 1. And then --show will show already cracked hashes, if they exists in the potfile. When using --show, hashcat does not crack anything, so remove --show.