I am somewhat new to PHP coding and I am aware that malicious users can hack a website if you have not sanitized your PHP code. What I am wondering is whether they need a data entry box (like for file submissions, or user-name/password entry fields)?. Do commands like "include (header.php)" also need some sort of security or are they innately safe?
feedback
|
|
Don't trust the user.
is quite safe
means you want to think about how $someFile gets set. If you use any data that was given to you by a user to set $someFile's value, you'd better sanitize it. | |||||
feedback
|
|
Just like any other language, PHP code is as secure as the programmer writes it. Also like any other language, individual (and even common) security risks are too numerous and detailed to include in a StackOverflow answer. Find a book which covers Secure PHP coding. | |||||||||
feedback
|
|
To quote RSnake from a sla.ckers.org post back in 2006:
source: http://sla.ckers.org/forum/read.php?2,3976 Which introduces nicely the Hardened PHP project, Suhosin http://www.hardened-php.net/suhosin/ and Esser's Month of PHP Bugs project http://www.php-security.org/ | ||||
|
feedback
|
|
PHP is as secure as anything. But not by default, it relies on the skills of the programmer. Unlike .NET which tends to help out with security by default. Includes are safe just be careful if the paths are being dyanmically generated. The below is harmless (depending on the code in myfile.php)
| ||||
|
feedback
|
|
Agree with everyone here - PHP is not really more or less secure in and of itself than any other language. You should look deeply into your | |||
|
feedback
|
|
Regarding data entry boxes, one should be concerned about SQL injection attacks, overflow, bad chars, etc. Check out functions like | |||||
feedback
|
|
Your question is rather broad and general but to address a specific point you made:
is relatively safe but
is potentially a dangerous security hole depending on how | |||
feedback
|
|
To answer the question specifically, PHP as a language is very secure. For the language itself, it is recommended that you use the latest stable build to keep on top of language-based security. The php maintainers are the ones that create and fix bugs ;) | |||
|
feedback
|