vote up 17 vote down star
6

Hi all,

When a PHP application makes a database connection it of course generally needs to pass a login and password. If I'm using a single, minimum-permission login for my application, then the PHP needs to know that login and password somewhere. What is the best way to secure that password? It seems like just writing it in the PHP code isn't a good idea.

flag
Do you mean the user passwords or the database password used in the connection string? – Ozgur Ozcitak Sep 18 '08 at 23:31
Database password used in the connection string. Thanks! – snuh Sep 19 '08 at 0:29

16 Answers

vote up 22 vote down check

Several period misread this as a question about how to store passwords in a database. That is wrong. It is about how to store the password that lets you get to the database.

The usual solution is to move the password out of source-code into a configuration file. Then leave administration and securing that configuration file up to your system administrators. That way developers do not need to know anything about the production passwords, and there is no record of the password in your source-control.

link|flag
Thanks. If I understand this correctly, the php file will then have an include to the config file, allowing it to use the password. e.g. I create a file called 'app1_db_cfg.php' that stores the login, pword, & db name. Then my application.php page includes 'app1_db_cfg.php' and I'm in business! – snuh Sep 19 '08 at 0:40
yep, I usually do DEFINE("DB_NAME","mydb"); etc it is also handy to define anything you'll be using on more then page, that you might want to change later – mrinject Sep 19 '08 at 3:33
Just saving the password in a config file is not much more secure. It needs to be properly protected, using strong ACLs and strong encryption with properly protected keys... See my post below. – AviD Sep 21 '08 at 19:23
2  
I agree that the config needs to be properly protected. However knowing how to do that is the business of system administrators, not developers. I disagree on the value of strong encryption in this case. If you can't protect your config file, what makes you think you can protect your keys? – bentilly Sep 21 '08 at 20:04
1  
I prefer using a database account that is only allowed to acces the database from the web server. And then I don't bother encrypting the configuration, I just store it outside the web root. – gnud Apr 25 at 8:01
show 1 more comment
vote up 3 vote down

If you're hosting on someone else's server and don't have access outside your webroot, you can always put your password and/or database connection in a file and then lock the file using a .htaccess:

<files mypasswdfile>
order allow,deny
deny from all
</files>
link|flag
Thanks, that was exactly what I was looking for. – David Gladfelter Aug 11 at 14:48
vote up 2 vote down

Best way is to not store the password at all!
For instance, if you're on a Windows system, and connecting to SQL Server, you can use Integrated Authentication to connect to the database without a password, using the current process's identity.

If you do need to connect with a password, first encrypt it, using strong encryption (e.g. using AES-256, and then protect the encryption key, or using asymmetric encryption and have the OS protect the cert), and then store it in a configuration file (outside of the web directory) with strong ACLs.

link|flag
vote up 1 vote down

Storing something outside the webroot which can't be accessed from the web is a smart move. Then require() this file and use this with the mysql_connect . On my webhotel I have this file where all of my subdomain-folders are. So I've created a function that returns the password because I use multiple database-accounts.

function returnDatabasePassword($username) {
  $passwords = array(
    'db_username' => 'password',
    'db_username2' => 'anotherPassword'
  );
  return $passwords[$username];
}
link|flag
vote up 2 vote down

if it is possible to create the database connection in the same file where the credentials are stored. Inline the credentials in the connect statement.

mysql_connect("localhost", "me", "mypass");

Otherwise it is best to unset the credentials after the connect statement, because credentials that are not in memory, can't be read from memory ;)

include("/outside-webroot/db_settings.php");  
mysql_connect("localhost", $db_user, $db_pass);  
unset ($db_user, $db_pass);
link|flag
vote up 7 vote down

For extremely secure systems we encrypt the database password in a configuration file (which itself is secured by the system administrator). On application/server startup the application then prompts the system administrator for the decryption key. The database password is then read from the config file, decrypted, and stored in memory for future use. Still not 100% secure since it is stored in memory decrypted, but you have to call it 'secure enough' at some point!

link|flag
vote up 1 vote down

An additional trick is to use a PHP separate configuration file that looks like that :

<?php exit() ?>

[...]

Plain text data including password

This does not prevent you from setting access rules properly. But in the case your web site is hacked, a "require" or an "include" will just exit the script at the first line so it's even harder to get the data.

Nevertheless, do not ever let configuration files in a directory that can be accessed through the web. You should have a "Web" folder containing your controler code, css, pictures and js. That's all. Anything else goes in offline folders.

link|flag
but then how does the php script read the credentials stored in the file? – Christopher Mahan Jan 22 at 8:40
You use fopen(), like for a regular text file. – e-satis Jan 23 at 14:56
vote up 0 vote down

If you are using PostgreSQL, then it looks in ~/.pgpass for passwords automatically. See the manual for more information.

link|flag
vote up 2 vote down

Your choices are kind of limited as as you say you need the password to access the database. One general approach is to store the username and password in a seperate configuration file rather than the main script. Then be sure to store that outside the main web tree. That was if there is a web configuration problem that leaves your php files being simply displayed as text rather than being executed you haven't exposed the password.

Other than that you are on the right lines with minimal access for the account being used. Add to that

  • Don't use the combination of username/password for anything else
  • Configure the database server to only accept connections from the web host for that user (localhost is even better if the DB is on the same machine) That way even if the credentials are exposed they are no use to anyone unless they have other access to the machine.
  • Obfuscate the password (even ROT13 will do) it won't put up much defense if some does get access to the file, but at least it will prevent casual viewing of it.

Peter

link|flag
vote up 0 vote down

Just putting it into a config file somewhere is the way it's usually done. Just make sure you A) disallow database access from any servers outside your network, B) take care not to accidentally show the password to users (in an error message, or through PHP files accidentally being served as HTML, etcetera.)

link|flag
vote up 2 vote down

If you're talking about the database password, as opposed to the password coming from a browser, the standard practice seems to be to put the database password in a PHP config file on the server.

You just need to be sure that the php file containing the password has appropriate permissions on it. I.e. it should be readable only by the web server and by your user account.

link|flag
vote up 2 vote down

Put the database password in a file, make it read-only to the user serving the files.

Unless you have some means of only allowing the php server process to access the database, this is pretty much all you can do.

link|flag
vote up 9 vote down

Store them in a file outside web root.

link|flag
1  
And also, as mentioned elsewhere, outside of source control. – Frank Farmer May 26 at 20:46
Yes, very good point. – da5id May 26 at 21:29
vote up 1 vote down

I think the OP means the database password.

Unless someone gains access to your server via FTP or SSH (in which case you're already buggered), I wouldn't worry about storing passwords in plaintext in PHP files. Most PHP applications I've seen do it that way, for example phpbb.

link|flag
vote up 0 vote down

To be totally secure, you'll need to set up an ssl connection, otherwise anyone on your network can still sniff the password you type.

link|flag
vote up -2 vote down

MD5ing both the real password and the user submitted one, then comparing the two is a generally accepted way of avoiding storing plaintext passwords anywhere.

link|flag
That doesn't help him when he *needs to get the plaintext password for the database to be able to connect. – bentilly Sep 18 '08 at 23:33
Ah, I see, reading the question again, I see what he means. – William Keller Sep 18 '08 at 23:42

Your Answer

Get an OpenID
or

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