1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| int __cdecl main_0(int argc, const char **argv)
{
int result; // eax
if ( argc == 2 )
{
if ( !j_strcmp(argv[1], "alligator") )
printf("You found the password! Congratulations!\n");
else
printf("Fail!\n");
result = 0;
}
else
{
printf("Usage: crackme-123-2 password\n");
result = 1;
}
return result;
}
|