Challenge 3: Basic Reverse Engineering - Download
Ok this is a simple reverse engineering challenge,
this time we have decided too let you see the source..
We have removed the password of course..
To complete this challenge you must provide the password
from the binary above.
--BEGIN SOURCE--
#include
#include
int main(void)
{
char password[10];
printf("enter password: ");
scanf("%s",&password);
if(!strcmp(password,"--PW Goes here--")) {
printf("wo0t, you got it!\n"); }
else{ printf("Bah... Try again newb..\n"); }
return 0;
}
--END SOURCE--
|