Credential
Easy password hashing and verification in Node. Protects against brute force, rainbow tables, and timing attacks.
Install / Use
/learn @ericelliott/CredentialREADME
Credential
Warning!
Passwords are obsolete. It is not safe to manage user passwords in your own app, even if you use a well-tested, professionally audited library like Credential.
Please consider one of these alternative solutions from dedicated authentication security experts, instead of rolling your own password management:
I strongly recommend Magic, a passwordless authentication solution with a strong focus on user experience, developer experience, and cost savings. (Operating your own password hashing, security audits, or dealing with the fallout of data breaches can be extremely expensive).
It is irresponsible to the safety of your users to implement password authentication.
User password credential management is extremely risky and should not be attempted by most apps. Storing any user passwords on your servers is a threat to your user's personal and financial security. All app builders should delegate authentication to dedicated security experts.
I wrote Credential years ago because I could not find an adequately secure password hashing library for Node. Between the time I wrote it and now, cracked passwords have been responsible for more than 80% of hacking-related breaches and virtually every active login username in the world has been leaked along with corresponding passwords by one or more major password database thefts.
It's a really bad idea to use or write a library like this one yourself -- even one that wraps pbkdf2 or a similar work unit spec. Every new API opens up new attack vectors. Older APIs have had time to be examined by security experts. Prior to publishing Credential, I had it reviewed by all the security experts I could find, and opened it up to peer review in public security forums. I trust it more than any other password hashing library for JavaScript, but I would not trust it (or any other password-based alternative) to secure my own applications or users.
If you are in the business of storing hashed passwords, it's only a matter of time before the black hats own your system.
This library is deprecated and no longer maintained.
All other password libraries should also be considered obsolete.
What is Credential?
Easy password hashing and verification in Node. Credential accounts for brute force, rainbow tables, and timing attacks.
Credential employs cryptographically secure, per password salts to prevent rainbow table attacks. Key stretching is used to make brute force attacks impractical. A constant time verification check prevents variable response time attacks.
Installing
$ npm install --save credential
Examples
.hash()
var credential = require('credential'),
pw = credential(),
newPassword = 'I have a really great password.';
pw.hash(newPassword, function (err, hash) {
if (err) { throw err; }
console.log('Store the password hash.', hash);
});
.verify()
var credential = require('credential'),
pw = credential(),
storedHash = '{"hash":"gNofnhlBl36AdRyktwATxKoqWKa6hsIEzwCmW/YXN//7PtiJwCRbepV9fUKu0L9TJELCKoDiBy6rGM8ov7lg2yLY","salt":"yyN3KUzlr4KrKWMM2K3d2Ddxf8OTq+vkKG+mtnmQVIibxSJz8drfzkYzqcH0EM+PVKR/1nClRr/CPDuJsq+FOcIw","keyLength":66,"hashMethod":"pbkdf2","iterations":181019}',
userInput = 'I have a really great password.';
pw.verify(storedHash, userInput, function (err, isValid) {
var msg;
if (err) { throw err; }
msg = isValid ? 'Passwords match!' : 'Wrong password.';
console.log(msg);
});
API
var pw = credential([options])
Return an instance of credential
Warning: Decreasing keyLength or work can make your password database less secure.
- @param {Object} options Options object.
- @param {Number} options.keyLength
- @param {Number} options.work
- @return {Object} credential object
pw.hash(password[, callback]) callback(err, hashJSON)
Takes a new password and creates a unique hash. Passes a JSON encoded object to the callback.
- @param {[type]} password
- @param {Function} callback If callback is not provided, hash returns a
Promise
callback(err, hashJSON)
- @param {Error} Error Error or null
- @param {JSON} hashObject
- @param {String} hashObject.hash
- @param {String} hashObject.salt
- @param {Number} hashObject.keyLength Bytes in hash
- @param {String} hashObject.hashMethod
- @param {Number} hashObject.iterations
pw.verify(hash, input[, callback]) callback(err, isValid)
Takes a stored hash, password input from the user, and a callback, and determines whether or not the user's input matches the stored password.
- @param {String} hash A stored password hash
- @param {String} input User's password input
- @param {Function} callback If callback is not provided, verify returns a
Promise
pw.expired(hash[, days = 90])
Takes a stored hash and a number of days, and determines if the hash is older than the specified days.
- @param {String} hash A stored password hash
- @param {Number} days Days before expiry
CLI
Motivation
Several other libraries claim to do the same thing, but fall short. Several fail to use cryptographically secure salts, which make salt guessing possible. Others fail to use either a long enough salt, or a long enough hash. The salt should be the same size as the hash. No shorter, and no longer.
Others fail to use key stretching, or fail to use enough iterations (taking into account processor speeds, and clustered attacks, while balancing that against user experience).
Background
Passwords should be stored with a one way encryption hash, so that even if a malicious intruder obtains access to the user database, they still won't have access to user passwords.
The hash should be sufficiently long not just to prevent an attack from a single machine, but to prevent an attack from a large cluster of machines.
Worms targeting vulnerable versions of popular website platforms such as WordPress and Drupal have become common. Once such a worm takes control of a website and installs its payload, it can recruit all of the site's traffic into a JavaScript botnet, and, among other things, use visitor CPU power to crack stolen password databases which fail to implement the security precautions outlined here.
There are botnets that exist today with over 90,000 nodes. Such botnets could crack MD5 password hashes at a rate of nine billion per second.
Passwords are vulnerable to the following common attacks:
- Rainbow tables
- Brute force
- Passwords stolen from third parties
Rainbow tables
Rainbow tables are precomputed tables used to look up passwords using stolen hashes. Once bad guys get their hands on user passwords, they'll attempt to attack popular services such as email and bank accounts -- which spells very bad PR for your service.
There are rainbow tables that exist today which can discover almost every possible password up to 14 characters. To prevent password theft by rainbow table, users should choose passwords of at least 14 characters. Sadly, such passwords are definitely not convenient, particularly on mobile devices. In other words, you should not rely on users to select appropriate passwords.
Rainbow tables can significantly reduce the time it takes to find a password, at the cost of memory, but with terabyte hard drives and gigabytes of RAM, it's a trade off that is easily made.
Password Salts
One defence you can employ against rainbow tables is password salting. A salt is a sequence of random characters that gets paired with a password during the hashing process. Salts should be cryptographically secure random values of a length equal to the hash size. Salts are not secrets, and can be safely stored in plaintext alongside the user's other credentials.
Salting can protect passwords in a couple of ways.
First: A uniquely generated salt can protect your password databases against existing rainbow tables. Using a random salt makes your site immune from these attacks. However, if you use the same salt for every password, a new rainbow table can be generated to attack the password database.
Second: If two different users use the same password, the compromised password will grant access to both user accounts. To prevent that, you must use a unique salt for each password. Doing so makes a rainbow table attack impractical.
Brute force
Rainbow tables get all the blogger attention, but Moore's Law is alive and well, and brute force has become a very real threat. Attackers are employing GPUs, super computing clusters that cost less than $2,000, and JavaScript botnets comprised of tens of thousands of browsers visiting infected websites.
A brute force attack will attempt to crack a password by attempting a match using every possible character combination. A simple single-iteration hash can be tested at the rate of millions of hashes per second on modern systems.
One way to thwart brute force attacks is to programmatically lock a user's account after a handful of failed login attempts. However, that strategy won't protect passwords if an attacker gains access to the password database.
Key stretching can make brute force attacks impractical by increasing the time it takes to hash the password. This can be done by applying the hash function in a l
