hashcat Forum

Full Version: Rules for Swedish characters
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I experimenting with a Truecrypt bootloader hash. The password was entered on a Swedish keyboard but since Truecrypt only supports US-keyboards the Swedish character in the password, å, has been entered according to the american layout.

I'm trying to write rules that will swap Swedish characters Å Ö Ä å ö ä for their equivalents on US keyboards which are ’ ” [ :

I have tried: 
sä’
sÄ”
så[
sÅ{
sö;
sÖ:


Hashcat accepts : but does not swap them when I run the attack. 
It does not accept ; ' " as characters. I guess I have to escape the somehow but have not been sucessfull doing that with single quotes or double quotes.
rules don't support multibyte characters
Thanks. I didn’t  know that. Any suggestions on how to accomplish what I’m trying to do? 
BTW, I can’t get hashcat to crack hashes containing Swedish characters with a dictionary containing the password in Swedish characters even though the dictionaries are UTF-8 formatted.
see --keyboard-layout-mapping and the file layouts/se.hckmap

also read about the addition of this feature here: https://hashcat.net/forum/thread-7983.html
(07-31-2019, 07:18 PM)philsmd Wrote: [ -> ]see --keyboard-layout-mapping and the file layouts/se.hckmap

also read about the addition of this feature here: https://hashcat.net/forum/thread-7983.html

I tried it and it worked great. Thanks.