Jump to content
Tuts 4 You

[Keygenme] Ch#1


dim_cr

Recommended Posts

Huh... i wrote a cracker for this and it was working for 1hour

but brute forcing a serial for this is near to impossible!

will try again :)

Link to comment
Share on other sites

not hard

~30 min - for write bruter

~20 min - for brute

correct serials:

A69D43CF

FA0CF945

bruter code, on delphi:


procedure frmMain.Brute;
var
res, i, n, c_: dword;
begin
Memo1.Clear;
c_ := $0;
while true do
begin
Application.ProcessMessages;
res := $811C9DC5;
for i := 7 downto 0 do
begin
n := c_ shr (4 * i) and $F;
if n in [0..9] then
n := n + $30
else
n := n + $37;
res := (res xor n) * 16777619;
end;
if res = $D825C8DF then
Memo1.Lines.Add(IntToHex(c_, 8)); inc(c_);
if c_ = $FFFFFFFF then
break;
end;
end;
  • Like 1
Link to comment
Share on other sites

not hard

correct serials:

A69D43CF

FA0CF945

....

congratz. good solution.

my solution in C++:


#include "stdafx.h"
#include "time.h"int _tmain(int argc, _TCHAR *argv[])
{
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
char *table="0123456789ABCDEF";
char key[]="00000000";
time_t start,
finish;
double elapsed_time; int serno=1;
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/ time(&start);
for (unsigned int a=0; a < 16; a++)
{
key[0]=table[a]; for (unsigned int b=0; b < 16; b++)
{
key[1]=table[b]; for (unsigned int c=0; c < 16; c++)
{
key[2]=table[c]; for (unsigned int d=0; d < 16; d++)
{
key[3]=table[d]; for (unsigned int e=0; e < 16; e++)
{
key[4]=table[e]; for (unsigned int f=0; f < 16; f++)
{
key[5]=table[f]; for (unsigned int g=0; g < 16; g++)
{
key[6]=table[g]; for (unsigned int h=0; h < 16; h++)
{
key[7]=table[h]; unsigned int hash=0x811C9DC5;
for (unsigned int i=0; i < 8; i++)
{
hash^= (unsigned char) key[i];
hash*=0x1000193;
} if (hash == 0xD825C8DF)
{
time(&finish);
elapsed_time=difftime(finish,start);
elapsed_time/=60;
printf("Correct key #%d is:",serno);
printf("%s -> %6.2f mins.\n",key,elapsed_time);
serno+=1;
};
}
}
}
}
}
}
}
} time(&finish);
elapsed_time=difftime(finish,start);
elapsed_time/=60;
printf("All serials bruted for %6.2f mins.\n",elapsed_time); char ch;
scanf_s(" %c",&ch); return 0;
}

All serials bruted for 2.98minutes

Link to comment
Share on other sites

  • 14 years later...
tarequl.hassan

Dear All

The above two serial is not working for me. Anyone tested it?

 

Thanks 

  • Like 1
Link to comment
Share on other sites

Sean Park - Lovejoy

Hey man.

Only 2 keys exist?

right?

working fine in my machine.

2024-01-12_123631.png.0f2741f7fe29aa3b08b53f201b5ea298.png

 

2024-01-12_123705.png.fc9c4fd18d2ee61c4e7ee86370c88ace.png

 

Regards.

sean.

Link to comment
Share on other sites

12 hours ago, windowbase said:

Hey man.

Only 2 keys exist?

right?

working fine in my machine.

2024-01-12_123631.png.0f2741f7fe29aa3b08b53f201b5ea298.png

 

2024-01-12_123705.png.fc9c4fd18d2ee61c4e7ee86370c88ace.png

 

Regards.

sean.

Hellow Widowbase

Can you share the compiled keygen

Thanks

  • Like 1
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...