Skip to main content

PHP Securely transform $_GET / $_POST array



I was checking my script for vulnerabilities and was shocked the way i used to do in the past which is extremely insecure:







foreach ($_GET as $key => $value){

$$key = $value;

}







or shorter







extract( $_GET );







I altered with firebug some POST/GET variables to match a name i used in my script. they can be overwritten if the name would be guessed correctly.





So i thought i had to do it individually naming like this: $allowed_vars =







$allowed_vars = array("time","hotfile","netload","megaupload","user","pfda","xyz","sara","amount_needed");

foreach ($_GET as $key => $value)

{

if (in_array($key,$allowed_vars))

{

$$key = $value;

}

}







This way saves some time than naming them individually.





What kind of automation have to be used for this?


Comments

  1. I don't use any automatism of the kind.
    I see no point in assigning request variables to global variables automatically.
    If it's one or two variables, I could deal with them manually.
    If there are more, I'd rather keep them as array members for the convenient handling.

    Yet I am using some sort of whitelisting approach similar to yours.
    but not to create global variables out of POST data but to add that data into SQL query.

    Like in this simple helper function to produce SET statement:

    function dbSet($fields) {
    $set='';
    foreach ($fields as $field) {
    if (isset($_POST[$field])) {
    $set.="`$field`='".mysql_real_escape_string($_POST[$field])."', ";
    }
    }
    return substr($set, 0, -2);
    }

    $id = intval($_POST['id']);
    $fields = explode(" ","name surname lastname address zip fax phone");
    $query = "UPDATE $table SET ".dbSet($fields)." stamp=NOW() WHERE id=$id";

    ReplyDelete
  2. You can save even more time by not extrating them at all. Just use them from the $_GET array. The advantages of this are not just avoiding collision with script variables (or worse) but also that you don't have to update that "automatism" when you add request parameters.

    When I am working with POST data, as from a form, I often process each explicitly:

    $data = array();
    $data['field1'] = someSaniFunction($_POST['field1']);
    $data['field2'] = someOtherFunction($_POST['field2']);
    ...


    In this way I ensure that each field is properly handled, and only the fields I expect are touched.

    ReplyDelete
  3. In my experience, you shouldn't transform data in the $_REQUEST array into variables using $$ as it gives the possibility of overwriting variables held within the current scope.

    Instead, you should consider having a request object or array in which you filter the data and only access named variables that you require. This way, you do not have to keep extending your allowed variable names and still maintain security.

    The ZF for example has a request object, and they recommend using a input filter when working on this data:
    http://framework.zend.com/manual/en/zend.filter.input.html

    ReplyDelete
  4. You can use the extract function in a more secure way:

    extract($_REQUEST, EXTR_SKIP);


    This will not overwrite variables that already exist in your code. See here for other parameters you can use

    ReplyDelete

Post a Comment

Popular posts from this blog

[韓日関係] 首相含む大幅な内閣改造の可能性…早ければ来月10日ごろ=韓国

div not scrolling properly with slimScroll plugin

I am using the slimScroll plugin for jQuery by Piotr Rochala Which is a great plugin for nice scrollbars on most browsers but I am stuck because I am using it for a chat box and whenever the user appends new text to the boxit does scroll using the .scrollTop() method however the plugin's scrollbar doesnt scroll with it and when the user wants to look though the chat history it will start scrolling from near the top. I have made a quick demo of my situation http://jsfiddle.net/DY9CT/2/ Does anyone know how to solve this problem?

Why does this javascript based printing cause Safari to refresh the page?

The page I am working on has a javascript function executed to print parts of the page. For some reason, printing in Safari, causes the window to somehow update. I say somehow, because it does not really refresh as in reload the page, but rather it starts the "rendering" of the page from start, i.e. scroll to top, flash animations start from 0, and so forth. The effect is reproduced by this fiddle: http://jsfiddle.net/fYmnB/ Clicking the print button and finishing or cancelling a print in Safari causes the screen to "go white" for a sec, which in my real website manifests itself as something "like" a reload. While running print button with, let's say, Firefox, just opens and closes the print dialogue without affecting the fiddle page in any way. Is there something with my way of calling the browsers print method that causes this, or how can it be explained - and preferably, avoided? P.S.: On my real site the same occurs with Chrome. In the ex