4
votes
6answers
74 views
What is the general concept behind XSS ?
Cross-site scripting (XSS) is a type
of computer security vulnerability
typically found in web applications
which enable malicious attackers to
inject client-side script into web
pages …
1
vote
5answers
243 views
Anyone know of a free XSS penetration testing tool?
I am looking for...
A spider/automated
Will find all input fields and queryStrings, then insert potential XSS discoveries
Reports any XSS vulnerabilities found
1
vote
1answer
26 views
Report xss/injection attacks by email (how to encode)
I have a form to singup yourself in a mailing list.
I had set up the script to send me a mail for every singup and confirmation.
The last days I saw a bunch of empty submisions (rejected). Turns out …
5
votes
7answers
297 views
JavaScript being injected in my PHP Pages
I have a website, and I just discoverd that somehow someone injected JavaScript on my page. How can I figure out what it does and how they did it?
<script> var x = unescape("%68% (**** some …
1
vote
4answers
349 views
Reading a File with Ruby
I have a text file that contains a list of regexp's which I regularly use to clean html files according:
list.txt
<p[^>]*>|<p>
<\/?(font|span)[^>]*>|
<\/u>\s*<u>|
…
2
votes
4answers
43 views
XSS security. Communication between 2 iframes from the same domain.
Domain abc.com has a page with 2 iframes. Both of them are loaded from domain xyz.com. Will XSS security block JavaScript access/communication/interaction between those two iframes?
5
votes
5answers
112 views
How do I prevent people from doing XSS in Java?
What should I do to prevent XSS in Java? I'm using Spring MVC. Right now I am just putting all places where I output user text into <c:out /> tags, but this seems error prone as I might miss a …
2
votes
2answers
55 views
How can escaping be used to prevent XSS attacks?
To prevent XSS attacks, output
escaping has been enabled;
The above is from symfony,but I don't understand.
0
votes
4answers
86 views
XSS Me Warnings - real XSS issues?
I've been using the free Firefox extension XSS Me from Security Compass to test for XSS problems. However, using what I understand to be safe filtering, XSS me still reports warnings. Are these …
0
votes
1answer
40 views
CodeIgniter: Use get_post with XSS filtering on entire $_POST array
Is there an easier way than
foreach($_POST as $x=>$y){
$arr[$x] = $this->input->get_post($y, TRUE);
}
to just have the entire $_POST array cleaned with CI's XSS filter. Looking at the …
3
votes
5answers
138 views
Is there an Open Source Python library for sanitizing HTML and removing all Javascript?
I want to write a web application that allows users to enter any HTML that can occur inside a <div> element. This HTML will then end up being displayed to other users, so I want to make sure …
17
votes
7answers
2k views
Sanitising user input using Python
What's the best way to sanitise user input for a Python-based web application? Is there a single function to remove HTML characters and any other necessary characters combinations to ensure that an …
5
votes
3answers
103 views
Escaping html in Java
How do I make sure I don't escape something twice?
I've heard that its good practice to escape values as you receive them from a form, and also escape when you output. That way you have two chances …
2
votes
5answers
110 views
Copy html content from iframe into div ( ajax ) ?
Hello Friends,
Lets assume I have my browser load an Iframe with <iframe src="test.html">
Can I, using ajax, load the content of test.html into a div in the main html page?
This idea is my …
2
votes
7answers
2k views
How do use fckEditor safely, without risk of cross site scripting?
This link describes an exploit into my app using fckEditor:
http://knitinr.blogspot.com/2008/07/script-exploit-via-fckeditor.html
How do I make my app secure while still using fckEditor? Is it an …
