Search Results

3
votes

How to prevent Javascript injection attacks within user-generated HTML

Whitelist for elements and attributes is the only acceptable choice in my opinion. Anything not on your whitelist should be stripped out or encoded (change <>&" to entities). Also b …