How do you protect your website from Local File Inclusion & SQL Injection (PHP)?
|
|
There are numerous measures to be taken. Be sure to sanitize all input before storing in the database. I suggest using mysql_real_escape_string() on all data that will be stored. Limit character-input to reasonable lengths, and be sure you're getting the TYPE of data you are expecting for that field. Lock multiple attempts to submitting specific areas of data. Crawl the contents of uploaded files looking for malicious patterns. Wikibooks has a chapter on SQL Injection; The list goes on and on. Fortunately, even a little effort in this area can patch a great number of vulnerabilities. |
||||||||||||
|
|
|
for protecting against SQL injection i'd recommend using PDO (http://us3.php.net/pdo). There's extensions etc that you need which can block adoption but it's good stuff. Personally I use a home brewed DB access layer that all my queries go thru which implements a bunch of nice-to-have's including |
||
|
|
|
|
Like others have said,
As for "local-file inclusion", I use two different methods. Keep in mind that the safest technique is to keep sensitive files in a place not accessible from the web. If it's only a file or to I don't want the world to see, I simply append '.ht' to the filename. Apache, by default, denies access to files beginning with '.ht'. Just make sure not to name your files the same as Apache config files (.htaccess, .htpasswd, etc). If you have multiple files that you don't want accessed, keep them all in a sub-directory of your site (again, sensitive files should be elsewhere). Then in the sub-directory, add a .htaccess file that denies access to the directory (they are still accessible via PHP).
|
||
|
|
|
|
Prepared statements for SQL (see For local paths you need to carefully sanitize input (brutal, but safe: |
||
|
|
|
|
By "local file inclusion", do you mean the case where you call Sanitising file paths requires you to set some ground rules about where files can be included from, and to ruthlessly reject any input which doesn't conform. For example, if you're just including files by name in a subdirectory, then you might apply the following basic algorithm:
The PHP documentation has some more information about filesystem security. You could also set up |
||
|
|
