home *** CD-ROM | disk | FTP | other *** search
-
-
- #include <stdio.h>
- #include <string.h>
- #include <conio.h>
-
- int main(void)
- {
- char code[9]={0};
- char license[9]={0};
-
- int length=0;
-
-
- printf(" ▄▄▄▄▄ \n");
- printf(" █ ▄ █ \n");
- printf(" █▀▀▀▀▀▀▀▀ ▄ ▀▀▀▀▀ ▀ ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀█ █▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ ▀ ▀▀▀▀█ \n");
- printf(" █ │░███████ │▓███████▀ │░███▀█▀▀▀▀▀▀▀ ▀ ▀▀▀▀ │░███▀█▀▀▀▀▀▓████▓▄ █ \n");
- printf(" █ │▒███████ │▓███████ │▒███████ │▓███████▀ │▒███████ │▓███████ █ \n");
- printf(" █ │▓███████ │▓███████ │▓███████ │▓███████ │▓███████ │▓███████ █ \n");
- printf(" ▀ │▓███████ │▓███████ │▓███████ │▓███████ │▓███████ │▓███████ █▄▄▄ \n");
- printf(" ▀ │▓███████ │▓███████ │▓███████ │▓███████ │▓███████ │▓███████▄ ▄ █ \n");
- printf(" █ │▓███████ │▓███████ │▓███████ │▓███████ │▓███████ █ \n");
- printf(" █ │▓███████▄▄▄▄▄█▄█▓▀ │▓███████▄▄▄▄▄█▄████ │▓███████▀▀ ▀ ▀ █ \n");
- printf(" █▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ▄ ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ▀ █▀▀▀▀▀▀▀▀▀ ▀ ▀▀ \n");
- printf(" .::[ u n i t e d · c r æ c k i n g · f o r c e ]::. █ ▀ █ Antibody<SAC> \n");
- printf(" ▀▀▀▀▀ \n");
- printf(" \n");
- printf("\n GodeZIP V2.0 P1 - Keygenerator by Quantico. \n\n");
- printf(" \n");
- printf("Enter a 7 character string : ");
- gets(code);
-
- length=strlen(code);
-
-
- if(length != 7)
- {
- printf("\n\nI said 7 characters you twat !!! ;)");
- return 0;
- }
-
-
-
-
-
- license[0]=code[5]-0x1e;
- license[1]=code[4]-0x17;
- license[2]=code[1]-0x1f;
- license[3]=code[6]-0x11;
- license[4]=code[2]-0x13;
- license[5]=code[0]-0x15;
- license[6]=code[3]-0x1d;
-
-
-
-
-
-
-
- printf("Your License Is : G%s\n",license);
- printf("Your Code Is : D%s\n",code);
- return 0;
- }