6 ms·
UserVoice Security Incident Notification
- RossP 10y ago"In late April, the UserVoice security team learned that an unauthorized party illegally accessed one of UserVoice’s backend reporting systems and was able to view user data on a small subset of users. The user data includes name, email, and a hashed password and salt. Unfortunately, the passwords were hashed with the SHA1 hashing algorithm, which by today’s standards is considered weak. As such, we’re resetting the passwords for all users in our database." Further information: https://status.uservoice.com/incidents/fb7ml8b3nphf https://status.uservoice.com/incidents/fb7ml8b3nphf
- nacs 10y agoJust got an email from Uservoice about this. Apparently I'm part of the "0.001%" that was affected in the breach.
- nsgf 10y agoMe too. Maybe 0.001% is not accurate.
- snoonan 10y agoseconded. I got one too. It seems unlikely we'd converge here if it was only a tiny fraction of users...
- nsgf 10y agoFunny thing, 37 minutes after receiving the first one, i received another notification on a secondary e-mail (also a gmail account) that is used for a toy project's free UserVoice account and is totally unrelated to the first one).
- tempestn 10y agoIt seems likely that they're estimating that percentage, but don't know specifically which accounts were compromised.
- tempestn 10y agoAnother thread on the incident report here: https://news.ycombinator.com/item?id=11664713 https://news.ycombinator.com/item?id=11664713 https://status.uservoice.com/incidents/fb7ml8b3nphf https://status.uservoice.com/incidents/fb7ml8b3nphf There's a bit more info in this one about exactly what was compromised though. While I can understand the abundance of caution in resetting passwords despite only hashes and salts being lost, it is odd that they would "[presume] the attackers may be able to decrypt the passwords," assuming they're using strong encryption.
- runesoerensen 10y agoI wouldn't call resetting passwords an "abundance of caution" in this case. It's very likely that the attackers are able to retrieve passwords when they have the SHA1 hash and the salt (not exactly by decrypting though). Here's a good blog post how and why this is problematic: https://www.troyhunt.com/our-password-hashing-has-no-clothes/ https://www.troyhunt.com/our-password-hashing-has-no-clothes...
- tempestn 10y agoDo they say somewhere that they're only using sha1 though? That's sort of what I meant: if bcrypt or scrypt is used, with an appropriate work factor, the risk should be very minimal. The fact that they're assuming it's not suggests they are using weaker encryption.
- runesoerensen 10y agoYes they said that in the first paragraph of the incident report you posted a link to ;) Unfortunately, the passwords were hashed with the SHA1 hashing algorithm, which by today’s standards is considered weak Also, hashing != encryption
- tempestn 10y agoAhh thanks. I read the email they sent out, which had very similar content, but omitted that bit. Just skimmed the post itself, but obviously missed that key info. Interesting that they don't include strengthening their encryption (ok, hashing) in the list of steps they plan to take, but presumably they will.