vote up 9 vote down star
3

I just starting out learning PHP, I've been developing web apps in ASP.Net for a long while. I was wondering if there are any PHP specific security mistakes that I should be looking out for.

So, my question is what are the top security tips that every PHP developer should know.

Please keep it to one tip per answer so people can vote up down effectively.

flag

64% accept rate
1  
I think this should be community wikificated - it is an unending list and there will be no single correct answer. – karim79 Jul 22 at 13:00

7 Answers

vote up 7 vote down

Avoid using register_globals

link|flag
vote up 6 vote down

here is a link of good PHP security programming practices.

http://phpsec.org/

Most of the security issues revolve around user input (naturally) and making sure they don't screw you over. Always make sure you validate your input.

http://htmlfixit.com/cgi-tutes/tutorial_PHP_Security_Issues.php

link|flag
Very nice. You can read a security guide in english, french, romania and serbian. – Luc M Jul 22 at 13:17
Question: has phpsec.org produced anything lately? (2008,9) – dimitris mistriotis Aug 17 at 21:15
vote up 3 vote down

If you're using a mysql database make sure you call mysql_real_escape_string when sending data to the database

link|flag
1  
Interesting name, was there a mysql_imaginary_escape_string function at some point? – Martin Brown Jul 23 at 10:07
mysql_phantasmal_escapist_wormhole was deprecated, if that's what you're thinking of ... – Smandoli Jul 23 at 15:10
vote up 2 vote down

Have a look at the Suhosin Hardening Patch, and check out the security vulnerabilities that it addresses.

link|flag
vote up 1 vote down

Most of the security issues related to PHP come from using unparsed "outside" (GET/POST/COOKIE) variables. People put that kind of data directly into file paths or sql queries, resulting in file leakage or sql injections.

link|flag
vote up 1 vote down

OWASP provides a lot of insight into security issues that are the biggest problems in applications today. It is nice to see that they have a PHP dedicated page available

http://www.owasp.org/index.php/PHP_Top_5

link|flag
vote up 0 vote down

Often introductory tutorials don't talk at all about checking data from users. Like all programming environments, never trust the data you get from users. Learn to use functions like is_numeric(), isset(), and mysql_real_escape_string() to protect your system.

There are also features that allow you to access remote files, and other creative things. I'd avoid those until you have a good understand of how and when they work (often they are disabled for security reasons).

link|flag

Your Answer

Get an OpenID
or

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