xss-filter
xss-filter copied to clipboard
will not remove <script>
regular expressions used in code are not properly created
this example is not processed by the filter:
test <script> a < b; c>d</script> final
you could use instead:
/<script[^>]*>.*?<\/script>/img
but do not respond to all cases