home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / Quantico / km / godezip.c.txt < prev    next >
Encoding:
Text File  |  2000-05-25  |  1.7 KB  |  64 lines

  1.  
  2.  
  3. #include <stdio.h>
  4. #include <string.h>
  5. #include <conio.h>
  6.  
  7. int main(void)
  8. {
  9. char code[9]={0};
  10. char license[9]={0};
  11.  
  12. int length=0;
  13.  
  14.  
  15. printf("            ▄▄▄▄▄ \n");
  16. printf("            █ ▄ █ \n");
  17. printf("    █▀▀▀▀▀▀▀▀ ▄ ▀▀▀▀▀ ▀ ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀█  █▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ ▀ ▀▀▀▀█ \n");
  18. printf("    █ │░███████  │▓███████▀ │░███▀█▀▀▀▀▀▀▀ ▀ ▀▀▀▀ │░███▀█▀▀▀▀▀▓████▓▄  █ \n");
  19. printf("    █ │▒███████  │▓███████  │▒███████  │▓███████▀ │▒███████  │▓███████ █ \n");
  20. printf("    █ │▓███████  │▓███████  │▓███████  │▓███████  │▓███████  │▓███████ █ \n");
  21. printf("    ▀ │▓███████  │▓███████  │▓███████  │▓███████  │▓███████  │▓███████ █▄▄▄ \n");
  22. printf("    ▀ │▓███████  │▓███████  │▓███████  │▓███████  │▓███████  │▓███████▄ ▄ █ \n");
  23. printf("    █ │▓███████  │▓███████  │▓███████  │▓███████  │▓███████               █ \n");
  24. printf("    █ │▓███████▄▄▄▄▄█▄█▓▀   │▓███████▄▄▄▄▄█▄████  │▓███████▀▀ ▀    ▀      █ \n");
  25. printf("    █▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ▄ ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ▀ █▀▀▀▀▀▀▀▀▀ ▀ ▀▀ \n");
  26. printf("    .::[ u n i t e d · c r æ c k i n g · f o r c e ]::. █ ▀ █ Antibody<SAC> \n");
  27. printf("                                                        ▀▀▀▀▀ \n");
  28. printf(" \n");
  29. printf("\n               GodeZIP V2.0 P1  -  Keygenerator by Quantico.               \n\n");
  30. printf(" \n");
  31. printf("Enter a 7 character string  : ");
  32. gets(code);
  33.  
  34. length=strlen(code);
  35.  
  36.  
  37. if(length != 7)
  38. {
  39.   printf("\n\nI said 7 characters you twat !!! ;)");
  40.   return 0;
  41. }
  42.  
  43.  
  44.  
  45.  
  46.  
  47. license[0]=code[5]-0x1e;
  48. license[1]=code[4]-0x17;
  49. license[2]=code[1]-0x1f;
  50. license[3]=code[6]-0x11;
  51. license[4]=code[2]-0x13;
  52. license[5]=code[0]-0x15;
  53. license[6]=code[3]-0x1d;
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.    printf("Your License Is  :  G%s\n",license);
  62.    printf("Your Code Is     :  D%s\n",code);
  63.    return 0;
  64. }