Public paste
Undefined
By: Guest | Date: Nov 20 2009 14:34 | Format: None | Expires: never | Size: 1.16 KB | Hits: 818

  1. void main( void )
  2. {
  3.         printf(" ******************************************************************************n");
  4.         printf(" **************************** Crackme 1.1 by Delta ****************************n");
  5.         printf(" ******************************************************************************n");
  6.        
  7.         char cUsername[255], cPassword[255];
  8.  
  9.         printf("->Enter the Usernamen");
  10.        
  11.         cin >> cUsername;
  12.  
  13.         printf("->Enter the Passwordn");
  14.  
  15.         cin >> cPassword;
  16.  
  17.         printf("->Your Userdata: nt->Username: %snt->Password: %sn", cUsername, cPassword);
  18.         system("pause");
  19.  
  20.         printf("->Analysing your data ...n");
  21.         Sleep(500);
  22.  
  23.         char *cUsername_2 = /*Hier wird der username gecrypted*/
  24.  
  25.         char *cPassword_2 = /*Hier wird das passwort gecrypted*/
  26.  
  27.         printf("->Analysing done!n");
  28.  
  29.         system("pause");
  30.  
  31.         if((!strcmp(/*gecrypteter username*/, cUsername_2)) && (!strcmp(/*gecryptetes passwort*/, cPassword_2)))
  32.         {
  33.                 ::MessageBox(0, L"Good joob!!! You just did it!!!nNow just post the username and the password on www.autoitbot.de", L"Good Job!!!", MB_ICONINFORMATION);
  34.         }
  35.         else
  36.                 ::MessageBox(0, L"You failed", L"Fail", MB_ICONINFORMATION);
  37.         system("pause");
  38. }