|
|
 |
Chapter 29. Using Register Globals
Perhaps the most controversial change in PHP is when the default value
for the PHP directive
register_globals went from ON to OFF in PHP
4.2.0. Reliance on this
directive was quite common and many people didn't even know it existed
and assumed it's just how PHP works. This page will explain how one can
write insecure code with this directive but keep in mind that the
directive itself isn't insecure but rather it's the misuse of it.
When on, register_globals will inject (poison) your scripts will all
sorts of variables, like request variables from HTML forms. This
coupled with the fact that PHP doesn't require variable initialization
means writing insecure code is that much easier. It was a difficult
decision, but the PHP community decided to disable this directive by
default. When on, people use variables yet really don't know for sure
where they come from and can only assume. Internal variables that are
defined in the script itself get mixed up with request data sent by
users and disabling register_globals changes this. Let's demonstrate
with an example misuse of register_globals:
Example 29-1. Example misuse with register_globals = on |
<?php
if (authenticated_user()) {
$authorized = true;
}
if ($authorized) {
include "/highly/sensitive/data.php";
}
?>
|
|
When register_globals = on, our logic above may be compromised. When
off, $authorized can't be set via request so it'll
be fine, although it really is generally a good programming practice to
initialize variables first. For example, in our example above we might
have first done $authorized = false. Doing this
first means our above code would work with register_globals on or off as
users by default would be unauthorized.
Another example is that of sessions.
When register_globals = on, we could also use
$username in our example below but again you must
realize that $username could also come from other
means, such as GET (through the URL).
Example 29-2. Example use of sessions with register_globals on or off |
<?php
if (isset($_SESSION['username'])) {
echo "Hello <b>{$_SESSION['username']}</b>";
} else {
echo "Hello <b>Guest</b><br />";
echo "Would you like to login?";
}
?>
|
|
It's even possible to take preventative measures to warn when forging is
being attempted. If you know ahead of time exactly where a variable
should be coming from, you can check to see if the submitted data is
coming from an inappropriate kind of submission. While it doesn't
guarantee that data has not been forged, it does require an attacker to
guess the right kind of forging. If you don't care where the request
data comes from, you can use $_REQUEST as it contains
a mix of GET, POST and COOKIE data. See also the manual section on
using variables from outside
of PHP.
Example 29-3. Detecting simple variable poisoning |
<?php
if (isset($_COOKIE['MAGIC_COOKIE'])) {
} elseif (isset($_GET['MAGIC_COOKIE']) || isset($_POST['MAGIC_COOKIE'])) {
mail("admin@example.com", "Possible breakin attempt", $_SERVER['REMOTE_ADDR']);
echo "Security violation, admin has been alerted.";
exit;
} else {
}
?>
|
|
Of course, simply turning off register_globals does not mean your code
is secure. For every piece of data that is submitted, it should also be
checked in other ways. Always validate your user data and initialize
your variables! To check for uninitialized variables you may turn up
error_reporting() to show
E_NOTICE level errors.
For information about emulating register_globals being On or Off, see this FAQ.
Superglobals: availability note: Since PHP 4.1.0, superglobal arrays such as $_GET
, $_POST, and $_SERVER,
etc. have been available. For more information, read the manual section
on superglobals
User Contributed Notes
Using Register Globals
kcinick at ciudad dot com dot ar
18-May-2005 05:12
if you plan to use php_admin_value register_globals [0-1] inside <VirtualHost> in apache, forget it, it don't show any error messages in the configuration, but at the time of running, it enable and disables register_globals at random request, if you need to customize this param to multiple virtual host, put it in a <Directory> directives, it works fine there...
PD: same for safe_mode, etc...
lexcomputer at gmail dot com
07-May-2005 10:42
If your have already a thousand of variables in your php script and you have only GET and POST method you can use this :
<?php
if(!empty($_GET)) extract($_GET);
if(!empty($_POST)) extract($_POST);
?>
on the the top of your php pages.
andy aatt greenhead dot ac dot uk
16-Apr-2005 10:42
Just to make it clear - if your site has register_globals ON then using a variable in a script with the same name as one of your session variables will overwrite the session variable!
Surprisingly, perhaps, some well known web hosting companies leave register_globals ON.
ryanwray at gmail dot com
24-Nov-2004 09:03
In reply to ben at nullcreations dot net:
This is true of the super-global $_SESSION, as it will always be processed last (it is not considered in variables_order directive)
However, it is possible to over-write other data, namely GET, POST, COOKIE, ENVIROMENT and SERVER.
Of course, what you can overwrite will depend on the directive variables_order - by default, you could overwrite GET and POST data via COOKIE (because cookie data is processed last out of the three which should not really be of great concern.
My below code is irrelevant unless extract or another method which does the same thing (ie. I have seen variable variables used before to reach the same affect) is used.
ben at nullcreations dot net
22-Nov-2004 06:53
Just a note to all the people who think $_SESSION can be poisoned by register_globals - it can't.
Consider the fact that GET/POST/COOKIE is Processed *before* sessions are. This means that even if you have register_globals on, and they write to $_SESSION, $_SESSION will just get reset again with the appropriate values.
Some people take to using extract() as a means to simulate register_globals in scripts where they're not sure what the server environment will be - this is when you should worry about such things. The reason is because extract() can concievably occur after GET/POST/COOKIE and SESSION processing.
ryanwray at gmail dot com
16-Nov-2004 07:06
In reply to post underneath:
I guess a method to see if that has occured is to see if it exists in the superglobal $_REQUEST. For example:
<?php
if (isset($_REQUEST['_SESSION'])) {
exit('An attempt to modify session data was made.');
}
?>
snarkles <anything at $myname dot net>
19-May-2004 02:06
If you're under an Apache environment that has this option enabled, but you're on shared hosting so have no access to php.ini, you can unset this value for your own site by placing the following in an .htaccess file in the root:
php_flag register_globals 0
The ini_set() function actually accomplishes nothing here, since the variables will have already been created by the time the script processes the ini file change.
And since this is the security chapter, just as a side note, another thing that's helpful to put into your .htaccess is:
<Files ".ht*">
deny from all
</Files>
That way no one can load .htaccess in their browser and have a peek at its contents.
Sorry, not aware of a similar workaround for IIS. :\
dav at thedevelopersalliance dot com
18-Dec-2003 12:38
import_request_variables() has a good solution to part of this problem - add a prefix to all imported variables, thus almost eliminating the factor of overriding internal variables through requests. you should still check data, but adding a prefix to imports is a start.
| |