Cryptography function that takes random bits and a string (typically a password) and uses a one-way hash to provide a new string that can be used for authentication without providing access to the original string. If a salt function uses enough random bits, the resulting string is generally ...

learn more… | top users | synonyms

0
votes
1answer
44 views

can old user login into new wordpress install

I have a running website on wordpress which has been hacked, some file were changed by the hacker including wp-config.php file. Now i want to install new version of wordpress, installing new wordpress ...
0
votes
2answers
139 views

Making My PHP Site Hack Resistant [closed]

I'm making a custom CMS for a website I've been planning and security is a big concern. I probably lack the expertise to fend off a full scale hacker social engineering his way into the server room ...
-1
votes
1answer
34 views

Storing characters like % and \ in MySQL fields?

I have a function to generate an 11 character salt. This salt can include characters like % which I know is wildcard in SQL and \ which is used for escaping things. Some users are complaining about ...
6
votes
3answers
401 views

Creating glibc 2.7 style Sha-512 crypt hashes in Perl

So, I have a website that reads/verifies (and writes) password hashes from the database, and I have something that makes SHA-512 style password hashes for that, ones that look like: ...
3
votes
1answer
117 views

What's the currently (2012) most safe technique for password hashing?

According to the current leaks of md5 hashed passwords (linkedin, eHarmony, etc...) i'm quite unsure about the md5 standard hashing most of us are using (right !?). So my question is: What's the most ...
3
votes
1answer
1k views

How does salt work in Rails' has_secure_password

From what I understand from salting to make an encrypted password more secure, I would generate a random number (the salt) and store it along side the hashed password, in the user record (for ...
2
votes
2answers
166 views

Legacy app with md5 hashes: how to add salt and SHA1?

I've a legacy app where passwords are hashed using MD5 without salt. I'd like to switch to SHA1 with salt, but I'd like to keep current users' passwords. My plan is to change hashing function to ...
5
votes
2answers
2k views

Web app passwords: bcrypt and SHA256 (and scrypt)

With all the recent (e.g. LinkedIn) discussions of passwords I'm looking at password hashing implementations. After two cups of coffee and a morning reading I'm no more a cryptographer than when I ...
3
votes
2answers
548 views

Does storing the salt along with the encrypted file break security?

I am writing an Android application which aims to encrypt and decrypt files using AES 256. I am using AES-CBC mode and PBKDF2 for deriving the AES key from a user entered password. Also, I am ...
-1
votes
3answers
334 views

PHP SECURITY dynamic generated user hash password on every login or hash system changes

I'm knowing this site http://www.openwall.com/phpass/, but idea is on salt on mainly system. Example, ZEND use system('uname -a') and it's hashed to md5() for using ROW LEVEL user SALT encryption. ...
2
votes
2answers
406 views

How do I check for a salted password in Spring Security?

I am using Spring 3 and grabbing users from a MySQL database. Right now, in testing, I have a user with a MD5 password. And I can authenticate just fine using that. However, we want to be a little ...
1
vote
2answers
507 views

java SecretKeyFactory password hashing doesn't work properly

I've got a web application and I want to store password hashes in a remote database. I wrote a simple class, which generates a password hash. Two public methods are available: 1. encrypt - encrypts ...
2
votes
4answers
140 views

Same Salt Or Different Salts

Here's my question: In your experience, is it safer to have a single salt for every hash stored in the PHP file doing the hashing, or is it better to have a different salt for every hashed object and ...
0
votes
3answers
197 views

Proper way to use salt along with hashing

During a discussion with a couple of other people, I read the argument that sha512(salt + username + password) is bad, sha512(username + password) is worse and sha512(password) is plain idiotic. ...
2
votes
1answer
180 views

Why is it considered secure to store a random salt in a database with the user's password digest?

In the light of the big LinkedIn password leak, I've been thinking about password security. The web development frameworks that I have worked with in the past typically store a master, ...
0
votes
4answers
542 views

Login System Hash Salt

I am rewriting a PHP Login system and I just faced this function createSalt() { $string = md5(uniqid(rand(), true)); return substr($string, 0, 3); } $salt = createSalt(); $hash = ...
-1
votes
2answers
641 views

howto encrypt passwords to the database using the Secured - Security.Authenticato

Im trying to save my passwords with some kind of security into the database. What is the best way of doing this with the play framework? Do I encrypt the string in javascript? Wouldnt have thought ...
0
votes
1answer
123 views

Is the same key derived providing the same salt and password using Rfc2898DeriveBytes

I read this tutorial about encryption in .NET it uses Rfc2898DeriveBytes to create a random key to be used by symmetric algorithm . but it doesn't save the key . and later in decryption method it ...
2
votes
3answers
299 views

password salt storing

I want to update my password setup that is currently using just MD5. Now what I would like to do is use something stronger (maybe sha256) with unique salt per user. The question is about the salt ...
0
votes
3answers
1k views

How to change SHA1 and SALT encrypted passwords in table

I have table in mysql which contain fields id, username, password and salt: Example: id : 1 username : admin password : 11ca8949f9462890f2535c9a43ac52b8c10a9342 salt : ...
2
votes
1answer
320 views

Spring Security 3 + Random Salt

So I understand that you can check a password in Spring Security with salt based on a userDetail property and then hash it to compare to a hash in the database, however what if the salt used when ...
0
votes
2answers
309 views

php converting all passwords in DB

Hi guys recently I started using $salt = $uniqueSalt; $cryptpassword = md5($salt.$password); How would I convert all password in my mysql database with this so it doesnt affect the users? the ...
1
vote
1answer
175 views

Hash in Java with or without salt

I'm trying to make a method for encoding to SHA(128,256,512) with or without salt. The method for no salt is private static String crypt(String chain, String method) { MessageDigest md; try ...
1
vote
3answers
202 views

Keeping password length uniform internally and keeping salt secret?

When storing passwords, it's been said that Salt doesn't need to be secret and it's only purpose is to keep all Hash unique. It's also said that limiting password length is not a good practice but ...
-1
votes
2answers
558 views

Retrieving salt+hash from DB for validation

So I'm in the process of learning PHP and am working on a login page. I already figured out how to register a new user using a SHA256 to hash $salt+$password. I know there are slower encryption ...
-2
votes
1answer
62 views

What would be the expected time to find all users passwords in UNIX using dicitionary attack?

I was reading that the designers of UNIX password algorithm used a 12 bit salt to modify the E-table of the unix hashing function (the DES). Supposing i have a system with 2^(24) users? Is that ...
0
votes
1answer
132 views

Store hash value

Is there a way to store the salt for this hash method? I dont know how to do it? Thanks. public void AddStudent(Student student) { student.StudentID = (++eCount).ToString(); ...
6
votes
2answers
911 views

Security of generating hash salts using PHP's mt_rand()?

I'm trying to generate blowfish hashes and I was wondering if it's safe enough to count on mt_rand() to generate my salts for me? function blowfish($string, $salt = NULL, $iterations = '08') { ...
0
votes
1answer
31 views

The Time it takes to search database

I am new to web development and database and am trying to implement password authentication with reasonable security and speed. I have read about hashing the password and append a salt unique to each ...
0
votes
1answer
225 views

different encryptions with crypt. what format should the salt be etc

I am building my classes for development and am working on an encryption class. I have been reading up on php's crypt function and the different encryption types but a few areas have been vaguely ...
14
votes
1answer
998 views

Does has_secure_password use any form of salting?

I want to use has_secure_password to store encrypted passwords in the database. I can't find on the the internet if has_secure_password uses any form of salting. If it uses salting, how does it works? ...
1
vote
2answers
765 views

bcrypt with salt how?

I'm kind of new when it comes to security, I've been reading up on php crypt and searching for good advice though no one really goes into detail about "how" you go about doing it in the most effective ...
0
votes
4answers
180 views

What is SaltKey in t-sql?

What is the purpose of saltkey in the t-sql. For example in aspdotnetstorefront databse there is a table name customer, we encrypt/decrypt password then there is another field called SaltKey, what is ...
8
votes
3answers
372 views

How should I store a password salt?

Using PHP, I am encoding passwords using the hmac function with the sha256 algorithm. What I'm not sure about is how to properly store the salt. The whole point of hashing a password is in case a ...
3
votes
2answers
581 views

using md5 and salt with j security check

Right now I am using j security check and md5 to authenticate my jsp pages. I would like to salt the password before I store it into the database. Due to restricted access at school, I do not have ...
2
votes
1answer
3k views

How to use PKCS5_PBKDF2_HMAC_SHA1()

I am trying to use PKCS5_PBKDF2_HMAC_SHA1() and below is my sample program. I wanted to make sure if my result of PKCS5_PBKDF2_HMAC_SHA1() is correct so I verified the same with the website ...
0
votes
2answers
73 views

Identifying frauds while salting passwords

Im in the works of updating the login process of a site. Currently, passwords are stored as md5(password), and i'd like to add a salt, but the unsalted password is being used to identify possible ...
0
votes
1answer
382 views

How do I get OpenSSL style salted MD5 in Ruby?

I'm talking about this: $ openssl passwd -1 -salt thesalt thepassword $1$thesalt$HAWpBmvUCutuyTS4JwevI. In PHP it would look like this: crypt('thepassword', ('$1$'.'thesalt')); # this gives the ...
1
vote
1answer
42 views

Hashing multiple values - most secure method?

hash(value1 & value2 & salt) hash(hash(value1 & value2) & salt) hash(hash(value1 & value2) & hash(salt)) hash(hash(value1 & salt) & hash(value2 & salt)) ...
1
vote
0answers
398 views

Symfony custom user provider / salting password

I'm using DynamoDB for my application so the doctrine ORM isn't an option for me when it comes to authentication. I've created a basic user provider and have it working perfectly when using a sha1 ...
-1
votes
2answers
109 views

Expanding and using salt generation code for a php login system

I am working on a php/mysql login system for a webproject. After looking through SO and alot of articles on the web Ive come up with a basic framework and started writing some code for it. However ...
5
votes
4answers
637 views

How long should a salt be to make it infeasible to attempt dictionary attacks?

I'm designing an authentication system that works like the following: User enters password Salt is generated. Password is hashed with whirlpool Whirlpool hashed password concatenated with the plain ...
8
votes
3answers
4k views

Salt and hash a password in python

This code is supposed to hash a password with a salt. The salt and hashed password are being saved in the database. The password itself is not. Given the sensitive nature of the operation, I wanted ...
1
vote
1answer
491 views

Android obfuscation hide salt value

When following the Application Licensing document on the developer page for Android to use ServerManagedPolicy for licensing, then the section Implementing an Obfuscator says to declare a private ...
0
votes
2answers
78 views

How does salting protect against an attacker with access to your password hashes?

I've read a fair few questions on password salting and mostly they cover the stuff that (I think) I already understand. That is; the point of including a random salt in your password hashes is firstly ...
0
votes
1answer
399 views

MD5Decrypter.co.uk reverses md5 hashes?

There is a site called http://www.MD5Decrypter.co.uk where when you give a md5 hash, it gives the original string. How is that possible. As far as I know md5 is an irreversible hash algorithm or is ...
1
vote
2answers
263 views

Save password from php form. Which of this is more secure?

$pass = substr(md5($_SERVER['REMOTE_ADDR'].microtime().rand(1,100000)),0,6); $insert = mysql_query("INSERT INTO users(username, password) VALUES( '".$username."', '".md5($pass)."')"); or ...
0
votes
1answer
80 views

how do I store the HMAC key irretrievably in the database?

I'm trying to build a API service for a system that (due to many reasons) does not have the main database in a completely secured fashion. So, my question is - how do I salt the HMAC in such a manner ...
3
votes
1answer
2k views

A required anti-forgery token was not supplied or was invalid

@using (Html.BeginForm("Create", "Posts", FormMethod.Post, new { id = "publish" })) { @Html.AntiForgeryToken("Posts/Create") <input type="text" id="url" name="url" /> <input ...
2
votes
2answers
695 views

Getting Password Salt when Using Jasypt

I want to use Jasypt to encrypt user passwords using a random Salt. Is it possible to get random slat from Jasypt? How could I get it? Thanks, Feras

1 2 3 4 5 9