http://qs321.pair.com?node_id=636604


in reply to Regex: Strip <script> tags?

I use the following in a piece of code here:

# Strip <script [..]>..</script> and <style>..</style> $content =~ s!<(s(?:cript|tyle))[^>]*>.*?</\1>!!gis;

backtracking++

Replies are listed 'Best First'.
Re^2: Regex: Strip <script> tags?
by clinton (Priest) on Sep 02, 2007 at 14:49 UTC
    There are plenty of things that will be missed with your regex. For instance, all of the onclick/focus/load/etc events.

    Have a look at HTML::StripScripts::Parser, which allows you to customise the HTML / CSS that you would like to allow, while removing XSS attacks.

    Clint