Would I be taking a big security risk by trusting the content of the $_SERVER variable array to get the name of php file using $_SERVER['PHP_SELF']?
feedback
|
|
Many but not all of the $_SERVER variables are attacker controlled. For instance
PoC:
It is easy to see this vulnerability in action by looking at phpinfo. | |||||||||
feedback
|
|
From the php.net manual:
So, if you are aware of all users who have access to change server configuration, (and all scripts in your session that may modify the contents of the variable) you can be reasonably sure of the | |||||||||
feedback
|
|
There is no special mechanism in effect to protect this variable. You can write to it as you can to any other variable. So you have to protect it against tampering like any other variable (disable register_globals, avoid variable variables, etc.). Then you can trust it. As a workaround to be sure, you can define your own constants early in your program:
and use predefined constants where available, e.g. | |||
|
feedback
|
|
Not at all, this can not actually be a risk at all as long as you don't use data from user. That is, use one of these:
| |||||||
feedback
|