vote up 1 vote down star

Hi,

I was wondering (and used Google with no clear result) if there is any way to connect to a MySQL database with PHP using a hashed password. Say I have the following:

Password (plain): 'foobar'
Password (sha1): '8843d7f92416211de9ebb963ff4ce28125932878'

Now I would like to connect to MySQL like this (using the mysql_* function as example, I'm using PDO though):

$db_link = mysql_connect ( 'localhost', 'user', '8843d7f92416211de9ebb963ff4ce28125932878' );

I this possible? Have anyone done this before?

flag

75% accept rate
If someone has access to the code, then they can log in no matter what your password is. Just use a long randomly generated password, and don't display it to the user :-). – Bravery Onions Jul 4 at 21:49

2 Answers

vote up 0 vote down check

The short answer is no.

But, just wondering... what is your real concern? Someone hacking into your server and discovering your password?

link|flag
Just privacy, would you like it when you (for example) sign up on a website without you're password being encrypted in the database? – Stefan Jul 9 at 17:17
The reason you should hash (not encryption) peoples passwords is not to protect their data, but to prevent hackers, who already have breached your security and have access to everything, from being able to take you login details and try to reuse it to access your details on other sites, such as email. Just be wary of when you are walking the line between obfuscation and security. – Hans Jul 31 at 16:14
vote up 5 vote down

Then the "hash" would be the password. What would be the benefit?

link|flag
So someone, even if they get the plain text connection data, wouldn't know the user's password. Which would only matter if you use the same password on everything. – colithium Jul 4 at 20:01
But since you as the cautious developer/admin are already concerned about this you wouldn't use this password also everywhere else ;-) And you have placed it somewhere not accessible through your webserver. – VolkerK Jul 4 at 21:06
The benefit would be privacy. I'm developing an application which stores database connection values (in a 'master' database) for using the application. – Stefan Jul 5 at 10:47
2  
I don't see the advantage. Let's assume MySQL has such a ...connect_with_passwordhash() function. I somehow get access to your master database and steal all your password hashes. Now, can't I simply feed them the to ...connect_with_passwordhash() like your script does? – VolkerK Jul 5 at 11:23
That is true, though when it's THEORICALLY impossible to access the master MySQL database, it gives a user more privacy storing a password hashed. WHEN someone gets access to the master database, what's the point of stealing the password? All other databases (with other users and passwords) also run on the same server, why not copy all stuff immediatly? It's just a privacy issue.. I know it's possible to get access with the plain password OR hash. – Stefan Jul 5 at 13:49
show 1 more comment

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.