Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: Regex: Strip <script> tags?

by hacker (Priest)
on Sep 02, 2007 at 14:37 UTC ( [id://636604]=note: print w/replies, xml ) Need Help??


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

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://636604]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (6)
As of 2024-04-23 18:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found