Decode email address from Gravatar hash? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T04:52:36Zhttp://stackoverflow.com/feeds/question/415http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/415/decode-email-address-from-gravatar-hash12Decode email address from Gravatar hash?Prakash2008-08-02T11:40:44Z2008-10-17T13:19:57Z
<p>I suppose, Gravatar generates the image from email address. If so, the reverse should be possible. How difficult would be to get the email associated with the image? Isnt it a potential spam threat?</p>
<p>What are your thoughts? (other than calling me paranoid ;) i did that already)</p>
http://stackoverflow.com/questions/415/decode-email-address-from-gravatar-hash/421#4216Answer by Karl Seguin for Decode email address from Gravatar hash?Karl Seguin2008-08-02T11:59:58Z2008-10-07T12:11:13Z<p>Gravatar uses an md5 hash. Now, typically you'd run the risk of a brute force dictionary attack, but emails tend to content pretty abnormal words...for example, I'd be surprised if a dictionary of words contained "stackoverflow", and then to add the permutations of ".com", ".net" and ".org" plus the many possibilities of usernames (which may be an alias rather an a real name), and I think it's reasonably safe.</p>
<p>That said, they probably could have used something other than MD5. MD5 is a hashing algorithm meant for speed. This is a common mistake for people who hash passwords. You should pick something intentionally slow, so that brute force attacks are even less likely.</p>
http://stackoverflow.com/questions/415/decode-email-address-from-gravatar-hash/423#42314Answer by Peter Coulton for Decode email address from Gravatar hash?Peter Coulton2008-08-02T12:07:17Z2008-08-02T12:28:37Z<p>@Karl: You are right. I tried a reverse MD5 lookup on a few of the gravatars on stackoverflow and didn't get any results so I wrongly assumed they were salting. </p>
<p>I did some checking (instead off faulty reasoning) and the <a href="http://en.gravatar.com/site/faq/" rel="nofollow">gravatar FAQ</a> explains their justification for using plain md5 hashes:</p>
<blockquote>
<p>"MD5 is plenty good for obfuscating the email address of users across the wire. if you're thinking of rainbow tables, those are all geared at passwords (which are generally shorter, and less globally different from one another) and not email addresses, furthermore they are geared at generating anything that matches the hash, NOT the original data being hashed. If you are thinking about being able to reproduce a collision, you still don't necessarily get the actual email address being hashed from the data generated to create the collision. In either case the work required to both construct and operate such a monstrocity would be prohibitively costly. If we left your password laying around in the open as a plain md5 hash someone might be able to find some data (not necessarily your password) which they could use to log in as you... Leaving your email address out as an md5 hash, however, is not going to cause a violent upsurge in the number of fake rolex watch emails that you get. Lets face it there are far more lucrative, easier, ways of getting email address. I hope this helps ease your mind."</p>
</blockquote>http://stackoverflow.com/questions/415/decode-email-address-from-gravatar-hash/425#4252Answer by Karl Seguin for Decode email address from Gravatar hash?Karl Seguin2008-08-02T12:09:40Z2008-08-02T12:09:40Z<p>@Peter:
I'm pretty sure they aren't salting. Since you can drop a gravatar link on your website, the salt would need to be made public anyways.</p>http://stackoverflow.com/questions/415/decode-email-address-from-gravatar-hash/446#446-7Answer by Karl Seguin for Decode email address from Gravatar hash?Karl Seguin2008-08-02T13:19:30Z2008-08-02T13:19:30Z<p>peter, you could mark my answer up ;)</p>http://stackoverflow.com/questions/415/decode-email-address-from-gravatar-hash/726#7261Answer by Michael Stum for Decode email address from Gravatar hash?Michael Stum2008-08-03T15:27:59Z2008-08-03T15:27:59Z<p>Hash Algorithms are one way, and it's absolutely impossible to get the e-Mail address back, because there is an <strong>unlimited</strong> amount of input data that will generate the same hash, which in terms means that you will get an unlimited number of output data from any hash.</p>http://stackoverflow.com/questions/415/decode-email-address-from-gravatar-hash/731#7310Answer by ICR for Decode email address from Gravatar hash?ICR2008-08-03T15:35:28Z2008-08-03T15:35:28Z<p>@Michael - It's not true that it's "absolutely impossible". It is difficult, it may take more time than is available, but it is not "absolutely impossible". For instance, see http://en.wikipedia.org/wiki/Rainbow_table</p>http://stackoverflow.com/questions/415/decode-email-address-from-gravatar-hash/738#73830Answer by Michael Stum for Decode email address from Gravatar hash?Michael Stum2008-08-03T15:49:53Z2008-10-17T13:19:57Z<p>@<a href="#731" rel="nofollow">ICR</a>: It <strong>IS</strong> absolutely impossible, no "but".</p>
<p>A Rainbow Table helps to get a match for a given Hash, but you will <strong>NEVER</strong> be able to get the exact input (well, there is indeed a chance of 1 to unlimited to get it, but you would not know whether or not that was the exact input). If you could get the exact Input from a 128-Bit Hash, you would just have invented the best compression algorhithm in the world.</p>
<p>There are unlimited possibilities that will all produce the exact same hash.</p>
<p>Let me explain a bit more in detail.
Image a Hash algorithm where "foo" and "bar" will result in the same hash, let's say "HAsh1!".</p>
<p>Now, you get the Hash - HAsh1!. How do you know if the input data was "foo" or "bar"? You can't, and you will never ever be able to.</p>
<p>Now, what is the problem and what are rainbow tables used for?</p>
<p>Imagine you hack my user database, and you check the Users-Table.
My Login is usually stored in cleartext, so you know to log in with "mstum".
But my password is hashed. I used "trez" with incidentially also hashes to HAsh1!.</p>
<p>You check my hashed password, which us HAsh1!, but you do not know that my plaintext password is trez.
But the point: You don't NEED to know that. You grab your Rainbow Table for HAsh1! and see "foo".</p>
<p>So you go to the page you just got the user data for, and you log in as "mstum" with "foo". Despite me having used "trez" as password, you will successfully log in with "foo" because the hash is exactly the same.</p>
<p>This is called a colision: 2 Input Values having the same hash. On MD5, there are only 128 Bit, whereas on SHA-512 there are 512 Bit, but you WILL still have infinite inputs which will result in the same hash.</p>
<p>So: Rainbow tables solve one of the two problems hackers want to solve - it allows them to authenticate as any user they got the hash for.</p>
<p>The second problem that hackers have is a bit off-topic: How do you give the user some file (for example, a manipulated Setup File that includes Malware or that is a modified version of a tool that does bad stuff) that will successfully have the same Hash? When you check some popular download pages or open source sites, they will have "Setup.exe, MD5 Hash: f387......". While there WILL BE infinite possibilities to produce something that hashes to f387..., the hacker needs to modify the Setup.exe in a way that it contains his Malware AND hashes to f387.... This hard, but possible. On MD5, this is now possible with a reasonable timeframe, which is why MD5 should not be used anymore unless a standard requires it or if security is not a concern.</p>
<p>For Gravatar, Security does not need to be a concern, so MD5 is fine and <strong>they</strong> want something that is fast since it's not security-related.</p>
<p>Edit: Here is a real world example, the one that was used to show collisions in MD5:</p>
<pre>
d131dd02c5e6eec4693d9a0698aff95c 2fcab58712467eab4004583eb8fb7f89
55ad340609f4b30283e488832571415a 085125e8f7cdc99fd91dbdf280373c5b
d8823e3156348f5bae6dacd436c919c6 dd53e2b487da03fd02396306d248cda0
e99f33420f577ee8ce54b67080a80d1e c69821bcb6a8839396f9652b6ff72a70
</pre>
<p>and</p>
<pre>
d131dd02c5e6eec4693d9a0698aff95c 2fcab50712467eab4004583eb8fb7f89
55ad340609f4b30283e4888325f1415a 085125e8f7cdc99fd91dbd7280373c5b
d8823e3156348f5bae6dacd436c919c6 dd53e23487da03fd02396306d248cda0
e99f33420f577ee8ce54b67080280d1e c69821bcb6a8839396f965ab6ff72a70
</pre>
<p>both hash to 79054025255fb1a26e4bc422aef54eb4.</p>
<p>So, given the hash - how do you know which one of the two was used?</p>
http://stackoverflow.com/questions/415/decode-email-address-from-gravatar-hash/1192#11922Answer by Xenph Yan for Decode email address from Gravatar hash?Xenph Yan2008-08-04T12:42:40Z2008-08-04T12:42:40Z<p>@Michael Stum, it is possible, because only one of the values to generate the hash would be a valid email address, so you could avoid collisions.</p>http://stackoverflow.com/questions/415/decode-email-address-from-gravatar-hash/1201#12012Answer by Michael Stum for Decode email address from Gravatar hash?Michael Stum2008-08-04T12:59:39Z2008-08-04T12:59:39Z<p>Hmm.. I don't think so. As there are infinite possible inputs, I believe there are also infinite valid e-Mail addresses in there. Since we are talking about a huge (as in "the size of a small supermassive black hold") result set here that would take some time (as in "years") to calculate, but you will never know if you hit the correct e-Mail address.</p>
<p>The chance of actually creating a collision is really small (1 : 2^128 if i'm not mistaken), but that does not make it much easier trying to find an e-Mail address for a given hash.</p>http://stackoverflow.com/questions/415/decode-email-address-from-gravatar-hash/54195#541954Answer by Jeff Atwood for Decode email address from Gravatar hash?Jeff Atwood2008-09-10T14:30:10Z2008-09-10T14:30:10Z<blockquote>
<p>MicroID is basically a hash calculated using a user's profile page URL and registered email address, producing a token that makes the email address vulnerable to dictionary attacks. To see how easy it was to crack these tokens, I conducted a small study, choosing 56,775 random Digg users, and cracking the email addresses of 14,294 of them (25%) using just their MicroID, username, and a list of popular email domains. </p>
</blockquote>
<p><a href="http://yro.slashdot.org/article.pl?sid=08/08/28/2241238" rel="nofollow">http://yro.slashdot.org/article.pl?sid=08/08/28/2241238</a></p>
<p>Not sure if this relates to the Gravatar hash, exactly, but interesting.</p>
http://stackoverflow.com/questions/415/decode-email-address-from-gravatar-hash/54441#544412Answer by wvdschel for Decode email address from Gravatar hash?wvdschel2008-09-10T15:37:26Z2008-09-10T15:37:26Z<p>The hash collision answer is a nice one, but we're forgetting something here:
<strong>we know what to expect!</strong>. We know that we're looking for <strong>realistic email addresses</strong>.</p>
<p>This not only gives us a pattern to match all potential results against, but also simplifies the attack pattern for brute force attacks.</p>
<p>Given that we don't require everyones address, but just want to get lots of addresses quickly, we could go even further: 80% of all email accounts are supplied by a major provider. Just trying @gmail.com, @hotmail.com, ... with short word or dictionary attacks are feasable, and building a <em>good</em> database for looking up many addresses also becomes much easier.</p>
http://stackoverflow.com/questions/415/decode-email-address-from-gravatar-hash/54551#545511Answer by Re0sless for Decode email address from Gravatar hash?Re0sless2008-09-10T16:11:59Z2008-09-10T16:11:59Z<p>If you had enough time and incentive to crack a gravatar email address then I guess using <a href="http://beta.stackoverflow.com/questions/415?sort=oldest#54441" rel="nofollow">wvdschel</a>'s method to building a hash table based on known domains (@gmail.com, @hotmail.com) would be the fastest approach, but than wouldn't you have a table with every possible gmail/ hotmail email address? from a@gmail.com to zzzz...zzz@gmail.com, so from a spammer point of view, why at that point would he/she need to crack the gravatar? as they could just spam every one under the sun, after all who cares if you get a few thousand bounce back when your a prince trying to get your gold out?</p>
<p>and on a side note, looking a cross section of people on stackoverflow (a site that uses gravatars), linking to your blog's, I can easily find email addresses for about 70ish% of users with a web site listed.</p>
http://stackoverflow.com/questions/415/decode-email-address-from-gravatar-hash/56290#562900Answer by wvdschel for Decode email address from Gravatar hash?wvdschel2008-09-11T11:22:45Z2008-09-11T11:22:45Z<p><a href="http://beta.stackoverflow.com/questions/415/decode-email-address-from-gravatar#54551" rel="nofollow">@Re0sless</a>
You would indeed have a database of all email adresses, but 90% of those would bounce. So mailing to all those takes time (given the speed limits of real world networks), and thus reduces effectiveness of your spamrol.</p>
<p>Following through to the sites is indeed a more effecient way to get around this, but defeats the purpose of this question. Also, it requires a notion of context and site structure.</p>
<p>Besides, only a fool would show his own email in an easily bot-readable form on their site. I know, because I used to. Spambots find you in no time, just crawling the web with a simple email regex.</p>
http://stackoverflow.com/questions/415/decode-email-address-from-gravatar-hash/67595#675959Answer by tialaramex for Decode email address from Gravatar hash?tialaramex2008-09-15T22:24:15Z2008-09-15T22:53:40Z<p>Michael Stum is way off here, but he has a big green check mark that means his answer will forever appear as the "correct" one despite the mistakes...</p>
<p>Let's handle the second part of his answer first, which is a little off-topic. He's just completely wrong here. Given a file from an "open source site" and the MD5sum of that file you can't make another different file with the same hash. There may some day be a breakthrough that makes this possible, but that day is not here and may be years or decades away.</p>
<p>Why does Michael think this is possible? A simple mistake. He's read that it's possible to create two different files with the same MD5sum by forcing a certain type of collision, this result was reported in 2004 and has been improved since. But, this is not the same problem. In cryptography the type of attack Michael <em>claimed</em> was possible is called a pre-image attack, and for MD5 there is as yet no practical pre-image attack, where as what was actually found is merely a collision, the easiest type of attack to find against a hash, and no doubt a reason not to choose MD5 for new applications, but not, and this is worth emphasising, NOT a reason not to trust MD5sums provided for software downloads, nor a reason (on its own) to avoid MD5 in password hashes.</p>
<p>OK, now the more relevant earlier part of Michael's answer. Here's the trouble: Spammers and similar Attackers don't care that one person in a billion has an email address that looks like an exercise in obfuscated Perl - they want the bulk of addresses. Given a list of 5 million Gravatar hashes, at least 4 million are hashes of fairly ordinary looking email addresses like "firstname.lastname@example.com". These are 128-bit hashes, so any arbitrary string has a one in 2^128 chance of hashing to the same value, but that's a very big number and there simply aren't 2^128 plausible stereotypical email addresses. So long as we only want a reasonable factor like say 50% chance of reversing, we can brute force this problem. Try the ten million most likely firstname / lastname combinations, with up to a million domain names taken from registrar's lists, and you have 10 billion values to try. For a one shot attack you just do it brute-force, 10 billion MD5 calculations is childs play. But if you were a spammer and had access to a crawler looking for fresh Gravatar URIs every day, you'd build a rainbow table so that you can spread the compute time over a potentially unlimited supply of hashes.</p>
<p>Now, is there a way around this? Well, yes and no. There's no way to fix this without changing something. But the minimal change is fairly painless. The way to defeat rainbow tables is to add salt and waste CPU cycles, just as with passwords. You can add salt by asking everyone to pick a favourite word, and type that in along with their email address when generating a Gravatar or an account that needs a Gravatar. It doesn't matter what word they pick, so long as its always the same they get the same Gravatar. Now an attacker must guess not only a plausible email address, but also a random word. That makes their chances of success orders of magnitude smaller. Meanwhile you also switch from MD5 (designed to be fast) to a password hash (designed to be slow). When calculating the hash you now work a little harder, but the attacker must work proportionally harder too. If your CPU takes 0.5 seconds to generate your gravatar when creating an account, the attacker must waste 0.5 seconds per guess, and that will soon exhaust him.</p>