Is htmlspcialchars($user_data) in PHP or h(user_data) in Ruby on Rails good enough for defending all cases of XSS (Cross-site scripting) attacks? What about encoding used or any other possible considerations?
|
|
|
|||
|
|
|
|
Both However, there are ways to execute (dangerous) Javascript that do not require HTML injection. For example, if you have an application that converts If you always use |
||
|
|
|
|
You can also try to use strip_tags if you don't allow HTML tags in postings. Also check out the html purifier |
||
|
|
|
In general there are three different types of XSS: the DOM-based, the Non-Persistent and the Persistent. Now server-side languages can only prevent the latter two (Non-Persistent and Persistent) as the first only takes place on the client-side. |
||
|
|
