![]() |
|
|||||||
| FastMail Forum All posts relating to FastMail.FM should go here: suggestions, comments, requests for help, complaints, technical issues etc. |
![]() |
|
|
Thread Tools |
|
|
#1 |
|
The "e" in e-mail
Join Date: Dec 2004
Location: a virtually impossible but finitely improbable position
Posts: 2,324
|
Massive Hack, Billions of credentials stolen... Was Fastmail affected?
http://www.nytimes.com/2014/08/06/te...ials.html?_r=0
Read this article on the NYT and I got concerned... Not sure if Fastmail was targeted... Seems to be a massive database - - probably a collection of stolen credentials obtained through the open ssl and other hacks? If so, maybe Fastmail was not affected? Anyhoo... Would be nice to hear if our data is secure. /cl |
|
|
|
|
|
#2 |
|
Intergalactic Postmaster
Join Date: May 2004
Location: Irving, Texas
Posts: 9,131
|
What matters most is how you create your passwords. If you use the same password for Fastmail and other sites, a security breach at any of these sites could compromise your Fastmail password (since you are sharing that same password with multiple sites). And if your Fastmail password isn't extremely secure (long and impossible to guess) it can be compromised by those botnets. As long as you have a complex password, I think the greater threat is reusing your Fastmail password at another website. I recommend use of password safe programs or other techniques allowing you to use different long random passwords at different sites, or use of different long word strings you can remember. Since so many of us have well over a dozen important passwords, I don't see getting around using password safe programs or similar secure password storage which can't be easily hacked. Of course, your remembered password for the password safe software needs to be one very secure string you can remember.
Bill |
|
|
|
|
|
#3 |
|
Essential Contributor
Join Date: May 2004
Posts: 265
|
Here's the sidebar from that linked article -
http://www.nytimes.com/interactive/2...sian-hack.html So now I have to change all my passwords again - and try to remember them - and every place needs a different pw! |
|
|
|
|
|
#4 | |
|
Intergalactic Postmaster
Join Date: May 2004
Location: Irving, Texas
Posts: 9,131
|
Quote:
![]() |
|
|
|
|
|
|
#5 | |
|
Essential Contributor
Join Date: May 2004
Posts: 265
|
Quote:
But then if someone gets that one secure pw they have access to everything? |
|
|
|
|
|
|
#6 | |
|
Intergalactic Postmaster
Join Date: May 2004
Location: Irving, Texas
Posts: 9,131
|
Quote:
The main issue with both spam and general Internet security is that users tend to always use the same email address, login ID, and password at multiple accounts. The hackers use automated scripts running on zombie computers (so the attacks come from a huge range of previously trusted IP addresses) with one of your ID/password pairs and if it matches at another site they are easily into your account. If you use different login ID and password pairs at each site, they can't use that technique. If credit cards had a secure challenge/response feature, the name and numbers on the card would be of little use to a hacker. Again, we use the same card information everywhere, and since you can make orders with nothing but that data (and the card account name and billing address) it's a disaster when a server holding many such card entries is breached. Bill |
|
|
|
|
|
|
#7 |
|
The "e" in e-mail
Join Date: May 2003
Location: mostly in Thailand
Posts: 3,141
|
Some will consider the suggestions below suspect, but they have stood the test of time. If you do not want to use a password generator, such as Bill suggests, here is another pretty secure scheme:
|
|
|
|
|
|
#8 |
|
Essential Contributor
Join Date: Oct 2008
Posts: 228
|
I've been using BritTim's strategy for a while now for most of my pw's and like it.
|
|
|
|
|
|
#9 |
|
The "e" in e-mail
Join Date: Nov 2005
Location: San Francisco
Posts: 2,281
|
I really like 1Password as my password manager.
|
|
|
|
|
|
#11 |
|
Junior Member
Join Date: May 2012
Location: Arizona
Posts: 22
|
I use a method similar to BritTim's.
|
|
|
|
|
|
#12 |
|
Essential Contributor
Join Date: Mar 2014
Posts: 212
|
It's a pretty insecure scheme. The problem is that some websites store the plain password in their database without applying a cryptographically sound hash. Or even if they do secure hashing, their server may be hacked and the hacker might obtain unhashed passwords. It'll be easy to figure out the scheme. Even more when someone has access to two hacked databases.
There is only one secure password scheme and that is using different, long, random high-entropy passwords for every site. If some site gets hacked, you just replace the password and you do not have to worry that someone will be able to figure out the simple transformation of password -> <some easy to derive characters from the site's name>password<optional one character prefix>. If people want to stick to a BritTim-like scheme, *please* run the whole thing through a good hash function first, and use that as a password. That will at the very least make it harder to discover the relation between the nearly-identical passwords. You shouldn't use SHA-1, but just as an example to show why hashing such passwords is good: Code:
~ % echo "ppalSuperSecurePassword" | openssl dgst -binary -sha1 | openssl base64 S85shs0K5glNGpuOf0g/zxPYLB4= ~ % echo "googSuperSecurePassword" | openssl dgst -binary -sha1 | openssl base64 pT6XXfQ66oCQWYrHUnn0zDBdIrU= Last edited by danieldk : 11 Aug 2014 at 03:11 PM. |
|
|
|