Extract Encrypted Bytes: The encrypted password bytes are 28 05 06 07 49 28 05 1C 1A.
XOR Each Byte with 0x69:
28 ^ 69 = 41 → 'A'
05 ^ 69 = 6C → 'l'
06 ^ 69 = 6F → 'o'
07 ^ 69 = 6E → 'n'
49 ^ 69 = 20 → ' '
28 ^ 69 = 41 → 'A'
05 ^ 69 = 6C → 'l'
1C ^ 69 = 75 → 'u'
1A ^ 69 = 73 → 's'
01 ^ 69 = 68 → 'h'
Password: Alon Alush |
==> |