Skip to content

Commit

Permalink
Implemented password hashing using a salt, following this code&guidel…
Browse files Browse the repository at this point in the history
  • Loading branch information
demianalonso authored and Demian committed Jun 16, 2015
1 parent 8ff799f commit 80f7665
Show file tree
Hide file tree
Showing 7 changed files with 269 additions and 19 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,5 @@ nbactions.xml
.settings
.idea
web/.idea
.idea
traccar.iml
8 changes: 4 additions & 4 deletions debug.xml
Original file line number Diff line number Diff line change
Expand Up @@ -133,16 +133,16 @@
<entry key='database.loginUser'>
SELECT *
FROM user
WHERE email = :email AND password = :password;
WHERE email = :email;
</entry>

<entry key='database.selectUsersAll'>
SELECT * FROM user;
</entry>

<entry key='database.insertUser'>
INSERT INTO user (name, email, password, admin)
VALUES (:name, :email, :password, :admin);
INSERT INTO user (name, email, password, salt, admin)
VALUES (:name, :email, :password, :salt, :admin);
</entry>

<entry key='database.updateUser'>
Expand All @@ -154,7 +154,7 @@
</entry>

<entry key='database.updateUserPassword'>
UPDATE user SET password = :password WHERE id = :id;
UPDATE user SET password = :password, salt = :salt WHERE id = :id;
</entry>

<entry key='database.deleteUser'>
Expand Down
17 changes: 9 additions & 8 deletions src/org/traccar/database/DataManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -166,8 +166,8 @@ private void createDatabaseSchema() throws SQLException {
User admin = new User();
admin.setName("admin");
admin.setEmail("admin");
admin.setPassword("admin");
admin.setAdmin(true);
admin.hashPassword("admin");
admin.setId(QueryBuilder.create(dataSource, properties.getProperty("database.insertUser"))
.setObject(admin)
.executeUpdate());
Expand Down Expand Up @@ -221,38 +221,39 @@ private void mockData(long userId) {
}

public User login(String email, String password) throws SQLException {
return QueryBuilder.create(dataSource, properties.getProperty("database.loginUser"))
User user = QueryBuilder.create(dataSource, properties.getProperty("database.loginUser"))
.setString("email", email)
.setBytes("password", Hashing.sha256(password))
.executeQuerySingle(new User());
return user != null && user.isPasswordValid(password) ? user : null;
}

public Collection<User> getUsers() throws SQLException {
return QueryBuilder.create(dataSource, properties.getProperty("database.selectUsersAll"))
.executeQuery(new User());
}

public void addUser(User user) throws SQLException {
public void addUser(User user, String password) throws SQLException {
user.hashPassword(password);
user.setId(QueryBuilder.create(dataSource, properties.getProperty("database.insertUser"))
.setObject(user)
.executeUpdate());
Context.getPermissionsManager().refresh();
}

public void updateUser(User user) throws SQLException {
public void updateUser(User user, String password) throws SQLException {
QueryBuilder.create(dataSource, properties.getProperty("database.updateUser"))
.setObject(user)
.executeUpdate();

if(user.getPassword() != null) {
if(password != null) {
user.hashPassword(password);
QueryBuilder.create(dataSource, properties.getProperty("database.updateUserPassword"))
.setObject(user)
.executeUpdate();
}

Context.getPermissionsManager().refresh();
}

public void removeUser(User user) throws SQLException {
QueryBuilder.create(dataSource, properties.getProperty("database.deleteUser"))
.setObject(user)
Expand Down
231 changes: 231 additions & 0 deletions src/org/traccar/helper/PasswordHash.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,231 @@
package org.traccar.helper;

/*
* Password Hashing With PBKDF2 (http://crackstation.net/hashing-security.htm).
* Copyright (c) 2013, Taylor Hornby
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/

import java.security.SecureRandom;

import javax.crypto.spec.PBEKeySpec;
import javax.crypto.SecretKeyFactory;

import java.math.BigInteger;
import java.security.NoSuchAlgorithmException;
import java.security.spec.InvalidKeySpecException;

/*
* PBKDF2 salted password hashing.
* Author: havoc AT defuse.ca
* www: http://crackstation.net/hashing-security.htm
*/
public class PasswordHash {
public static final String PBKDF2_ALGORITHM = "PBKDF2WithHmacSHA1";

// The following constants may be changed without breaking existing hashes.
public static final int SALT_BYTE_SIZE = 24;
public static final int HASH_BYTE_SIZE = 24;
public static final int PBKDF2_ITERATIONS = 1000;

public static final int ITERATION_INDEX = 0;
public static final int SALT_INDEX = 1;
public static final int PBKDF2_INDEX = 2;

public static class HashingResult {

public final Integer iterations;
public final String hash;
public final String salt;

public HashingResult(Integer iterations, String hash, String salt) {
this.hash = hash;
this.salt = salt;
this.iterations = iterations;
}
}

/**
* Returns a salted PBKDF2 hash of the password.
*
* @param password
* the password to hash
* @return a salted PBKDF2 hash of the password
*/
public static HashingResult createHash(String password) {
return createHash(password.toCharArray());
}

/**
* Returns a salted PBKDF2 hash of the password.
*
* @param password
* the password to hash
* @return a salted PBKDF2 hash of the password
*/
public static HashingResult createHash(char[] password) {
// Generate a random salt
SecureRandom random = new SecureRandom();
byte[] salt = new byte[SALT_BYTE_SIZE];
random.nextBytes(salt);

// Hash the password
byte[] hash = pbkdf2(password, salt, PBKDF2_ITERATIONS, HASH_BYTE_SIZE);

return new HashingResult(PBKDF2_ITERATIONS, toHex(hash), toHex(salt));
}

/**
* Validates a password using a hash.
*
* @param password
* the password to check
* @param correctHash
* the hash of the valid password
* @return true if the password is correct, false if not
*/
public static boolean validatePassword(String password, String correctHash)
throws NoSuchAlgorithmException, InvalidKeySpecException {
return validatePassword(password.toCharArray(), correctHash);
}

/**
* Validates a password using a hash.
*
* @param password
* the password to check
* @param correctHash
* the hash of the valid password
* @return true if the password is correct, false if not
*/
public static boolean validatePassword(char[] password, String correctHash)
throws NoSuchAlgorithmException, InvalidKeySpecException {
// Decode the hash into its parameters
String[] params = correctHash.split(":");
int iterations = Integer.parseInt(params[ITERATION_INDEX]);
return validatePassword(password, iterations, params[SALT_INDEX], params[PBKDF2_INDEX]);
}

public static boolean validatePassword(char[] password, int iterations,
String saltHex, String hashHex) {
byte[] salt = fromHex(saltHex);
byte[] hash = fromHex(hashHex);
// Compute the hash of the provided password, using the same salt,
// iteration count, and hash length
byte[] testHash = pbkdf2(password, salt, iterations, hash.length);
// Compare the hashes in constant time. The password is correct if
// both hashes match.
return slowEquals(hash, testHash);
}




public static boolean slowEquals(String hash1, String hash2) {
return slowEquals(fromHex(hash1), fromHex(hash2));
}

/**
* Compares two byte arrays in length-constant time. This comparison method
* is used so that password hashes cannot be extracted from an on-line
* system using a timing attack and then attacked off-line.
*
* @param a
* the first byte array
* @param b
* the second byte array
* @return true if both byte arrays are the same, false if not
*/
private static boolean slowEquals(byte[] a, byte[] b) {
int diff = a.length ^ b.length;
for (int i = 0; i < a.length && i < b.length; i++)
diff |= a[i] ^ b[i];
return diff == 0;
}

/**
* Computes the PBKDF2 hash of a password.
*
* @param password
* the password to hash.
* @param salt
* the salt
* @param iterations
* the iteration count (slowness factor)
* @param bytes
* the length of the hash to compute in bytes
* @return the PBDKF2 hash of the password
*/
private static byte[] pbkdf2(char[] password, byte[] salt, int iterations,
int bytes) {
try {
PBEKeySpec spec = new PBEKeySpec(password, salt, iterations,
bytes * 8);
SecretKeyFactory skf = SecretKeyFactory
.getInstance(PBKDF2_ALGORITHM);
return skf.generateSecret(spec).getEncoded();
} catch (NoSuchAlgorithmException e) {
throw new RuntimeException(e);
} catch (InvalidKeySpecException e) {
throw new RuntimeException(e);
}
}

/**
* Converts a string of hexadecimal characters into a byte array.
*
* @param hex
* the hex string
* @return the hex string decoded into a byte array
*/
private static byte[] fromHex(String hex) {
byte[] binary = new byte[hex.length() / 2];
for (int i = 0; i < binary.length; i++) {
binary[i] = (byte) Integer.parseInt(
hex.substring(2 * i, 2 * i + 2), 16);
}
return binary;
}

/**
* Converts a byte array into a hexadecimal string.
*
* @param array
* the byte array to convert
* @return a length*2 character string encoding the byte array
*/
private static String toHex(byte[] array) {
BigInteger bi = new BigInteger(1, array);
String hex = bi.toString(16);
int paddingLength = (array.length * 2) - hex.length();
if (paddingLength > 0)
return String.format("%0" + paddingLength + "d", 0) + hex;
else
return hex;
}



}
2 changes: 1 addition & 1 deletion src/org/traccar/http/MainServlet.java
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ private void logout(HttpServletRequest req, HttpServletResponse resp) throws Exc

private void register(HttpServletRequest req, HttpServletResponse resp) throws Exception {
User user = JsonConverter.objectFromJson(req.getReader(), new User());
Context.getDataManager().addUser(user);
Context.getDataManager().addUser(user, user.getPassword());
sendResponse(resp.getWriter(), true);
}

Expand Down
4 changes: 2 additions & 2 deletions src/org/traccar/http/UserServlet.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,14 @@ private void get(HttpServletRequest req, HttpServletResponse resp) throws Except
private void add(HttpServletRequest req, HttpServletResponse resp) throws Exception {
User user = JsonConverter.objectFromJson(req.getReader(), new User());
Context.getPermissionsManager().checkUser(getUserId(req), user.getId());
Context.getDataManager().addUser(user);
Context.getDataManager().addUser(user, user.getPassword());
sendResponse(resp.getWriter(), JsonConverter.objectToJson(user));
}

private void update(HttpServletRequest req, HttpServletResponse resp) throws Exception {
User user = JsonConverter.objectFromJson(req.getReader(), new User());
Context.getPermissionsManager().checkUser(getUserId(req), user.getId());
Context.getDataManager().updateUser(user);
Context.getDataManager().updateUser(user, user.getPassword());
sendResponse(resp.getWriter(), true);
}

Expand Down
24 changes: 20 additions & 4 deletions src/org/traccar/model/User.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
*/
package org.traccar.model;

import org.traccar.helper.Hashing;
import org.traccar.helper.PasswordHash;
import org.traccar.helper.PasswordHash.HashingResult;

public class User implements Factory {

Expand All @@ -36,10 +37,15 @@ public User create() {
public String getEmail() { return email; }
public void setEmail(String email) { this.email = email; }

private byte[] password;
public byte[] getPassword() { return password; }
public void setPassword(String password) { this.password = Hashing.sha256(password); }
private String password;
public String getPassword() { return password; }
public void setPassword(String password) {
this.password = password;
}

private String salt;
public String getSalt() { return salt; }
public void setSalt(String salt) { this.salt = salt; }
private boolean readonly;

private boolean admin;
Expand All @@ -59,4 +65,14 @@ public User create() {
private double longitude;

private int zoom;

public boolean isPasswordValid(String inputPassword) {
return PasswordHash.validatePassword(inputPassword.toCharArray(), PasswordHash.PBKDF2_ITERATIONS, this.salt, this.password);
}

public void hashPassword(String password) {
HashingResult hashingResult = PasswordHash.createHash(password);
this.password = hashingResult.hash;
this.salt = hashingResult.salt;
}
}

0 comments on commit 80f7665

Please sign in to comment.