Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want some input on what you guys think is the most secure way to connect to a mysql database using php. Currently the way Im doing it is a utility php file that I include in the top of all my other php files. The utility php file is this

<?php
if(!defined('IN_PHP')){
    die("hackerssss");
}
$mysql_host = "localhost";
$mysql_user = "root"; 
$mysql_pass = "root"; 
$mysql_db = cokertrading;
?>

Any suggestions?

share|improve this question
13  
What do you mean by "secure"? Secure against what? – Pekka 웃 Sep 14 '10 at 15:47
10  
If your mysql username and password is really root/root, then a) you shouldn't be sharing that on a public website and b) there's your insecurity right there. – Daniel Vandersluis Sep 14 '10 at 15:48
4  
@tim is your local machine connected to the internet? – Daniel Vandersluis Sep 14 '10 at 15:51
8  
i love all the "if your user/pass are root/root then you're a dick" comments and answers. If you were going to post up php source about security you wouldn't put your ACCTUAL username and password in the post would you now? – Thomas Clayson Sep 14 '10 at 15:52
4  
@Thomas I've seen people post their actual passwords on SO before...people make mistakes sometimes. – Daniel Vandersluis Sep 14 '10 at 15:54
show 8 more comments

6 Answers

up vote 14 down vote accepted

First of all, as Alex said, you should be using a special account for that application with limited privileges.

After that, take a look at this How To secure passwords in PHP where you will find answers like:

User11318:

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.

da5id:

Store them in a file outside web root.

Sockleg:

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>

pdavis:

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!

Vagner:

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

References:

share|improve this answer
My answer is actually better if you have access to the server configuration. – Theodore R. Smith Sep 14 '10 at 16:05

Suggestion: You should probably never be running as root; create another account and give it the 'least' privileges required for your site.

share|improve this answer
ok thanks for the help – Tim Sep 14 '10 at 15:53
6  
+1 for the "least privileges" approach. – Pekka 웃 Sep 14 '10 at 16:00
2  
+1 for correcting using semi-colon; root is never a good idea. – matt_h Sep 16 '10 at 22:28
And then implement my solution ;p – Theodore R. Smith Nov 15 '12 at 22:54
  • Define a pair of proper login credentials instead of "root/root" (change the user name to something else, and choose a complicated password);

  • if possible restrict access to the database to localhost on a firewall level or, as @Scott says in the comments, set mySQL to listen to connections from 127.0.0.1 only. If both is not possible, restrict access on mySQL level. ("username"@"localhost")

share|improve this answer
The firewall rules aren't a bad idea, but they're unnecessary. You can accomplish the same by changing the mysql config to only listen on 127.0.0.1 – Scott Anderson Sep 14 '10 at 15:51
Unless cokertrading is defined as a constant somewhere else in the file. – UnkwnTech Sep 14 '10 at 15:52
@Scott good point. @Unknwntech yup, it's not sure. Removed. – Pekka 웃 Sep 14 '10 at 15:52
thanks will do! – Tim Sep 14 '10 at 15:52
+1 for restricting access to the local machine. – Daniel Vandersluis Sep 14 '10 at 15:56
  1. remember that anyone who can read that file will know your SQL password: set it not readable by others
  2. don't login with root: create a user for each application
  3. don't use "root" as your root password
  4. don't give your password to everyone
share|improve this answer

I can believe noone has mentioned MYSQLI and prepared statements yet, you may lock your password and database connection away, but thats ultimately futile if I can simply type ';DROP TABLE users;-- in the login form.

Check http://en.wikipedia.org/wiki/SQL_injection for an idea about what I'm talking about.

share|improve this answer
1  
Thanks for this. I need to do more reading about sql injection. – Tim Sep 14 '10 at 17:20

because php scripts are server side - ie they are parsed on the server and only the output is sent to the browser - the way you are doing this is perfectly secure.

The only way that people would be able to get your username and password would be to acctually hack into your server and view the source code - in which case there's no way (in php) to protect against this.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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