August 30, 200915 yr here is a patch that gives goodboy for every wrong serial and badboy for case of correct serial. ( Dumb 1-byte patch ) CrackMe1t1patch.rar
January 1, 201015 yr Hey my solution /* MiB KeyGenMe *KEYGEN* Coded by VESA */#include <stdio.h>#include <string.h>#include <conio.h>int main(int argc, char *argv[]){ register int i; char name[128],serial[128]; int a,b,c,e,f=0,len,edi=0x20A75279; printf("MiB KGM \"KEYGEN\" By VESA\n\n"); printf("ID: "); gets(name); len=strlen(name); name[len]=0x0A; name[len+1]='\0'; for (i=0 ; i<len ; i++) { a=name[i]; b=name[i+1]; b*=a; c=b%edi; e=edi/a; e+=i; e%=5; c<<=e; f+=c; } sprintf(serial,"%u",f); printf("Serial: "); puts(serial); getch(); return 0;} KeyGen.rar
June 27, 201015 yr I don't usually bother with keygens cause they take so much time, this one was cool though. I found the most of the algo but was too lazy to finish. Edited June 27, 201015 yr by chickenbutt
June 27, 201015 yr function Generate(Src:PByte;len:LongInt):string ;var J,R:LongInt;begin R := 0; if Src = nil then Exit; Src[len] := 10; for j := 0 to len -1 do begin inc(R,((Src[J+1] * Src[J]) mod 547836537) shl (((547836537 div (Src[J]) + J)) mod 5)); end; Result := Format('%d',[R]);end;ID : phpbb3Serial : 275096
Create an account or sign in to comment