I'm building a site which allows users to build their own websites via HTML templates. What kind of HTMLPurifier setting should I use to block out XSS attacks?
In my templating system, I would only allow them to edit specific parts of the template (i.e. not the whole HTML file, just parts of it). This does not allow them to edit the outside the tag, which is OK, but I don't want them to use javascript within the said specific parts.
Anyone who already has this kind of HTMLPurifier setup?