Live data from Hacker News

LinkedIn password leak

usblog.kaspersky.com

141–150 of 218 posts

Re: LinkedIn password leak

#141

Earlier quoted context omitted.

"Some are in the middle, like my LinkedIn account, or my gmail account" Your email account is the golden key to all other accounts that send "forgot password" links to it.

I don't use it myself but I would think that you wouldn't want your "professional" social network account to fall in the wrong hands either.

You rightly put "professional" in quotes. For tech people, LinkedIn is just a way to sign up for recruiter courting.

Re: LinkedIn password leak

#142

Earlier quoted context omitted.

I don't like that you have to specify a fixed number of numbers, special chars, etc.

if it's truly random, then you need to if you want to guarantee you have at least 1 of various character classes..

The -M option does this in apg. (As opposed to -m, which doesn't.)

Re: LinkedIn password leak

#143
post #139

And LinkedIn is now asking me to enter my phone number: "Add an extra layer of security to your account. Add your phone number." Leaking my email / password is bad enough; I'm not going to give them my phone number for more damages!

Also, access to your phone (or rather anything send to your phone number) is trivial to get via social engineering the telco.

(The attack is not very scalable, but easy enough to pull off against individual targets.)

Re: LinkedIn password leak

#144
post #28

Earlier quoted context omitted.

2009... Awesome. Linkedin should probably be the one warning me about this, but I never heard of this before. Edit: filtered as Spam, nevertheless they should have locked my account.

I believe it's been proven impossible to write a spam filter to distinguish useful LinkedIn email from spammy LinkedIn emails, since the spam filter would then be able to solve the halting problem.

Can't you just write this?:

    isUseful :: LinkedInMessage -> Bool
    isUseful _ = False

Re: LinkedIn password leak

#145
post #18

> test sample passwords with our password checker here. Do NOT do that with your exact password though :)

Link: https://password.kaspersky.com/ I'm impressed by the password cracking estimation with the Tianhe-2 Supercomputer. A 10-character password containing uppercase letters, lowercase letters, and numbers, which is estimated at a 4 year crack with a Macbook Pro, takes 31 seconds on the supercomputer.

62^10 > 2^58. At 2^58 that would take ~ 2.28E+09 guesses per second - I'm really not buying this.

Re: LinkedIn password leak

#146
post #110

Earlier quoted context omitted.

How do you randomly generate these passwords?

I like the password generator and virtual dice roller on https://www.random.org , but I guess it requires one to trust their claims that they are getting numbers from atmospheric noise and not a PRNG secretly.

More importantly, that's over the network so you have to trust the site to not log what it gives back, every CA to not have issued a false cert for them (allowing them to be trivially MITMd), and all software that runs on your computer to boot.

The "PRNG" vs "Real RNG" boogeyman scare is such a load of horseshit.

The whole point of modern PRNGs is that they're good enough computers can't detect patterns. I assure you that you're gaining zero security by using random.org vs openssl rand... and in fact, you're losing massive amounts of security because it's going over the network.

Re: LinkedIn password leak

#147
I'm amazed LinkedIn is as big as it is. They have a big, new, building in Sunnyvale and lots of employees--too many it seems for a simple social network. I drive past their HQ a few times a week when I'm in Sunnyvale and see their employees, who don't look like other tech employees, waddling down the street to the McDonalds on the corner of Mathilda and Delray.

Re: LinkedIn password leak

#148
post #50

1: Change your password. RIGHT NOW. If you’re not sure how strong your password is, test sample passwords with our password checker here. Seriously? Keep in mind that these estimates are based on some bogus entropy estimation. If a password hacking guy runs the correct dictionary past the hashes you password generates, it might be as small, well, as the first one tried. For example, run the passphrase Ph'nglui mglw'n…

As an aside, it can be so difficult to get this across to folks who aren't in the infosec headspace. I've seen even technical, computer science types absolutely not get that their ad-hoc memorable password "but no one would EVER guess that!" schemes are probably much more vulnerable than they estimate. Nevermind, even, true computing laypersons.

We have to rotate our password advice to family and friends every couple years or so. It used to be "use a random combination of memorable words with a number thrown in" a la "reddogbarkhard7". Now I feel like right after guessing the 10k most common passwords a hacker would immediately brute word combinations with a single integer ending.

Re: LinkedIn password leak

#149
post #103

Earlier quoted context omitted.

So, being one of the people who hovers around laymanship when it comes to these questions, how hard is it to crack a randomly generated 25 character string with 5 digits and 5 symbols? This is typically what I would use for a website.

That is a good choice, and it is what I recommend to whoever will listen to me, and a few that won't. I use and recommend 1Password. To evaluate a password manager, check this page https://discussions.agilebits.com/discussion/15416/1password... for good questions to ask. For example, what data they can turn over, what their encryption practices are. Key phrase: "There is no data of yours that we keep, so there is not…

That's an old and outdated page. 1Password has moved to a subscription model, thus storing the encrypted database themselves. The old "offline" option is still around, but it has been deemphasized, for one because they stopped implementing features supporting it (like an offline HTML interface for opvault, or sync with other clouds besides Dropbox). Even more upsetting is that the standalone version is now much more expensive than it was. They did that to increase the attractiveness of their subscriptions of course. And the writing is on the wall really.

Re: LinkedIn password leak

#150

> If you’re not sure how strong your password is, test sample passwords with our password checker here. That is irrelevant in the face of leaked passwords; what matters most in that situation is that your password is something other than your leaked one. If the passwords were leaked due to being stored in plain-text, no amount of complexity would protect them, obviously. Don't use the same password on multiple sites.…

> If the passwords were leaked due to being stored in plain-text, no amount of complexity would protect them, obviously. One assumes LinkedIn does not store plain text passwords anywhere. That would be against best practice for the average PhpBB online forum from the late 90s. It would be criminal negligence from a company like LinkedIn. How strong your password is (and which kind of hashing function the site uses) d…

The said dump contains unsalted SHA1 encrypted passwords: https://www.leakedsource.com/blog/linkedin
Post reply on HN