|
===============================================
SECURE CRACKME CHALLENGE - ULTRA HARD
BY BOBX
===============================================
[*] Security checks passed.
[*] System integrity verified.
[*] Enter password (or type 'about'): asd
===============================================
[SUCCESS] Access Granted!
Flag: FLAG{U_CR4CK3D_TH3_ULT1M4TE_CH4LL3NG3}
Congratulations, elite hacker!
===============================================
Press ENTER to exit... |
==> |
| char encrypted[] = "\x73\x50\x86\x71\x53\x44\x83\x87\x85\x4c\x4d\x45\x77\x86\x4c\x48\x86\x50\x74\x4c\x5f\x82\x80\x82\x86\x81\x21";
char key = GetCurrentProcessId() ^ GetTickCount();
for(int i = 0; encrypted[i] != 0; i++) {
password[i] = encrypted[i] ^ key;
} |
==> |