how do i use these unicode characters in my password - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Misc (https://hashcat.net/forum/forum-15.html) +--- Forum: User Contributions (https://hashcat.net/forum/forum-25.html) +--- Thread: how do i use these unicode characters in my password (/thread-11441.html) |
how do i use these unicode characters in my password - amrgdnn - 05-25-2023 hi everyone how do i use these unicode characters in my password unicode.PNG (Size: 14.03 KB / Downloads: 5) I would appreciate it if you could give a clear answer please. for example password : Byt6op125¶¥Æ¾¼§º©154 how can i break the unicode. that i wrote in red. no matter what i did i couldn't thanks in advance for your answer RE: how do i use these unicode characters in my password - amrgdnn - 05-25-2023 (05-25-2023, 10:15 AM)amrgdnn Wrote: hi everyone I have 28 btc from mining in 2009. I used these characters in my wallet password. I will share with someone who teaches me how to use these characters in hashcat. I only use mask attack but ?s does not contain these characters I use this characters but whic one ı dont know : 颡£¤¥¦§¨©ª«¬®¯°±²³´µ¶¹¸º»¼½¾¿ÀÁÂÃÄ×£ RE: how do i use these unicode characters in my password - Snoopy - 05-25-2023 the easiest way is to use hexcharset but for this you will need to convert these chars first see https://www.utf8-zeichentabelle.de/unicode-utf8-table.pl?names=- for example the following singns and its hex expression ¶ is c2 b6 § is c2 a7 © is c2 a9 Æ ic c3 86 be aware, as hashcat works on bytesize, to crack a single © you have to use a mask of length 2 like this: to crack Byt6op125© (for humans 10 chars, but for hashcat its 11 bytes as © is bytesize 2) --hex-charset -1 c2c3 -2 86a7a9b6 Byt6op125?1?2 RE: how do i use these unicode characters in my password - TheAleph - 05-25-2023 HI, Please read the following articles: https://miloserdov.org/?p=4016 https://www.nixu.com/blog/cracking-non-english-character-passwords-using-hashcat Maybe it can guide you. Regards RE: how do i use these unicode characters in my password - BTC-Cracka - 06-08-2023 Hi amrgdnn If you still have issue working it out I can help you out, PM me RE: how do i use these unicode characters in my password - arduan77 - 07-24-2023 Hi. Have you solved your problem? I have made a lot of changes in my passwords generator, so it can make a passwords lists as you need. I made additional config for you "ConfigForum.txt" if you repleace original Config.txt with it, you can generate wordlists and put them directly to Hashcat with my program, if I fully uderstood mask rules you want to use ;-), if not, change it as you wish. On my laptop, i7-9750H CPU @ 2.60GHz, password generation speed with mask I made in ConfigForum.txt is about 850k/s. Pretty good, I think. I must to write documentation, maybe next time. I will be grateful for comments, tests and help. Sorry for the programming style, I'm not a professional programmer. https://github.com/Arduan77/MikiDecoder Happy cracking. RE: how do i use these unicode characters in my password - MrRaja - 09-25-2023 It sort of work for me but i made a pyscript (with gpt) to turn unicode into hexstrings and the remove duplicates to then represent each byte as itself. So whatever unicode you got that is 2 bytes long you can plop in the python script below and it will give you Unique Byte1 and Byte2: Byt6op125¶¥Æ¾¼§º©154 Code: def unicode_to_hexstring(input_string): You use the Unique-Byte1 by adding 'hashcat.exe -m 0 md5.hash -a 3 -1 "byte1" -2 "byte2" -3 ?1?2 (using your example PW in post) --hex-charset Byt6op125?3?3?3?3?3?3?3?3154 ' That way you replace every Unicode with ?3 and use ?a for non-unicode i suppose. note why --hex-charset is important: it turns all the bytes from byte1&byte2 into 'unicode' when hashcracking. |