Hashcat Can't Find Password Even though its in the Dictionary
#11
your line breaks are still screwed. They are all \r\r\n instead of \r\n or \n
Reply
#12
(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
Reply
#13
(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
Reply
#14
vim autodetects the line breaks, the ^M you see is still excessive. I double-checked in a hex editor.
Reply
#15
(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...
Reply
#16
^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'
Reply
#17
that worked! Thank you so much for your help! I do have a better understanding now lol
Reply