| Leet Echo Chamber |
@michaelsrtsrt make a harder one :)) |
2026-04-18 12:45 |
| Leet Echo Chamber |
133741337
result: 2070663788
Enter activation number:
133742069
result: 133742069
Enter activation number:
100000001
result: 3643983499
was really hard thanks for this challenge |
2026-04-18 01:49 |
| Crackme hard |
// Key must be EXACTLY 10 characters
int v7 = 0;
for (int i = 0; i < 10; i++) {
v7 = 11 * i + ((key[i] << (i % 3)) ^ v7);
}
// WIN condition: v7 == 1337
so every key that is v7 == 1337 will grant you access and it must be 10 characters |
2026-04-18 01:42 |