-6
votes
1answer
66 views

salt sha1 approach [closed]

I am working on a new website that will work in conjunction with a remote server of mine. as im writing the php code i have come into a snag. what would be the best approach with having a user login/ ...
1
vote
2answers
322 views

Checking username and hashed/salted password in mysql database using PHP

When validating user logins, is it safe to first search for the username and THEN if found, retrieve the hashed password and salt and compare it with the user input? Or, should the salt for the ...
2
votes
3answers
438 views

Login authorization, how to check if the password matches a SALT + HASH - PHP + MySQL

I am currently working on a school project and I have recently made no progress towards completing the login authorization. I am using a HASH and a SALT to register the new users. I can not find any ...
5
votes
3answers
543 views

How to generate random string to salt passowrd in sql?

Got a question salting passwords in sql: The code below salts a particular password by randomly generating a 10 character string: Update Teacher SET TeacherSalt = SUBSTRING(MD5(RAND()), -10), ...
0
votes
5answers
318 views

Is storing a salt in the MySQL table secure? [duplicate]

Possible Duplicate: Best way to prevent SQL Injection in PHP The necessity of hiding the salt for a hash I'm very new to MySQL and PHP, and have started self-learning it over the past ...
1
vote
2answers
316 views

Passwords do not match when hashing/salting

Okay, so all of the code below is not my own. I've been following a tutorial on the internet, but when I try and run it, no password seems to be matching. I believe there may be an error with salting ...
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 ...
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
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
votes
2answers
562 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 ...
5
votes
4answers
163 views

Under what scenario will a hacker get the table but not the PHP code?

Ok, so I understand the value of the salt in my hashed passwords... kind of. I am setting up a basic authentication scheme where I am setting passwords and users don't have the ability to set the ...
0
votes
2answers
191 views

Trying to wrap my head around PHP password salt/encryption

Right now I am developing an application that will allow online registration. For development, the password check just checks a MySQL row to make sure the value matches the value in the input field. ...
1
vote
1answer
95 views

How to create a 'Super Administrative' Password for member login site

We maintain a website built on LAMP stack that allows members to log into their profile. While we have an admin interface to handle most tasks, there are times it is 'necessary' to log in "as" the ...
0
votes
2answers
729 views

PHP - uniqid(“”,true) versus uniqid(“”)+mt_rand()

What are the key differences between these two approaches to generate sequential-but-somewhat-unique numbers? I want to use such a number as a unique user ID inside a MySQL db, and also as a salt to ...
1
vote
3answers
214 views

Need help making login page with salts

Alright, I'm trying to make a login page. It seems that all of the pages worked pretty good- until I added salts. I don't really understand them, but doing something as basic as I am shouldn't be to ...
1
vote
5answers
162 views

Questions about salting passwords

Okay. Say for example that i set the salt for a password to "hello." Can't someone just look at the source code and discover the salt? If so, how would I hide it? Thanks.
1
vote
8answers
520 views

PHP and MySQL Salt Security Question

What if my server gets hacked and the hacker views my hashed passwords and can see what salt I was using. Is it something to worry about?
2
votes
3answers
6k views

What is “salt” when relating to MYSQL sha1?

What is "salt" when relating to MYSQL sha1? I have no idea what salt is when relating to sha1 password encryptions? Can someone please explain what it is?
0
votes
1answer
415 views

Salting in PHP and MySQL

I have been developing a login library for a website using CodeIgniter. The authentication code is as follows: function signin($username, $password) { $CI =& get_instance(); ...
10
votes
3answers
2k views

Salting my hashes with PHP and MySQL

Like most users, I'm simply trying to figure out a secure way to store passwords. What I haven't found here (or maybe it's my lack of understanding) is how to retrieve a salted hash in my database and ...
5
votes
6answers
2k views

Unique text field in MySQL and php

I've created a salt using; md5(rand(0,10000000)); (there is probably a better way?) There doesn't seem to be possible to make a text field unique in MYSQL. So how do I check if the salt has already ...
2
votes
4answers
1k views

User Login with a single query and per-user password salt

I've decided to implement a user login using a per-user salt, stored in the database. The salt is prefixed to a password which is hashed with SHA and stored in the databse. In the past when I wasn't ...
0
votes
4answers
5k views

SHA salt in MySQL query

I am setting a cookie. Something like: $_COOKIE['test'] = SHA1('124'.'mysalt'); Now 124 is my id which I want. So in my MySQL table, I am trying to run a query like: $sql = ("SELECT * FROM users ...
6
votes
8answers
5k views

Password hash and salting - is this a good method?

I was doing a little research or googling for different methods of handling password hashing and salting and came across this interesting link: http://phix.me/salt/ Now, essentially what this ...
2
votes
2answers
9k views

how do I create a mySQL user with hash('sha256', $salt . $password)?

I must be missing something. I want to set up a database user account for select-only transactions but mysql is not letting me choose the hash method for a password on creating a user account. this ...