| XorGate |
[Click to reveal]
Username: ABC
Password: 626160@password
Xor username with 0x23 ("#" character) byte. For example, username "ABC":
A ^ 0x23 = 0x41 ^ 0x23 = 0x62
B ^ 0x23 = 0x42 ^ 0x23 = 0x61
C ^ 0x23 = 0x43 ^ 0x23 = 0x60
Then, concatenate "@password".
P.S. You can see reimplementation in GitHub: https://github.com/internetrvze/XorGate . Lang: C
|
2026-08-08 16:51 |