@bbcjared
@catughti
one of these "clever" tricks mentioned by chick3man to reduce keyspace
if you look carefully how eg. cyrillic ist encoded
https://www.utf8-chartable.de/unicode-ut...start=1024
all chars starting with d0, d1, d2, d3, d4 so you can modify/optimize you charset file to something like this
d0d1d2d3,d4?b,?1?2
d0d1d2d3d4,?b,?1?2?1?2
d0d1d2d3d4,?b,?1?2?1?2?1?2
to search for cyrillic 1char, 2 chars, 3 chars
you can optimized this further for the second byte part of the char if needed, dont forget to tell hashcat that charset is given in hex
for 3 bytes chars (korean) you have to modify the trick further, i hope you get the point how
@catughti
one of these "clever" tricks mentioned by chick3man to reduce keyspace
if you look carefully how eg. cyrillic ist encoded
https://www.utf8-chartable.de/unicode-ut...start=1024
all chars starting with d0, d1, d2, d3, d4 so you can modify/optimize you charset file to something like this
d0d1d2d3,d4?b,?1?2
d0d1d2d3d4,?b,?1?2?1?2
d0d1d2d3d4,?b,?1?2?1?2?1?2
to search for cyrillic 1char, 2 chars, 3 chars
you can optimized this further for the second byte part of the char if needed, dont forget to tell hashcat that charset is given in hex
for 3 bytes chars (korean) you have to modify the trick further, i hope you get the point how