| NUCLEAR PROJECT 2 |
There's no single hardcoded username/password. The program dynamically derives the password from whatever username you enter.
How it works:
Enter any username with ≥ 4 characters
The program transforms it internally: for each character, it appends the char twice
It compares the result against your entered password
How I found it:
It's a PE32+ x86-64 executable (MSVC C++ compiled by Artem)
Traced the auth function — it calls a transformation function (0x1400011d0) that uses itoa → strtol → arithmetic to double each character
The condition 2 × username_length == password_length confirmed the doubling logic
Fun detail: the console title is set to ===NUCLEAR HIPPIE MONEY GANG=== |
2026-06-20 18:27 |