Reversing
What is Reverse Engineering?
Crakmes
Crackme 1

What it's Strings?



Crackme 2


Crackme 3



Tools for Reversing
Last updated









Last updated
#include <iostream>
using namespace std;
int main(){
string password;
cout << "What is the master phrase: " ;
cin >> password;
if(password == "!picklerick123")
cout << "Correct !!" << endl;
else
cout << "Incorrect !!"<< endl;
return 0;
}#include <iostream>
using namespace std;
int main(){
int combination;
cout << "What is the master phrase: " ;
cin >> combination;
if(combination == 123)
cout << "Correct !!" << endl;
else
cout << "Incorrect !!"<< endl;
return 0;
}#include <iostream>
using namespace std;
void fcompare(int);
int main(){
int combination;
cout << "What is the master phrase: " ;
cin >> combination;
fcompare(combination);
return 0;
}
void fcompare(int value){
if (value == 321)
cout << "Correct !!" << endl;
else
cout << "Incorrect !!" << endl;
}