Polish letters - office
#3
Maybe the confusion here is just that you are thinking that this string consists of 3 bytes, while it (probably) is at least 6 bytes long:
See here (hexdump):
Code:
echo -n ąąą | xxd -g 1
0000000: c4 85 c4 85 c4 85

So a mask of length 3 is too short for a password of length 6, as simple as that.

(note: not sure if the bytes mentioned above are correct, that depends on the encoding!)


Messages In This Thread
Polish letters - office - by Amraam - 02-07-2017, 01:06 PM
RE: Polish letters - office - by rico - 02-07-2017, 01:19 PM
RE: Polish letters - office - by philsmd - 02-07-2017, 02:02 PM
RE: Polish letters - office - by Amraam - 02-08-2017, 06:06 PM
RE: Polish letters - office - by philsmd - 02-08-2017, 08:50 PM