Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm wondering if it's possible to find a block of text that would hash to a known value. In particular, I'm looking for a function CreateDataFromHash() that could be called as follows:

unsigned char myHash[] = "da39a3ee5e6b4b0d3255bfef95601890afd80709";
unsigned int length = 10000;
CreateDataFromHash(myHash, length);

Here CreateDataFromHash would return the string of the length 10000 containing arbitrary data, which would hash to myHash using SHA1.

Thanks.

share|improve this question
1  
If there was a way to do this in any reasonable amount of time, encryption would not work. – Collin Mar 23 '12 at 14:09
13  
Nice try, NSA. You'll just have to do your own research. – mkb Mar 23 '12 at 14:09
You have to brute force it. See stackoverflow.com/questions/7031288/… – Patrick Lorio Mar 23 '12 at 14:09
why do you need to do this ... maybe if we knew what you're trying to achieve, we can suggest alternative ways because as you can read below - you'll have a very hard time (a very long long log time at that) to do this – scibuff Mar 23 '12 at 14:10
Actually, there are vulnerabilities in MD5 and SHA1, but I think they all rely on having an original text that hashes to that value, and they still take ungodly amounts of processor time. – mkb Mar 23 '12 at 14:16
show 5 more comments

5 Answers

There's no known easy or even moderately difficult way to do this in general.

The entire point of hashes (or so-called one-way functions), is that it's easy to compute them, but next to impossible to reverse their computation (find input values based on output). That said, for some hash functions, there are known methods that may allow computing inputs for a given hash value in reasonable time.

For example, this MD5 sum technique will find collisions (but not input for a given output) in about 8 hours on a 1.6GHz computer.

For SHA-1 in particular you may be interested in reading this.

share|improve this answer

One of the purposes of SHA1 is that this should be very hard to do.

share|improve this answer
Are there any other purposes of a hashing algorithm? – jalf Mar 23 '12 at 14:10
Well storing passwords isn't the only use of hashes. – Andreas Brinck Mar 23 '12 at 14:11
Yes, but all the uses of hashes depend on not being able to force collisions – jalf Mar 23 '12 at 14:11
How hard it is to force a collision will depend on the hashing algorithm and the length of the hash. – Andreas Brinck Mar 23 '12 at 14:14
1  
@jalf No. One other purpose is to spread input data evenly across a range. In hash tables, the ability to force a collision is usually irrelevant (unless you want to guard against DOS attacks via malicious user input on a web server … this is a real problem!). – Konrad Rudolph Mar 23 '12 at 14:15
show 2 more comments

hashing is a one way function. you can't get input from the output.

share|improve this answer
1  
This isn't about getting the original input back. – Cat Plus Plus Mar 23 '12 at 14:10
1  
But if you could, it would be a damn good compression. – twall Mar 23 '12 at 14:12
Sure you can get the input from the output, ever heard of Rainbow tables ? en.wikipedia.org/wiki/Rainbow_table – Walter Stabosz Mar 23 '12 at 14:18
Walter, do you have any paper on how this could be used for SHA1? – user1188404 Mar 23 '12 at 14:22
There isn't much to it. 1. Get a rainbow list for SHA1 hashes (this file will be tens of gigabytes in size), 2. get a program that will run your hash against the list. 3. Wait for hours while the program works. I haven't done this in years, so the wait time may be less on modern processors. – Walter Stabosz Mar 23 '12 at 14:40

This would be a "preimage attack". No such thing is publicly known against SHA-1.

The only attack known against SHA-1 is a collision attack. That means I find two inputs that produce the same result, but neither of them is pre-ordained, so to speak. Even so, this attack isn't really feasible for most people -- based on the amount of computation involved, the closest I can figure is that you'd have to spend somewhere in the range of a few million dollars to build a machine that would give you about one colliding pair of keys per week (assuming it ran, doing nothing else 24/7).

share|improve this answer
I just need to add, this is not about getting the correct string of data. But maby it doesn't matter when it comes to time? – user1188404 Mar 23 '12 at 14:17
@user1188404: Yes -- getting the original string back isn't even theoretically possible except by accident. This is just about finding a pair of inputs that produce the same result (in fact, the colliding pairs that are found are normally only a few bytes long). – Jerry Coffin Mar 23 '12 at 14:29

You have to brute force it. See

PHP brute force password generator

Get string, do hash, compare, repeat

share|improve this answer
1  
Or google the hash string and see if someone has already done it :P – jcoder Mar 23 '12 at 14:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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