how to create a mask in Hebrew?
#4
This issue has already been documented on this forum or on other blogposts. Do some research, and you'll be fine.

Let's take your example "דהו"
As Snoopy stated, the hebrew characters are multibyte, you'll need to look-up the hex values of each character. This is a good page to start: https://www.utf8-chartable.de/unicode-ut...start=1280
You can double-check with xxd

Code:
echo -n דהו | xxd
00000000: d793 d794 d795

You'll see that the Hebrew letters have the following representation: "D7 9x" and "D7 Ax".
Now, make a custom charset of it; since it always starts with D7 (base code), we can use two custom charsets
Do not forget to use the --hex-charset in your command.

Code:
hashcat -m 0 386dad60a3d478a96af4691d45037661 --hex-charset -a3 -1 d7 -2 909192939495969798999a9b9c9d9e9fa0a1a2a3a4a5a6a7a8a9aaabacadaeaf ?1?2?1?2?1?2
Reply


Messages In This Thread
how to create a mask in Hebrew? - by svobodnui11 - 04-24-2024, 12:13 PM
RE: how to create a mask in Hebrew? - by Snoopy - 04-24-2024, 06:12 PM
RE: how to create a mask in Hebrew? - by Snoopy - 04-29-2024, 11:47 AM
RE: how to create a mask in Hebrew? - by Banaanhangwagen - 04-28-2024, 12:28 PM