https://hashcat.net/wiki/doku.php?id=mas...rset_files
Take a look at the file charsets/standard/English/en_cp1252.hcchr and try it something like this:
Code:
-1 charsets/standard/en_cp1252.hcchr -2 ?1?l?d ?2?2?2?2?2?2?2?2?2?2?2
Note: watch your encodings like the Wiki says.
(10-17-2016, 10:03 PM)rico Wrote: [ -> ]https://hashcat.net/wiki/doku.php?id=mas...rset_files
Take a look at the file charsets/standard/English/en_cp1252.hcchr and try it something like this:
Code:
-1 charsets/standard/en_cp1252.hcchr -2 ?1?l?d ?2?2?2?2?2?2?2?2?2?2?2
Note: watch your encodings like the Wiki says.
Thanks Rico,
Will try that in the morning. Nite time over here now.
Appreciate it.
Cheers
Rob.
(10-17-2016, 10:03 PM)rico Wrote: [ -> ]https://hashcat.net/wiki/doku.php?id=mas...rset_files
Take a look at the file charsets/standard/English/en_cp1252.hcchr and try it something like this:
Code:
-1 charsets/standard/en_cp1252.hcchr -2 ?1?l?d ?2?2?2?2?2?2?2?2?2?2?2
Note: watch your encodings like the Wiki says.
Hi Rico
I used
www.xorbin.com/tools/sha256-hash-calculator to get the hash of
dracula£ 4f4babd979c0c44d12aee78ffda0c409a41909eef90a4ba583b9d466bd3a5dc2
and
dra€ula1 1e490bf10b727b4bcb76a39b5d153992d31cf01d89a55c41e2d50cd1ccfe10fa
I put both hashes into poundhash.txt and ran the follow command
Hashcat64.exe -m 1400 -i -a 3 C:\hashcat-3.10\poundhash.txt -1 C:\hashcat-3.10\charsets\standard\English\en_cp1252.HCCHR -2 ?1?l?d ?2?2?2?2?2?2?2?2?2?2?2?2
No password was cracked (8 chars exhausted) and Hashcat continued on to 9 characters.
I think the Euro and Pound characters are problematic or maybe theres something wrong with my setup.
Can someone else run try replicate this job/these results and verify if its my rig/setup thats at fault?
Probably windows to blame! :-P
Thanks in advance.
Cheers
Rob.
The characters are not problematic, it is definitely an issue with how you are testing. Again, encoding matters. The encoding of the website you're using to create the hash, the encoding of your terminal emulator / command window, the encoding of your text editor, etc. When in doubt, use hex charset.
(10-19-2016, 01:55 AM)epixoip Wrote: [ -> ]The characters are not problematic, it is definitely an issue with how you are testing. Again, encoding matters. The encoding of the website you're using to create the hash, the encoding of your terminal emulator / command window, the encoding of your text editor, etc. When in doubt, use hex charset.
Thanks Epixoip, 100% correct. I did some digging and the default code page for cmd.exe is 850 in europe.
After more digging simply typing the command CHCP 1252 (change Code Page) at the command prompt sorts this issue.
All good now. Thanks for your help.
Cheers
Rob.