If a hacker has access to the hashes in my DB, he has access to the rest of the information in the DB anyways. So why would he bother trying to decrypt the passwords? Should I be storing the passwords on a different server to the rest of my data? That is the only scenario in which I can envision it being useful.
If you think this kind of thing doesn't happen, go talk to the guys at reddit. |
|||||||||||||||
|
|
||||
|
|
|
Best security practices suggest:
There are business reasons to hash passwords, as well. Remember, hashing means you do not store your users' passwords anywhere on your equipment.
|
|||
|
|
This adds complexity to your system, but if it's something you can do it's definitely an improvement. Note that using authentication servers such as Kerberos, RADIUS, or Windows domain authentication effectively put you passwords on another server. |
|||
|
|
|
Because even if you have access to the data, having access to the APPLICATION is actually more important. The Application makes it much easier to manipulate the data, for example. Hashing the password prevents casual exposure from all eyes. For example, you may well have the same password across several sites. A quick glance at the DB not only compromises your application, but perhaps several others. It's just a good, solid practice to hash you passwords. |
|||
|
|
Mainly because it's nearly trivial to do it well, and the benefits can be very high. |
|||
|
|
|
Sometime, you don't know who will be the system administrator. You still want to protect your users from them.. So, by hashing passwords and all important information (such as credit card), you make it really harder for the hacker or administrator. And, I think password should never be written literally. I mean, I used a password since 2 years and I have never seen it written down.. why an administrator that I don't know should see MY password ?! |
|||
|
|
Using a hashed password prevents the attacker from being able to log into your app even if they know the hash. Your login page asks for the original password, so to log in using it, they'd have to reverse the hash (compute a collision). Using a rainbow table, that's fairly trivial for MD5, for example, which is where salting comes in. Then the attacker needs to know 1) the way you combine the salt and the password (not much security there), 2) the salt (which is likely in the db already) and 3) they have to compute that value for each combination of password and salt. That's a lot more than just computing hashes of common passwords and looking for a match. |
|||
|
|
|
When a hacker access your database it does not mean that he can access the procedural code, those procedures can alter databases outside the hacked database boundaries or inclusive can alter other procedures. By the way now I´m going to ask you something: If a user is hacked and someone has his or her password, how do you make clear that it is not your application or security fault? If you don't have stored passwords you don't have such responsability! |
|||
|
|
|
If an application is to show grade information at the university then having access to the password will allow you to get the grades for that person. If the password also allows you to log into the online course system then you can submit tests as that user. If the data is even more sensitive, such as credit card numbers or health records, you are open to lawsuits. Odds are that the more sensitive information may be on a more secured system, behind stronger firewalls, so they may have found a weakness by hacking into the authentication database. By hashing the password, then those that have access to the authentication database can't see the password and so log into the very sensitive system as a different user. |
|||
|
|
|
The whole LinkedIn "scandal" was all about leaked hashed passwords. As I see it, security isn't about anything other than making data retrieval inconvenient. And by inconvenient in the ideal case we mean it'll take you millions of compute years to access (ie single CPU trying to guess at password would take on the scale of millions of years). If you store passwords in cleartext, that takes a total of 0 compute years to access. The LinkedIn scandal would have looked much worse. All you have to do is People often reuse passwords, so if people learn your password, it means a whole world of data becomes accessible to them (not just their LinkedIn, for example). So it becomes a very personal risk. As a webmaster it's rude not to at least hash passwords: you don't have that much respect for your users to take the basic step of trying to protect their information. Even if the hashed password can be cracked, you're at least taking the bare minimum step to protect your users. |
|||
|
|
|
If he can decrypt the passwords, he can probably get access to your user's accounts on other sites as well (as, no matter how many times we tell people not to re-use passwords, they do). Storing plaintext passwords is a good way to give away all your users' PayPal, eBay & Amazon accounts. |
|||
|
|

