Comments on: Don’t Make Me Make a Password https://simpleprogrammer.com/dont-make-me-make-a-password/ Wed, 20 Jul 2016 05:46:46 +0000 hourly 1 https://wordpress.org/?v=7.0 By: jsonmez https://simpleprogrammer.com/dont-make-me-make-a-password/#comment-162 Wed, 12 May 2010 17:02:47 +0000 https://simpleprogrammer.com/?p=856#comment-162 In reply to Bryan.

You have a good point, but one thing to consider is the difference between personal data and private data.

Personal data is stuff you might not want people to have, but you it won’t be devastating for them to have. Anything you ever put out on the internet, you should consider that someone has access too.

Private data is stuff that will cost you money or real damage if someone gets access to it. Credit card numbers, social security numbers, passwords to accounts that contain data that has a monetary value.

From a developer perspective, we create a PR problem if we let personal data get out, but we create a financial problem that we will have to make restitutions for if we let private data get out. I would rather put the private data into someone else’s hands than be responsible myself.

It is always good to say on your site, “we never store any of your personal data.”

]]>
By: Bryan https://simpleprogrammer.com/dont-make-me-make-a-password/#comment-161 Wed, 12 May 2010 16:23:01 +0000 https://simpleprogrammer.com/?p=856#comment-161 I am a bit wary of delegating the security over to someone else. I believe it raises your attack profile just as much as using the same password at all sites.

If one site gets compromised your info at other sites is also compromised. Look at the recent Facebook connect issue with yelp. Someone was able to circumvent yelps security and in turn gained access to personal Facebook information. Facebook was able to shut down access to yelp pretty quickly but who knows how much info could have been mined.

I think security is always going to be one of those annoying necessities and, ultimately in the end, it is going to fall upon the user to protect him/her self.

]]>
By: Bryan https://simpleprogrammer.com/dont-make-me-make-a-password/#comment-160 Wed, 12 May 2010 16:09:36 +0000 https://simpleprogrammer.com/?p=856#comment-160 Personally, I use Keepass (http://keepass.info/) to store all of my passwords. It is a small application and open source, which can generate passwords based on criteria you set. It is basically a desktop version of lastpass.

I tried to use lastpass for awhile but ended up going back to keepass, I think I just like the UI better.

In addition I store the database file it creates in a dropbox account so I can access it anywhere. I also make regular backups of the db just in case.

I even randomize my login name as well for banking sites just because I can.

It is rediculous how many sites want you to sign up for access. I think the last I checked I had over 80 logins in my database.

Oh, its also a great place to store product keys. I hate trying to track down software keys everytime I decide to re-install something.

]]>