hashcat Forum
Hashcat Can't Find Password Even though its in the Dictionary - 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: Hashcat Can't Find Password Even though its in the Dictionary (/thread-8152.html)

Pages: 1 2


RE: Hashcat Can't Find Password Even though its in the Dictionary - undeath - 02-13-2019

your line breaks are still screwed. They are all \r\r\n instead of \r\n or \n


RE: Hashcat Can't Find Password Even though its in the Dictionary - nadrojisk - 02-13-2019

(02-13-2019, 09:41 PM)undeath Wrote: your line breaks are still screwed. They are all \r\r\n instead of \r\n or \n

How do you see that? I am looking at in in vim and all I see is the ^M


RE: Hashcat Can't Find Password Even though its in the Dictionary - nadrojisk - 02-13-2019

(02-13-2019, 09:54 PM)Erin Melissa Wrote:
(02-13-2019, 07:37 PM)atom Wrote: There's no way to reproduce this if you do not attach files to do so.
I second you

The files have been attached in later messages


RE: Hashcat Can't Find Password Even though its in the Dictionary - undeath - 02-13-2019

vim autodetects the line breaks, the ^M you see is still excessive. I double-checked in a hex editor.


RE: Hashcat Can't Find Password Even though its in the Dictionary - nadrojisk - 02-14-2019

(02-13-2019, 11:08 PM)undeath Wrote: vim autodetects the line breaks, the ^M you see is still excessive. I double-checked in a hex editor.

I re-ran CUPP but in Ubuntu instead of Windows and it didn't create the ^M and that dictionary worked thankfully. I tried to use vim to find and replace all the ^M but it didn't find that pattern...


RE: Hashcat Can't Find Password Even though its in the Dictionary - undeath - 02-14-2019

^M is just how vim displays carriage return characters. In a replace you'd have to specify \r. You could also have fixed it with tr -d '\r'


RE: Hashcat Can't Find Password Even though its in the Dictionary - nadrojisk - 02-14-2019

that worked! Thank you so much for your help! I do have a better understanding now lol