Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to set up a CMS on the back of a site but whenever post data has a <a href=... in it the post data gets scrapped.

I've got $config['global_xss_filtering'] = TRUE; in config

My question is there a way of disabling xss filtering for one item?

e.g.

$this->input->post('content', true); - turns it on, but how to turn it off?

Thanks everyone.

PVS

share|improve this question

4 Answers

up vote 14 down vote accepted

If you want to change the default behavior of the post() method, you can extend the core Input library, or if you're lazy you can just change line 278 (or so) of the Input library to read:

/**
* Fetch an item from the POST array
*
* @access   public
* @param    string
* @param    bool
* @return   string
*/
function post($index = '', $xss_clean = TRUE)
{
    return $this->_fetch_from_array($_POST, $index, $xss_clean);
}

The only difference here is that I've changed the $xss_clean variable to TRUE instead of FALSE. Now you can turn off global XSS filtering and it will automatically filter inputs unless you specify false as the second parameter in your call to the Input library's post() method. Just one method down is the get() method, and you can change that in the same way.

However, if I were you, I'd just extend the native library, because there's a good chance you'll have forgotten about this by the time you update CodeIgniter, and then you'll suddenly be wondering why you're getting XSS attacked. That would look like this:

class MY_Input extends CI_Input {

    function My_Input()
    {
        parent::CI_Input();
    }

    function post($index = '', $xss_clean = TRUE)
    {
        return parent::post($index, $xss_clean);
    }
}

You can learn more about extending libraries here:

http://codeigniter.com/user_guide/general/creating_libraries.html

share|improve this answer
Thanks for you help. I went down this route. – Von Schmytt Sep 30 '10 at 8:40
Nice hack. I think it should be return parent::post($index, $xss_clean);, however. – g33kz0r Jan 5 '11 at 5:51
1  
A better link to read about extending this is the 'Extending Core Class' part of this page codeigniter.com/user_guide/general/core_classes.html – gacrux Feb 27 '12 at 1:19
Thank you, gacrux, for keeping this answer relevant! :) – treeface Feb 27 '12 at 21:28
awsome hack, saved my life. I wonder if we should explain CI developers to add this inbuilt in next version. Or may be they are not doing it because of security issues. – aslamdoctor May 4 '12 at 1:51
show 2 more comments

Yes, the extension to Input with the post method replacement was very useful, as was the astute reader who notice that it should be return parent::post($index, $xss_clean). I was getting errors and didn't think about that obvious error. Fixed it and I'm off and running.

We're using it to escape post data for use in sql statements. Although CI's db methods are nice, we have some large sql statements that are easier to code by hand.

share|improve this answer

i defined

global $mypost;
$mypost=$_POST;

in index.php of my root cms

then anywhere i can the global variable like

global $mypost;

$var=isset($mypost["field"])? $mypost["field"]:"";

whenever i need post without filter.

worked for me hope it helps.

share|improve this answer

you can temporarily turn it off

$this->config->set_item('global_xss_filtering', false);

$c = $this->input->post('content'); then turn it back on..

$this->config->set_item('global_xss_filtering', true);

share|improve this answer
OP, I'd be interested to see if this works. Based on my understanding of CI's XSS filtering scheme, I think this would actually not have the desired effect. I believe CI does its XSS filtering of the entire $_POST variable when the controller is initiated, so changing the config after the fact would have little affect. Still..it's worth a try. – treeface Sep 24 '10 at 17:56
Hi, this didn't seem to work with my CI installation. Thanks for responding though! – Von Schmytt Sep 30 '10 at 8:40
You might be able to do this in a hook before the filtering is done. There are several stages of hooks to act. [link]codeigniter.com/user_guide/general/hooks.html[/link] – Eric Cope Mar 8 '11 at 20:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.