How to output HTML but prevent XSS attacks

前端 未结 2 394
忘了有多久
忘了有多久 2020-12-07 00:28

I wrote a php script to fetch the email content.

These contents are HTML format.

I\'d like to display the content, as below



        
相关标签:
2条回答
  • 2020-12-07 00:52

    You should use strip_tags() function and allow only tags that you want user to add.

    echo strip_tags($text, '<p><a>');
    

    This line allows <p> and <a> tags every other tag will be removed.

    htmlspecialchars() works totally different.

    From manual:

    The translations performed are:

     '&' (ampersand) becomes '&amp;'
     '"' (double quote) becomes '&quot;' when ENT_NOQUOTES is not set.
     "'" (single quote) becomes '&#039;' (or &apos;) only when ENT_QUOTES is set.
     '<' (less than) becomes '&lt;'
     '>' (greater than) becomes '&gt;'
    

    There is very nice article about XSS prevention and CSRF prenvetion read it.

    0 讨论(0)
  • 2020-12-07 00:59

    HTMLPurifer can do that:

    require_once '/path/to/HTMLPurifier.auto.php';
    
    $config = HTMLPurifier_Config::createDefault();
    $purifier = new HTMLPurifier($config);
    $clean_html = $purifier->purify($dirty_html);
    

    It takes dirty HTML (ie possibly containing Javascript) and removes any script.

    PHP doesn't have anything native or built in that can remove Javacript like HTMLPurifier. You could use DOMDocument but this would be a lengthy task because Javascript can execute in some attributes (onerror, onclick) and is not just limited to <script></script>.

    0 讨论(0)
提交回复
热议问题