Codeigniter global_xss_filtering

前端 未结 5 1765
一个人的身影
一个人的身影 2020-12-03 18:53

In my codeigniter config I have $config[\'global_xss_filtering\'] = TRUE;. In my admin section I have a ckeditor which generates the frontend content.

E

5条回答
  •  借酒劲吻你
    2020-12-03 19:15

    Simple do the following on the views when displaying embedded object code like from YouTube and etc:

    echo str_replace(array('<', '>'), array('<', '>'), $embed_filed);
    

提交回复
热议问题