Rules for Swedish characters
#1
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.
Reply
#2
rules don't support multibyte characters
Reply
#3
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.
Reply
#4
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
Reply
#5
(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.
Reply