Password Security (Advanced)

1 Comment »

Now that we’re all on the same page as far as how to create secure passwords for ourselves, I’m going to go into further detail about how companies store passwords on their webpages, as well as more techniques hackers use to try to crack passwords. To start, I’m going to review what I said about hashes in the previous post.

Hashes and MD5

In a sentence, hashes are one-way functions. MD5 at one point was the most popular hash. It takes an input string (or file) and outputs a 32-character long hash. Even if the input string is two letters long, it gives a 32-character hash. The first question you may ask is “how is the MD5 function irreversible?” This is a complicated question that really is dependent on the algorithm. As a simple example, lets pretend that every letter has a corresponding number: A-1, B-2, C-3, and so on. Now lets just pretend that the MD5 hash takes your input string, say “I Like Bananas”, and converts it to numbers: {9, 0, 12, 9, 11, 5, 0, 2, 1, 14, 1, 14, 1, 19}. Then it just adds them all together! So the MD5 in our example would be 88! Now how many combinations of letters are there that add up to 88? Lots. This is a simple example of how MD5 works. In reality, the algorithm is much more complicated (you can read about it in detail here), but you get the picture.

You may ask if there are two input strings that give the same MD5 hash. The answer is yes! These are called collisions. The proof of this is easy: There are a lot more possible inputs than there are outputs, since the outputs are limited to 32 characters, and inputs can be as long as one wants (the idea behind this is called the pigeonhole principle). Finding a collision is a lot harder, but they are few and far between so that collisions weren’t really a problem for most applications.

The problem with MD5 is directly related to how fast the algorithm works. Modern graphics cards can calculate billions of MD5 hashes per second. This is a problem, but I’ll come back to that. First lets review what I said about MD5 hashes and passwords. Passwords should never be stored directly on a website by a company. The reason behind this is, if the server is compromised, then so is everyone’s password. Instead, the password hash is stored on a website, so that if someone cracks the website, all they have access to is the hashes, not the passwords themselves.

Here comes the problem with MD5. A list of hashes may be useless to the common user, but then again the common user is not one who could crack into a website. Advanced users will start generating all the possible MD5 hashes by starting with “a”, hashing that, and keep going until they figure out that “bananas”, when hashed, matches on of the hashes in the database. They then know that bananas is the password for “John Davis”. Just like I talked about brute forcing in the last post, the same technique can be applied to a whole list of hashes.

Rainbow Tables

This is a dire situation already, but somebody came along and created rainbow tables. Rainbow tables are huge files that sometimes can barely fit on the hard drive of a computer. But, they save a lot of time for a would-be hacker. Rainbow tables are pre-calculated MD5 hashes. This means that, even though there is no way to reverse the MD5 hash to achieve the original password, the hacker can look up the hash in a rainbow table and discover what the original password was, since the rainbow table contains many of the possibilities. At this point, it seems like no one stands a chance if a server gets compromised.

Salts

Not to be outdone, computer security experts devised a way to get around the idea of a rainbow table. The rainbow table tries many of the combinations and compiles a dictionary of MD5 hashes and passwords. Clearly, however, the table couldn’t contain all the passwords that a hash could represent: there are simply too many passwords. This idea is the basis for a salt.

Salts are randomly-generated user-specific strings that are added to the end of a password before being hashed. Lets dig deeper into this. Let’s say I create an account on a website that uses salts. I want my password to be “bananas”. When I create the account, the website creates a random salt – say “12345″ – and adds it to the end of my password, making the entire password becomes “bananas12345″. It stores the salt for me (so that it knows when I login to add “12345″ before authenticating me), and the hash of “bananas12345″. The odds are much lower that the rainbow table contains “bananas12345″ than they are of it just containing “bananas”.

There is a reason that each user has a different salt. The reason is that a rainbow table could be generated based on the original rainbow table that has all the words they want to include but with “12345″ added. If this table is generated, the entire database of users would be compromised and their passwords’ cracked. If each user has a different salt, however, rainbow tables could not be generated. Well, they could, but you would be generating a rainbow table for each user, which defeats the purpose of a rainbow table.

I hope this all makes sense to you. I think its important to understand how passwords are secured on the company’s website itself, and how it is equally their responsibility to make sure our data is secured. In fact, a law may be made in the United States that makes it illegal to store passwords in plaintext – that is, without hashing and / or salting. There are a lot more things I could have gone into detail on, include some of the more secure hashes (such as SHA-256 and, even more secure, bcrypt), but this post was getting long enough as it is. Thanks for reading!


Password Security (Introduction)

6 Comments »

Paypal, Facebook, Amazon, and YouTube all have something in common. Hint: They also share this trait with millions of other websites. The answer? They all ask for a password (Sure YouTube doesn’t require a password, but creating an account does). In an age where Moore’s law – that the transistor density of integrated circuits doubles every two years –  has held true and computers are thus getting faster and faster, passwords need to be more and more secure. To explain why, lets look at two major ways hackers can compromise a password:

1. Guessing / Brute-forcing (client side)

Client-side attacks occur when a hacker simply attempts to gain access to your account on the website itself. They occur on a per-user basis, are the most common types of attacks. Guessing and brute-forcing are very similar:

Guessing is exactly what it sounds like. Everyone knows not to use password as your password, and in fact many websites prevent this by adding extra requirements, such as at least one capital letter and at least one number, but some people still do a simple combination such as lastnameDOB, or some variant of this. The truth is, with the advent of Facebook, hackers can easily guess this kind of password. Many people use personal details to aid them in remembering their password, but any hacker that logs on to a website that you have an account on can simply try different combinations of details publicly available from your Facebook page and be into your account in a matter of minutes. Of course, some people do not use personal details. For times when a hacker attempts to gain access to such an account, they can use freely available brute-forcing tools that generate millions (sometimes billions, depending on the program and hardware) of combinations of passwords to eventually try every combination. The truth is, any six-character password can be cracked on a modern PC in a matter of minutes, and seven character ones can be cracked in less than a day.

2. Brute-forcing (server side)

Server side attacks might be more rare, but their effect is widespread. This occurs when a hacker gains access to a database of a corporation containing account data. This isn’t always as bad as it sounds because of the way passwords are stored on most servers. Most of the time, when you create a password, your computer sends your password to the server. It then sends the password through a one-way function called a hash function. MD4,MD5,SHA-1, and SHA-2 are all common hashes used across the internet today. Here is an example of what a password looks like after being sent through an MD5 hash:

Password: passwordSecurity
Hash: 3890ed68596a4d25eabc2d42a81b2814

Notice that changing the case of  ’p’ will actually completely change the hash:

Password: PasswordSecurity
Hash: 780a417ac0e56949cb206cc4191147f3

Likewise, changing one letter in the password also completely changes the hash:

Password: Passw0rdHash
Hash: efc254153e3d2617a076b8efc7054ac3

The important part of these hashes is that they are one-way. This means that there is no way to take a hash output and reconstruct the password. You may wonder how servers can authenticate users when a login attempt is made. What happens is after the server receives the initial password and computes it’s hash, it stores only the hash. Later, when the user tries to login, it puts the attempted password through the same hash and compares the two hashes. In this way, servers can store what is necessary to authenticate a password without storing the password itself.

However, hackers use the same brute-forcing software mentioned in a client-side method on these hashes. They try every combination starting with a and ending with zzzzzzzzzz…. and put each password through the same hash that the server uses. It then compares the hash with the hash stored on the server that they’ve gained access to. If there is a match, they’ve found the password.

Technical Note: Servers do have counter-measures against this, such as salts and stronger, more adaptable hashing algorithms such as bcrypt, but this is beyond the scope of this post.

Preventing Hacking Through Strong Passwords

If you’ve made it this far, you’re probably wondering what hope there is for the end user these days. It is true that the future looks bleak as far as password authentication is concerned, but there are ways for an end-user to make it as difficult as possible, and the same method works for both types of attacks: the longer the password, the longer it takes to brute-force. Of course, if you just make it your full name (such as johnathandavis), a hacker could easily guess. An ideal password would actually look similar to some of the hashes above, but a password like 6as54dgf65s4g6sd5f4 is very hard to remember. Instead, experts recommend using phrases and changing out certain letters for numbers that look similar, and changing the case of letters to create the strongest password possible that is also easy to remember. For example, start with this phrase:

ireallylovebananas – Change the o to a 0 (zero)

ireallyl0vebananas – Make the a’s capital

ireAllyl0vebAnAnAs – Add an underscore between words

i_reAlly_l0ve_bAnAnAs – Add an asterisk for good measure (I almost always add one symbol!)

i_reAlly_l0ve_bAnAnAs*

This password would take several hundred years to brute-force on the average computer, and even supercomputers would take a while to get through this one. However, make the phrase a bit more creative, especially if you’ve pasted “I really love bananas!” all over your Facebook timeline. Regardless, this password is eons better than password, and is much better than davis59 too.