07-14-2018, 10:48 PM
You can do mask attack with UTF-8 like this:
Quote:root@ht:~/hashcat# echo -n ä | xxd
00000000: c3a4 ..
root@ht:~/hashcat# echo -n ä | iconv -f utf8 -t iso-8859-1 > umlaut
root@ht:~/hashcat# echo -n hällo | md5sum
38bbce5fb3d0aec801f9eab39182fa7a -
root@ht:~/hashcat# ./hashcat -a 3 --stdout -1 umlaut -2 ?1?l ?2?2?2?2?2 | ./hashcat 38bbce5fb3d0aec801f9eab39182fa7a --quiet --encoding-from iso-8859-1 --encoding-to utf8
38bbce5fb3d0aec801f9eab39182fa7a:hällo
root@ht:~/hashcat#