error with brute-force
#1
Hi everyone, I'm new here and have been searching a lot before signing up. I'm quite new to hashcat and hope you can help me. I'm using a Flipper Zero and I think I have a good pcap file with 4 handshakes. I can convert this online to an hc22000 file. When I use this against a wordlist, it seems to search nicely without error messages. However, when I try a brute force, it starts and I quickly get the message: bridges: unsupported file type. What am I doing wrong, can someone perhaps guide me in the right direction? I am a Windows user with no Python knowledge. Thanks in advance.
Reply
#2
That does sound strange. Can you let us know the exact command line you used?
Reply
#3
Sure, i place the file in the hashcat folder were the hashcat.exe is.
Than i run a command prompt as Admin :
hashcat -d 1 -w 3 -a 3 -m 22000 .\1.hc22000 ????????????

thxs for your efford.
Reply
#4
i think i found the problem, i set 12 ???????????? for 12 digit passwords and without the ? it seems to be working
it is running now
very stupid not to try it first.
Reply
#5
If you want to do 12 digit, you need to do ?d?d?d?d?d?d?d?d?d?d?d?d

If you just omit the mask, it will wait for user input on stdin, probably not what you want.
Reply
#6
Yes, I'm going to dive a bit further into this right away. It's a strange message for this. But thanks again for your effort.
Reply
#7
Can you please send a screenshot of the error message. It is indeed strange and confusing users so I can fix it.
Reply
#8
Thumbs Up 
i send a e.mail with a screenshot.
Reply
#9
thanks!
Reply
#10
It is clear now. This is not a hashcat bug. The error message is a bit misleading, but technically correct. What happens is that the shell (in your case cmd.exe) tries to match all files because the mask you used, ???????, is interpreted by the shell before being passed to hashcat. In your case, it matched a folder named "bridges" and then passed that string as a parameter to hashcat.

At that point in the command line, hashcat expected a .hc22000 file, but "bridges" is a folder. Therefore, it reported that this folder is an unsupported file type. So everything is working as intended.
Reply