How Can I decode udb_hash ?
#1

hello,
i want to decode the result of udb_hash, because i use it to save passwords ina dudb.sav file and i need to know the password (because, if someone forget his password, i will get it by mail).

The code to encode it's:

stock udb_hash(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
#2

The point of hashing is that you cant decode it.
Reply
#3

You could do it via bruteforcing. Maybe u write a own program, which uses you GPU, then u can reach a speed of 800 million hash/sec
Reply
#4

Change it so that it doesn't hash at all... make it save it in MD5
Reply
#5

md5 is the same as the ubd hash
Reply
#6

Go online and find a MD5 decoder. I know there's got to be a few out there.
Reply


Forum Jump:


Users browsing this thread: 4 Guest(s)