Jump to content
Krisler12™

Keygenning crackmes by Krisler12

Recommended Posts


#include <windows.h>
#include <stdio.h>

DWORD rol(DWORD value, DWORD places)
{
return (value<<places)|(value>>(32-places));
}

DWORD ror(DWORD value, DWORD places)
{
return (value>>places)|(value<<32-places);
}

int main()
{
char name[MAX_PATH];
printf("Name:"); gets(name);

char str_xor[MAX_PATH];
for(int i=0;i<strlen(name);i++)
{
str_xor[i]=name[i]^0x40;
}

DWORD fin_xor=0;
DWORD store=0;
BYTE first=name[0];
for(int i=0;i<strlen(name);i++)
{
store=store>>8; store=store<<8;
store|=(str_xor[i]&0xFF);
store*=first;
store+=first;
store=rol(store,4);
store^=0x14;
store=ror(store,4);

if(i<4)
{
fin_xor|=(store&0xFF)<<(i*8);
}
}

DWORD serial=store^fin_xor;

printf("Serial=%u\n",(DWORD)serial);

getchar();
return(0);
}

Link to comment
Share on other sites

L-am incarcat undeva unde se descarca cu o viteza mai mare si nu are limita.

Download Keygenning - the basics.rar

L-am facut sa aiba o marime mai mica dar de geaba ca tot nu imi da voie pe youtube.

Ptr. cei care vreti sa exersati:

Download Easy Keygenme1 - Copy.rar

http://www.virustotal.com/ro/analisis/406506c3294fdd21e3c27c89811f5b1cc4176729f5458e02a19336eefd046d29-1278566677

Edited by Krisler12™
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...