How to uncode MD5 hash?
#1

How to uncode MD5 hash? Is there a program?
Reply
#2

Nope, but there are databases which have the most words saved. ****** for it.
Reply
#3

But wait im not really sure if its MD5 hash, have a look and tell me what it is
Код:
password=361628546
Reply
#4

Looks like a CRC32, adler32 for me, but it can be everything, I can't give a correct answer. Take a look in your GM or FS where it registers the account.
Reply
#5

Код:
stock tohash(buf[]) {
	new length=strlen(buf);
    new s1 = 1;
    new s2 = 0;
    new n;
    for (n=0; n<length; n++)
    {
       s1 = (s1 + buf[n]) % 65521;
       s2 = (s2 + s1)     % 65521;
    }
    return (s2 << 16) + s1;
}
Reply
#6

MD5 would use letters to, so you'll get something like ah5a4grar456afdsda5 with it.
Reply
#7

Quote:
Originally Posted by Moron
Посмотреть сообщение
Код:
stock tohash(buf[]) {
	new length=strlen(buf);
    new s1 = 1;
    new s2 = 0;
    new n;
    for (n=0; n<length; n++)
    {
       s1 = (s1 + buf[n]) % 65521;
       s2 = (s2 + s1)     % 65521;
    }
    return (s2 << 16) + s1;
}
Yes, this is adler32. I don't know what to say more, I don't think I'm able to decrypt that.
Reply
#8

Instead of decoding it, you can encode player's input, then strcompare with the real encoded password
Reply
#9

There are a few applications in here.
Reply
#10

I only found some programs that can code to adler32, but not uncode ;/
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)