vote up 0 vote down star

Possible Duplicate:
Is it possible to decrypt md5 hashes?

Well, first of all, is it possible to decrypt md5 or sha1?

The reason why I need to decrypt is:

I have an application, which passes POST parameters in sha1 form, lets say he wants to pass 1234, the 1234 will be hashed using sha1 (or md5), so the url string will be like this:

www.domain.com/index.php?var=kskn312n3jnkn123...

How do I get the value back? I mean, after the var variable, how to convert back to 1234. (1234 is the score that the user wants to pass).

EDIT:

Based on Greg answer:

Can i do this:

the url: .../?score=uabsdiubasdbjasbkd.

Then in php:

$get = $_GET['score']; 

if ($get == sha1($str + 'secret'))

so, the score is $str, which I am going to insert to database. Is it what Greg means? Please advice/correct me if I am wrong. I am new to php. Thanks

flag

closed as exact duplicate by Bill the Lizard Sep 21 at 14:50

8 Answers

vote up 9 vote down check

you can't. That's the purpose of one-way hashes. Cracking it via a dictionary attack is possible, but you are trying to solve your problem (assuming you have one) with the wrong tool.

Additional notes: What you have there is a GET string, not a POST. If your problem is "I don't want the user to see the data in clear text", then you need an agreed one-time encryption key, or a public key from your server, and then encrypt the data so that only the server can decrypt it (with its private key)

link|flag
encryp and decryption key? I need to check that out. btw, is Greg answer is one of encrypt and decrypt key method (public and private key)? – xiasue1982 Sep 21 at 14:30
Greg's method is a clever use of hashing to authenticate your submission. Given that once you hash something, you can't go back, your client is required to pass both the value and the hashed value itself with an added "salt" token that only the server knows. In order to cheat the system, you would have to know the salt and use it to forge a cheated score hash, but this is too hard to the limit of being impossibile if you generate a one-time, throw away salt. – Stefano Borini Sep 21 at 14:34
thanks for the explanation. just 1 more question: Can you correct/verify my edited question? Is my method correct or secure? – xiasue1982 Sep 21 at 14:38
it's correct, but remember that the weakness of this solution is the level of secrecy of your secret key. I would not use what you wrote for a bank. – Stefano Borini Sep 21 at 15:27
No worry. Its not for bank, it just for a big application lol Anyway, thanks for the help :) – xiasue1982 Sep 21 at 15:50
vote up 0 vote down

you can use rainbow tables (very large tables of allready known md5 values) to compare to your hash and get the original value. tho u probably also need the salt/master key :)

small chance

link|flag
vote up 0 vote down

MD5 and SHA1 are one-way hashes, as many have pointed out. At any rate, you shouldn't have access to the plain text passwords ("1234") in the first place, it's a major privacy no-no. If you're not trying to pass passwords this way and your aim is not authenticating, a hash is not the correct way to do it. If you're merely trying to avoid forgery, perhaps a look on digital signatures might point you in the right direction.

link|flag
vote up 2 vote down

Decryption is the wrong term here. MD5 and SHA-1 are hash functions. As the name implies they destroy things. Mainly, they create fixed-length strings from arbitrary-length input. It's not encrypted. The easiest way you could picture it would be to take blender, put some random garbage into it, put your input string into it as well and then turn it on. Afterwards you take exactly 128 or 160 pieces of tiny particles from the blender and that is your hash.

You have no way of actually reversing the operation.

There are ways of attacking hash values by means of dictionary attacks or rainbow tables. But that are specialized methods and are not really comparable to decrypting something.

link|flag
vote up 0 vote down

Like Stefano said. They only work in one direction. Lookup cryptographic hash function.

link|flag
vote up 4 vote down

A hash is a one-way operation: there's no way to reverse it.

What you can do is pass the score and the hash of the score, then re-hash the passed score (along with your secret salt) and make sure it matches the hash in the URL.

Something like this - to encode:

url = 'www.domain.com/?score=1234&hash=' + md5(1234 + 'superSecret');

then to check

if ($_GET['hash'] != md5($_GET['score'] + 'superSecret'))
    die('Cheater!');

Of course if your superSecret key gets out (the user gets hold of it) then they can cheat with impunity.

link|flag
nice technique. – Stefano Borini Sep 21 at 14:23
Note that this is still quite insecure; because it can be trivially bruteforced. – silky Sep 21 at 14:26
if the salt is big enough, or a one-time salt you store in a db, retrieve at the next query, and throw it away afterwards, good luck. – Stefano Borini Sep 21 at 14:31
@silky: how would you trivially brute-force this? – Kip Sep 21 at 14:32
i think a better solution (unless the site is very large) would be just to make score a session variable – Kip Sep 21 at 14:33
show 9 more comments
vote up 0 vote down

In this case you compare it against what you expect, and determine the value that way.

Note that I'm not certain what you're doing, but if you're just going to be hashing a score, and passing it across, with no other random data inside, it's effectively useless for any 'security' purposes.

link|flag
vote up -1 vote down

You cannot (yet) because MD5 and sha1 are desctructive algorithm, wich means you can't go back.

Edit : As Jon Skeet said, you can go back, but you can't be sure that what you got back is the original string that was hashed.

However, you can use a dictionnary attack to revert the md5. It is a database which contains a lot of words and their md5 hash.

I heard there was some collisions on md( which could lead to sometimes a way to go back and have the original value.

So no, you can't (almost never).

link|flag
4  
Well, you can go back and get an original value which would lead to the same hash. There's no guarantee it'll be the right one though. – Jon Skeet Sep 21 at 14:21
Jon: Well actually, MD5 used to mean that it was the right one. Now with the attacks, it simply means MD5 is dead. – silky Sep 21 at 14:25

Not the answer you're looking for? Browse other questions tagged or ask your own question.