Overview
Php is a dynamic scripting language used by programmers to develop webservers, message boards, chat applications and a variety of programs. By default php stores variables passed from the URL in a global context. Programmers often fail to change this setting which can allow serious vulnerabilities to surface. Often intruders can exploit the vulnerabilities created by this failure to gain administrative rights to the application or server, manipulate data, and execute arbitrary php code.
Description
Some applications written in php fail to follow proper programming practices. Global variables are used to store sensitive data, and can subsequently be altered by an intruder to gain access to the system. Often programmers use global variables to store account names, passwords and permission settings. An intruder can easily use crafted URLs to change the values in these global variables and compromise the system as demonstrated by VU#314347. Another example that can lead to a more severe impact is the manipulation of php variables related to source code locations. Assume that there is a file not directly accessed by the browser, but is included by the server from somewhere else called includefile.php. It may be included by the file function.php that contains the line include("$includedir/includefile.php"); |
Impact
Intruders can exploit these vulnerabilities to gain administrative rights to the application or server, manipulate data, and execute arbitrary php code. |
Solution
Disable global variables from the URL/client. Best programming practices are to not use global variables if at all possible. Do not permit the execution of code that does not originate from the webserver. If you need to use global variables, set variables_order = "egcps" in php.ini and set the value of every global variable in every file that the global variable is used. |
Vendor Information
CVSS Metrics
Group | Score | Vector |
---|---|---|
Base | ||
Temporal | ||
Environmental |
References
- http://www.securityfocus.com/bid/3383
- http://www.securityfocus.com/bid/3384
- http://www.securityfocus.com/bid/3385
- http://www.securityfocus.com/bid/3386
- http://www.securityfocus.com/bid/3387
- http://www.securityfocus.com/bid/3388
- http://www.securityfocus.com/bid/3389
- http://www.securityfocus.com/bid/3390
- http://www.securityfocus.com/bid/3391
- http://www.securityfocus.com/bid/3392
- http://www.securityfocus.com/bid/3393
- http://www.securityfocus.com/bid/3394
- http://www.securityfocus.com/bid/3395
- http://www.securityfocus.com/bid/3396
- http://www.securityfocus.com/bid/3397
- http://www.securityfocus.com/bid/3093
Acknowledgements
Our thanks to atil
This document was written by Jason Rafail.
Other Information
CVE IDs: | None |
Severity Metric: | 17.53 |
Date Public: | 2001-07-25 |
Date First Published: | 2001-10-18 |
Date Last Updated: | 2001-10-22 14:22 UTC |
Document Revision: | 32 |