XSS, Reflected Cross Site Scripting, CWE-79, CAPEC-86, DORK, GHDB, en.wordpress.com Report generated by XSS.CX at Mon Aug 15 10:34:52 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)
2. Password field with autocomplete enabled
2.1. http://en.wordpress.com/about/
2.2. http://en.wordpress.com/advanced-services/
2.3. http://en.wordpress.com/features/
2.4. http://en.wordpress.com/firehose/
2.5. http://en.wordpress.com/products/
2.6. http://en.wordpress.com/stats/
3. Cookie scoped to parent domain
4. Cross-domain script include
4.1. http://en.wordpress.com/about/
4.2. http://en.wordpress.com/advanced-services/
4.3. http://en.wordpress.com/features/
4.4. http://en.wordpress.com/features/
4.5. http://en.wordpress.com/firehose/
4.6. http://en.wordpress.com/products/
4.7. http://en.wordpress.com/products/
4.8. http://en.wordpress.com/stats/
5. Cookie without HttpOnly flag set
6. Email addresses disclosed
1. Cross-site scripting (reflected)
next
Summary
Severity:
High
Confidence:
Certain
Host:
http://en.wordpress.com
Path:
/public-charts/flot.php
Issue detail
The value of the target request parameter is copied into a JavaScript string which is encapsulated in double quotation marks. The payload 4271d</script><script>alert(1)</script>709674de0f9 was submitted in the target parameter. This input was echoed unmodified in the application's response. This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Remediation detail
Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.
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.
Request
POST /public-charts/flot.php HTTP/1.1 Host: en.wordpress.com Proxy-Connection: keep-alive Referer: http://en.wordpress.com/stats/ Content-Length: 66 Origin: http://en.wordpress.com X-Requested-With: XMLHttpRequest User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1 Content-Type: application/x-www-form-urlencoded Accept: text/html, */*; q=0.01 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: __qca=P0-1122904968-1313425006674; ref=bigassorangeonleft; hiab=on; admobuu=f59859e5e58deeaf9fd3fad990d22092; TESTCOOKIE=home blog=14899185&target=stat-chart-posts4271d</script><script>alert(1)</script>709674de0f9 &chart_type=extra&extra=posts
Response
HTTP/1.1 200 OK Server: nginx Date: Mon, 15 Aug 2011 16:31:29 GMT Content-Type: text/html; charset=utf-8 Connection: close Vary: Accept-Encoding X-hacker: If you're reading this, you should visit automattic.com/jobs and apply to join the fun, mention this header. Content-Length: 41346 <script type="text/javascript"> var graph = null, tooltip = null, previousFlotPoint = null; function yaxis_tick_formatter( val, axis ) { var dec = 0; if ( axis.max < 1 ) dec = 2;...[SNIP]... styles[leftright] = x + xoffset; styles[topbottom] = y; tooltip = jQuery( html ).css( styles ).appendTo("body").show(); } function bindTooltips( graph ) { jQuery("#stat-chart-posts4271d</script><script>alert(1)</script>709674de0f9 ").bind("plothover", function (event, pos, item) { graph.unhighlight(); if ( item ) { item.series.color = '#ffae00'; graph.highlight( item.series, item.datapoint ); if ( pre...[SNIP]...
2. Password field with autocomplete enabled
previous
next
There are 6 instances of this issue:
Issue background
Most browsers have a facility to remember user credentials that are entered into HTML forms. This function can be configured by the user and also by applications which employ user credentials. If the function is enabled, then credentials entered by the user are stored on their local computer and retrieved by the browser on future visits to the same application. The stored credentials can be captured by an attacker who gains access to the computer, either locally or through some remote compromise. Further, methods have existed whereby a malicious web site can retrieve the stored credentials for other applications, by exploiting browser vulnerabilities or through application-level cross-domain attacks.
Issue remediation
To prevent browsers from storing credentials entered into HTML forms, you should include the attribute autocomplete="off" within the FORM tag (to protect all form fields) or within the relevant INPUT tags (to protect specific individual fields).
2.1. http://en.wordpress.com/about/
next
Summary
Severity:
Low
Confidence:
Certain
Host:
http://en.wordpress.com
Path:
/about/
Issue detail
The page contains a form with the following action URL:https://en.wordpress.com/wp-login.php The form contains the following password field with autocomplete enabled:
Request
GET /about/ HTTP/1.1 Host: en.wordpress.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: __qca=P0-1122904968-1313425006674; ref=bigassorangeonleft; TESTCOOKIE=home; hiab=on
Response
HTTP/1.1 200 OK Server: nginx Date: Mon, 15 Aug 2011 16:19:22 GMT Content-Type: text/html; charset=UTF-8 Connection: close Vary: Accept-Encoding Last-Modified: Mon, 15 Aug 2011 16:16:28 +0000 Cache-Control: max-age=126, must-revalidate Vary: Cookie X-hacker: If you're reading this, you should visit automattic.com/jobs and apply to join the fun, mention this header. X-Pingback: http://wordpress.com/xmlrpc.php Set-Cookie: hiab=on; path=/; domain=.wordpress.com Link: <http://wp.me/P1-4f>; rel=shortlink X-nananana: Batcache Content-Length: 25362 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en"><!-- generated...[SNIP]... <div id="adminbar"> <form name="loginform" class="login-form" id="adminbarlogin" action="https://en.wordpress.com/wp-login.php" method="post"> <label class="login userlogin-label" id="userlogin_label">...[SNIP]... </span><input class="adminbar-input user-pass-input" type="password" name="pwd" id="user_pass" value="" tabindex="2" /> </label>...[SNIP]...
2.2. http://en.wordpress.com/advanced-services/
previous
next
Summary
Severity:
Low
Confidence:
Certain
Host:
http://en.wordpress.com
Path:
/advanced-services/
Issue detail
The page contains a form with the following action URL:https://en.wordpress.com/wp-login.php The form contains the following password field with autocomplete enabled:
Request
GET /advanced-services/ HTTP/1.1 Host: en.wordpress.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: __qca=P0-1122904968-1313425006674; ref=bigassorangeonleft; TESTCOOKIE=home; hiab=on
Response
HTTP/1.1 200 OK Server: nginx Date: Mon, 15 Aug 2011 16:19:42 GMT Content-Type: text/html; charset=UTF-8 Connection: close Vary: Accept-Encoding Last-Modified: Mon, 15 Aug 2011 16:17:53 +0000 Cache-Control: max-age=191, must-revalidate Vary: Cookie X-hacker: If you're reading this, you should visit automattic.com/jobs and apply to join the fun, mention this header. X-Pingback: http://wordpress.com/xmlrpc.php Link: <http://wp.me/P1-7R>; rel=shortlink X-nananana: Batcache Content-Length: 24283 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en"><!-- generated...[SNIP]... <div id="adminbar"> <form name="loginform" class="login-form" id="adminbarlogin" action="https://en.wordpress.com/wp-login.php" method="post"> <label class="login userlogin-label" id="userlogin_label">...[SNIP]... </span><input class="adminbar-input user-pass-input" type="password" name="pwd" id="user_pass" value="" tabindex="2" /> </label>...[SNIP]...
2.3. http://en.wordpress.com/features/
previous
next
Summary
Severity:
Low
Confidence:
Certain
Host:
http://en.wordpress.com
Path:
/features/
Issue detail
The page contains a form with the following action URL:https://en.wordpress.com/wp-login.php The form contains the following password field with autocomplete enabled:
Request
GET /features/ HTTP/1.1 Host: en.wordpress.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: __qca=P0-1122904968-1313425006674; ref=bigassorangeonleft; TESTCOOKIE=home
Response
HTTP/1.1 200 OK Server: nginx Date: Mon, 15 Aug 2011 16:18:22 GMT Content-Type: text/html; charset=UTF-8 Connection: close Vary: Accept-Encoding Last-Modified: Mon, 15 Aug 2011 16:13:46 +0000 Cache-Control: max-age=24, must-revalidate Vary: Cookie X-hacker: If you're reading this, you should visit automattic.com/jobs and apply to join the fun, mention this header. X-Pingback: http://wordpress.com/xmlrpc.php Set-Cookie: hiab=on; path=/; domain=.wordpress.com Link: <http://wp.me/P1-66>; rel=shortlink X-nananana: Batcache Content-Length: 35391 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en"><!-- generated...[SNIP]... <div id="adminbar"> <form name="loginform" class="login-form" id="adminbarlogin" action="https://en.wordpress.com/wp-login.php" method="post"> <label class="login userlogin-label" id="userlogin_label">...[SNIP]... </span><input class="adminbar-input user-pass-input" type="password" name="pwd" id="user_pass" value="" tabindex="2" /> </label>...[SNIP]...
2.4. http://en.wordpress.com/firehose/
previous
next
Summary
Severity:
Low
Confidence:
Certain
Host:
http://en.wordpress.com
Path:
/firehose/
Issue detail
The page contains a form with the following action URL:https://en.wordpress.com/wp-login.php The form contains the following password field with autocomplete enabled:
Request
GET /firehose/ HTTP/1.1 Host: en.wordpress.com Proxy-Connection: keep-alive Referer: http://en.wordpress.com/advanced-services/ User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: __qca=P0-1122904968-1313425006674; ref=bigassorangeonleft; TESTCOOKIE=home; hiab=on; admobuu=f59859e5e58deeaf9fd3fad990d22092
Response
HTTP/1.1 200 OK Server: nginx Date: Mon, 15 Aug 2011 16:31:13 GMT Content-Type: text/html; charset=UTF-8 Connection: close Vary: Accept-Encoding Last-Modified: Mon, 15 Aug 2011 16:31:13 +0000 Cache-Control: max-age=300, must-revalidate Vary: Cookie X-hacker: If you're reading this, you should visit automattic.com/jobs and apply to join the fun, mention this header. X-Pingback: http://wordpress.com/xmlrpc.php Link: <http://wp.me/P1-jH>; rel=shortlink X-nananana: Batcache Content-Length: 24211 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en"><!-- generated...[SNIP]... <div id="adminbar"> <form name="loginform" class="login-form" id="adminbarlogin" action="https://en.wordpress.com/wp-login.php" method="post"> <label class="login userlogin-label" id="userlogin_label">...[SNIP]... </span><input class="adminbar-input user-pass-input" type="password" name="pwd" id="user_pass" value="" tabindex="2" /> </label>...[SNIP]...
2.5. http://en.wordpress.com/products/
previous
next
Summary
Severity:
Low
Confidence:
Certain
Host:
http://en.wordpress.com
Path:
/products/
Issue detail
The page contains a form with the following action URL:https://en.wordpress.com/wp-login.php The form contains the following password field with autocomplete enabled:
Request
GET /products/ HTTP/1.1 Host: en.wordpress.com Proxy-Connection: keep-alive Referer: http://en.wordpress.com/advanced-services/ User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: __qca=P0-1122904968-1313425006674; ref=bigassorangeonleft; hiab=on; TESTCOOKIE=home
Response
HTTP/1.1 200 OK Server: nginx Date: Mon, 15 Aug 2011 16:30:54 GMT Content-Type: text/html; charset=UTF-8 Connection: close Vary: Accept-Encoding Last-Modified: Mon, 15 Aug 2011 16:26:04 +0000 Cache-Control: max-age=10, must-revalidate Vary: Cookie X-hacker: If you're reading this, you should visit automattic.com/jobs and apply to join the fun, mention this header. X-Pingback: http://wordpress.com/xmlrpc.php Link: <http://wp.me/P1-5u>; rel=shortlink X-nananana: Batcache Content-Length: 32461 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en"><!-- generated...[SNIP]... <div id="adminbar"> <form name="loginform" class="login-form" id="adminbarlogin" action="https://en.wordpress.com/wp-login.php" method="post"> <label class="login userlogin-label" id="userlogin_label">...[SNIP]... </span><input class="adminbar-input user-pass-input" type="password" name="pwd" id="user_pass" value="" tabindex="2" /> </label>...[SNIP]...
2.6. http://en.wordpress.com/stats/
previous
next
Summary
Severity:
Low
Confidence:
Certain
Host:
http://en.wordpress.com
Path:
/stats/
Issue detail
The page contains a form with the following action URL:https://en.wordpress.com/wp-login.php The form contains the following password field with autocomplete enabled:
Request
GET /stats/ HTTP/1.1 Host: en.wordpress.com Proxy-Connection: keep-alive Referer: http://en.wordpress.com/advanced-services/ User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: __qca=P0-1122904968-1313425006674; ref=bigassorangeonleft; TESTCOOKIE=home; hiab=on; admobuu=f59859e5e58deeaf9fd3fad990d22092 If-Modified-Since: Mon, 15 Aug 2011 16:12:52 +0000
Response
HTTP/1.1 200 OK Server: nginx Date: Mon, 15 Aug 2011 16:31:12 GMT Content-Type: text/html; charset=UTF-8 Connection: close Vary: Accept-Encoding Last-Modified: Mon, 15 Aug 2011 16:27:49 +0000 Cache-Control: max-age=97, must-revalidate Vary: Cookie X-hacker: If you're reading this, you should visit automattic.com/jobs and apply to join the fun, mention this header. X-Pingback: http://wordpress.com/xmlrpc.php Link: <http://wp.me/P1-8R>; rel=shortlink X-nananana: Batcache Content-Length: 32635 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en"><!-- generated...[SNIP]... <div id="adminbar"> <form name="loginform" class="login-form" id="adminbarlogin" action="https://en.wordpress.com/wp-login.php" method="post"> <label class="login userlogin-label" id="userlogin_label">...[SNIP]... </span><input class="adminbar-input user-pass-input" type="password" name="pwd" id="user_pass" value="" tabindex="2" /> </label>...[SNIP]...
3. Cookie scoped to parent domain
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://en.wordpress.com
Path:
/signup/
Issue detail
The following cookie was issued by the application and is scoped to a parent of the issuing domain:ref=bigassorangeonleft; path=/; domain=wordpress.com The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Issue background
A cookie's domain attribute determines which domains can access the cookie. Browsers will automatically submit the cookie in requests to in-scope domains, and those domains will also be able to access the cookie via JavaScript. If a cookie is scoped to a parent domain, then that cookie will be accessible by the parent domain and also by any other subdomains of the parent domain. If the cookie contains sensitive data (such as a session token) then this data may be accessible by less trusted or less secure applications residing at those domains, leading to a security compromise.
Issue remediation
By default, cookies are scoped to the issuing domain and all subdomains. If you remove the explicit domain attribute from your Set-cookie directive, then the cookie will have this default scope, which is safe and appropriate in most situations. If you particularly need a cookie to be accessible by a parent domain, then you should thoroughly review the security of the applications residing on that domain and its subdomains, and confirm that you are willing to trust the people and systems which support those applications.
Request
GET /signup/?ref=bigassorangeonleft HTTP/1.1 Host: en.wordpress.com Proxy-Connection: keep-alive Referer: http://wordpress.com/ User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: __qca=P0-1122904968-1313425006674
Response
HTTP/1.1 302 Found Server: nginx Date: Mon, 15 Aug 2011 16:16:59 GMT Content-Type: text/html; charset=utf-8 Connection: close X-hacker: If you're reading this, you should visit automattic.com/jobs and apply to join the fun, mention this header.Set-Cookie: ref=bigassorangeonleft; path=/; domain=wordpress.com Location: https://en.wordpress.com/signup/ Content-Length: 0
4. Cross-domain script include
previous
next
There are 8 instances of this issue:
Issue background
When an application includes a script from an external domain, this script is executed by the browser within the security context of the invoking application. The script can therefore do anything that the application's own scripts can do, such as accessing application data and performing actions within the context of the current user. If you include a script from an external domain, then you are trusting that domain with the data and functionality of your application, and you are trusting the domain's own security to prevent an attacker from modifying the script to perform malicious actions within your application.
Issue remediation
Scripts should not be included from untrusted domains. If you have a requirement which a third-party script appears to fulfil, then you should ideally copy the contents of that script onto your own domain and include it from there. If that is not possible (e.g. for licensing reasons) then you should consider reimplementing the script's functionality within your own code.
4.1. http://en.wordpress.com/about/
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://en.wordpress.com
Path:
/about/
Issue detail
The response dynamically includes the following scripts from other domains:http://b.scorecardresearch.com/beacon.js http://edge.quantserve.com/quant.js http://s.gravatar.com/js/gprofiles.js?w&ver=MU http://s0.wp.com/wp-includes/js/jquery/jquery.js?m=1308237710g&ver=1.6.1 http://s1.wp.com/wp-content/mu-plugins/gravatar-hovercards/wpgroho.js?m=1311367663g&ver=MU http://s1.wp.com/wp-content/themes/h4/js/scripts.js?m=1308237717g&ver=MU http://s2.wp.com/wp-content/mu-plugins/highlander-comments/script.js?m=1312572696g&ver=20110804 http://s2.wp.com/wp-content/themes/h4/tabs/tab.js?m=1312592015g&ver=20110802
Request
GET /about/ HTTP/1.1 Host: en.wordpress.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: __qca=P0-1122904968-1313425006674; ref=bigassorangeonleft; TESTCOOKIE=home; hiab=on
Response
HTTP/1.1 200 OK Server: nginx Date: Mon, 15 Aug 2011 16:19:22 GMT Content-Type: text/html; charset=UTF-8 Connection: close Vary: Accept-Encoding Last-Modified: Mon, 15 Aug 2011 16:16:28 +0000 Cache-Control: max-age=126, must-revalidate Vary: Cookie X-hacker: If you're reading this, you should visit automattic.com/jobs and apply to join the fun, mention this header. X-Pingback: http://wordpress.com/xmlrpc.php Set-Cookie: hiab=on; path=/; domain=.wordpress.com Link: <http://wp.me/P1-4f>; rel=shortlink X-nananana: Batcache Content-Length: 25362 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en"><!-- generated...[SNIP]... <link rel='stylesheet' id='post-reactions-css' href='http://s0.wp.com/wp-content/mu-plugins/post-react-2/style.css?m=1313420636g&ver=2' type='text/css' media='all' /><script type='text/javascript' src='http://s0.wp.com/wp-includes/js/jquery/jquery.js?m=1308237710g&ver=1.6.1'> </script><script type='text/javascript' src='http://s1.wp.com/wp-content/themes/h4/js/scripts.js?m=1308237717g&ver=MU'> </script><script type='text/javascript' src='http://s2.wp.com/wp-content/themes/h4/tabs/tab.js?m=1312592015g&ver=20110802'> </script>...[SNIP]... </script><script type="text/javascript" src="http://edge.quantserve.com/quant.js"> </script>...[SNIP]... </noscript><script type='text/javascript' src='http://s.gravatar.com/js/gprofiles.js?w&ver=MU'> </script>...[SNIP]... </script><script type='text/javascript' src='http://s1.wp.com/wp-content/mu-plugins/gravatar-hovercards/wpgroho.js?m=1311367663g&ver=MU'> </script>...[SNIP]... </script><script type='text/javascript' src='http://s2.wp.com/wp-content/mu-plugins/highlander-comments/script.js?m=1312572696g&ver=20110804'> </script><script type="text/javascript" src="http://b.scorecardresearch.com/beacon.js"> </script>...[SNIP]...
4.2. http://en.wordpress.com/advanced-services/
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://en.wordpress.com
Path:
/advanced-services/
Issue detail
The response dynamically includes the following scripts from other domains:http://b.scorecardresearch.com/beacon.js http://edge.quantserve.com/quant.js http://s.gravatar.com/js/gprofiles.js?w&ver=MU http://s0.wp.com/wp-includes/js/jquery/jquery.js?m=1307735151g&ver=1.6.1 http://s1.wp.com/wp-content/mu-plugins/gravatar-hovercards/wpgroho.js?m=1311367665g&ver=MU http://s1.wp.com/wp-content/themes/h4/js/scripts.js?m=1307735181g&ver=MU http://s2.wp.com/wp-content/mu-plugins/highlander-comments/script.js?m=1312572700g&ver=20110804 http://s2.wp.com/wp-content/themes/h4/tabs/tab.js?m=1312592015g&ver=20110802
Request
GET /advanced-services/ HTTP/1.1 Host: en.wordpress.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: __qca=P0-1122904968-1313425006674; ref=bigassorangeonleft; TESTCOOKIE=home; hiab=on
Response
HTTP/1.1 200 OK Server: nginx Date: Mon, 15 Aug 2011 16:19:42 GMT Content-Type: text/html; charset=UTF-8 Connection: close Vary: Accept-Encoding Last-Modified: Mon, 15 Aug 2011 16:17:53 +0000 Cache-Control: max-age=191, must-revalidate Vary: Cookie X-hacker: If you're reading this, you should visit automattic.com/jobs and apply to join the fun, mention this header. X-Pingback: http://wordpress.com/xmlrpc.php Link: <http://wp.me/P1-7R>; rel=shortlink X-nananana: Batcache Content-Length: 24283 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en"><!-- generated...[SNIP]... <link rel='stylesheet' id='post-reactions-css' href='http://s0.wp.com/wp-content/mu-plugins/post-react-2/style.css?m=1313420636g&ver=2' type='text/css' media='all' /><script type='text/javascript' src='http://s0.wp.com/wp-includes/js/jquery/jquery.js?m=1307735151g&ver=1.6.1'> </script><script type='text/javascript' src='http://s1.wp.com/wp-content/themes/h4/js/scripts.js?m=1307735181g&ver=MU'> </script><script type='text/javascript' src='http://s2.wp.com/wp-content/themes/h4/tabs/tab.js?m=1312592015g&ver=20110802'> </script>...[SNIP]... </script><script type="text/javascript" src="http://edge.quantserve.com/quant.js"> </script>...[SNIP]... </noscript><script type='text/javascript' src='http://s.gravatar.com/js/gprofiles.js?w&ver=MU'> </script>...[SNIP]... </script><script type='text/javascript' src='http://s1.wp.com/wp-content/mu-plugins/gravatar-hovercards/wpgroho.js?m=1311367665g&ver=MU'> </script>...[SNIP]... </script><script type='text/javascript' src='http://s2.wp.com/wp-content/mu-plugins/highlander-comments/script.js?m=1312572700g&ver=20110804'> </script><script type="text/javascript" src="http://b.scorecardresearch.com/beacon.js"> </script>...[SNIP]...
4.3. http://en.wordpress.com/features/
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://en.wordpress.com
Path:
/features/
Issue detail
The response dynamically includes the following scripts from other domains:http://b.scorecardresearch.com/beacon.js http://edge.quantserve.com/quant.js http://s.gravatar.com/js/gprofiles.js?w&ver=MU http://s.skimresources.com/js/wordpress.js http://s0.wp.com/wp-content/themes/h4/js/fancyzoom.js?m=1293711009g http://s0.wp.com/wp-content/themes/h4/js/fancyzoomhtml.js?m=1293711009g http://s0.wp.com/wp-content/themes/h4/tabs/tab.js?m=1312592015g&ver=20110802 http://s0.wp.com/wp-includes/js/jquery/jquery.js?m=1305825971g&ver=1.6.1 http://s1.wp.com/wp-content/themes/h4/js/scripts.js?m=1305137406g&ver=MU http://s2.wp.com/wp-content/mu-plugins/gravatar-hovercards/wpgroho.js?m=1311367664g&ver=MU http://s2.wp.com/wp-content/mu-plugins/highlander-comments/script.js?m=1312572701g&ver=20110804
Request
GET /features/ HTTP/1.1 Host: en.wordpress.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: __qca=P0-1122904968-1313425006674; ref=bigassorangeonleft; TESTCOOKIE=home
Response
HTTP/1.1 200 OK Server: nginx Date: Mon, 15 Aug 2011 16:18:22 GMT Content-Type: text/html; charset=UTF-8 Connection: close Vary: Accept-Encoding Last-Modified: Mon, 15 Aug 2011 16:13:46 +0000 Cache-Control: max-age=24, must-revalidate Vary: Cookie X-hacker: If you're reading this, you should visit automattic.com/jobs and apply to join the fun, mention this header. X-Pingback: http://wordpress.com/xmlrpc.php Set-Cookie: hiab=on; path=/; domain=.wordpress.com Link: <http://wp.me/P1-66>; rel=shortlink X-nananana: Batcache Content-Length: 35391 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en"><!-- generated...[SNIP]... <link rel='stylesheet' id='post-reactions-css' href='http://s0.wp.com/wp-content/mu-plugins/post-react-2/style.css?m=1313420637g&ver=2' type='text/css' media='all' /><script type='text/javascript' src='http://s0.wp.com/wp-includes/js/jquery/jquery.js?m=1305825971g&ver=1.6.1'> </script><script type='text/javascript' src='http://s1.wp.com/wp-content/themes/h4/js/scripts.js?m=1305137406g&ver=MU'> </script><script type='text/javascript' src='http://s0.wp.com/wp-content/themes/h4/tabs/tab.js?m=1312592015g&ver=20110802'> </script>...[SNIP]... </style><script src="http://s0.wp.com/wp-content/themes/h4/js/fancyzoom.js?m=1293711009g" type="text/javascript"> </script><script src="http://s0.wp.com/wp-content/themes/h4/js/fancyzoomhtml.js?m=1293711009g" type="text/javascript"> </script>...[SNIP]... </script><script type="text/javascript" src="http://edge.quantserve.com/quant.js"> </script>...[SNIP]... </noscript><script type='text/javascript' src='http://s.gravatar.com/js/gprofiles.js?w&ver=MU'> </script>...[SNIP]... </script><script type='text/javascript' src='http://s2.wp.com/wp-content/mu-plugins/gravatar-hovercards/wpgroho.js?m=1311367664g&ver=MU'> </script>...[SNIP]... </script><script type='text/javascript' src='http://s2.wp.com/wp-content/mu-plugins/highlander-comments/script.js?m=1312572701g&ver=20110804'> </script> <script type="text/javascript" src="http://s.skimresources.com/js/wordpress.js"> </script>...[SNIP]... </script> <script type="text/javascript" src="http://b.scorecardresearch.com/beacon.js"> </script>...[SNIP]...
4.4. http://en.wordpress.com/features/
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://en.wordpress.com
Path:
/features/
Issue detail
The response dynamically includes the following scripts from other domains:http://b.scorecardresearch.com/beacon.js http://edge.quantserve.com/quant.js http://s.gravatar.com/js/gprofiles.js?w&ver=MU http://s.skimresources.com/js/wordpress.js http://s0.wp.com/wp-includes/js/jquery/jquery.js?m=1308978483g&ver=1.6.1 http://s1.wp.com/wp-content/mu-plugins/gravatar-hovercards/wpgroho.js?m=1311367664g&ver=MU http://s1.wp.com/wp-content/themes/h4/js/scripts.js?m=1308978491g&ver=MU http://s2.wp.com/wp-content/mu-plugins/highlander-comments/script.js?m=1312572698g&ver=20110804 http://s2.wp.com/wp-content/themes/h4/js/fancyzoom.js?m=1308978491g http://s2.wp.com/wp-content/themes/h4/js/fancyzoomhtml.js?m=1308978491g http://s2.wp.com/wp-content/themes/h4/tabs/tab.js?m=1312592015g&ver=20110802
Request
GET /features/ HTTP/1.1 Host: en.wordpress.com Proxy-Connection: keep-alive Referer: http://en.wordpress.com/advanced-services/ User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: __qca=P0-1122904968-1313425006674; ref=bigassorangeonleft; hiab=on; admobuu=f59859e5e58deeaf9fd3fad990d22092; TESTCOOKIE=home If-Modified-Since: Mon, 15 Aug 2011 16:13:46 +0000
Response
HTTP/1.1 200 OK Server: nginx Date: Mon, 15 Aug 2011 16:31:23 GMT Content-Type: text/html; charset=UTF-8 Connection: close Vary: Accept-Encoding Last-Modified: Mon, 15 Aug 2011 16:30:33 +0000 Cache-Control: max-age=250, must-revalidate Vary: Cookie X-hacker: If you're reading this, you should visit automattic.com/jobs and apply to join the fun, mention this header. X-Pingback: http://wordpress.com/xmlrpc.php Set-Cookie: hiab=on; path=/; domain=.wordpress.com Link: <http://wp.me/P1-66>; rel=shortlink X-nananana: Batcache Content-Length: 35470 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en"><!-- generated...[SNIP]... <link rel='stylesheet' id='post-reactions-css' href='http://s0.wp.com/wp-content/mu-plugins/post-react-2/style.css?m=1313420636g&ver=2' type='text/css' media='all' /><script type='text/javascript' src='http://s0.wp.com/wp-includes/js/jquery/jquery.js?m=1308978483g&ver=1.6.1'> </script><script type='text/javascript' src='http://s1.wp.com/wp-content/themes/h4/js/scripts.js?m=1308978491g&ver=MU'> </script><script type='text/javascript' src='http://s2.wp.com/wp-content/themes/h4/tabs/tab.js?m=1312592015g&ver=20110802'> </script>...[SNIP]... </style><script src="http://s2.wp.com/wp-content/themes/h4/js/fancyzoom.js?m=1308978491g" type="text/javascript"> </script><script src="http://s2.wp.com/wp-content/themes/h4/js/fancyzoomhtml.js?m=1308978491g" type="text/javascript"> </script>...[SNIP]... </script><script type="text/javascript" src="http://edge.quantserve.com/quant.js"> </script>...[SNIP]... </noscript><script type='text/javascript' src='http://s.gravatar.com/js/gprofiles.js?w&ver=MU'> </script>...[SNIP]... </script><script type='text/javascript' src='http://s1.wp.com/wp-content/mu-plugins/gravatar-hovercards/wpgroho.js?m=1311367664g&ver=MU'> </script>...[SNIP]... </script><script type='text/javascript' src='http://s2.wp.com/wp-content/mu-plugins/highlander-comments/script.js?m=1312572698g&ver=20110804'> </script> <script type="text/javascript" src="http://s.skimresources.com/js/wordpress.js"> </script>...[SNIP]... </script> <script type="text/javascript" src="http://b.scorecardresearch.com/beacon.js"> </script>...[SNIP]...
4.5. http://en.wordpress.com/firehose/
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://en.wordpress.com
Path:
/firehose/
Issue detail
The response dynamically includes the following scripts from other domains:http://b.scorecardresearch.com/beacon.js http://edge.quantserve.com/quant.js http://s.gravatar.com/js/gprofiles.js?w&ver=MU http://s0.wp.com/wp-content/themes/h4/tabs/tab.js?m=1312592015g&ver=20110802 http://s0.wp.com/wp-includes/js/jquery/jquery.js?m=1305825971g&ver=1.6.1 http://s1.wp.com/wp-content/themes/h4/js/scripts.js?m=1305137406g&ver=MU http://s2.wp.com/wp-content/mu-plugins/gravatar-hovercards/wpgroho.js?m=1311367662g&ver=MU http://s2.wp.com/wp-content/mu-plugins/highlander-comments/script.js?m=1312572696g&ver=20110804
Request
GET /firehose/ HTTP/1.1 Host: en.wordpress.com Proxy-Connection: keep-alive Referer: http://en.wordpress.com/advanced-services/ User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: __qca=P0-1122904968-1313425006674; ref=bigassorangeonleft; TESTCOOKIE=home; hiab=on; admobuu=f59859e5e58deeaf9fd3fad990d22092
Response
HTTP/1.1 200 OK Server: nginx Date: Mon, 15 Aug 2011 16:31:13 GMT Content-Type: text/html; charset=UTF-8 Connection: close Vary: Accept-Encoding Last-Modified: Mon, 15 Aug 2011 16:31:13 +0000 Cache-Control: max-age=300, must-revalidate Vary: Cookie X-hacker: If you're reading this, you should visit automattic.com/jobs and apply to join the fun, mention this header. X-Pingback: http://wordpress.com/xmlrpc.php Link: <http://wp.me/P1-jH>; rel=shortlink X-nananana: Batcache Content-Length: 24211 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en"><!-- generated...[SNIP]... <link rel='stylesheet' id='post-reactions-css' href='http://s0.wp.com/wp-content/mu-plugins/post-react-2/style.css?m=1313420637g&ver=2' type='text/css' media='all' /><script type='text/javascript' src='http://s0.wp.com/wp-includes/js/jquery/jquery.js?m=1305825971g&ver=1.6.1'> </script><script type='text/javascript' src='http://s1.wp.com/wp-content/themes/h4/js/scripts.js?m=1305137406g&ver=MU'> </script><script type='text/javascript' src='http://s0.wp.com/wp-content/themes/h4/tabs/tab.js?m=1312592015g&ver=20110802'> </script>...[SNIP]... </script><script type="text/javascript" src="http://edge.quantserve.com/quant.js"> </script>...[SNIP]... </noscript><script type='text/javascript' src='http://s.gravatar.com/js/gprofiles.js?w&ver=MU'> </script>...[SNIP]... </script><script type='text/javascript' src='http://s2.wp.com/wp-content/mu-plugins/gravatar-hovercards/wpgroho.js?m=1311367662g&ver=MU'> </script>...[SNIP]... </script><script type='text/javascript' src='http://s2.wp.com/wp-content/mu-plugins/highlander-comments/script.js?m=1312572696g&ver=20110804'> </script><script type="text/javascript" src="http://b.scorecardresearch.com/beacon.js"> </script>...[SNIP]...
4.6. http://en.wordpress.com/products/
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://en.wordpress.com
Path:
/products/
Issue detail
The response dynamically includes the following scripts from other domains:http://b.scorecardresearch.com/beacon.js http://edge.quantserve.com/quant.js http://s.gravatar.com/js/gprofiles.js?w&ver=MU http://s0.wp.com/wp-content/themes/h4/js/fancyzoom.js?m=1268959847g http://s0.wp.com/wp-content/themes/h4/js/fancyzoomhtml.js?m=1268959847g http://s0.wp.com/wp-content/themes/h4/tabs/tab.js?m=1312592020g&ver=20110802 http://s0.wp.com/wp-includes/js/jquery/jquery.js?m=1305825971g&ver=1.6.1 http://s1.wp.com/wp-content/themes/h4/js/scripts.js?m=1305137406g&ver=MU http://s1.wp.com/wp-includes/js/swfobject.js?m=1268959839g&ver=2.2 http://s2.wp.com/wp-content/mu-plugins/gravatar-hovercards/wpgroho.js?m=1311367664g&ver=MU http://s2.wp.com/wp-content/mu-plugins/highlander-comments/script.js?m=1312572701g&ver=20110804 http://s2.wp.com/wp-content/plugins/video/assets/js/videopress.js?m=1312816954g&ver=1.06
Request
GET /products/ HTTP/1.1 Host: en.wordpress.com Proxy-Connection: keep-alive Referer: http://en.wordpress.com/advanced-services/ User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: __qca=P0-1122904968-1313425006674; ref=bigassorangeonleft; hiab=on; admobuu=f59859e5e58deeaf9fd3fad990d22092; TESTCOOKIE=home If-Modified-Since: Mon, 15 Aug 2011 16:26:04 +0000
Response
HTTP/1.1 200 OK Server: nginx Date: Mon, 15 Aug 2011 16:31:22 GMT Content-Type: text/html; charset=UTF-8 Connection: close Vary: Accept-Encoding Last-Modified: Mon, 15 Aug 2011 16:31:08 +0000 Cache-Control: max-age=286, must-revalidate Vary: Cookie X-hacker: If you're reading this, you should visit automattic.com/jobs and apply to join the fun, mention this header. X-Pingback: http://wordpress.com/xmlrpc.php Link: <http://wp.me/P1-5u>; rel=shortlink X-nananana: Batcache Content-Length: 32376 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en"><!-- generated...[SNIP]... <link rel='stylesheet' id='post-reactions-css' href='http://s1.wp.com/wp-content/mu-plugins/post-react-2/style.css?m=1313420639g&ver=2' type='text/css' media='all' /><script type='text/javascript' src='http://s0.wp.com/wp-includes/js/jquery/jquery.js?m=1305825971g&ver=1.6.1'> </script><script type='text/javascript' src='http://s1.wp.com/wp-content/themes/h4/js/scripts.js?m=1305137406g&ver=MU'> </script><script type='text/javascript' src='http://s0.wp.com/wp-content/themes/h4/tabs/tab.js?m=1312592020g&ver=20110802'> </script><script type='text/javascript' src='http://s1.wp.com/wp-includes/js/swfobject.js?m=1268959839g&ver=2.2'> </script><script type='text/javascript' src='http://s2.wp.com/wp-content/plugins/video/assets/js/videopress.js?m=1312816954g&ver=1.06'> </script>...[SNIP]... </style><script src="http://s0.wp.com/wp-content/themes/h4/js/fancyzoom.js?m=1268959847g" type="text/javascript"> </script><script src="http://s0.wp.com/wp-content/themes/h4/js/fancyzoomhtml.js?m=1268959847g" type="text/javascript"> </script>...[SNIP]... </script><script type="text/javascript" src="http://edge.quantserve.com/quant.js"> </script>...[SNIP]... </noscript><script type='text/javascript' src='http://s.gravatar.com/js/gprofiles.js?w&ver=MU'> </script>...[SNIP]... </script><script type='text/javascript' src='http://s2.wp.com/wp-content/mu-plugins/gravatar-hovercards/wpgroho.js?m=1311367664g&ver=MU'> </script>...[SNIP]... </script><script type='text/javascript' src='http://s2.wp.com/wp-content/mu-plugins/highlander-comments/script.js?m=1312572701g&ver=20110804'> </script>...[SNIP]... </script> <script type="text/javascript" src="http://b.scorecardresearch.com/beacon.js"> </script>...[SNIP]...
4.7. http://en.wordpress.com/products/
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://en.wordpress.com
Path:
/products/
Issue detail
The response dynamically includes the following scripts from other domains:http://b.scorecardresearch.com/beacon.js http://edge.quantserve.com/quant.js http://s.gravatar.com/js/gprofiles.js?w&ver=MU http://s0.wp.com/wp-includes/js/jquery/jquery.js?m=1308958584g&ver=1.6.1 http://s1.wp.com/wp-content/mu-plugins/gravatar-hovercards/wpgroho.js?m=1311367664g&ver=MU http://s1.wp.com/wp-content/themes/h4/js/scripts.js?m=1308958592g&ver=MU http://s1.wp.com/wp-includes/js/swfobject.js?m=1308958585g&ver=2.2 http://s2.wp.com/wp-content/mu-plugins/highlander-comments/script.js?m=1312572696g&ver=20110804 http://s2.wp.com/wp-content/plugins/video/assets/js/videopress.js?m=1312816953g&ver=1.06 http://s2.wp.com/wp-content/themes/h4/js/fancyzoom.js?m=1308958592g http://s2.wp.com/wp-content/themes/h4/js/fancyzoomhtml.js?m=1308958592g http://s2.wp.com/wp-content/themes/h4/tabs/tab.js?m=1312592017g&ver=20110802
Request
GET /products/ HTTP/1.1 Host: en.wordpress.com Proxy-Connection: keep-alive Referer: http://en.wordpress.com/advanced-services/ User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: __qca=P0-1122904968-1313425006674; ref=bigassorangeonleft; hiab=on; TESTCOOKIE=home
Response
HTTP/1.1 200 OK Server: nginx Date: Mon, 15 Aug 2011 16:30:54 GMT Content-Type: text/html; charset=UTF-8 Connection: close Vary: Accept-Encoding Last-Modified: Mon, 15 Aug 2011 16:26:04 +0000 Cache-Control: max-age=10, must-revalidate Vary: Cookie X-hacker: If you're reading this, you should visit automattic.com/jobs and apply to join the fun, mention this header. X-Pingback: http://wordpress.com/xmlrpc.php Link: <http://wp.me/P1-5u>; rel=shortlink X-nananana: Batcache Content-Length: 32461 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en"><!-- generated...[SNIP]... <link rel='stylesheet' id='post-reactions-css' href='http://s0.wp.com/wp-content/mu-plugins/post-react-2/style.css?m=1313420636g&ver=2' type='text/css' media='all' /><script type='text/javascript' src='http://s0.wp.com/wp-includes/js/jquery/jquery.js?m=1308958584g&ver=1.6.1'> </script><script type='text/javascript' src='http://s1.wp.com/wp-content/themes/h4/js/scripts.js?m=1308958592g&ver=MU'> </script><script type='text/javascript' src='http://s2.wp.com/wp-content/themes/h4/tabs/tab.js?m=1312592017g&ver=20110802'> </script><script type='text/javascript' src='http://s1.wp.com/wp-includes/js/swfobject.js?m=1308958585g&ver=2.2'> </script><script type='text/javascript' src='http://s2.wp.com/wp-content/plugins/video/assets/js/videopress.js?m=1312816953g&ver=1.06'> </script>...[SNIP]... </style><script src="http://s2.wp.com/wp-content/themes/h4/js/fancyzoom.js?m=1308958592g" type="text/javascript"> </script><script src="http://s2.wp.com/wp-content/themes/h4/js/fancyzoomhtml.js?m=1308958592g" type="text/javascript"> </script>...[SNIP]... </script><script type="text/javascript" src="http://edge.quantserve.com/quant.js"> </script>...[SNIP]... </noscript><script type='text/javascript' src='http://s.gravatar.com/js/gprofiles.js?w&ver=MU'> </script>...[SNIP]... </script><script type='text/javascript' src='http://s1.wp.com/wp-content/mu-plugins/gravatar-hovercards/wpgroho.js?m=1311367664g&ver=MU'> </script>...[SNIP]... </script><script type='text/javascript' src='http://s2.wp.com/wp-content/mu-plugins/highlander-comments/script.js?m=1312572696g&ver=20110804'> </script>...[SNIP]... </script> <script type="text/javascript" src="http://b.scorecardresearch.com/beacon.js"> </script>...[SNIP]...
4.8. http://en.wordpress.com/stats/
previous
Summary
Severity:
Information
Confidence:
Certain
Host:
http://en.wordpress.com
Path:
/stats/
Issue detail
The response dynamically includes the following scripts from other domains:http://b.scorecardresearch.com/beacon.js http://edge.quantserve.com/quant.js http://s.gravatar.com/js/gprofiles.js?w&ver=MU http://s.skimresources.com/js/wordpress.js http://s0.wp.com/wp-content/themes/h4/tabs/tab.js?m=1312592018g&ver=20110802 http://s0.wp.com/wp-includes/charts/flot/jquery.flot.js?m=1306258759g&ver=MU http://s0.wp.com/wp-includes/js/jquery/jquery.js?m=1305825971g&ver=1.6.1 http://s1.wp.com/wp-content/themes/h4/js/scripts.js?m=1305137406g&ver=MU http://s1.wp.com/wp-includes/charts/flot/excanvas.min.js?m=1286669862g&ver=MU http://s2.wp.com/wp-content/mu-plugins/gravatar-hovercards/wpgroho.js?m=1311367663g&ver=MU http://s2.wp.com/wp-content/mu-plugins/highlander-comments/script.js?m=1312572700g&ver=20110804 http://s2.wp.com/wp-includes/charts/flot/jquery.flot.js?m=1306258759g
Request
GET /stats/ HTTP/1.1 Host: en.wordpress.com Proxy-Connection: keep-alive Referer: http://en.wordpress.com/advanced-services/ User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: __qca=P0-1122904968-1313425006674; ref=bigassorangeonleft; TESTCOOKIE=home; hiab=on; admobuu=f59859e5e58deeaf9fd3fad990d22092 If-Modified-Since: Mon, 15 Aug 2011 16:12:52 +0000
Response
HTTP/1.1 200 OK Server: nginx Date: Mon, 15 Aug 2011 16:31:12 GMT Content-Type: text/html; charset=UTF-8 Connection: close Vary: Accept-Encoding Last-Modified: Mon, 15 Aug 2011 16:27:49 +0000 Cache-Control: max-age=97, must-revalidate Vary: Cookie X-hacker: If you're reading this, you should visit automattic.com/jobs and apply to join the fun, mention this header. X-Pingback: http://wordpress.com/xmlrpc.php Link: <http://wp.me/P1-8R>; rel=shortlink X-nananana: Batcache Content-Length: 32635 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en"><!-- generated...[SNIP]... <link rel='stylesheet' id='post-reactions-css' href='http://s0.wp.com/wp-content/mu-plugins/post-react-2/style.css?m=1313420636g&ver=2' type='text/css' media='all' /><script type='text/javascript' src='http://s0.wp.com/wp-includes/js/jquery/jquery.js?m=1305825971g&ver=1.6.1'> </script><script type='text/javascript' src='http://s1.wp.com/wp-content/themes/h4/js/scripts.js?m=1305137406g&ver=MU'> </script><script type='text/javascript' src='http://s0.wp.com/wp-content/themes/h4/tabs/tab.js?m=1312592018g&ver=20110802'> </script><script type='text/javascript' src='http://s0.wp.com/wp-includes/charts/flot/jquery.flot.js?m=1306258759g&ver=MU'> </script><script type='text/javascript' src='http://s1.wp.com/wp-includes/charts/flot/excanvas.min.js?m=1286669862g&ver=MU'> </script>...[SNIP]... <![endif]--><script type="text/javascript" src="http://s2.wp.com/wp-includes/charts/flot/jquery.flot.js?m=1306258759g"> </script>...[SNIP]... <![endif]--><script type="text/javascript" src="http://s2.wp.com/wp-includes/charts/flot/jquery.flot.js?m=1306258759g"> </script>...[SNIP]... </script><script type="text/javascript" src="http://edge.quantserve.com/quant.js"> </script>...[SNIP]... </noscript><script type='text/javascript' src='http://s.gravatar.com/js/gprofiles.js?w&ver=MU'> </script>...[SNIP]... </script><script type='text/javascript' src='http://s2.wp.com/wp-content/mu-plugins/gravatar-hovercards/wpgroho.js?m=1311367663g&ver=MU'> </script>...[SNIP]... </script><script type='text/javascript' src='http://s2.wp.com/wp-content/mu-plugins/highlander-comments/script.js?m=1312572700g&ver=20110804'> </script> <script type="text/javascript" src="http://s.skimresources.com/js/wordpress.js"> </script>...[SNIP]... </script> <script type="text/javascript" src="http://b.scorecardresearch.com/beacon.js"> </script>...[SNIP]...
5. Cookie without HttpOnly flag set
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://en.wordpress.com
Path:
/signup/
Issue detail
The following cookie was issued by the application and does not have the HttpOnly flag set:ref=bigassorangeonleft; path=/; domain=wordpress.com The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Issue background
If the HttpOnly attribute is set on a cookie, then the cookie's value cannot be read or set by client-side JavaScript. This measure can prevent certain client-side attacks, such as cross-site scripting, from trivially capturing the cookie's value via an injected script.
Issue remediation
There is usually no good reason not to set the HttpOnly flag on all cookies. Unless you specifically require legitimate client-side scripts within your application to read or set a cookie's value, you should set the HttpOnly flag by including this attribute within the relevant Set-cookie directive. You should be aware that the restrictions imposed by the HttpOnly flag can potentially be circumvented in some circumstances, and that numerous other serious attacks can be delivered by client-side script injection, aside from simple cookie stealing.
Request
GET /signup/?ref=bigassorangeonleft HTTP/1.1 Host: en.wordpress.com Proxy-Connection: keep-alive Referer: http://wordpress.com/ User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: __qca=P0-1122904968-1313425006674
Response
HTTP/1.1 302 Found Server: nginx Date: Mon, 15 Aug 2011 16:16:59 GMT Content-Type: text/html; charset=utf-8 Connection: close X-hacker: If you're reading this, you should visit automattic.com/jobs and apply to join the fun, mention this header.Set-Cookie: ref=bigassorangeonleft; path=/; domain=wordpress.com Location: https://en.wordpress.com/signup/ Content-Length: 0
6. Email addresses disclosed
previous
Summary
Severity:
Information
Confidence:
Certain
Host:
http://en.wordpress.com
Path:
/firehose/
Issue detail
The following email address was disclosed in the response:firehose-2010@wordpress.com
Issue background
The presence of email addresses within application responses does not necessarily constitute a security vulnerability. Email addresses may appear intentionally within contact information, and many applications (such as web mail) include arbitrary third-party email addresses within their core content. However, email addresses of developers and other individuals (whether appearing on-screen or hidden within page source) may disclose information that is useful to an attacker; for example, they may represent usernames that can be used at the application's login, and they may be used in social engineering attacks against the organisation's personnel. Unnecessary or excessive disclosure of email addresses may also lead to an increase in the volume of spam email received.
Issue remediation
You should review the email addresses being disclosed by the application, and consider removing any that are unnecessary, or replacing personal addresses with anonymous mailbox addresses (such as helpdesk@example.com).
Request
GET /firehose/ HTTP/1.1 Host: en.wordpress.com Proxy-Connection: keep-alive Referer: http://en.wordpress.com/advanced-services/ User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: __qca=P0-1122904968-1313425006674; ref=bigassorangeonleft; TESTCOOKIE=home; hiab=on; admobuu=f59859e5e58deeaf9fd3fad990d22092
Response
HTTP/1.1 200 OK Server: nginx Date: Mon, 15 Aug 2011 16:31:13 GMT Content-Type: text/html; charset=UTF-8 Connection: close Vary: Accept-Encoding Last-Modified: Mon, 15 Aug 2011 16:31:13 +0000 Cache-Control: max-age=300, must-revalidate Vary: Cookie X-hacker: If you're reading this, you should visit automattic.com/jobs and apply to join the fun, mention this header. X-Pingback: http://wordpress.com/xmlrpc.php Link: <http://wp.me/P1-jH>; rel=shortlink X-nananana: Batcache Content-Length: 24211 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en"><!-- generated...[SNIP]... <p>Please contact us at firehose-2010@wordpress.com to request trial access and pricing information.</p>...[SNIP]...
Report generated by XSS.CX at Mon Aug 15 10:34:52 GMT-06:00 2011.