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.
The value of the content_ID request parameter is copied into a JavaScript rest-of-line comment. The payload ff975%0afdb7efd62b9 was submitted in the content_ID parameter. This input was echoed as ff975 fdb7efd62b9 in the application's response.
This behaviour demonstrates that it is possible to terminate the JavaScript string into which our data is being copied. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
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 /au/cgi-bin/?cmd=_render-content&content_ID=developer/homeff975%0afdb7efd62b9 HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Content-Type: text/html; charset=UTF-8 Date: Fri, 12 Aug 2011 14:45:29 GMT Content-Length: 12565 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
...[SNIP]... is.language_country_code+"/"+this.nn+"/"+this.pagename+".page" } }; var paypal_url = new PayPalURL("developer/homeff975 fdb7efd62b9::"); _ht = paypal_url.to_str(); var _ht_temp=_ht; var _hr_temp=_hr; </script> ...[SNIP]...
The value of the content_ID request parameter is copied into a JavaScript rest-of-line comment. The payload 43184%0a8ea4393f6fc was submitted in the content_ID parameter. This input was echoed as 43184 8ea4393f6fc in the application's response.
This behaviour demonstrates that it is possible to terminate the JavaScript string into which our data is being copied. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
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 /ca/cgi-bin/?cmd=_render-content&content_ID=developer/home43184%0a8ea4393f6fc HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Content-Type: text/html; charset=UTF-8 Date: Fri, 12 Aug 2011 14:45:48 GMT Content-Length: 13897 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
...[SNIP]... is.language_country_code+"/"+this.nn+"/"+this.pagename+".page" } }; var paypal_url = new PayPalURL("developer/home43184 8ea4393f6fc::"); _ht = paypal_url.to_str(); var _ht_temp=_ht; var _hr_temp=_hr; </script> ...[SNIP]...
The value of the content_ID request parameter is copied into a JavaScript rest-of-line comment. The payload afb09%0a9fedec51d26 was submitted in the content_ID parameter. This input was echoed as afb09 9fedec51d26 in the application's response.
This behaviour demonstrates that it is possible to terminate the JavaScript string into which our data is being copied. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
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 /es/cgi-bin/?cmd=_render-content&content_ID=developer/homeafb09%0a9fedec51d26 HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Content-Type: text/html; charset=UTF-8 Date: Fri, 12 Aug 2011 14:45:46 GMT Content-Length: 13614 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="es"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
...[SNIP]... is.language_country_code+"/"+this.nn+"/"+this.pagename+".page" } }; var paypal_url = new PayPalURL("developer/homeafb09 9fedec51d26::"); _ht = paypal_url.to_str(); var _ht_temp=_ht; var _hr_temp=_hr; </script> ...[SNIP]...
The value of the content_ID request parameter is copied into a JavaScript rest-of-line comment. The payload 88262%0a9a8611f6b2f was submitted in the content_ID parameter. This input was echoed as 88262 9a8611f6b2f in the application's response.
This behaviour demonstrates that it is possible to terminate the JavaScript string into which our data is being copied. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
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 /fr/cgi-bin/?cmd=_render-content&content_ID=developer/home88262%0a9a8611f6b2f HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Content-Type: text/html; charset=UTF-8 Date: Fri, 12 Aug 2011 14:45:32 GMT Content-Length: 12138 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
...[SNIP]... is.language_country_code+"/"+this.nn+"/"+this.pagename+".page" } }; var paypal_url = new PayPalURL("developer/home88262 9a8611f6b2f::"); _ht = paypal_url.to_str(); var _ht_temp=_ht; var _hr_temp=_hr; </script> ...[SNIP]...
The value of the content_ID request parameter is copied into a JavaScript rest-of-line comment. The payload 73ec8%0ac16b08ad117 was submitted in the content_ID parameter. This input was echoed as 73ec8 c16b08ad117 in the application's response.
This behaviour demonstrates that it is possible to terminate the JavaScript string into which our data is being copied. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
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 /it/cgi-bin/?cmd=_render-content&content_ID=developer/home73ec8%0ac16b08ad117 HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Content-Type: text/html; charset=UTF-8 Date: Fri, 12 Aug 2011 14:45:32 GMT Content-Length: 12002 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="it"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
...[SNIP]... is.language_country_code+"/"+this.nn+"/"+this.pagename+".page" } }; var paypal_url = new PayPalURL("developer/home73ec8 c16b08ad117::"); _ht = paypal_url.to_str(); var _ht_temp=_ht; var _hr_temp=_hr; </script> ...[SNIP]...
The value of the content_ID request parameter is copied into a JavaScript rest-of-line comment. The payload c0b4b%0af8fec3cf4a was submitted in the content_ID parameter. This input was echoed as c0b4b f8fec3cf4a in the application's response.
This behaviour demonstrates that it is possible to terminate the JavaScript string into which our data is being copied. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
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 /mx/cgi-bin/?cmd=_render-content&content_ID=developer/homec0b4b%0af8fec3cf4a HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Content-Type: text/html; charset=UTF-8 Date: Fri, 12 Aug 2011 14:45:34 GMT Content-Length: 14040 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
...[SNIP]... is.language_country_code+"/"+this.nn+"/"+this.pagename+".page" } }; var paypal_url = new PayPalURL("developer/homec0b4b f8fec3cf4a::"); _ht = paypal_url.to_str(); var _ht_temp=_ht; var _hr_temp=_hr; </script> ...[SNIP]...
The value of the content_ID request parameter is copied into a JavaScript rest-of-line comment. The payload 7a624%0a961c1448687 was submitted in the content_ID parameter. This input was echoed as 7a624 961c1448687 in the application's response.
This behaviour demonstrates that it is possible to terminate the JavaScript string into which our data is being copied. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
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 /uk/cgi-bin/?cmd=_render-content&content_ID=developer/home7a624%0a961c1448687 HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Content-Type: text/html; charset=UTF-8 Date: Fri, 12 Aug 2011 14:45:47 GMT Content-Length: 14595 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
...[SNIP]... is.language_country_code+"/"+this.nn+"/"+this.pagename+".page" } }; var paypal_url = new PayPalURL("developer/home7a624 961c1448687::"); _ht = paypal_url.to_str(); var _ht_temp=_ht; var _hr_temp=_hr; </script> ...[SNIP]...
The value of the content_ID request parameter is copied into a JavaScript rest-of-line comment. The payload fc8bd%0a3e5c8da6442 was submitted in the content_ID parameter. This input was echoed as fc8bd 3e5c8da6442 in the application's response.
This behaviour demonstrates that it is possible to terminate the JavaScript string into which our data is being copied. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
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.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns:ns0="og" lang="en" ns0:xmlns="http://ogp.me/ns#"><head> <meta http-equiv="Conte ...[SNIP]... language_country_code+"/"+this.nn+"/"+this.pagename+".page" } }; var paypal_url = new PayPalURL("developer/Supportfc8bd 3e5c8da6442::"); _ht = paypal_url.to_str(); var _ht_temp=_ht; var _hr_temp=_hr; </script> ...[SNIP]...
The application publishes a Flash cross-domain policy which uses a wildcard to specify allowed domains, and allows access from specific other domains.
Using a wildcard to specify allowed domains means that any domain matching the wildcard expression can perform two-way interaction with this application. You should only use this policy if you fully trust every possible web site that may reside on a domain which matches the wildcard expression.
Allowing access from specific domains means that web sites on those domains can perform two-way interaction with this application. You should only use this policy if you fully trust the specific domains allowed by the policy.
Issue background
The Flash cross-domain policy controls whether Flash client components running on other domains can perform two-way interaction with the domain which publishes the policy. If another domain is allowed by the policy, then that domain can potentially attack users of the application. If a user is logged in to the application, and visits a domain allowed by the policy, then any malicious content running on that domain can potentially gain full access to the application within the security context of the logged in user.
Even if an allowed domain is not overtly malicious in itself, security vulnerabilities within that domain could potentially be leveraged by a third-party attacker to exploit the trust relationship and attack the application which allows access.
Issue remediation
You should review the domains which are allowed by the Flash cross-domain policy and determine whether it is appropriate for the application to fully trust both the intentions and security posture of those domains.
Request
GET /crossdomain.xml HTTP/1.0 Host: cms.paypal.com
Response
HTTP/1.0 200 OK Server: Apache Last-Modified: Tue, 10 Jun 2008 20:10:41 GMT Accept-Ranges: bytes Content-Length: 312 Content-Type: application/xml Expires: Fri, 12 Aug 2011 01:23:28 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Fri, 12 Aug 2011 01:23:28 GMT Connection: close Set-Cookie: Apache=10.74.8.156.1313112208507370; path=/; expires=Sun, 04-Aug-41 01:23:28 GMT Set-Cookie: BIGipServerpool_cms.paypal.com_443=439110154.26702.0000; path=/
If the secure flag is set on a cookie, then browsers will not submit the cookie in any requests that use an unencrypted HTTP connection, thereby preventing the cookie from being trivially intercepted by an attacker monitoring network traffic. If the secure flag is not set, then the cookie will be transmitted in clear-text if the user visits any HTTP URLs within the cookie's scope. An attacker may be able to induce this event by feeding a user suitable links, either directly or via another web site. Even if the domain which issued the cookie does not host any content that is accessed over HTTP, an attacker may be able to use links of the form http://example.com:443/ to perform the same attack.
Issue remediation
The secure flag should be set on all cookies that are used for transmitting sensitive data when accessing content over HTTPS. If cookies are used to transmit session tokens, then areas of the application that are accessed over HTTPS should employ their own session handling mechanism, and the session tokens used should never be transmitted over unencrypted communications.
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /ar/cgi-bin/webscr HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /au/cgi-bin/ HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /br/cgi-bin/webscr HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="pt"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /ca/cgi-bin/ HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /ca/cgi-bin/marketingweb HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /cgi-bin/marketingweb HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns:ns0="og" lang="en" ns0:xmlns="http://ogp.me/ns#"><head> <meta http-equiv="Conte ...[SNIP]...
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /es/cgi-bin/ HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="es"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /fr/cgi-bin/ HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="fr"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /il/cgi-bin/webscr HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /it/cgi-bin/ HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="it"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /mx/cgi-bin/ HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="es"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /mx/cgi-bin/webscr HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="es"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /nl/cgi-bin/ HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="nl"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /uk/cgi-bin/ HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /us/cgi-bin/ HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns:ns0="og" lang="en" ns0:xmlns="http://ogp.me/ns#"><head> <meta http-equiv="Conte ...[SNIP]...
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /us/cgi-bin/marketingweb HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns:ns0="og" lang="en" ns0:xmlns="http://ogp.me/ns#"><head> <meta http-equiv="Conte ...[SNIP]...
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /za/cgi-bin/webscr HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
...[SNIP]...
4. Cookie scoped to parent domainpreviousnext There are 17 instances of this issue:
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.
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /ar/cgi-bin/webscr HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /au/cgi-bin/ HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /br/cgi-bin/webscr HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="pt"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /ca/cgi-bin/ HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /ca/cgi-bin/marketingweb HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /cgi-bin/marketingweb HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns:ns0="og" lang="en" ns0:xmlns="http://ogp.me/ns#"><head> <meta http-equiv="Conte ...[SNIP]...
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /es/cgi-bin/ HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="es"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /fr/cgi-bin/ HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="fr"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /il/cgi-bin/webscr HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /it/cgi-bin/ HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="it"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /mx/cgi-bin/ HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="es"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /mx/cgi-bin/webscr HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="es"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /nl/cgi-bin/ HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="nl"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /uk/cgi-bin/ HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /us/cgi-bin/ HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns:ns0="og" lang="en" ns0:xmlns="http://ogp.me/ns#"><head> <meta http-equiv="Conte ...[SNIP]...
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /us/cgi-bin/marketingweb HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns:ns0="og" lang="en" ns0:xmlns="http://ogp.me/ns#"><head> <meta http-equiv="Conte ...[SNIP]...
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /za/cgi-bin/webscr HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
...[SNIP]...
5. Cross-domain Referer leakagepreviousnext There are 18 instances of this issue:
When a web browser makes a request for a resource, it typically adds an HTTP header, called the "Referer" header, indicating the URL of the resource from which the request originated. This occurs in numerous situations, for example when a web page loads an image or script, or when a user clicks on a link or submits a form.
If the resource being requested resides on a different domain, then the Referer header is still generally included in the cross-domain request. If the originating URL contains any sensitive information within its query string, such as a session token, then this information will be transmitted to the other domain. If the other domain is not fully trusted by the application, then this may lead to a security compromise.
You should review the contents of the information being transmitted to other domains, and also determine whether those domains are fully trusted by the originating application.
Today's browsers may withhold the Referer header in some situations (for example, when loading a non-HTTPS resource from a page that was loaded over HTTPS, or when a Refresh directive is issued), but this behaviour should not be relied upon to protect the originating URL from disclosure.
Note also that if users can author content within the application then an attacker may be able to inject links referring to a domain they control in order to capture data from URLs used within the application.
Issue remediation
The application should never transmit any sensitive information within the URL query string. In addition to being leaked in the Referer header, such information may be logged in various locations and may be visible on-screen to untrusted parties.
GET /ar/cgi-bin/webscr?cmd=_render-content&content_ID=merchant/sitemap HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Content-Type: text/html; charset=UTF-8 Date: Fri, 12 Aug 2011 14:44:34 GMT Content-Length: 17567 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
GET /au/cgi-bin/?cmd=_render-content&content_ID=developer/home HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Content-Type: text/html; charset=UTF-8 Date: Fri, 12 Aug 2011 14:44:12 GMT Content-Length: 20189 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
...[SNIP]... </script><script type="text/javascript" src="https://www.paypalobjects.com/js/lib/min/global.js"></script> ...[SNIP]... <li> <a href="https://ppmts.custhelp.com/cgi-bin/ppdts.cfg/php/enduser/std_alp.php" target="_blank">Find answers to your integration questions</a> ...[SNIP]... <li> <a href="https://www.x.com" target="_blank">Join x.com and connect with other PayPal developers</a> ...[SNIP]... <p>Check out <a href="https://www.x.com" target="_blank">www.X.com</a> ...[SNIP]... <p class="sidecol3"> <a href="https://www.x.com" target="_self"> <img src="/cms_content/AU/en_AU/images/developer/bnr_dev_integration_215x121.gif" alt="PayPalX Integration Center has moved to x.com" align="left" border="0"/> ...[SNIP]... <li class="sidecol2"> <a href="https://www.paypal-business.co.uk/partners-shopping-carts.asp" target="_blank">Choose a Pre-Integrated Solution</a> ...[SNIP]... thorized use is prohibited. This product and other products of OpinionLab, Inc. are protected by U.S. Patent No. US 6606581, 6421724, 6785717 B1 and other patents pending. http://www.opinionlab.com--> <script type="text/javascript" src="https://www.paypalobjects.com/js/opinionlab/oo_engine.js"></script> ...[SNIP]... <li> <a href="https://www.x.com/blogs" target="_self">Developer Blog</a> ...[SNIP]... </script><script type="text/javascript" src="https://www.paypalobjects.com/js/Customer/min/baynote.js"></script> ...[SNIP]... <noscript><img src="//paypal.112.2O7.net/b/ss/paypalglobal/1/H.6--NS/0?pageName=NonJavaScript" height="1" width="1" border="0" alt="" /></noscript> ...[SNIP]...
GET /br/cgi-bin/webscr?cmd=_render-content&content_ID=merchant/sitemap HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Content-Type: text/html; charset=UTF-8 Date: Fri, 12 Aug 2011 14:44:39 GMT Content-Length: 18314 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
GET /ca/cgi-bin/?cmd=_render-content&content_ID=developer/home HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Content-Type: text/html; charset=UTF-8 Date: Fri, 12 Aug 2011 14:44:12 GMT Content-Length: 22561 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
...[SNIP]... </script><script type="text/javascript" src="https://www.paypalobjects.com/js/lib/min/global.js"></script> ...[SNIP]... <li class="sidecol2"> <a href="https://www.paypal-portal.com/developer/directory/" target="_self">Find a Certified Developer</a> ...[SNIP]... thorized use is prohibited. This product and other products of OpinionLab, Inc. are protected by U.S. Patent No. US 6606581, 6421724, 6785717 B1 and other patents pending. http://www.opinionlab.com--> <script type="text/javascript" src="https://www.paypalobjects.com/js/opinionlab/oo_engine.js"></script> ...[SNIP]... <li> <a href="https://www.paypal-portal.com/developer/directory/" target="_self">Certified Developers</a> ...[SNIP]... <li> <a href="https://www.x.com/blogs" target="_self">Developer Blog</a> ...[SNIP]... <noscript><img src="//paypal.112.2O7.net/b/ss/paypalglobal/1/H.6--NS/0?pageName=NonJavaScript" height="1" width="1" border="0" alt="" /></noscript> ...[SNIP]...
GET /ca/cgi-bin/marketingweb?cmd=_render-content&content_ID=security/seller_protection HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Content-Type: text/html; charset=UTF-8 Date: Fri, 12 Aug 2011 14:44:12 GMT Connection: close Connection: Transfer-Encoding Content-Length: 42870
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
GET /es/cgi-bin/?cmd=_render-content&content_ID=developer/home HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Content-Type: text/html; charset=UTF-8 Date: Fri, 12 Aug 2011 14:44:28 GMT Content-Length: 18890 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
...[SNIP]... </script><script type="text/javascript" src="https://www.paypalobjects.com/js/lib/min/global.js"></script> ...[SNIP]... <li> <a href="https://ppmts.custhelp.com/cgi-bin/ppdts.cfg/php/enduser/std_alp.php" target="_blank">Find answers to your integration questions</a> ...[SNIP]... <li> <a href="https://www.paypal-portal.com/community/" target="_blank">Join the Developer Community and connect with other PayPal developers</a> ...[SNIP]... <li class="sidecol2"> <a href="https://www.paypal-portal.com/developer/directory/" target="_self">Find a Certified Developer</a> ...[SNIP]... <li class="sidecol2"> <a href="https://www.paypal-marketing.co.uk/partnersolutions/PartnerSolutions.aspx" target="_blank">Choose a Pre-Integrated Solution</a> ...[SNIP]... thorized use is prohibited. This product and other products of OpinionLab, Inc. are protected by U.S. Patent No. US 6606581, 6421724, 6785717 B1 and other patents pending. http://www.opinionlab.com--> <script type="text/javascript" src="https://www.paypalobjects.com/js/opinionlab/oo_engine.js"></script> ...[SNIP]... <li> <a href="https://www.paypal-portal.com/developer/directory/" target="_self">Certified Developers</a> ...[SNIP]... <li> <a href="https://www.x.com/blogs" target="_self">Developer Blog</a> ...[SNIP]... </script><script type="text/javascript" src="https://www.paypalobjects.com/js/Customer/min/baynote.js"></script> ...[SNIP]... <noscript><img src="//paypal.112.2O7.net/b/ss/paypalglobal/1/H.6--NS/0?pageName=NonJavaScript" height="1" width="1" border="0" alt="" /></noscript> ...[SNIP]...
GET /fr/cgi-bin/?cmd=_render-content&content_ID=developer/home HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Content-Type: text/html; charset=UTF-8 Date: Fri, 12 Aug 2011 14:44:15 GMT Content-Length: 15498 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
...[SNIP]... </script><script type="text/javascript" src="https://www.paypalobjects.com/js/lib/min/global.js"></script> ...[SNIP]... <li> <a href="https://www.x.com/community/ppx/global/fr" target="_self">Connectez-vous sur le forum des développeurs et trouvez vos réponses</a> ...[SNIP]... <li> <a href="https://www.paypal-blog.fr" target="_self">Blog PayPal</a> ...[SNIP]... </script><script type="text/javascript" src="https://www.paypalobjects.com/js/Customer/min/baynote.js"></script> ...[SNIP]... <noscript><img src="//paypal.112.2O7.net/b/ss/paypalglobal/1/H.6--NS/0?pageName=NonJavaScript" height="1" width="1" border="0" alt="" /></noscript> ...[SNIP]...
GET /il/cgi-bin/webscr?cmd=_render-content&content_ID=merchant/sitemap&locale.x=he_IL HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Content-Type: text/html; charset=UTF-8 Date: Fri, 12 Aug 2011 14:44:41 GMT Content-Length: 20970 Connection: close
GET /it/cgi-bin/?cmd=_render-content&content_ID=developer/home HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Content-Type: text/html; charset=UTF-8 Date: Fri, 12 Aug 2011 14:44:15 GMT Content-Length: 14419 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
...[SNIP]... </script><script type="text/javascript" src="https://www.paypalobjects.com/js/lib/min/global.js"></script> ...[SNIP]... thorized use is prohibited. This product and other products of OpinionLab, Inc. are protected by U.S. Patent No. US 6606581, 6421724, 6785717 B1 and other patents pending. http://www.opinionlab.com--> <script type="text/javascript" src="https://www.paypalobjects.com/js/opinionlab/oo_engine.js"></script> ...[SNIP]... <li> <a href="https://www.x.com/blogs" target="_self">Developer Blog</a> ...[SNIP]... </script><script type="text/javascript" src="https://www.paypalobjects.com/js/Customer/min/baynote.js"></script> ...[SNIP]... <noscript><img src="//paypal.112.2O7.net/b/ss/paypalglobal/1/H.6--NS/0?pageName=NonJavaScript" height="1" width="1" border="0" alt="" /></noscript> ...[SNIP]...
GET /mx/cgi-bin/?cmd=_render-content&content_ID=developer/home HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Content-Type: text/html; charset=UTF-8 Date: Fri, 12 Aug 2011 14:44:16 GMT Content-Length: 21370 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
...[SNIP]... </script><script type="text/javascript" src="https://www.paypalobjects.com/js/lib/min/global.js"></script> ...[SNIP]... <li class="nav supportnav"> <a href="https://www.paypal-portal.com/community/" target="_self">Community</a> ...[SNIP]... <li> <a href="https://ppmts.custhelp.com/cgi-bin/ppdts.cfg/php/enduser/std_alp.php" target="_blank">Find answers to your integration questions</a> ...[SNIP]... <li> <a href="https://www.x.com" target="_blank">Join x.com and connect with other PayPal developers</a> ...[SNIP]... <p>Check out <a href="https://www.x.com" target="_blank">www.X.com</a> ...[SNIP]... <li class="sidecol2"> <a href="https://www.paypal-business.co.uk/partners-shopping-carts.asp" target="_blank">Choose a Pre-Integrated Solution</a> ...[SNIP]... thorized use is prohibited. This product and other products of OpinionLab, Inc. are protected by U.S. Patent No. US 6606581, 6421724, 6785717 B1 and other patents pending. http://www.opinionlab.com--> <script type="text/javascript" src="https://www.paypalobjects.com/js/opinionlab/oo_engine.js"></script> ...[SNIP]... <li> <a href="https://www.paypal-portal.com/developer/directory/" target="_self">Certified Developers</a> ...[SNIP]... <li class="nav"> <a href="https://www.paypal-portal.com/community/" target="_self">Community</a> ...[SNIP]... <li> <a href="https://www.paypal-portal.com/community/" target="_self">Community</a> ...[SNIP]... <li> <a href="https://www.x.com/blogs" target="_self">Developer Blog</a> ...[SNIP]... </script><script type="text/javascript" src="https://www.paypalobjects.com/js/Customer/min/baynote.js"></script> ...[SNIP]... <noscript><img src="//paypal.112.2O7.net/b/ss/paypalglobal/1/H.6--NS/0?pageName=NonJavaScript" height="1" width="1" border="0" alt="" /></noscript> ...[SNIP]...
GET /mx/cgi-bin/webscr?cmd=_render-content&content_ID=merchant/sitemap HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Content-Type: text/html; charset=UTF-8 Date: Fri, 12 Aug 2011 14:44:25 GMT Content-Length: 21214 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
GET /nl/cgi-bin/?cmd=_render-content&content_ID=developer/home HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Content-Type: text/html; charset=UTF-8 Date: Fri, 12 Aug 2011 14:44:26 GMT Content-Length: 18901 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
...[SNIP]... </script><script type="text/javascript" src="https://www.paypalobjects.com/js/lib/min/global.js"></script> ...[SNIP]... <li> <a href="https://www.paypal-marketing.co.uk/partnersolutions/PartnerSolutions.aspx" target="_self">Select a pre-integrated solution</a> ...[SNIP]... <li class="sidecol2"> <a href="https://www.paypal-portal.com/developer/directory/" target="_self">Find a Certified Developer</a> ...[SNIP]... <li class="sidecol2"> <a href="https://www.paypal-marketing.co.uk/partnersolutions/PartnerSolutions.aspx" target="_blank">Choose a Pre-Integrated Solution</a> ...[SNIP]... thorized use is prohibited. This product and other products of OpinionLab, Inc. are protected by U.S. Patent No. US 6606581, 6421724, 6785717 B1 and other patents pending. http://www.opinionlab.com--> <script type="text/javascript" src="https://www.paypalobjects.com/js/opinionlab/oo_engine.js"></script> ...[SNIP]... <li> <a href="https://www.paypal-portal.com/developer/directory/" target="_self">Certified Developers</a> ...[SNIP]... <li> <a href="https://www.x.com/blogs" target="_self">Developer Blog</a> ...[SNIP]... </script><script type="text/javascript" src="https://www.paypalobjects.com/js/Customer/min/baynote.js"></script> ...[SNIP]... <noscript><img src="//paypal.112.2O7.net/b/ss/paypalglobal/1/H.6--NS/0?pageName=NonJavaScript" height="1" width="1" border="0" alt="" /></noscript> ...[SNIP]...
GET /uk/cgi-bin/?cmd=_render-content&content_ID=developer/home HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Content-Type: text/html; charset=UTF-8 Date: Fri, 12 Aug 2011 14:44:29 GMT Content-Length: 21719 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
GET /za/cgi-bin/webscr?cmd=_render-content&content_ID=merchant/sitemap HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Content-Type: text/html; charset=UTF-8 Date: Fri, 12 Aug 2011 14:44:42 GMT Content-Length: 16866 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
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 /ar/cgi-bin/webscr HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
...[SNIP]... </script><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/lib/min/global.js"></script> ...[SNIP]... </div><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/lib/min/widgets.js"></script><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/pageBlockingUnsafeBrowsers.js"></script><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/iconix.js"></script> ...[SNIP]... <!-- SiteCatalyst Code Copyright 1997-2005 Omniture, Inc. More info available at http://www.omniture.com --> <script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/site_catalyst/pp_jscode_080706.js"></script> ...[SNIP]...
GET /au/cgi-bin/?cmd=_render-content&content_ID=developer/home HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Content-Type: text/html; charset=UTF-8 Date: Fri, 12 Aug 2011 14:44:12 GMT Content-Length: 20189 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
...[SNIP]... </script><script type="text/javascript" src="https://www.paypalobjects.com/js/lib/min/global.js"></script> ...[SNIP]... thorized use is prohibited. This product and other products of OpinionLab, Inc. are protected by U.S. Patent No. US 6606581, 6421724, 6785717 B1 and other patents pending. http://www.opinionlab.com--> <script type="text/javascript" src="https://www.paypalobjects.com/js/opinionlab/oo_engine.js"></script> ...[SNIP]... </script><script type="text/javascript" src="https://www.paypalobjects.com/js/Customer/min/baynote.js"></script> ...[SNIP]...
GET /au/cgi-bin/ HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
...[SNIP]... </script><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/lib/min/global.js"></script> ...[SNIP]... <!-- OnlineOpinionF3cS v3.0--> <script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/opinionlab/oo_engine.js"></script> ...[SNIP]... </div><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/lib/min/widgets.js"></script><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/iconix.js"></script><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/pp_naturalsearch.js"></script> ...[SNIP]... <!-- SiteCatalyst Code Copyright 1997-2005 Omniture, Inc. More info available at http://www.omniture.com --> <script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/site_catalyst/pp_jscode_080706.js"></script> ...[SNIP]...
GET /br/cgi-bin/webscr HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="pt"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
...[SNIP]... </script><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/lib/min/global.js"></script> ...[SNIP]... </div><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/lib/min/widgets.js"></script><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/pageBlockingUnsafeBrowsers.js"></script><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/iconix.js"></script> ...[SNIP]... <!-- SiteCatalyst Code Copyright 1997-2005 Omniture, Inc. More info available at http://www.omniture.com --> <script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/site_catalyst/pp_jscode_080706.js"></script> ...[SNIP]...
GET /ca/cgi-bin/?cmd=_render-content&content_ID=developer/home HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Content-Type: text/html; charset=UTF-8 Date: Fri, 12 Aug 2011 14:44:12 GMT Content-Length: 22561 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
...[SNIP]... </script><script type="text/javascript" src="https://www.paypalobjects.com/js/lib/min/global.js"></script> ...[SNIP]... thorized use is prohibited. This product and other products of OpinionLab, Inc. are protected by U.S. Patent No. US 6606581, 6421724, 6785717 B1 and other patents pending. http://www.opinionlab.com--> <script type="text/javascript" src="https://www.paypalobjects.com/js/opinionlab/oo_engine.js"></script> ...[SNIP]...
GET /ca/cgi-bin/ HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
...[SNIP]... </script><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/lib/min/global.js"></script> ...[SNIP]... <!-- OnlineOpinionF3cS v3.0--> <script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/opinionlab/oo_engine.js"></script> ...[SNIP]... </div><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/lib/min/widgets.js"></script><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/pageBlockingUnsafeBrowsers.js"></script><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/iconix.js"></script> ...[SNIP]... <!-- SiteCatalyst Code Copyright 1997-2005 Omniture, Inc. More info available at http://www.omniture.com --> <script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/site_catalyst/pp_jscode_080706.js"></script> ...[SNIP]...
GET /ca/cgi-bin/marketingweb HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
...[SNIP]... </script><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/lib/min/global.js"></script> ...[SNIP]... <!-- OnlineOpinionF3cS v3.0--> <script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/opinionlab/oo_engine.js"></script> ...[SNIP]... </div><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/lib/min/widgets.js"></script><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/pageBlockingUnsafeBrowsers.js"></script><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/iconix.js"></script> ...[SNIP]... <!-- SiteCatalyst Code Copyright 1997-2005 Omniture, Inc. More info available at http://www.omniture.com --> <script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/site_catalyst/pp_jscode_080706.js"></script> ...[SNIP]...
GET /cgi-bin/marketingweb HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /es/cgi-bin/ HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="es"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
...[SNIP]... </style><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/lib/min/global.js"></script><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/tns/mid.js"></script> ...[SNIP]... <!-- OnlineOpinionF3cS v3.0--> <script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/opinionlab/oo_engine.js"></script> ...[SNIP]... </div><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/lib/min/widgets.js"></script><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/iconix.js"></script><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/pageBlockingUnsafeBrowsers.js"></script><script type="text/javascript" src="https://www.paypalobjects.com/js/tns/min/bid.js"></script> ...[SNIP]... </script><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/pp_naturalsearch.js"></script> ...[SNIP]... <!-- SiteCatalyst Code Copyright 1997-2005 Omniture, Inc. More info available at http://www.omniture.com --> <script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/site_catalyst/pp_jscode_080706.js"></script> ...[SNIP]...
GET /es/cgi-bin/?cmd=_render-content&content_ID=developer/home HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Content-Type: text/html; charset=UTF-8 Date: Fri, 12 Aug 2011 14:44:28 GMT Content-Length: 18890 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
...[SNIP]... </script><script type="text/javascript" src="https://www.paypalobjects.com/js/lib/min/global.js"></script> ...[SNIP]... thorized use is prohibited. This product and other products of OpinionLab, Inc. are protected by U.S. Patent No. US 6606581, 6421724, 6785717 B1 and other patents pending. http://www.opinionlab.com--> <script type="text/javascript" src="https://www.paypalobjects.com/js/opinionlab/oo_engine.js"></script> ...[SNIP]... </script><script type="text/javascript" src="https://www.paypalobjects.com/js/Customer/min/baynote.js"></script> ...[SNIP]...
GET /fr/cgi-bin/ HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="fr"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
...[SNIP]... </style><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/lib/min/global.js"></script><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/Marketing/js/sm-scripts.js"></script><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/Marketing/js/sm-local-messages.js"></script><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/tns/mid.js"></script> ...[SNIP]... <!-- OnlineOpinionF3cS v3.0--> <script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/opinionlab/oo_engine.js"></script> ...[SNIP]... </div><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/lib/min/widgets.js"></script><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/iconix.js"></script><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/pageBlockingUnsafeBrowsers.js"></script><script type="text/javascript" src="https://www.paypalobjects.com/js/tns/min/bid.js"></script> ...[SNIP]... </script><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/pp_naturalsearch.js"></script> ...[SNIP]... <!-- SiteCatalyst Code Copyright 1997-2005 Omniture, Inc. More info available at http://www.omniture.com --> <script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/site_catalyst/pp_jscode_080706.js"></script> ...[SNIP]...
GET /fr/cgi-bin/?cmd=_render-content&content_ID=developer/home HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Content-Type: text/html; charset=UTF-8 Date: Fri, 12 Aug 2011 14:44:15 GMT Content-Length: 15498 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
GET /il/cgi-bin/webscr HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
...[SNIP]... </script><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/lib/min/global.js"></script> ...[SNIP]... </div><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/lib/min/widgets.js"></script><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/pageBlockingUnsafeBrowsers.js"></script><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/iconix.js"></script> ...[SNIP]... <!-- SiteCatalyst Code Copyright 1997-2005 Omniture, Inc. More info available at http://www.omniture.com --> <script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/site_catalyst/pp_jscode_080706.js"></script> ...[SNIP]...
GET /it/cgi-bin/?cmd=_render-content&content_ID=developer/home HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Content-Type: text/html; charset=UTF-8 Date: Fri, 12 Aug 2011 14:44:15 GMT Content-Length: 14419 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
...[SNIP]... </script><script type="text/javascript" src="https://www.paypalobjects.com/js/lib/min/global.js"></script> ...[SNIP]... thorized use is prohibited. This product and other products of OpinionLab, Inc. are protected by U.S. Patent No. US 6606581, 6421724, 6785717 B1 and other patents pending. http://www.opinionlab.com--> <script type="text/javascript" src="https://www.paypalobjects.com/js/opinionlab/oo_engine.js"></script> ...[SNIP]... </script><script type="text/javascript" src="https://www.paypalobjects.com/js/Customer/min/baynote.js"></script> ...[SNIP]...
GET /it/cgi-bin/ HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="it"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
...[SNIP]... </style><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/lib/min/global.js"></script><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/tns/mid.js"></script> ...[SNIP]... </div><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/lib/min/widgets.js"></script><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/iconix.js"></script><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/pageBlockingUnsafeBrowsers.js"></script><script type="text/javascript" src="https://www.paypalobjects.com/js/tns/min/bid.js"></script> ...[SNIP]... </script><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/pp_naturalsearch.js"></script> ...[SNIP]... <!-- SiteCatalyst Code Copyright 1997-2005 Omniture, Inc. More info available at http://www.omniture.com --> <script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/site_catalyst/pp_jscode_080706.js"></script> ...[SNIP]...
GET /mx/cgi-bin/ HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="es"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
...[SNIP]... </script><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/lib/min/global.js"></script> ...[SNIP]... </div><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/lib/min/widgets.js"></script><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/pageBlockingUnsafeBrowsers.js"></script><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/iconix.js"></script> ...[SNIP]... <!-- SiteCatalyst Code Copyright 1997-2005 Omniture, Inc. More info available at http://www.omniture.com --> <script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/site_catalyst/pp_jscode_080706.js"></script> ...[SNIP]...
GET /mx/cgi-bin/?cmd=_render-content&content_ID=developer/home HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Content-Type: text/html; charset=UTF-8 Date: Fri, 12 Aug 2011 14:44:16 GMT Content-Length: 21370 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
...[SNIP]... </script><script type="text/javascript" src="https://www.paypalobjects.com/js/lib/min/global.js"></script> ...[SNIP]... thorized use is prohibited. This product and other products of OpinionLab, Inc. are protected by U.S. Patent No. US 6606581, 6421724, 6785717 B1 and other patents pending. http://www.opinionlab.com--> <script type="text/javascript" src="https://www.paypalobjects.com/js/opinionlab/oo_engine.js"></script> ...[SNIP]... </script><script type="text/javascript" src="https://www.paypalobjects.com/js/Customer/min/baynote.js"></script> ...[SNIP]...
GET /mx/cgi-bin/webscr HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="es"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
...[SNIP]... </script><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/lib/min/global.js"></script> ...[SNIP]... </div><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/lib/min/widgets.js"></script><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/pageBlockingUnsafeBrowsers.js"></script><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/iconix.js"></script> ...[SNIP]... <!-- SiteCatalyst Code Copyright 1997-2005 Omniture, Inc. More info available at http://www.omniture.com --> <script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/site_catalyst/pp_jscode_080706.js"></script> ...[SNIP]...
GET /nl/cgi-bin/ HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="nl"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
...[SNIP]... </style><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/lib/min/global.js"></script><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/tns/mid.js"></script> ...[SNIP]... <!-- OnlineOpinionF3cS v3.0--> <script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/opinionlab/oo_engine.js"></script> ...[SNIP]... </div><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/lib/min/widgets.js"></script><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/iconix.js"></script><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/pageBlockingUnsafeBrowsers.js"></script><script type="text/javascript" src="https://www.paypalobjects.com/js/tns/min/bid.js"></script> ...[SNIP]... <!-- SiteCatalyst Code Copyright 1997-2005 Omniture, Inc. More info available at http://www.omniture.com --> <script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/site_catalyst/pp_jscode_080706.js"></script> ...[SNIP]...
GET /nl/cgi-bin/?cmd=_render-content&content_ID=developer/home HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Content-Type: text/html; charset=UTF-8 Date: Fri, 12 Aug 2011 14:44:26 GMT Content-Length: 18901 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
...[SNIP]... </script><script type="text/javascript" src="https://www.paypalobjects.com/js/lib/min/global.js"></script> ...[SNIP]... thorized use is prohibited. This product and other products of OpinionLab, Inc. are protected by U.S. Patent No. US 6606581, 6421724, 6785717 B1 and other patents pending. http://www.opinionlab.com--> <script type="text/javascript" src="https://www.paypalobjects.com/js/opinionlab/oo_engine.js"></script> ...[SNIP]... </script><script type="text/javascript" src="https://www.paypalobjects.com/js/Customer/min/baynote.js"></script> ...[SNIP]...
GET /uk/cgi-bin/ HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
...[SNIP]... </script><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/lib/min/global.js"></script> ...[SNIP]... <!-- OnlineOpinionF3cS v3.0--> <script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/opinionlab/oo_engine.js"></script> ...[SNIP]... </div><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/lib/min/widgets.js"></script><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/pageBlockingUnsafeBrowsers.js"></script><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/Marketing/js/min/dynamic_user_account.js"></script> ...[SNIP]... </script><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/iconix.js"></script><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/pp_naturalsearch.js"></script> ...[SNIP]... <!-- SiteCatalyst Code Copyright 1997-2005 Omniture, Inc. More info available at http://www.omniture.com --> <script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/site_catalyst/pp_jscode_080706.js"></script> ...[SNIP]...
GET /uk/cgi-bin/?cmd=_render-content&content_ID=developer/home HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Content-Type: text/html; charset=UTF-8 Date: Fri, 12 Aug 2011 14:44:29 GMT Content-Length: 21719 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
...[SNIP]... </script><script type="text/javascript" src="https://www.paypalobjects.com/js/lib/min/global.js"></script> ...[SNIP]... thorized use is prohibited. This product and other products of OpinionLab, Inc. are protected by U.S. Patent No. US 6606581, 6421724, 6785717 B1 and other patents pending. http://www.opinionlab.com--> <script type="text/javascript" src="https://www.paypalobjects.com/js/opinionlab/oo_engine.js"></script> ...[SNIP]... </script><script type="text/javascript" src="https://www.paypalobjects.com/js/Customer/min/baynote.js"></script> ...[SNIP]...
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns:ns0="og" lang="en" ns0:xmlns="http://ogp.me/ns#"><head> <meta http-equiv="Conte ...[SNIP]... </script><script type="text/javascript" src="https://www.paypalobjects.com/js/lib/min/global.js"></script> ...[SNIP]... thorized use is prohibited. This product and other products of OpinionLab, Inc. are protected by U.S. Patent No. US 6606581, 6421724, 6785717 B1 and other patents pending. http://www.opinionlab.com--> <script type="text/javascript" src="https://www.paypalobjects.com/js/opinionlab/oo_engine.js"></script> ...[SNIP]...
GET /us/cgi-bin/ HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /us/cgi-bin/marketingweb HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /za/cgi-bin/webscr HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
...[SNIP]... </style><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/lib/min/global.js"></script><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/tns/mid.js"></script> ...[SNIP]... </div><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/lib/min/widgets.js"></script><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/iconix.js"></script><script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/pageBlockingUnsafeBrowsers.js"></script><script type="text/javascript" src="https://www.paypalobjects.com/js/tns/min/bid.js"></script> ...[SNIP]... <!-- SiteCatalyst Code Copyright 1997-2005 Omniture, Inc. More info available at http://www.omniture.com --> <script type="text/javascript" src="https://www.paypalobjects.com/WEBSCR-640-20110722-1/js/site_catalyst/pp_jscode_080706.js"></script> ...[SNIP]...
7. Cookie without HttpOnly flag setpreviousnext There are 17 instances of this issue:
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.
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /ar/cgi-bin/webscr HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /au/cgi-bin/ HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /br/cgi-bin/webscr HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="pt"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /ca/cgi-bin/ HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /ca/cgi-bin/marketingweb HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /cgi-bin/marketingweb HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns:ns0="og" lang="en" ns0:xmlns="http://ogp.me/ns#"><head> <meta http-equiv="Conte ...[SNIP]...
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /es/cgi-bin/ HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="es"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /fr/cgi-bin/ HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="fr"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /il/cgi-bin/webscr HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /it/cgi-bin/ HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="it"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /mx/cgi-bin/ HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="es"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /mx/cgi-bin/webscr HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="es"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /nl/cgi-bin/ HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="nl"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /uk/cgi-bin/ HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /us/cgi-bin/ HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns:ns0="og" lang="en" ns0:xmlns="http://ogp.me/ns#"><head> <meta http-equiv="Conte ...[SNIP]...
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /us/cgi-bin/marketingweb HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns:ns0="og" lang="en" ns0:xmlns="http://ogp.me/ns#"><head> <meta http-equiv="Conte ...[SNIP]...
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /za/cgi-bin/webscr HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
...[SNIP]...
8. Email addresses disclosedpreviousnext There are 7 instances of this issue:
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:
spoof@paypal.com
Request
GET /ca/cgi-bin/marketingweb?cmd=_render-content&content_ID=security/seller_protection HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Content-Type: text/html; charset=UTF-8 Date: Fri, 12 Aug 2011 14:44:12 GMT Connection: close Connection: Transfer-Encoding Content-Length: 42870
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
Responses containing credit card numbers may not represent any security vulnerability - for example, a number may belong to the logged-in user to whom it is displayed. You should verify whether the numbers identified are actually valid credit card numbers and whether their disclosure within the application is appropriate.
The following credit card number was disclosed in the response:
5007225005004440
Request
GET /cms_content/US/en_US/files/developer/PP_ExpressCheckout_AdvancedFeaturesGuide.pdf HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Last-Modified: Wed, 03 Aug 2011 22:01:11 GMT Accept-Ranges: bytes Content-Length: 1874917 Content-Type: application/pdf Date: Fri, 12 Aug 2011 14:44:12 GMT Connection: close
The following credit card number was disclosed in the response:
4440000000000000
Request
GET /cms_content/US/en_US/files/developer/PP_ExpressCheckout_IntegrationGuide_DG.pdf HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Last-Modified: Wed, 03 Aug 2011 22:02:28 GMT Accept-Ranges: bytes Content-Length: 672616 Content-Type: application/pdf Date: Fri, 12 Aug 2011 14:44:11 GMT Connection: close
The following credit card number was disclosed in the response:
5000556000222000
Request
GET /cms_content/US/en_US/files/ua/pro.pdf HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Last-Modified: Thu, 28 Jul 2011 19:00:42 GMT Accept-Ranges: bytes Content-Length: 159990 Content-Type: application/pdf Date: Fri, 12 Aug 2011 15:35:30 GMT Connection: close
The file robots.txt is used to give instructions to web robots, such as search engine crawlers, about locations within the web site which robots are allowed, or not allowed, to crawl and index.
The presence of the robots.txt does not in itself present any kind of security vulnerability. However, it is often used to identify restricted or private areas of a site's contents. The information in the file may therefore help an attacker to map out the site's contents, especially if some of the locations identified are not linked from elsewhere in the site. If the application relies on robots.txt to protect access to these areas, and does not enforce proper access control over them, then this presents a serious vulnerability.
Issue remediation
The robots.txt file is not itself a security threat, and its correct use can represent good practice for non-security reasons. You should not assume that all web robots will honour the file's instructions. Rather, assume that attackers will pay close attention to any locations identified in the file. Do not rely on robots.txt to provide any kind of protection over unauthorised access.
Request
GET /robots.txt HTTP/1.0 Host: cms.paypal.com
Response
HTTP/1.0 200 OK Server: Apache Last-Modified: Wed, 31 Mar 2010 21:55:38 GMT Accept-Ranges: bytes Content-Length: 374 Content-Type: text/plain; charset=ISO-8859-1 Date: Fri, 12 Aug 2011 01:23:28 GMT Connection: close
Unless directed otherwise, browsers may store a local cached copy of content received from web servers. Some browsers, including Internet Explorer, cache content accessed via HTTPS. If sensitive information in application responses is stored in the local cache, then this may be retrieved by other users who have access to the same computer at a future time.
Issue remediation
The application should return caching directives instructing browsers not to store local copies of any sensitive data. Often, this can be achieved by configuring the web server to prevent caching for relevant paths within the web root. Alternatively, most web development platforms allow you to control the server's caching directives from within individual scripts. Ideally, the web server should return the following HTTP headers in all responses containing sensitive content:
GET /ar/cgi-bin/webscr?cmd=_render-content&content_ID=merchant/sitemap HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Content-Type: text/html; charset=UTF-8 Date: Fri, 12 Aug 2011 14:44:34 GMT Content-Length: 17567 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
GET /au/cgi-bin/?cmd=_render-content&content_ID=developer/home HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Content-Type: text/html; charset=UTF-8 Date: Fri, 12 Aug 2011 14:44:12 GMT Content-Length: 20189 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
GET /br/cgi-bin/webscr?cmd=_render-content&content_ID=merchant/sitemap HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Content-Type: text/html; charset=UTF-8 Date: Fri, 12 Aug 2011 14:44:39 GMT Content-Length: 18314 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
GET /ca/cgi-bin/?cmd=_render-content&content_ID=developer/home HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Content-Type: text/html; charset=UTF-8 Date: Fri, 12 Aug 2011 14:44:12 GMT Content-Length: 22561 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
GET /ca/cgi-bin/marketingweb?cmd=_render-content&content_ID=security/seller_protection HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Content-Type: text/html; charset=UTF-8 Date: Fri, 12 Aug 2011 14:44:12 GMT Connection: close Connection: Transfer-Encoding Content-Length: 42870
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns:ns0="og" lang="en" ns0:xmlns="http://ogp.me/ns#"><head> <meta http-equiv="Conte ...[SNIP]...
GET /cms_content/US/en_US/files/developer/PP_ExpressCheckout_AdvancedFeaturesGuide.pdf HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Last-Modified: Wed, 03 Aug 2011 22:01:11 GMT Accept-Ranges: bytes Content-Length: 1874917 Content-Type: application/pdf Date: Fri, 12 Aug 2011 14:44:12 GMT Connection: close
%PDF-1.6%.... 9028 0 obj<</Linearized 1/L 1874917/O 9033/E 54978/N 123/T 1694235/H [ 6076 2123]>>endobj xref 9028 289 0000000016 00000 n 0000008199 00000 n 0000008399 00000 n 00000084 ...[SNIP]...
GET /cms_content/US/en_US/files/developer/PP_ExpressCheckout_IntegrationGuide.pdf HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Last-Modified: Wed, 03 Aug 2011 22:01:14 GMT Accept-Ranges: bytes Content-Length: 1057796 Content-Type: application/pdf Date: Fri, 12 Aug 2011 14:44:12 GMT Connection: close
%PDF-1.6%.... 4865 0 obj<</Linearized 1/L 1057796/O 4870/E 41319/N 76/T 960374/H [ 4376 1526]>>endobj xref 4865 204 0000000016 00000 n 0000005902 00000 n 0000006102 00000 n 00000061 ...[SNIP]...
GET /cms_content/US/en_US/files/developer/PP_ExpressCheckout_IntegrationGuide_DG.pdf HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Last-Modified: Wed, 03 Aug 2011 22:02:28 GMT Accept-Ranges: bytes Content-Length: 672616 Content-Type: application/pdf Date: Fri, 12 Aug 2011 14:44:11 GMT Connection: close
%PDF-1.6%.... 4384 0 obj<</Linearized 1/L 672616/O 4389/E 41998/N 51/T 584814/H [ 3256 1290]>>endobj xref 4384 148 0000000016 00000 n 0000004546 00000 n 0000004746 00000 n 00000047 ...[SNIP]...
GET /cms_content/US/en_US/files/merchant/inc_magazine.pdf HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Last-Modified: Tue, 09 Aug 2011 06:37:57 GMT Accept-Ranges: bytes Content-Length: 135661 Content-Type: application/pdf Date: Fri, 12 Aug 2011 15:35:31 GMT Connection: close
GET /cms_content/US/en_US/files/merchant/pp_mpr_datasheet_wpp_r4.pdf HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Last-Modified: Tue, 09 Aug 2011 06:35:07 GMT Accept-Ranges: bytes Content-Length: 479650 Content-Type: application/pdf Date: Fri, 12 Aug 2011 15:35:31 GMT Connection: close
%PDF-1.4%.... 307 0 obj<</Linearized 1/L 479650/O 309/E 338188/N 3/T 473467/H [ 1376 438]>>endobj xref307 540000000016 00000 n 0000001995 00000 n 0000002142 00000 n 0000002746 0 ...[SNIP]...
GET /cms_content/US/en_US/files/ua/pro.pdf HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Last-Modified: Thu, 28 Jul 2011 19:00:42 GMT Accept-Ranges: bytes Content-Length: 159990 Content-Type: application/pdf Date: Fri, 12 Aug 2011 15:35:30 GMT Connection: close
%PDF-1.4%.... 45 0 obj<</Linearized 1/L 89526/O 47/E 15863/N 12/T 88579/H [ 796 327]>>endobj xref 45 25 0000000016 00000 n 0000001123 00000 n 0000001204 00000 n 0000001384 ...[SNIP]...
GET /cms_content/US/en_US/files/ua/ua.pdf HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Last-Modified: Thu, 28 Jul 2011 19:01:49 GMT Accept-Ranges: bytes Content-Length: 399674 Content-Type: application/pdf Date: Fri, 12 Aug 2011 14:44:11 GMT Connection: close
%PDF-1.4%.... 90 0 obj<</Linearized 1/L 212599/O 92/E 17242/N 26/T 210752/H [ 796 489]>>endobj xref 90 25 0000000016 00000 n 0000001285 00000 n 0000001366 00000 n 0000001554 ...[SNIP]...
GET /cms_content/en_US/files/developer/PP_How_to_Work_with_Clients.pdf HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Last-Modified: Thu, 19 Feb 2009 23:38:49 GMT Accept-Ranges: bytes Content-Length: 195074 Content-Type: application/pdf Date: Fri, 12 Aug 2011 14:44:11 GMT Connection: close
%PDF-1.4%.... 119 0 obj<</Linearized 1/L 172384/O 121/E 112734/N 2/T 169961/H [ 1096 296]>>endobj xref119 400000000016 00000 n 0000001568 00000 n 0000001731 00000 n 0000002254 0 ...[SNIP]...
GET /es/cgi-bin/?cmd=_render-content&content_ID=developer/home HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Content-Type: text/html; charset=UTF-8 Date: Fri, 12 Aug 2011 14:44:28 GMT Content-Length: 18890 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
GET /fr/cgi-bin/?cmd=_render-content&content_ID=developer/home HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Content-Type: text/html; charset=UTF-8 Date: Fri, 12 Aug 2011 14:44:15 GMT Content-Length: 15498 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
GET /il/cgi-bin/webscr?cmd=_render-content&content_ID=merchant/sitemap&locale.x=he_IL HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Content-Type: text/html; charset=UTF-8 Date: Fri, 12 Aug 2011 14:44:41 GMT Content-Length: 20970 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="he" dir="rtl"><head> <meta http-equiv="Content-Type" content="text/html; charse ...[SNIP]...
GET /it/cgi-bin/?cmd=_render-content&content_ID=developer/home HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Content-Type: text/html; charset=UTF-8 Date: Fri, 12 Aug 2011 14:44:15 GMT Content-Length: 14419 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
GET /mx/cgi-bin/?cmd=_render-content&content_ID=developer/home HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Content-Type: text/html; charset=UTF-8 Date: Fri, 12 Aug 2011 14:44:16 GMT Content-Length: 21370 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
GET /mx/cgi-bin/webscr?cmd=_render-content&content_ID=merchant/sitemap HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Content-Type: text/html; charset=UTF-8 Date: Fri, 12 Aug 2011 14:44:25 GMT Content-Length: 21214 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
GET /nl/cgi-bin/?cmd=_render-content&content_ID=developer/home HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Content-Type: text/html; charset=UTF-8 Date: Fri, 12 Aug 2011 14:44:26 GMT Content-Length: 18901 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
GET /uk/cgi-bin/?cmd=_render-content&content_ID=developer/home HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Content-Type: text/html; charset=UTF-8 Date: Fri, 12 Aug 2011 14:44:29 GMT Content-Length: 21719 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns:ns0="og" lang="en" ns0:xmlns="http://ogp.me/ns#"><head> <meta http-equiv="Conte ...[SNIP]...
GET /us/cgi-bin/marketingweb?cmd=_render-content&content_ID=security/online_security_center HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Content-Type: text/html; charset=UTF-8 Date: Fri, 12 Aug 2011 01:55:29 GMT Content-Length: 22835 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns:ns1="og" lang="en" xmlns="http://www.w3.org/1999/xhtml" ns1:xmlns="http://ogp.me/ns#" ...[SNIP]...
GET /za/cgi-bin/webscr?cmd=_render-content&content_ID=merchant/sitemap HTTP/1.1 Host: cms.paypal.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Server: Apache Content-Type: text/html; charset=UTF-8 Date: Fri, 12 Aug 2011 14:44:42 GMT Content-Length: 16866 Connection: close
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
The server presented a valid, trusted SSL certificate. This issue is purely informational.
The server presented the following certificates:
Server certificate
Issued to:
*.paypal.com,ST=California
Issued by:
Akamai Subordinate CA 3
Valid from:
Fri Apr 08 12:05:24 GMT-06:00 2011
Valid to:
Sun Apr 08 12:05:24 GMT-06:00 2012
Certificate chain #1
Issued to:
Akamai Subordinate CA 3
Issued by:
GTE CyberTrust Global Root
Valid from:
Thu May 11 09:32:00 GMT-06:00 2006
Valid to:
Sat May 11 17:59:00 GMT-06:00 2013
Certificate chain #2
Issued to:
GTE CyberTrust Global Root
Issued by:
GTE CyberTrust Global Root
Valid from:
Wed Aug 12 18:29:00 GMT-06:00 1998
Valid to:
Mon Aug 13 17:59:00 GMT-06:00 2018
Issue background
SSL helps to protect the confidentiality and integrity of information in transit between the browser and server, and to provide authentication of the server's identity. To serve this purpose, the server must present an SSL certificate which is valid for the server's hostname, is issued by a trusted authority and is valid for the current date. If any one of these requirements is not met, SSL connections to the server will not provide the full protection for which SSL is designed.
It should be noted that various attacks exist against SSL in general, and in the context of HTTPS web connections. It may be possible for a determined and suitably-positioned attacker to compromise SSL connections without user detection even when a valid SSL certificate is used.Report generated by XSS.CX at Fri Aug 12 09:38:32 GMT-06:00 2011.