Hacker News new | ask | show | jobs
by reducesuffering 1521 days ago
There is no perfect security, so it's always an assessment of are the increasing security measures worth the cost? Even a simple algo of (base password + hash(website_name)) prevents the most common issue of any site leaking your password to a black market password list that just attempts brute force on any of the passwords on said list. It would be much much rarer for you to be specifically targeted by seeing base_password_hash(Amazon) on a list and trying to reverse engineer your bank password from that.

IMO it seems more secure than entrusting everything to a centralized source (password manager) that can be compromised.

1 comments

Yes, that's a fair point. I often forget that my threshold for "secure enough" is higher than most.