hashcat Forum

Full Version: Hashcat Can't Find Password Even though its in the Dictionary
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
your line breaks are still screwed. They are all \r\r\n instead of \r\n or \n
(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
(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
vim autodetects the line breaks, the ^M you see is still excessive. I double-checked in a hex editor.
(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...
^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'
that worked! Thank you so much for your help! I do have a better understanding now lol
Pages: 1 2