| SimpleCrackMe |
SetConsoleTitleA("SimpleCrackme by arasreal");
cout << "Enter password: ";
std::string input;
std::cin >> input;
// ---- build the expected password piece by piece ----
std::string expected = std::string("succ") + "ess" // "success"
+ "good" + "try" + "but"
+ "you" + "are" + "found"
+ "at" + "ry" + "pass" + "01";
// => "successgoodtrybutyouarefoundatrypass01"
if (input == expected)
cout << "\n[+] Access Granted!";
else
cout << "\n[-] Wrong password!";
Sleep(3000); |
2026-04-15 00:40 |