An API for ensuring user-supplied HTML/CSS is in compliance within an application's rules.
0
votes
0answers
31 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
1answer
307 views
Antisamy policy file [closed]
My application has been through a security audit, and I was told that there are XSS issues (parameters passed through URL are stored without filtering, and that ouput is not entity encoded to take ...
1
vote
0answers
134 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 ...
0
votes
1answer
127 views
Which encoding by DOMParsing (Antisamy)
I'm using antisamy for a new project, to prevent the xss vunerabilities.
In the application, a user can upload content by an simple (ansi encoded) excel file.
It should be possible to insert some html ...
0
votes
0answers
125 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
271 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 ...
1
vote
1answer
264 views
JBoss AS 7: Error when use xml-apis.jar
I'm using anti-samy jar in my project. The class org.w3c.dom.Element is a dependency, and I found under xml-apis jar.
But I'm getting this error when using the app: org.w3c.dom.Element from [Module ...
1
vote
0answers
125 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
1answer
2k views
YouTube URL - regex
I have following config in my antisamy policy file:
Old YouTube Object:
<object width="1280" height="720">
<param
name="movie"
value="http://www.youtube.com/v/Hl-zzrqQoSE
...
2
votes
1answer
116 views
Instructions on compiling a java project from Google code
I use a tool called AntiSamy ( http://code.google.com/p/owaspantisamy/ ) to sanitize user input in a project. I don't know Java. I just create the object, call its method, and it works.
Recently the ...
1
vote
1answer
290 views
ParserException Error after deploying antiSamy
I'm using antiSami with my ColdFusion project. I'm loading antiSami through onApplicationStart() like this:
local.jarsArray =
[
expandPath("lib/antisami/antisamy-1.4.4.jar")
];
...
4
votes
1answer
579 views
AntiSamy for TinyMce style attributes
I'm using the antisamy on text i get from tinymce editor.
I'm using the "antisamy-tinymce-1.4.4.xml" file from owaspantisam. (as the policy file).
My problem is that it destroys all of the style ...