An API for ensuring user-supplied HTML/CSS is in compliance within an application's rules.

learn more… | top users | synonyms

1
vote
0answers
113 views

XSS issues for html controls and request parameters

I need to fix XSS issues in my application. Now I am new to JSON and XSS. I think of two ways attacks can happen - first is through html input controls (text boxe/area etc) or through request ...
1
vote
0answers
124 views

Scripts/tags getting removed in text when using antisamy.jar/xml

I am using antisamy.xml and antisamy.jar for preventing XSS. So when i enter a script tag in the text box it truncates it and the other text apart from the tag is stored in the database. I want to ...
0
votes
0answers
17 views

java.lang.NoClassDefFoundError while using Antisamy liberaries for XSS vulnerabilities

i am preventing my site against XSS attack. i downloaded the following : antisamy.jar AntiSamy Policy Files NekoHTML.jar XercesImpl-2.5.jar places all of them into classpath of my project . i ...
0
votes
0answers
113 views

How to encode html entities in input using Antisamy

When I pass in   to Antisamy, it outputs the same thing back. How would I make it return  ?
0
votes
0answers
263 views

customizing the Antisamy policy xml to allow more html and grails tags

I am using the sanitizer plugin in grails and it internally uses the antisamy policy xml to apply sanitization rules to ui input. The policy xml I have selected is antisamy-myspace.xml which filters ...