Reflected cross-site scripting vulnerabilities arise when data is copied from a request and echoed into the application's immediate response in an unsafe way. An attacker can use the vulnerability to construct a request which, if issued by another application user, will cause JavaScript code supplied by the attacker to execute within the user's browser in the context of that user's session with the application.
The attacker-supplied code can perform a wide variety of actions, such as stealing the victim's session token or login credentials, performing arbitrary actions on the victim's behalf, and logging their keystrokes.
Users can be induced to issue the attacker's crafted request in various ways. For example, the attacker can send a victim a link containing a malicious URL in an email or instant message. They can submit the link to popular web sites that allow content authoring, for example in blog comments. And they can create an innocuous looking web site which causes anyone viewing it to make arbitrary cross-domain requests to the vulnerable application (using either the GET or the POST method).
The security impact of cross-site scripting vulnerabilities is dependent upon the nature of the vulnerable application, the kinds of data and functionality which it contains, and the other applications which belong to the same domain and organisation. If the application is used only to display non-sensitive public content, with no authentication or access control functionality, then a cross-site scripting flaw may be considered low risk. However, if the same application resides on a domain which can access cookies for other more security-critical applications, then the vulnerability could be used to attack those other applications, and so may be considered high risk. Similarly, if the organisation which owns the application is a likely target for phishing attacks, then the vulnerability could be leveraged to lend credibility to such attacks, by injecting Trojan functionality into the vulnerable application, and exploiting users' trust in the organisation in order to capture credentials for other applications which it owns. In many kinds of application, such as those providing online banking functionality, cross-site scripting should always be considered high risk.
Remediation background
In most situations where user-controllable data is copied into application responses, cross-site scripting attacks can be prevented using two layers of defences:
Input should be validated as strictly as possible on arrival, given the kind of content which it is expected to contain. For example, personal names should consist of alphabetical and a small range of typographical characters, and be relatively short; a year of birth should consist of exactly four numerals; email addresses should match a well-defined regular expression. Input which fails the validation should be rejected, not sanitised.
User input should be HTML-encoded at any point where it is copied into application responses. All HTML metacharacters, including < > " ' and =, should be replaced with the corresponding HTML entities (< > etc).
In cases where the application's functionality allows users to author content using a restricted subset of HTML tags and attributes (for example, blog comments which allow limited formatting and linking), it is necessary to parse the supplied HTML to validate that it does not use any dangerous syntax; this is a non-trivial task.
1.1. https://www.x.com/blogs/ [name of an arbitrarily supplied request parameter]next
Summary
Severity:
High
Confidence:
Certain
Host:
https://www.x.com
Path:
/blogs/
Issue detail
The name of an arbitrarily supplied request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload cc106"><ScRiPt>alert(1)</ScRiPt>180668780e6 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
The application attempts to block certain expressions that are often used in XSS attacks but this can be circumvented by varying the case of the blocked expressions - for example, by submitting "ScRiPt" instead of "script".
Remediation detail
Blacklist-based filters designed to block known bad inputs are usually inadequate and should be replaced with more effective input and output validation.
Request
GET /blogs/?cc106"><ScRiPt>alert(1)</ScRiPt>180668780e6=1 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:49 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Vary: User-Agent JP: D=254072 t=1313157109864597 Cache-Control: no-cache, private Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
1.2. https://www.x.com/community/ppx/xspaces/introduce [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Certain
Host:
https://www.x.com
Path:
/community/ppx/xspaces/introduce
Issue detail
The name of an arbitrarily supplied request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload c05d5"><ScRiPt>alert(1)</ScRiPt>8ef9c8977ed was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
The application attempts to block certain expressions that are often used in XSS attacks but this can be circumvented by varying the case of the blocked expressions - for example, by submitting "ScRiPt" instead of "script".
Remediation detail
Blacklist-based filters designed to block known bad inputs are usually inadequate and should be replaced with more effective input and output validation.
Request
GET /community/ppx/xspaces/introduce?c05d5"><ScRiPt>alert(1)</ScRiPt>8ef9c8977ed=1 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET / HTTP/1.1 Host: www.x.com User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 115 Connection: keep-alive Referer: https://www.paypal.com/us/cgi-bin/helpweb?cmd=_help
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blogs/josh/2011/03/29/paypal-integration-resources HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blogs/matt/2010/08/10/retrieving-your-api-credentials HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/home HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/adaptive_accounts HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/adaptive_payments HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/apps101 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/authentication HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/businesspayments HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/code_samples HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/dev-tools/decision_tree HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/devchallenge HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/devchallenge/ HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/developer HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/devtalk HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/devzone HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/documentation HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/feedback HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/fundraising HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/global/au HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/global/ca HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/global/cn HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/global/de HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/global/fr HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/global/it HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/global/jp HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/global/mx HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/global/nl HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/global/sp HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/global/uk HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/ipn HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/marketplaces HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/mass_pay HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/offlineanddevices HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/p2p HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/payflow_link HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/payflow_pro HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/payflow_xml_reporting HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/pdt HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/permissions HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/press HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/recurring_billing HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/recurring_payments HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/release_notes HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/sdks HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/showcase/ap_directory HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/support HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/system_status HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/testing HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/training HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/transaction_information HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/vt HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/website_reporting HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/wpp HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/wpphosted HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/wps HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/xspaces/accelerator HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/xspaces/certification HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/xspaces/cloud-computing HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/xspaces/digital_goods HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/xspaces/finance HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/xspaces/forums HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/xspaces/gaming HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/xspaces/identity HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/xspaces/innovate HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/xspaces/introduce?view=documents HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/xspaces/mobile HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/xspaces/mobile/mecl HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/xspaces/mobile/mobile_ec HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/xspaces/security HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/xspaces/social HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/xspaces/subscriptions HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/xspaces/toolkits HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/xspaces/web_checkout HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/xspaces/web_checkout/nvp HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/xspaces/web_checkout/soap HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/xcommerce-blogs/blog/2011/06/07/adobe-to-arm-xcommerce-retailers-with-customer-data-to-help-them-sell-more HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/xcommerce-blogs/blog/2011/06/08/how-may-we-serve-you-better HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/xcommerce-blogs/blog/2011/06/26/are-you-headed-to-fowa HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/xcommerce-blogs/blog/2011/07/04/paypal-x-developer-challenge-for-android-vote-now-for-peoples-choice-award HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/xcommerce-blogs/blog/2011/07/18/our-infrastructure-plans HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/xcommerce-blogs/blog/2011/07/28/xcommerce-innovate-developer-conference-2011--registration-open HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/xcommerce-blogs/blog/2011/08/02/winners-of-paypals-third-developer-challenge-revealed HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-1031 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-1041 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-1051 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-1108 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-1116 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-1176 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-1204 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-1216 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-1332 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-1372 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-1374 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-1401 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-1431 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-1551 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-1613 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-2241 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-2346 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3201 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3212 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3251 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3271 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3321 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3322 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3323 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3345 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3351 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3352 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3353 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3354 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3355 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3371 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3372 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3373 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3374 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3375 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3426 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3427 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3431 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3443 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3444 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3491 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3561 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3562 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3619 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3688 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3812 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3836 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3841 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/186684 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/198017 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/211333 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/211439 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/211738 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/212001 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/212124 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/212170 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/212753 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/212906 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/213354 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/213546 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/213568 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/213571 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/213767 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/213787 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/213788 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/213865 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/214347 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/214440 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/214618 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/214902 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/214926 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/215245 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/215254 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/215264 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/215276 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/215291 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/CorinneSherman HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:53 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c38393433393b332c323030383b332c35333735313b332c35333436333b332c35353331393b332c35333437343b332c35373137393b332c3133363935343b332c3133373131353b332c36303039313b; Expires=Sun, 11-Sep-2011 13:51:54 GMT; Path=/ Vary: User-Agent JP: D=153786 t=1313157114086096 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/GiancarloUk2 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:28 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c38383139383b332c3131353037373b332c3130383730353b332c3131303734313b332c3131303831343b332c38323534333b332c3131353130373b332c38353530363b332c3131313737343b332c38373839383b; Expires=Sun, 11-Sep-2011 13:52:29 GMT; Path=/ Vary: User-Agent JP: D=109527 t=1313157149159421 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/IndieReign HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:30 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c3134303730373b332c38383139383b332c38373839383b332c3134313133383b332c38353530363b332c3134303532383b332c3131353130373b332c3131303734313b332c3131313737343b332c3131353037373b; Expires=Sun, 11-Sep-2011 13:52:30 GMT; Path=/ Vary: User-Agent JP: D=98253 t=1313157150770204 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/JasonVenner HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:49 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b33382c363330313b3130322c313130363b3130322c333831313b332c3133383538323b332c35333735313b332c3133373331333b332c35353331393b332c3133363236393b332c38323134383b332c37383732323b332c38313633393b332c3130323736323b332c36373839373b; Expires=Sun, 11-Sep-2011 13:51:49 GMT; Path=/ Vary: User-Agent JP: D=146802 t=1313157109565171 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/MrcheckAPX HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:47 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c38343138313b332c38323134383b332c38313633393b332c37383732323b332c36373839373b332c323030313b332c313b332c38393734373b332c3133393930333b332c3134303730373b33382c363333363b; Expires=Sun, 11-Sep-2011 13:52:48 GMT; Path=/ Vary: User-Agent JP: D=97089 t=1313157168042186 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/PP_Igor HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:09 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c34383739343b332c31303737303b332c31393037313b332c33353136303b332c35333639373b332c38383732373b332c39343632373b332c38303434333b332c36363938333b332c37383635393b; Expires=Sun, 11-Sep-2011 13:52:09 GMT; Path=/ Vary: User-Agent JP: D=77818 t=1313157129602041 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/PP_MTS_Andre HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:05 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c31393037313b332c33353136303b332c35333639373b332c38383732373b332c39343632373b332c38303434333b332c36363938333b332c37383635393b332c35353331393b332c38393433393b; Expires=Sun, 11-Sep-2011 13:52:06 GMT; Path=/ Vary: User-Agent JP: D=85787 t=1313157126041615 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/PP_MTS_Chad HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:03 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c33353136303b332c38383732373b332c39343632373b332c38303434333b332c36363938333b332c37383635393b332c35353331393b332c38393433393b332c35333436333b332c323030383b; Expires=Sun, 11-Sep-2011 13:52:04 GMT; Path=/ Vary: User-Agent JP: D=167980 t=1313157123846369 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/PP_MTS_GuidoT HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:07 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c31303737303b332c31393037313b332c33353136303b332c35333639373b332c38383732373b332c39343632373b332c38303434333b332c36363938333b332c37383635393b332c35353331393b; Expires=Sun, 11-Sep-2011 13:52:07 GMT; Path=/ Vary: User-Agent JP: D=96030 t=1313157127847926 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/PP_MTS_Magarvin HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:03 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c35333639373b332c33353136303b332c38383732373b332c39343632373b332c38303434333b332c36363938333b332c37383635393b332c35353331393b332c38393433393b332c35333436333b; Expires=Sun, 11-Sep-2011 13:52:04 GMT; Path=/ Vary: User-Agent JP: D=130947 t=1313157124385931 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/PP_MTS_Patrick HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:12 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c3133313833303b332c3132393239303b332c3133373135383b332c3133373331333b332c3132323335343b332c3133393730313b332c3133343430323b332c39313330313b332c3134303635343b332c34383739343b; Expires=Sun, 11-Sep-2011 13:52:13 GMT; Path=/ Vary: User-Agent JP: D=143994 t=1313157132945144 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/PayPalXadmin HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:39 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c323030313b332c313b332c38393734373b332c3133393930333b332c3134303730373b332c3134303532383b332c3134313133383b332c38383139383b332c38373839383b332c38353530363b33382c363333363b; Expires=Sun, 11-Sep-2011 13:52:39 GMT; Path=/ Vary: User-Agent JP: D=96924 t=1313157159108661 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/PayPal_Carolyn HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:51 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b33382c363330313b3130322c313130363b3130322c333831313b332c323030383b332c35333437343b332c3133363935343b332c3133373131353b332c35333735313b332c3133383538323b332c36303039313b332c3133373331333b332c35353331393b332c3133363236393b; Expires=Sun, 11-Sep-2011 13:51:51 GMT; Path=/ Vary: User-Agent JP: D=182753 t=1313157111682138 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/PayPal_Sudha HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:52 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b33382c363330313b3130322c313130363b3130322c333831313b332c35333436333b332c36303039313b332c323030383b332c35333437343b332c3133363935343b332c3133373131353b332c35333735313b332c3133383538323b332c3133373331333b332c35353331393b; Expires=Sun, 11-Sep-2011 13:51:52 GMT; Path=/ Vary: User-Agent JP: D=104130 t=1313157112744233 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/PayPal_ToddS HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:14 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c323839313b332c323430323b332c3133363236393b332c3133313833303b332c31323739393b332c3133373331333b332c3133373135383b332c3132393239303b332c3133393730313b332c3132323335343b; Expires=Sun, 11-Sep-2011 13:52:14 GMT; Path=/ Vary: User-Agent JP: D=172832 t=1313157134792842 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/Praveen HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:52 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b33382c363330313b3130322c313130363b3130322c333831313b332c35353331393b332c35373137393b332c35333436333b332c35333437343b332c323030383b332c3133363935343b332c3133373131353b332c36303039313b332c35333735313b332c3133383538323b; Expires=Sun, 11-Sep-2011 13:51:53 GMT; Path=/ Vary: User-Agent JP: D=139937 t=1313157113112925 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/Praveen/blog/2011/01/31/icanhas-instant-app-approval HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:53 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c35353331393b332c35333437343b332c323030383b332c35333436333b332c35373137393b332c3133363935343b332c3133373131353b332c36303039313b332c35333735313b332c3133383538323b; Expires=Sun, 11-Sep-2011 13:51:53 GMT; Path=/ Vary: User-Agent JP: D=129836 t=1313157113665921 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/RightWayMail HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:28 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c3134313133383b332c3131353037373b332c38323534333b332c3130383730353b332c3131303831343b332c38383139383b332c3131303734313b332c3131353130373b332c38353530363b332c3131313737343b; Expires=Sun, 11-Sep-2011 13:52:29 GMT; Path=/ Vary: User-Agent JP: D=143442 t=1313157149181583 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/S.Aijaz HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:11 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c3132393239303b332c3134303635343b332c3133393730313b332c3132323335343b332c3133343430323b332c39313330313b332c34383739343b332c31303737303b332c31393037313b332c33353136303b; Expires=Sun, 11-Sep-2011 13:52:11 GMT; Path=/ Vary: User-Agent JP: D=107761 t=1313157131723635 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/SRS HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:28 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c38373839383b332c3133383934323b332c3131363438333b332c32333938353b332c3131303838353b332c33393238333b332c3131383939313b332c3134313133383b332c39323635363b332c3132323433393b; Expires=Sun, 11-Sep-2011 13:52:28 GMT; Path=/ Vary: User-Agent JP: D=95619 t=1313157148836785 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/Saleem HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:51 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b33382c363330313b3130322c313130363b3130322c333831313b332c35333437343b332c3133373131353b332c3133363935343b332c35333735313b332c36303039313b332c323030383b332c3133383538323b332c3133373331333b332c35353331393b332c3133363236393b; Expires=Sun, 11-Sep-2011 13:51:52 GMT; Path=/ Vary: User-Agent JP: D=174302 t=1313157112089068 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/Shade8934 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:50 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b33382c363330313b3130322c313130363b3130322c333831313b332c3133373131353b332c3133363935343b332c3133383538323b332c35333735313b332c36303039313b332c3133373331333b332c35353331393b332c3133363236393b332c38323134383b332c37383732323b; Expires=Sun, 11-Sep-2011 13:51:50 GMT; Path=/ Vary: User-Agent JP: D=78825 t=1313157110665049 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/Suneetha HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:12 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c3133373135383b332c3132393239303b332c3133393730313b332c3132323335343b332c3133343430323b332c39313330313b332c3134303635343b332c34383739343b332c31303737303b332c31393037313b; Expires=Sun, 11-Sep-2011 13:52:12 GMT; Path=/ Vary: User-Agent JP: D=77775 t=1313157132121636 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/admin HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:36 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c313b332c38393734373b332c3133393930333b332c3134303730373b332c3134303532383b332c3134313133383b332c38383139383b332c38373839383b332c38353530363b332c3131353130373b33382c363333363b; Expires=Sun, 11-Sep-2011 13:52:37 GMT; Path=/ Vary: User-Agent JP: D=92314 t=1313157157248318 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/amypiazza00 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:49 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b33382c363330313b3130322c313130363b3130322c333831313b332c36303039313b332c3133383538323b332c35333735313b332c3133373331333b332c35353331393b332c3133363236393b332c38323134383b332c37383732323b332c38313633393b332c3130323736323b; Expires=Sun, 11-Sep-2011 13:51:50 GMT; Path=/ Vary: User-Agent JP: D=166730 t=1313157109973921 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/angelleye HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:14 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c323430323b332c3133373331333b332c3133313833303b332c3133363236393b332c31323739393b332c3133373135383b332c3132393239303b332c3133393730313b332c3132323335343b332c3133343430323b; Expires=Sun, 11-Sep-2011 13:52:14 GMT; Path=/ Vary: User-Agent JP: D=188523 t=1313157134358773 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/billday HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:34 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c38393734373b332c3133393930333b332c3134303730373b332c3134303532383b332c3134313133383b332c38383139383b332c38373839383b332c38353530363b332c3131353130373b332c3131303734313b33382c363333363b; Expires=Sun, 11-Sep-2011 13:52:35 GMT; Path=/ Vary: User-Agent JP: D=155484 t=1313157155442148 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/blingnation2010 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:57 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c36363938333b332c37383635393b332c35353331393b332c38393433393b332c35333436333b332c323030383b332c35333437343b332c35333735313b332c35373137393b332c3133363935343b; Expires=Sun, 11-Sep-2011 13:51:57 GMT; Path=/ Vary: User-Agent JP: D=82638 t=1313157117852719 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/bryngregory HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:49 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c3130323736323b332c38343138313b332c38323134383b332c38313633393b332c37383732323b332c36373839373b332c323030313b332c313b332c38393734373b332c3133393930333b33382c363333363b; Expires=Sun, 11-Sep-2011 13:52:49 GMT; Path=/ Vary: User-Agent JP: D=142323 t=1313157169831259 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/das_licht HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:12 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c3133373331333b332c3132393239303b332c39313330313b332c3132323335343b332c3133393730313b332c3134303635343b332c3133373135383b332c3133343430323b332c34383739343b332c31303737303b; Expires=Sun, 11-Sep-2011 13:52:12 GMT; Path=/ Vary: User-Agent JP: D=93807 t=1313157132393620 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/dchankhour HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:44 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c38313633393b332c37383732323b332c36373839373b332c323030313b332c313b332c38393734373b332c3133393930333b332c3134303730373b332c3134303532383b332c3134313133383b33382c363333363b; Expires=Sun, 11-Sep-2011 13:52:44 GMT; Path=/ Vary: User-Agent JP: D=75356 t=1313157164475506 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/eferreira HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:10 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c3133343430323b332c34383739343b332c39313330313b332c3134303635343b332c31303737303b332c31393037313b332c33353136303b332c35333639373b332c38383732373b332c39343632373b; Expires=Sun, 11-Sep-2011 13:52:10 GMT; Path=/ Vary: User-Agent JP: D=84607 t=1313157130615032 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/encore HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:16 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c31303939373b332c3133363236393b332c31323739393b332c323839313b332c323430323b332c3133313833303b332c323032353b; Expires=Sun, 11-Sep-2011 13:52:17 GMT; Path=/ Vary: User-Agent JP: D=147969 t=1313157137124462 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/ezimerchant/blog/2009/11/26/confusion-between-express-checkout-and-web-payments-standard HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:48 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b33382c363330313b3130322c313130363b3130322c333831313b332c35333735313b332c3133373331333b332c35353331393b332c3133363236393b332c38323134383b332c37383732323b332c38313633393b332c3130323736323b332c36373839373b332c38343138313b; Expires=Sun, 11-Sep-2011 13:51:48 GMT; Path=/ Vary: User-Agent JP: D=175267 t=1313157108233489 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/gazugafan HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:13 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c3133363236393b332c3133373331333b332c3132393239303b332c3133393730313b332c3133313833303b332c3133373135383b332c3132323335343b332c3133343430323b332c39313330313b332c3134303635343b; Expires=Sun, 11-Sep-2011 13:52:13 GMT; Path=/ Vary: User-Agent JP: D=78479 t=1313157133485041 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/gem HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:52 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c35333831373b332c3132333639353b332c3130323736323b332c38343138313b332c38323134383b332c38313633393b332c37383732323b332c36373839373b332c323030313b332c313b33382c363333363b; Expires=Sun, 11-Sep-2011 13:52:53 GMT; Path=/ Vary: User-Agent JP: D=130479 t=1313157173386719 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/gogoeric HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:59 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c38303434333b332c36363938333b332c37383635393b332c35353331393b332c38393433393b332c35333436333b332c323030383b332c35333437343b332c35333735313b332c35373137393b; Expires=Sun, 11-Sep-2011 13:51:59 GMT; Path=/ Vary: User-Agent JP: D=166431 t=1313157119718400 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/hotellina HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:28 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c3134303532383b332c3131353130373b332c3131303734313b332c3131313737343b332c3134313133383b332c3131353037373b332c38323534333b332c3130383730353b332c3131303831343b332c38383139383b; Expires=Sun, 11-Sep-2011 13:52:29 GMT; Path=/ Vary: User-Agent JP: D=239357 t=1313157149186681 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/iConcessionStand HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:00 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c39343632373b332c38303434333b332c36363938333b332c37383635393b332c35353331393b332c38393433393b332c35333436333b332c323030383b332c35333437343b332c35333735313b; Expires=Sun, 11-Sep-2011 13:52:01 GMT; Path=/ Vary: User-Agent JP: D=158386 t=1313157121449840 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/joncas HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:45 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c38323134383b332c38313633393b332c37383732323b332c36373839373b332c323030313b332c313b332c38393734373b332c3133393930333b332c3134303730373b332c3134303532383b33382c363333363b; Expires=Sun, 11-Sep-2011 13:52:46 GMT; Path=/ Vary: User-Agent JP: D=77890 t=1313157166303738 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/lwhite2104 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:50 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c3132333639353b332c3130323736323b332c38343138313b332c38323134383b332c38313633393b332c37383732323b332c36373839373b332c323030313b332c313b332c38393734373b33382c363333363b; Expires=Sun, 11-Sep-2011 13:52:51 GMT; Path=/ Vary: User-Agent JP: D=79758 t=1313157171575959 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/mandeheritage HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:11 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c3133393730313b332c3133343430323b332c3134303635343b332c39313330313b332c3132323335343b332c34383739343b332c31303737303b332c31393037313b332c33353136303b332c35333639373b; Expires=Sun, 11-Sep-2011 13:52:11 GMT; Path=/ Vary: User-Agent JP: D=79098 t=1313157131216875 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/odeskdev HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:55 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c37383635393b332c35353331393b332c38393433393b332c35333436333b332c323030383b332c35333437343b332c35333735313b332c35373137393b332c3133363935343b332c3133373131353b; Expires=Sun, 11-Sep-2011 13:51:56 GMT; Path=/ Vary: User-Agent JP: D=77481 t=1313157116029628 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/omuleanu HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:42 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c37383732323b332c36373839373b332c323030313b332c313b332c38393734373b332c3133393930333b332c3134303730373b332c3134303532383b332c3134313133383b332c38383139383b33382c363333363b; Expires=Sun, 11-Sep-2011 13:52:42 GMT; Path=/ Vary: User-Agent JP: D=161006 t=1313157162705096 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/pluto26 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:40 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c36373839373b332c323030313b332c313b332c38393734373b332c3133393930333b332c3134303730373b332c3134303532383b332c3134313133383b332c38383139383b332c38373839383b33382c363333363b; Expires=Sun, 11-Sep-2011 13:52:40 GMT; Path=/ Vary: User-Agent JP: D=76607 t=1313157160904760 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/posiden5665 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:10 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c3134303635343b332c3133343430323b332c34383739343b332c39313330313b332c31303737303b332c31393037313b332c33353136303b332c35333639373b332c38383732373b332c39343632373b; Expires=Sun, 11-Sep-2011 13:52:10 GMT; Path=/ Vary: User-Agent JP: D=81038 t=1313157130321120 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/ramonmorales123 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:10 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c3132323335343b332c3133343430323b332c34383739343b332c3134303635343b332c39313330313b332c31303737303b332c31393037313b332c33353136303b332c35333639373b332c38383732373b; Expires=Sun, 11-Sep-2011 13:52:10 GMT; Path=/ Vary: User-Agent JP: D=87382 t=1313157130920019 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/rizkygarut HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:50 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b33382c363330313b3130322c313130363b3130322c333831313b332c3133363935343b332c35333735313b332c3133383538323b332c36303039313b332c3133373131353b332c3133373331333b332c35353331393b332c3133363236393b332c38323134383b332c37383732323b; Expires=Sun, 11-Sep-2011 13:51:50 GMT; Path=/ Vary: User-Agent JP: D=78953 t=1313157110910504 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/roguereptile HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:10 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c39313330313b332c3134303635343b332c34383739343b332c31303737303b332c31393037313b332c33353136303b332c35333639373b332c38383732373b332c39343632373b332c38303434333b; Expires=Sun, 11-Sep-2011 13:52:10 GMT; Path=/ Vary: User-Agent JP: D=134822 t=1313157130043079 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/s.ng.oldiebro186/blog/2011/08/10/attitude-determines-everything HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:32 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c3133393930333b332c3134303730373b332c3134303532383b332c3134313133383b332c38383139383b332c38373839383b332c38353530363b332c3131353130373b332c3131303734313b332c3131313737343b33382c363333363b; Expires=Sun, 11-Sep-2011 13:52:33 GMT; Path=/ Vary: User-Agent JP: D=72931 t=1313157153516546 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/sebastian.kopp@wooga.com HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:02 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c38383732373b332c39343632373b332c38303434333b332c36363938333b332c37383635393b332c35353331393b332c38393433393b332c35333436333b332c323030383b332c35333437343b; Expires=Sun, 11-Sep-2011 13:52:03 GMT; Path=/ Vary: User-Agent JP: D=79810 t=1313157123276448 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/skier HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:13 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c31323739393b332c3133313833303b332c3133363236393b332c3132393239303b332c3133373135383b332c3133373331333b332c3133393730313b332c3132323335343b332c3133343430323b332c39313330313b; Expires=Sun, 11-Sep-2011 13:52:13 GMT; Path=/ Vary: User-Agent JP: D=93161 t=1313157133808445 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
Sensitive information within URLs may be logged in various locations, including the user's browser, the web server, and any forward or reverse proxy servers between the two endpoints. URLs may also be displayed on-screen, bookmarked or emailed around by users. They may be disclosed to third parties via the Referer header when any off-site links are followed. Placing session tokens into the URL increases the risk that they will be captured by an attacker.
Issue remediation
The application should use an alternative mechanism for transmitting session tokens, such as HTTP cookies or hidden fields in forms that are submitted using the POST method.
GET /login.jspa;jsessionid=C5B183263B3F02ED7C066088CE4D527D.node0?flowType=Signup HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
/** * DD_roundies, this adds rounded-corner CSS in standard browsers and VML sublayers in IE that accomplish a similar appearance when comparing said browsers. * Author: Drew Diller * Email: drew.dill ...[SNIP]...
4. Cookie without HttpOnly flag setpreviousnext There are 222 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 highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET / HTTP/1.1 Host: www.x.com User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 115 Connection: keep-alive Referer: https://www.paypal.com/us/cgi-bin/helpweb?cmd=_help
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blogs/josh/2011/03/29/paypal-integration-resources HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blogs/matt/2010/08/10/retrieving-your-api-credentials HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/home HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/adaptive_accounts HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/adaptive_payments HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/apps101 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/authentication HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/businesspayments HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/code_samples HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/dev-tools/decision_tree HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/devchallenge HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/devchallenge/ HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/developer HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/devtalk HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/devzone HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/documentation HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/feedback HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/fundraising HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/global/au HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/global/ca HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/global/cn HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/global/de HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/global/fr HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/global/it HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/global/jp HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/global/mx HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/global/nl HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/global/sp HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/global/uk HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/ipn HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/marketplaces HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/mass_pay HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/offlineanddevices HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/p2p HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/payflow_link HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/payflow_pro HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/payflow_xml_reporting HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/pdt HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/permissions HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/press HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/recurring_billing HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/recurring_payments HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/release_notes HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/sdks HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/showcase/ap_directory HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/support HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/system_status HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/testing HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/training HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/transaction_information HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/vt HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/website_reporting HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/wpp HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/wpphosted HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/wps HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/xspaces/accelerator HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/xspaces/certification HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/xspaces/cloud-computing HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/xspaces/digital_goods HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/xspaces/finance HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/xspaces/forums HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/xspaces/gaming HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/xspaces/identity HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/xspaces/innovate HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/xspaces/introduce?view=documents HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/xspaces/mobile HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/xspaces/mobile/mecl HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/xspaces/mobile/mobile_ec HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/xspaces/security HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/xspaces/social HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/xspaces/subscriptions HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/xspaces/toolkits HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/xspaces/web_checkout HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/xspaces/web_checkout/nvp HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/ppx/xspaces/web_checkout/soap HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/xcommerce-blogs/blog/2011/06/07/adobe-to-arm-xcommerce-retailers-with-customer-data-to-help-them-sell-more HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/xcommerce-blogs/blog/2011/06/08/how-may-we-serve-you-better HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/xcommerce-blogs/blog/2011/06/26/are-you-headed-to-fowa HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/xcommerce-blogs/blog/2011/07/04/paypal-x-developer-challenge-for-android-vote-now-for-peoples-choice-award HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/xcommerce-blogs/blog/2011/07/18/our-infrastructure-plans HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/xcommerce-blogs/blog/2011/07/28/xcommerce-innovate-developer-conference-2011--registration-open HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /community/xcommerce-blogs/blog/2011/08/02/winners-of-paypals-third-developer-challenge-revealed HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-1031 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-1041 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-1051 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-1108 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-1116 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-1176 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-1204 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-1216 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-1332 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-1372 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-1374 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-1401 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-1431 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-1551 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-1613 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-2241 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-2346 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3201 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3212 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3251 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3271 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3321 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3322 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3323 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3345 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3351 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3352 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3353 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3354 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3355 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3371 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3372 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3373 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3374 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3375 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3426 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3427 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3431 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3443 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3444 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3491 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3561 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3562 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3619 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3688 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3812 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3836 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /docs/DOC-3841 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/186684 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/198017 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/211333 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/211439 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/211738 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/212001 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/212124 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/212170 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/212753 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/212906 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/213354 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/213546 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/213568 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/213571 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/213767 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/213787 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/213788 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/213865 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/214347 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/214440 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/214618 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/214902 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/214926 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/215245 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/215254 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/215264 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/215276 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /message/215291 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/CorinneSherman HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:53 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c38393433393b332c323030383b332c35333735313b332c35333436333b332c35353331393b332c35333437343b332c35373137393b332c3133363935343b332c3133373131353b332c36303039313b; Expires=Sun, 11-Sep-2011 13:51:54 GMT; Path=/ Vary: User-Agent JP: D=153786 t=1313157114086096 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/GiancarloUk2 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:28 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c38383139383b332c3131353037373b332c3130383730353b332c3131303734313b332c3131303831343b332c38323534333b332c3131353130373b332c38353530363b332c3131313737343b332c38373839383b; Expires=Sun, 11-Sep-2011 13:52:29 GMT; Path=/ Vary: User-Agent JP: D=109527 t=1313157149159421 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/IndieReign HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:30 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c3134303730373b332c38383139383b332c38373839383b332c3134313133383b332c38353530363b332c3134303532383b332c3131353130373b332c3131303734313b332c3131313737343b332c3131353037373b; Expires=Sun, 11-Sep-2011 13:52:30 GMT; Path=/ Vary: User-Agent JP: D=98253 t=1313157150770204 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/JasonVenner HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:49 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b33382c363330313b3130322c313130363b3130322c333831313b332c3133383538323b332c35333735313b332c3133373331333b332c35353331393b332c3133363236393b332c38323134383b332c37383732323b332c38313633393b332c3130323736323b332c36373839373b; Expires=Sun, 11-Sep-2011 13:51:49 GMT; Path=/ Vary: User-Agent JP: D=146802 t=1313157109565171 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/MrcheckAPX HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:47 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c38343138313b332c38323134383b332c38313633393b332c37383732323b332c36373839373b332c323030313b332c313b332c38393734373b332c3133393930333b332c3134303730373b33382c363333363b; Expires=Sun, 11-Sep-2011 13:52:48 GMT; Path=/ Vary: User-Agent JP: D=97089 t=1313157168042186 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/PP_Igor HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:09 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c34383739343b332c31303737303b332c31393037313b332c33353136303b332c35333639373b332c38383732373b332c39343632373b332c38303434333b332c36363938333b332c37383635393b; Expires=Sun, 11-Sep-2011 13:52:09 GMT; Path=/ Vary: User-Agent JP: D=77818 t=1313157129602041 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/PP_MTS_Andre HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:05 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c31393037313b332c33353136303b332c35333639373b332c38383732373b332c39343632373b332c38303434333b332c36363938333b332c37383635393b332c35353331393b332c38393433393b; Expires=Sun, 11-Sep-2011 13:52:06 GMT; Path=/ Vary: User-Agent JP: D=85787 t=1313157126041615 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/PP_MTS_Chad HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:03 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c33353136303b332c38383732373b332c39343632373b332c38303434333b332c36363938333b332c37383635393b332c35353331393b332c38393433393b332c35333436333b332c323030383b; Expires=Sun, 11-Sep-2011 13:52:04 GMT; Path=/ Vary: User-Agent JP: D=167980 t=1313157123846369 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/PP_MTS_GuidoT HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:07 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c31303737303b332c31393037313b332c33353136303b332c35333639373b332c38383732373b332c39343632373b332c38303434333b332c36363938333b332c37383635393b332c35353331393b; Expires=Sun, 11-Sep-2011 13:52:07 GMT; Path=/ Vary: User-Agent JP: D=96030 t=1313157127847926 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/PP_MTS_Magarvin HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:03 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c35333639373b332c33353136303b332c38383732373b332c39343632373b332c38303434333b332c36363938333b332c37383635393b332c35353331393b332c38393433393b332c35333436333b; Expires=Sun, 11-Sep-2011 13:52:04 GMT; Path=/ Vary: User-Agent JP: D=130947 t=1313157124385931 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/PP_MTS_Patrick HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:12 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c3133313833303b332c3132393239303b332c3133373135383b332c3133373331333b332c3132323335343b332c3133393730313b332c3133343430323b332c39313330313b332c3134303635343b332c34383739343b; Expires=Sun, 11-Sep-2011 13:52:13 GMT; Path=/ Vary: User-Agent JP: D=143994 t=1313157132945144 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/PayPalXadmin HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:39 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c323030313b332c313b332c38393734373b332c3133393930333b332c3134303730373b332c3134303532383b332c3134313133383b332c38383139383b332c38373839383b332c38353530363b33382c363333363b; Expires=Sun, 11-Sep-2011 13:52:39 GMT; Path=/ Vary: User-Agent JP: D=96924 t=1313157159108661 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/PayPal_Carolyn HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:51 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b33382c363330313b3130322c313130363b3130322c333831313b332c323030383b332c35333437343b332c3133363935343b332c3133373131353b332c35333735313b332c3133383538323b332c36303039313b332c3133373331333b332c35353331393b332c3133363236393b; Expires=Sun, 11-Sep-2011 13:51:51 GMT; Path=/ Vary: User-Agent JP: D=182753 t=1313157111682138 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/PayPal_Sudha HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:52 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b33382c363330313b3130322c313130363b3130322c333831313b332c35333436333b332c36303039313b332c323030383b332c35333437343b332c3133363935343b332c3133373131353b332c35333735313b332c3133383538323b332c3133373331333b332c35353331393b; Expires=Sun, 11-Sep-2011 13:51:52 GMT; Path=/ Vary: User-Agent JP: D=104130 t=1313157112744233 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/PayPal_ToddS HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:14 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c323839313b332c323430323b332c3133363236393b332c3133313833303b332c31323739393b332c3133373331333b332c3133373135383b332c3132393239303b332c3133393730313b332c3132323335343b; Expires=Sun, 11-Sep-2011 13:52:14 GMT; Path=/ Vary: User-Agent JP: D=172832 t=1313157134792842 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/Praveen HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:52 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b33382c363330313b3130322c313130363b3130322c333831313b332c35353331393b332c35373137393b332c35333436333b332c35333437343b332c323030383b332c3133363935343b332c3133373131353b332c36303039313b332c35333735313b332c3133383538323b; Expires=Sun, 11-Sep-2011 13:51:53 GMT; Path=/ Vary: User-Agent JP: D=139937 t=1313157113112925 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/Praveen/blog/2011/01/31/icanhas-instant-app-approval HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:53 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c35353331393b332c35333437343b332c323030383b332c35333436333b332c35373137393b332c3133363935343b332c3133373131353b332c36303039313b332c35333735313b332c3133383538323b; Expires=Sun, 11-Sep-2011 13:51:53 GMT; Path=/ Vary: User-Agent JP: D=129836 t=1313157113665921 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/RightWayMail HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:28 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c3134313133383b332c3131353037373b332c38323534333b332c3130383730353b332c3131303831343b332c38383139383b332c3131303734313b332c3131353130373b332c38353530363b332c3131313737343b; Expires=Sun, 11-Sep-2011 13:52:29 GMT; Path=/ Vary: User-Agent JP: D=143442 t=1313157149181583 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/S.Aijaz HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:11 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c3132393239303b332c3134303635343b332c3133393730313b332c3132323335343b332c3133343430323b332c39313330313b332c34383739343b332c31303737303b332c31393037313b332c33353136303b; Expires=Sun, 11-Sep-2011 13:52:11 GMT; Path=/ Vary: User-Agent JP: D=107761 t=1313157131723635 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/SRS HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:28 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c38373839383b332c3133383934323b332c3131363438333b332c32333938353b332c3131303838353b332c33393238333b332c3131383939313b332c3134313133383b332c39323635363b332c3132323433393b; Expires=Sun, 11-Sep-2011 13:52:28 GMT; Path=/ Vary: User-Agent JP: D=95619 t=1313157148836785 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/Saleem HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:51 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b33382c363330313b3130322c313130363b3130322c333831313b332c35333437343b332c3133373131353b332c3133363935343b332c35333735313b332c36303039313b332c323030383b332c3133383538323b332c3133373331333b332c35353331393b332c3133363236393b; Expires=Sun, 11-Sep-2011 13:51:52 GMT; Path=/ Vary: User-Agent JP: D=174302 t=1313157112089068 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/Shade8934 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:50 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b33382c363330313b3130322c313130363b3130322c333831313b332c3133373131353b332c3133363935343b332c3133383538323b332c35333735313b332c36303039313b332c3133373331333b332c35353331393b332c3133363236393b332c38323134383b332c37383732323b; Expires=Sun, 11-Sep-2011 13:51:50 GMT; Path=/ Vary: User-Agent JP: D=78825 t=1313157110665049 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/Suneetha HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:12 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c3133373135383b332c3132393239303b332c3133393730313b332c3132323335343b332c3133343430323b332c39313330313b332c3134303635343b332c34383739343b332c31303737303b332c31393037313b; Expires=Sun, 11-Sep-2011 13:52:12 GMT; Path=/ Vary: User-Agent JP: D=77775 t=1313157132121636 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/admin HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:36 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c313b332c38393734373b332c3133393930333b332c3134303730373b332c3134303532383b332c3134313133383b332c38383139383b332c38373839383b332c38353530363b332c3131353130373b33382c363333363b; Expires=Sun, 11-Sep-2011 13:52:37 GMT; Path=/ Vary: User-Agent JP: D=92314 t=1313157157248318 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/amypiazza00 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:49 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b33382c363330313b3130322c313130363b3130322c333831313b332c36303039313b332c3133383538323b332c35333735313b332c3133373331333b332c35353331393b332c3133363236393b332c38323134383b332c37383732323b332c38313633393b332c3130323736323b; Expires=Sun, 11-Sep-2011 13:51:50 GMT; Path=/ Vary: User-Agent JP: D=166730 t=1313157109973921 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/angelleye HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:14 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c323430323b332c3133373331333b332c3133313833303b332c3133363236393b332c31323739393b332c3133373135383b332c3132393239303b332c3133393730313b332c3132323335343b332c3133343430323b; Expires=Sun, 11-Sep-2011 13:52:14 GMT; Path=/ Vary: User-Agent JP: D=188523 t=1313157134358773 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/billday HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:34 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c38393734373b332c3133393930333b332c3134303730373b332c3134303532383b332c3134313133383b332c38383139383b332c38373839383b332c38353530363b332c3131353130373b332c3131303734313b33382c363333363b; Expires=Sun, 11-Sep-2011 13:52:35 GMT; Path=/ Vary: User-Agent JP: D=155484 t=1313157155442148 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/blingnation2010 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:57 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c36363938333b332c37383635393b332c35353331393b332c38393433393b332c35333436333b332c323030383b332c35333437343b332c35333735313b332c35373137393b332c3133363935343b; Expires=Sun, 11-Sep-2011 13:51:57 GMT; Path=/ Vary: User-Agent JP: D=82638 t=1313157117852719 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/bryngregory HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:49 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c3130323736323b332c38343138313b332c38323134383b332c38313633393b332c37383732323b332c36373839373b332c323030313b332c313b332c38393734373b332c3133393930333b33382c363333363b; Expires=Sun, 11-Sep-2011 13:52:49 GMT; Path=/ Vary: User-Agent JP: D=142323 t=1313157169831259 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/das_licht HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:12 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c3133373331333b332c3132393239303b332c39313330313b332c3132323335343b332c3133393730313b332c3134303635343b332c3133373135383b332c3133343430323b332c34383739343b332c31303737303b; Expires=Sun, 11-Sep-2011 13:52:12 GMT; Path=/ Vary: User-Agent JP: D=93807 t=1313157132393620 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/dchankhour HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:44 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c38313633393b332c37383732323b332c36373839373b332c323030313b332c313b332c38393734373b332c3133393930333b332c3134303730373b332c3134303532383b332c3134313133383b33382c363333363b; Expires=Sun, 11-Sep-2011 13:52:44 GMT; Path=/ Vary: User-Agent JP: D=75356 t=1313157164475506 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/eferreira HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:10 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c3133343430323b332c34383739343b332c39313330313b332c3134303635343b332c31303737303b332c31393037313b332c33353136303b332c35333639373b332c38383732373b332c39343632373b; Expires=Sun, 11-Sep-2011 13:52:10 GMT; Path=/ Vary: User-Agent JP: D=84607 t=1313157130615032 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/encore HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:16 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c31303939373b332c3133363236393b332c31323739393b332c323839313b332c323430323b332c3133313833303b332c323032353b; Expires=Sun, 11-Sep-2011 13:52:17 GMT; Path=/ Vary: User-Agent JP: D=147969 t=1313157137124462 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/ezimerchant/blog/2009/11/26/confusion-between-express-checkout-and-web-payments-standard HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:48 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b33382c363330313b3130322c313130363b3130322c333831313b332c35333735313b332c3133373331333b332c35353331393b332c3133363236393b332c38323134383b332c37383732323b332c38313633393b332c3130323736323b332c36373839373b332c38343138313b; Expires=Sun, 11-Sep-2011 13:51:48 GMT; Path=/ Vary: User-Agent JP: D=175267 t=1313157108233489 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/gazugafan HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:13 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c3133363236393b332c3133373331333b332c3132393239303b332c3133393730313b332c3133313833303b332c3133373135383b332c3132323335343b332c3133343430323b332c39313330313b332c3134303635343b; Expires=Sun, 11-Sep-2011 13:52:13 GMT; Path=/ Vary: User-Agent JP: D=78479 t=1313157133485041 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/gem HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:52 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c35333831373b332c3132333639353b332c3130323736323b332c38343138313b332c38323134383b332c38313633393b332c37383732323b332c36373839373b332c323030313b332c313b33382c363333363b; Expires=Sun, 11-Sep-2011 13:52:53 GMT; Path=/ Vary: User-Agent JP: D=130479 t=1313157173386719 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/gogoeric HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:59 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c38303434333b332c36363938333b332c37383635393b332c35353331393b332c38393433393b332c35333436333b332c323030383b332c35333437343b332c35333735313b332c35373137393b; Expires=Sun, 11-Sep-2011 13:51:59 GMT; Path=/ Vary: User-Agent JP: D=166431 t=1313157119718400 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/hotellina HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:28 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c3134303532383b332c3131353130373b332c3131303734313b332c3131313737343b332c3134313133383b332c3131353037373b332c38323534333b332c3130383730353b332c3131303831343b332c38383139383b; Expires=Sun, 11-Sep-2011 13:52:29 GMT; Path=/ Vary: User-Agent JP: D=239357 t=1313157149186681 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/iConcessionStand HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:00 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c39343632373b332c38303434333b332c36363938333b332c37383635393b332c35353331393b332c38393433393b332c35333436333b332c323030383b332c35333437343b332c35333735313b; Expires=Sun, 11-Sep-2011 13:52:01 GMT; Path=/ Vary: User-Agent JP: D=158386 t=1313157121449840 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/joncas HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:45 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c38323134383b332c38313633393b332c37383732323b332c36373839373b332c323030313b332c313b332c38393734373b332c3133393930333b332c3134303730373b332c3134303532383b33382c363333363b; Expires=Sun, 11-Sep-2011 13:52:46 GMT; Path=/ Vary: User-Agent JP: D=77890 t=1313157166303738 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/lwhite2104 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:50 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c3132333639353b332c3130323736323b332c38343138313b332c38323134383b332c38313633393b332c37383732323b332c36373839373b332c323030313b332c313b332c38393734373b33382c363333363b; Expires=Sun, 11-Sep-2011 13:52:51 GMT; Path=/ Vary: User-Agent JP: D=79758 t=1313157171575959 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/mandeheritage HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:11 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c3133393730313b332c3133343430323b332c3134303635343b332c39313330313b332c3132323335343b332c34383739343b332c31303737303b332c31393037313b332c33353136303b332c35333639373b; Expires=Sun, 11-Sep-2011 13:52:11 GMT; Path=/ Vary: User-Agent JP: D=79098 t=1313157131216875 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/odeskdev HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:55 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c37383635393b332c35353331393b332c38393433393b332c35333436333b332c323030383b332c35333437343b332c35333735313b332c35373137393b332c3133363935343b332c3133373131353b; Expires=Sun, 11-Sep-2011 13:51:56 GMT; Path=/ Vary: User-Agent JP: D=77481 t=1313157116029628 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/omuleanu HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:42 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c37383732323b332c36373839373b332c323030313b332c313b332c38393734373b332c3133393930333b332c3134303730373b332c3134303532383b332c3134313133383b332c38383139383b33382c363333363b; Expires=Sun, 11-Sep-2011 13:52:42 GMT; Path=/ Vary: User-Agent JP: D=161006 t=1313157162705096 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/pluto26 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:40 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c36373839373b332c323030313b332c313b332c38393734373b332c3133393930333b332c3134303730373b332c3134303532383b332c3134313133383b332c38383139383b332c38373839383b33382c363333363b; Expires=Sun, 11-Sep-2011 13:52:40 GMT; Path=/ Vary: User-Agent JP: D=76607 t=1313157160904760 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/posiden5665 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:10 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c3134303635343b332c3133343430323b332c34383739343b332c39313330313b332c31303737303b332c31393037313b332c33353136303b332c35333639373b332c38383732373b332c39343632373b; Expires=Sun, 11-Sep-2011 13:52:10 GMT; Path=/ Vary: User-Agent JP: D=81038 t=1313157130321120 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/ramonmorales123 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:10 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c3132323335343b332c3133343430323b332c34383739343b332c3134303635343b332c39313330313b332c31303737303b332c31393037313b332c33353136303b332c35333639373b332c38383732373b; Expires=Sun, 11-Sep-2011 13:52:10 GMT; Path=/ Vary: User-Agent JP: D=87382 t=1313157130920019 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/rizkygarut HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:50 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b33382c363330313b3130322c313130363b3130322c333831313b332c3133363935343b332c35333735313b332c3133383538323b332c36303039313b332c3133373131353b332c3133373331333b332c35353331393b332c3133363236393b332c38323134383b332c37383732323b; Expires=Sun, 11-Sep-2011 13:51:50 GMT; Path=/ Vary: User-Agent JP: D=78953 t=1313157110910504 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/roguereptile HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:10 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c39313330313b332c3134303635343b332c34383739343b332c31303737303b332c31393037313b332c33353136303b332c35333639373b332c38383732373b332c39343632373b332c38303434333b; Expires=Sun, 11-Sep-2011 13:52:10 GMT; Path=/ Vary: User-Agent JP: D=134822 t=1313157130043079 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/s.ng.oldiebro186/blog/2011/08/10/attitude-determines-everything HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:32 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c3133393930333b332c3134303730373b332c3134303532383b332c3134313133383b332c38383139383b332c38373839383b332c38353530363b332c3131353130373b332c3131303734313b332c3131313737343b33382c363333363b; Expires=Sun, 11-Sep-2011 13:52:33 GMT; Path=/ Vary: User-Agent JP: D=72931 t=1313157153516546 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/sebastian.kopp@wooga.com HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:02 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c38383732373b332c39343632373b332c38303434333b332c36363938333b332c37383635393b332c35353331393b332c38393433393b332c35333436333b332c323030383b332c35333437343b; Expires=Sun, 11-Sep-2011 13:52:03 GMT; Path=/ Vary: User-Agent JP: D=79810 t=1313157123276448 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /people/skier HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:13 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c31323739393b332c3133313833303b332c3133363236393b332c3132393239303b332c3133373135383b332c3133373331333b332c3133393730313b332c3132323335343b332c3133343430323b332c39313330313b; Expires=Sun, 11-Sep-2011 13:52:13 GMT; Path=/ Vary: User-Agent JP: D=93161 t=1313157133808445 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
Server-side source code may contain sensitive information which can help an attacker formulate attacks against the application.
Issue remediation
Server-side source code is normally disclosed to clients as a result of typographical errors in scripts or because of misconfiguration, such as failing to grant executable permissions to a script or directory. You should review the cause of the code disclosure and prevent it from happening.
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 01:59:40 GMT Server: Apache-Coyote/1.1 Cache-Control: max-age=2016000, public Content-Type: text/javascript Content-Length: 31770 JP: D=418 t=1313114381172952 Vary: User-Agent Connection: close
/** * DD_roundies, this adds rounded-corner CSS in standard browsers and VML sublayers in IE that accomplish a similar appearance when comparing said browsers. * Author: Drew Diller * Email: drew.dill ...[SNIP]... eturn p}('t K={16:\'K\',1L:G,1M:G,1d:G,2f:y(){u(D.2g!=8&&D.1N&&!D.1N[q.16]){q.1L=M;q.1M=M}17 u(D.2g==8){q.1d=M}},2h:D.2i,1O:[],1b:{},2j:y(){u(q.1L||q.1M){D.1N.2L(q.16,\'2M:2N-2O-2P:x\')}u(q.1d){D.2Q(\'<?2R 2S="\'+q.16+\'" 2T="#1P#2k" ?>\')}},2l:y(){t a=D.1k(\'z\');D.2m.1w.1Q(a,D.2m.1w.1w);u(a.12){2n{t b=a.12;b.1x(q.16+\'\\\\:*\',\'{1l:2U(#1P#2k)}\');q.12=b}2o(2p){}}17{q.12=a}},1x:y(a,b,c){u(1R b==\'1S\'||b===2V){b=0}u(b.2W.2q().1y(\' ...[SNIP]...
6. Cross-domain Referer leakagepreviousnext There are 31 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 /community/feeds?community=2276 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:33 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Vary: User-Agent JP: D=43069 t=1313157093427123 Cache-Control: no-cache, private Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /community/ppx?view=overview HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/button_manager?view=overview HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
/*********************************************** * Tab Content script v2.2- ... Dynamic Drive DHTML code library (www.dynamicdrive.com) * This notice MUST stay intact for legal use * Visit Dynamic Dr ...[SNIP]... <li>Test your integration using the <a href="https://developer.paypal.com/" title="PayPal Sandbox">PayPal Sandbox</a> ...[SNIP]... <p>The standard rate for receiving payments for goods and services is 2.9%. For details, see PayPal's standard <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_display-fees-outside" title="fee structure">fee structure</a> ...[SNIP]... <p>If your sales volume exceeds USD $3,000.00/month, your rate can be as low as 1.9%. For details, see <a href="https://merchant.paypal.com/us/cgi-bin/marketingweb?cmd=_render-content&content_ID=merchant/home" title="PayPal Merchant Services">PayPal Merchant Services</a> ...[SNIP]... <p>If your transactions typically average less than $10.00, you could save money with our "5% plus 5.." rate. For information, see <a href="https://micropayments.paypal-labs.com/" title="Micropayments">Micropayments</a> ...[SNIP]... nctional. You can hold multiple currency balances in your PayPal account or convert payments you receive at competitive rates. Currency conversion and cross-border fees may apply. For information, see <a href="https://www.paypal.com/us/cgi-bin/webscr?cmd=_display-xborder-fees-outside&countries=" title="Transaction Fees for Cross-border Payments">Transaction Fees for Cross-border Payments</a> ...[SNIP]... <p>For answers to frequent questions, go to our <a href="https://www.paypal.com/us/cgi-bin/helpweb?cmd=_help" title="Help Center">Help Center</a> ...[SNIP]... <li> <a id="web_pagefooter_privacy" href="https://cms.paypal.com/cgi-bin/marketingweb?cmd=_render-content&content_ID=ua/Privacy_full&locale.x=en_US"> Privacy </a> ...[SNIP]... <http://www.omniture.com/> --> <script type="text/javascript" src="https://www.paypalobjects.com/js/site_catalyst/pp_jscode_080706.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 /community/ppx/dev-tools?view=test1 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/developer?view=documents HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/ec?view=overview HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/global?view=overview HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/showcase?view=overview HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/xspaces/accelerator?view=documents HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/xspaces/certification?view=documents HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/xspaces/cloud-computing?view=documents HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/xspaces/digital_goods?view=documents HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/xspaces/finance?view=documents HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/xspaces/forums?view=documents HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/xspaces/gaming?view=documents HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/xspaces/identity?view=documents HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/xspaces/innovate?view=documents HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/xspaces/introduce?view=documents HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/xspaces/mobile?view=documents HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/xspaces/security?view=documents HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/xspaces/social?view=documents HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/xspaces/subscriptions?view=documents HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/xspaces/web_checkout?view=documents HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/xspaces/web_checkout/nvp?view=discussions HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
/*********************************************** * Tab Content script v2.2- ... Dynamic Drive DHTML code library (www.dynamicdrive.com) * This notice MUST stay intact for legal use * Visit Dynamic Dr ...[SNIP]... <br/>What an exciting time it’s been since we <a class="jive-link-external-small" href="https://www.thepaypalblog.com/2011/03/third-paypal-x-developer-challenge-google-android-apps/">first announced</a> ...[SNIP]... <br/><a class="jive-link-external-small" href="https://market.android.com/details?id=se.mopper.android">Mopper:</a> ...[SNIP]... <p class="MsoNormal" style="margin-bottom: 0.0001pt;">I’m thrilled to let you  know that starting today, X.commerce has <a class="jive-link-external-small" href="https://www.innovateregistration.com/main.aspx">opened  registration</a> ...[SNIP]... <p class="MsoNormal" style="margin-bottom: 0.0001pt;">Be  sure to <a class="jive-link-external-small" href="https://www.innovateregistration.com/main.aspx">register</a> ...[SNIP]... ">More information will be  available soon on speakers, session tracks and more so stay tuned,  spread the word to your colleagues, follow us on Twitter at @X_commerce  and register at: <a class="jive-link-external-small" href="https://www.innovateregistration.com/main.aspx">https://www.innovateregistration.com/main.aspx</a> ...[SNIP]...
GET /docs/DOC-1106?decorator=print HTTP/1.1 Host: www.x.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> <head> <title>X Developer Network: Using the Button Manager API [Official]</title> ...[SNIP]... </samp>, and such), enable you to specify the same HTML variables as you ordinarily do using Website Payments Standard; for information see <a class="jive-link-external-small" href="https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/e_howto_html_Appx_websitestandard_htmlvariables">HTML Variables for Website Payments Standard</a> ...[SNIP]...
The response contains the following link to another domain:
https://www.paypal-labs.com/js/tabcontent.js
Request
GET /index.jspa?ssocancel=true&token=HA-KJ8ZLGBZ3CZ96 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:50:07 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Vary: User-Agent JP: D=68166 t=1313157007904024 Cache-Control: no-cache, private Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The page was loaded from a URL containing a query string:
https://www.x.com/people?view=status&cid=2276
The response contains the following link to another domain:
https://www.paypal-labs.com/js/tabcontent.js
Request
GET /people?view=status&cid=2276 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:54:24 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Vary: User-Agent JP: D=2869310 t=1313157262442054 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/BaldGeek?view=profile HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:48 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b33382c363330313b3130322c313130363b3130322c333831313b332c35333735313b332c3133373331333b332c35353331393b332c3133363236393b332c38323134383b332c37383732323b332c38313633393b332c3130323736323b332c36373839373b332c38343138313b; Expires=Sun, 11-Sep-2011 13:51:48 GMT; Path=/ Vary: User-Agent JP: D=172512 t=1313157108680796 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /tags?tags=adaptive_payments HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:58:26 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Vary: User-Agent JP: D=213725 t=1313157506462289 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
When an application includes a script from an external domain, this script is executed by the browser within the security context of the invoking application. The script can therefore do anything that the application's own scripts can do, such as accessing application data and performing actions within the context of the current user.
If you include a script from an external domain, then you are trusting that domain with the data and functionality of your application, and you are trusting the domain's own security to prevent an attacker from modifying the script to perform malicious actions within your application.
Issue remediation
Scripts should not be included from untrusted domains. If you have a requirement which a third-party script appears to fulfil, then you should ideally copy the contents of that script onto your own domain and include it from there. If that is not possible (e.g. for licensing reasons) then you should consider reimplementing the script's functionality within your own code.
GET /blogs/josh/2011/03/29/paypal-integration-resources HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /blogs/matt/2010/08/10/retrieving-your-api-credentials HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /bookmarks/ HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:41 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Vary: User-Agent JP: D=66839 t=1313157102611640 Cache-Control: no-cache, private Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /community/ HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:50:29 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Vary: User-Agent JP: D=326653 t=1313157029520695 Cache-Control: no-cache, private Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /community/emailPasswordToken!input.jspa HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:24 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Vary: User-Agent JP: D=27233 t=1313157085132269 Cache-Control: no-cache, private Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /community/feeds HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:33 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Vary: User-Agent JP: D=92546 t=1313157093104178 Cache-Control: no-cache, private Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /community/home HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/adaptive_accounts HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/adaptive_payments HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/apps101 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/authentication HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/businesspayments HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/code_samples HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/dev-tools/decision_tree HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/devchallenge HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/devchallenge/ HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/developer HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/devtalk HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/devzone HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/documentation HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/emailPasswordToken!input.jspa HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:18 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Vary: User-Agent JP: D=14343 t=1313157079484555 Cache-Control: no-cache, private Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /community/ppx/feedback HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/fundraising HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/global/au HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/global/ca HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/global/cn HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/global/de HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/global/fr HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/global/it HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/global/jp HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/global/mx HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/global/nl HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/global/sp HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/global/uk HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/ipn HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/marketplaces HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/mass_pay HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/offlineanddevices HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/p2p HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/payflow_link HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/payflow_pro HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/payflow_xml_reporting HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/pdt HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/permissions HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/press HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/recurring_billing HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/recurring_payments HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/release_notes HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/sdks HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/showcase/ap_directory HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/support HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/system_status HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/testing HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/training HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/transaction_information HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/vt HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/website_reporting HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/wpp HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/wpphosted HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/wps HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/xspaces/accelerator HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/xspaces/certification HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/xspaces/cloud-computing HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/xspaces/digital_goods HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/xspaces/finance HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/xspaces/forums HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/xspaces/gaming HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/xspaces/identity HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/xspaces/innovate HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/xspaces/introduce?view=documents HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/xspaces/mobile HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/xspaces/mobile/mecl HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/xspaces/mobile/mobile_ec HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/xspaces/security HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/xspaces/social HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/xspaces/subscriptions HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/xspaces/toolkits HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/xspaces/web_checkout HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/xspaces/web_checkout/nvp HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /community/ppx/xspaces/web_checkout/soap HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The response dynamically includes the following script from another domain:
https://www.paypal-labs.com/js/tabcontent.js
Request
GET /community/xcommerce-blogs/blog/2011/06/07/adobe-to-arm-xcommerce-retailers-with-customer-data-to-help-them-sell-more HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The response dynamically includes the following script from another domain:
https://www.paypal-labs.com/js/tabcontent.js
Request
GET /community/xcommerce-blogs/blog/2011/06/08/how-may-we-serve-you-better HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The response dynamically includes the following script from another domain:
https://www.paypal-labs.com/js/tabcontent.js
Request
GET /community/xcommerce-blogs/blog/2011/06/26/are-you-headed-to-fowa HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The response dynamically includes the following script from another domain:
https://www.paypal-labs.com/js/tabcontent.js
Request
GET /community/xcommerce-blogs/blog/2011/07/04/paypal-x-developer-challenge-for-android-vote-now-for-peoples-choice-award HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The response dynamically includes the following script from another domain:
https://www.paypal-labs.com/js/tabcontent.js
Request
GET /community/xcommerce-blogs/blog/2011/07/18/our-infrastructure-plans HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The response dynamically includes the following script from another domain:
https://www.paypal-labs.com/js/tabcontent.js
Request
GET /community/xcommerce-blogs/blog/2011/07/28/xcommerce-innovate-developer-conference-2011--registration-open HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The response dynamically includes the following script from another domain:
https://www.paypal-labs.com/js/tabcontent.js
Request
GET /community/xcommerce-blogs/blog/2011/08/02/winners-of-paypals-third-developer-challenge-revealed HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The response dynamically includes the following script from another domain:
https://www.paypal-labs.com/js/tabcontent.js
Request
GET /community/xcommerce-blogs/blog/tags/adobe HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:31 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Vary: User-Agent JP: D=64900 t=1313157092486237 Cache-Control: no-cache, private Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The response dynamically includes the following script from another domain:
https://www.paypal-labs.com/js/tabcontent.js
Request
GET /community/xcommerce-blogs/blog/tags/andriod HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:29 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Vary: User-Agent JP: D=58771 t=1313157090149552 Cache-Control: no-cache, private Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The response dynamically includes the following script from another domain:
https://www.paypal-labs.com/js/tabcontent.js
Request
GET /community/xcommerce-blogs/blog/tags/apps HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:28 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Vary: User-Agent JP: D=109572 t=1313157089606900 Cache-Control: no-cache, private Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The response dynamically includes the following script from another domain:
https://www.paypal-labs.com/js/tabcontent.js
Request
GET /community/xcommerce-blogs/blog/tags/challenge HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:28 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Vary: User-Agent JP: D=58835 t=1313157089118525 Cache-Control: no-cache, private Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The response dynamically includes the following script from another domain:
https://www.paypal-labs.com/js/tabcontent.js
Request
GET /community/xcommerce-blogs/blog/tags/developer HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:27 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Vary: User-Agent JP: D=80688 t=1313157088773338 Cache-Control: no-cache, private Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The response dynamically includes the following script from another domain:
https://www.paypal-labs.com/js/tabcontent.js
Request
GET /community/xcommerce-blogs/blog/tags/developer_network HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:30 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Vary: User-Agent JP: D=124691 t=1313157091604811 Cache-Control: no-cache, private Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The response dynamically includes the following script from another domain:
https://www.paypal-labs.com/js/tabcontent.js
Request
GET /community/xcommerce-blogs/blog/tags/ebay HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:30 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Vary: User-Agent JP: D=106975 t=1313157091188070 Cache-Control: no-cache, private Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The response dynamically includes the following script from another domain:
https://www.paypal-labs.com/js/tabcontent.js
Request
GET /community/xcommerce-blogs/blog/tags/paypal HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:30 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Vary: User-Agent JP: D=95566 t=1313157090807467 Cache-Control: no-cache, private Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The response dynamically includes the following script from another domain:
https://www.paypal-labs.com/js/tabcontent.js
Request
GET /community/xcommerce-blogs/blog/tags/winners HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:29 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Vary: User-Agent JP: D=68066 t=1313157090473016 Cache-Control: no-cache, private Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The response dynamically includes the following script from another domain:
https://www.paypal-labs.com/js/tabcontent.js
Request
GET /community/xcommerce-blogs/blog/tags/x.commerce HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:31 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Vary: User-Agent JP: D=61485 t=1313157092752771 Cache-Control: no-cache, private Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The response dynamically includes the following script from another domain:
https://www.paypal-labs.com/js/tabcontent.js
Request
GET /community/xcommerce-blogs/blog/tags/xcommerce HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:31 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Vary: User-Agent JP: D=65196 t=1313157092114256 Cache-Control: no-cache, private Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /doc-publish.jspa HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 500 Internal Server Error Date: Fri, 12 Aug 2011 13:58:41 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Vary: User-Agent JP: D=24354 t=1313157521095937 Cache-Control: no-cache, private Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /docs/DOC-1031 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /docs/DOC-1041 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /docs/DOC-1051 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /docs/DOC-1106/delete HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 500 Internal Server Error Date: Fri, 12 Aug 2011 13:54:09 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Vary: User-Agent JP: D=30487 t=1313157250046861 Cache-Control: no-cache, private Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /docs/DOC-1106/restore HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 500 Internal Server Error Date: Fri, 12 Aug 2011 13:54:09 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Vary: User-Agent JP: D=46640 t=1313157249824805 Cache-Control: no-cache, private Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /docs/DOC-1108 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /docs/DOC-1116 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /docs/DOC-1176 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /docs/DOC-1204 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /docs/DOC-1216 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /docs/DOC-1332 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /docs/DOC-1372 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /docs/DOC-1374 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /docs/DOC-1401 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /docs/DOC-1431 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /docs/DOC-1551 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /docs/DOC-1613 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /docs/DOC-2241 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /docs/DOC-2346 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /docs/DOC-3201 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /docs/DOC-3212 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /docs/DOC-3251 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /docs/DOC-3271 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /docs/DOC-3321 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /docs/DOC-3322 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /docs/DOC-3323 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /docs/DOC-3345 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /docs/DOC-3351 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /docs/DOC-3352 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /docs/DOC-3353 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /docs/DOC-3354 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /docs/DOC-3355 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /docs/DOC-3371 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /docs/DOC-3372 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /docs/DOC-3373 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /docs/DOC-3374 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /docs/DOC-3375 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /docs/DOC-3426 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /docs/DOC-3427 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /docs/DOC-3431 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /docs/DOC-3443 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /docs/DOC-3444 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /docs/DOC-3491 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /docs/DOC-3561 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /docs/DOC-3562 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /docs/DOC-3619 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /docs/DOC-3688 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /docs/DOC-3811/delete HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 500 Internal Server Error Date: Fri, 12 Aug 2011 13:54:05 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Vary: User-Agent JP: D=98952 t=1313157245116745 Cache-Control: no-cache, private Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /docs/DOC-3811/restore HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 500 Internal Server Error Date: Fri, 12 Aug 2011 13:54:04 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Vary: User-Agent JP: D=74141 t=1313157244704571 Cache-Control: no-cache, private Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /docs/DOC-3812 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /docs/DOC-3836 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /docs/DOC-3841 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /docs/emailPasswordToken!input.jspa HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:54:04 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Vary: User-Agent JP: D=14987 t=1313157244126484 Cache-Control: no-cache, private Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /emailPasswordToken!input.jspa HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:33 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Vary: User-Agent JP: D=47387 t=1313157093849782 Cache-Control: no-cache, private Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The response dynamically includes the following script from another domain:
https://www.paypal-labs.com/js/tabcontent.js
Request
GET /main-apps.jspa HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /message/186684 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /message/198017 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /message/211333 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /message/211439 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /message/211738 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /message/212001 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /message/212124 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /message/212170 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /message/212753 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /message/212906 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /message/213354 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /message/213546 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /message/213568 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /message/213571 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /message/213767 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /message/213787 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /message/213788 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /message/213865 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /message/214347 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /message/214440 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /message/214618 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /message/214902 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /message/214926 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /message/215245 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /message/215254 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /message/215264 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /message/215276 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /message/215291 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
GET /people/BaldGeek/blog HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:49 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Vary: User-Agent JP: D=127143 t=1313157109294622 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/CorinneSherman HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:53 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c38393433393b332c323030383b332c35333735313b332c35333436333b332c35353331393b332c35333437343b332c35373137393b332c3133363935343b332c3133373131353b332c36303039313b; Expires=Sun, 11-Sep-2011 13:51:54 GMT; Path=/ Vary: User-Agent JP: D=153786 t=1313157114086096 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/GiancarloUk2 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:28 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c38383139383b332c3131353037373b332c3130383730353b332c3131303734313b332c3131303831343b332c38323534333b332c3131353130373b332c38353530363b332c3131313737343b332c38373839383b; Expires=Sun, 11-Sep-2011 13:52:29 GMT; Path=/ Vary: User-Agent JP: D=109527 t=1313157149159421 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/IndieReign HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:30 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c3134303730373b332c38383139383b332c38373839383b332c3134313133383b332c38353530363b332c3134303532383b332c3131353130373b332c3131303734313b332c3131313737343b332c3131353037373b; Expires=Sun, 11-Sep-2011 13:52:30 GMT; Path=/ Vary: User-Agent JP: D=98253 t=1313157150770204 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/JasonVenner HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:49 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b33382c363330313b3130322c313130363b3130322c333831313b332c3133383538323b332c35333735313b332c3133373331333b332c35353331393b332c3133363236393b332c38323134383b332c37383732323b332c38313633393b332c3130323736323b332c36373839373b; Expires=Sun, 11-Sep-2011 13:51:49 GMT; Path=/ Vary: User-Agent JP: D=146802 t=1313157109565171 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/MrcheckAPX HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:47 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c38343138313b332c38323134383b332c38313633393b332c37383732323b332c36373839373b332c323030313b332c313b332c38393734373b332c3133393930333b332c3134303730373b33382c363333363b; Expires=Sun, 11-Sep-2011 13:52:48 GMT; Path=/ Vary: User-Agent JP: D=97089 t=1313157168042186 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/PP_Igor HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:09 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c34383739343b332c31303737303b332c31393037313b332c33353136303b332c35333639373b332c38383732373b332c39343632373b332c38303434333b332c36363938333b332c37383635393b; Expires=Sun, 11-Sep-2011 13:52:09 GMT; Path=/ Vary: User-Agent JP: D=77818 t=1313157129602041 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/PP_MTS_Andre HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:05 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c31393037313b332c33353136303b332c35333639373b332c38383732373b332c39343632373b332c38303434333b332c36363938333b332c37383635393b332c35353331393b332c38393433393b; Expires=Sun, 11-Sep-2011 13:52:06 GMT; Path=/ Vary: User-Agent JP: D=85787 t=1313157126041615 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/PP_MTS_Chad HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:03 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c33353136303b332c38383732373b332c39343632373b332c38303434333b332c36363938333b332c37383635393b332c35353331393b332c38393433393b332c35333436333b332c323030383b; Expires=Sun, 11-Sep-2011 13:52:04 GMT; Path=/ Vary: User-Agent JP: D=167980 t=1313157123846369 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/PP_MTS_GuidoT HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:07 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c31303737303b332c31393037313b332c33353136303b332c35333639373b332c38383732373b332c39343632373b332c38303434333b332c36363938333b332c37383635393b332c35353331393b; Expires=Sun, 11-Sep-2011 13:52:07 GMT; Path=/ Vary: User-Agent JP: D=96030 t=1313157127847926 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/PP_MTS_Magarvin HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:03 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c35333639373b332c33353136303b332c38383732373b332c39343632373b332c38303434333b332c36363938333b332c37383635393b332c35353331393b332c38393433393b332c35333436333b; Expires=Sun, 11-Sep-2011 13:52:04 GMT; Path=/ Vary: User-Agent JP: D=130947 t=1313157124385931 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/PP_MTS_Patrick HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:12 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c3133313833303b332c3132393239303b332c3133373135383b332c3133373331333b332c3132323335343b332c3133393730313b332c3133343430323b332c39313330313b332c3134303635343b332c34383739343b; Expires=Sun, 11-Sep-2011 13:52:13 GMT; Path=/ Vary: User-Agent JP: D=143994 t=1313157132945144 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/PayPalXadmin HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:39 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c323030313b332c313b332c38393734373b332c3133393930333b332c3134303730373b332c3134303532383b332c3134313133383b332c38383139383b332c38373839383b332c38353530363b33382c363333363b; Expires=Sun, 11-Sep-2011 13:52:39 GMT; Path=/ Vary: User-Agent JP: D=96924 t=1313157159108661 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/PayPal_Carolyn HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:51 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b33382c363330313b3130322c313130363b3130322c333831313b332c323030383b332c35333437343b332c3133363935343b332c3133373131353b332c35333735313b332c3133383538323b332c36303039313b332c3133373331333b332c35353331393b332c3133363236393b; Expires=Sun, 11-Sep-2011 13:51:51 GMT; Path=/ Vary: User-Agent JP: D=182753 t=1313157111682138 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/PayPal_Sudha HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:52 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b33382c363330313b3130322c313130363b3130322c333831313b332c35333436333b332c36303039313b332c323030383b332c35333437343b332c3133363935343b332c3133373131353b332c35333735313b332c3133383538323b332c3133373331333b332c35353331393b; Expires=Sun, 11-Sep-2011 13:51:52 GMT; Path=/ Vary: User-Agent JP: D=104130 t=1313157112744233 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/PayPal_ToddS HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:14 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c323839313b332c323430323b332c3133363236393b332c3133313833303b332c31323739393b332c3133373331333b332c3133373135383b332c3132393239303b332c3133393730313b332c3132323335343b; Expires=Sun, 11-Sep-2011 13:52:14 GMT; Path=/ Vary: User-Agent JP: D=172832 t=1313157134792842 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/Praveen HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:52 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b33382c363330313b3130322c313130363b3130322c333831313b332c35353331393b332c35373137393b332c35333436333b332c35333437343b332c323030383b332c3133363935343b332c3133373131353b332c36303039313b332c35333735313b332c3133383538323b; Expires=Sun, 11-Sep-2011 13:51:53 GMT; Path=/ Vary: User-Agent JP: D=139937 t=1313157113112925 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/Praveen/blog/2011/01/31/icanhas-instant-app-approval HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:53 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c35353331393b332c35333437343b332c323030383b332c35333436333b332c35373137393b332c3133363935343b332c3133373131353b332c36303039313b332c35333735313b332c3133383538323b; Expires=Sun, 11-Sep-2011 13:51:53 GMT; Path=/ Vary: User-Agent JP: D=129836 t=1313157113665921 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/RightWayMail HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:28 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c3134313133383b332c3131353037373b332c38323534333b332c3130383730353b332c3131303831343b332c38383139383b332c3131303734313b332c3131353130373b332c38353530363b332c3131313737343b; Expires=Sun, 11-Sep-2011 13:52:29 GMT; Path=/ Vary: User-Agent JP: D=143442 t=1313157149181583 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/S.Aijaz HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:11 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c3132393239303b332c3134303635343b332c3133393730313b332c3132323335343b332c3133343430323b332c39313330313b332c34383739343b332c31303737303b332c31393037313b332c33353136303b; Expires=Sun, 11-Sep-2011 13:52:11 GMT; Path=/ Vary: User-Agent JP: D=107761 t=1313157131723635 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/SRS HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:28 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c38373839383b332c3133383934323b332c3131363438333b332c32333938353b332c3131303838353b332c33393238333b332c3131383939313b332c3134313133383b332c39323635363b332c3132323433393b; Expires=Sun, 11-Sep-2011 13:52:28 GMT; Path=/ Vary: User-Agent JP: D=95619 t=1313157148836785 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/Saleem HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:51 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b33382c363330313b3130322c313130363b3130322c333831313b332c35333437343b332c3133373131353b332c3133363935343b332c35333735313b332c36303039313b332c323030383b332c3133383538323b332c3133373331333b332c35353331393b332c3133363236393b; Expires=Sun, 11-Sep-2011 13:51:52 GMT; Path=/ Vary: User-Agent JP: D=174302 t=1313157112089068 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/Shade8934 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:50 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b33382c363330313b3130322c313130363b3130322c333831313b332c3133373131353b332c3133363935343b332c3133383538323b332c35333735313b332c36303039313b332c3133373331333b332c35353331393b332c3133363236393b332c38323134383b332c37383732323b; Expires=Sun, 11-Sep-2011 13:51:50 GMT; Path=/ Vary: User-Agent JP: D=78825 t=1313157110665049 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/Suneetha HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:12 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c3133373135383b332c3132393239303b332c3133393730313b332c3132323335343b332c3133343430323b332c39313330313b332c3134303635343b332c34383739343b332c31303737303b332c31393037313b; Expires=Sun, 11-Sep-2011 13:52:12 GMT; Path=/ Vary: User-Agent JP: D=77775 t=1313157132121636 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/admin HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:36 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c313b332c38393734373b332c3133393930333b332c3134303730373b332c3134303532383b332c3134313133383b332c38383139383b332c38373839383b332c38353530363b332c3131353130373b33382c363333363b; Expires=Sun, 11-Sep-2011 13:52:37 GMT; Path=/ Vary: User-Agent JP: D=92314 t=1313157157248318 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/amypiazza00 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:49 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b33382c363330313b3130322c313130363b3130322c333831313b332c36303039313b332c3133383538323b332c35333735313b332c3133373331333b332c35353331393b332c3133363236393b332c38323134383b332c37383732323b332c38313633393b332c3130323736323b; Expires=Sun, 11-Sep-2011 13:51:50 GMT; Path=/ Vary: User-Agent JP: D=166730 t=1313157109973921 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/angelleye HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:14 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c323430323b332c3133373331333b332c3133313833303b332c3133363236393b332c31323739393b332c3133373135383b332c3132393239303b332c3133393730313b332c3132323335343b332c3133343430323b; Expires=Sun, 11-Sep-2011 13:52:14 GMT; Path=/ Vary: User-Agent JP: D=188523 t=1313157134358773 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/billday HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:34 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c38393734373b332c3133393930333b332c3134303730373b332c3134303532383b332c3134313133383b332c38383139383b332c38373839383b332c38353530363b332c3131353130373b332c3131303734313b33382c363333363b; Expires=Sun, 11-Sep-2011 13:52:35 GMT; Path=/ Vary: User-Agent JP: D=155484 t=1313157155442148 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/blingnation2010 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:57 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c36363938333b332c37383635393b332c35353331393b332c38393433393b332c35333436333b332c323030383b332c35333437343b332c35333735313b332c35373137393b332c3133363935343b; Expires=Sun, 11-Sep-2011 13:51:57 GMT; Path=/ Vary: User-Agent JP: D=82638 t=1313157117852719 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/bryngregory HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:49 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c3130323736323b332c38343138313b332c38323134383b332c38313633393b332c37383732323b332c36373839373b332c323030313b332c313b332c38393734373b332c3133393930333b33382c363333363b; Expires=Sun, 11-Sep-2011 13:52:49 GMT; Path=/ Vary: User-Agent JP: D=142323 t=1313157169831259 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/das_licht HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:12 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c3133373331333b332c3132393239303b332c39313330313b332c3132323335343b332c3133393730313b332c3134303635343b332c3133373135383b332c3133343430323b332c34383739343b332c31303737303b; Expires=Sun, 11-Sep-2011 13:52:12 GMT; Path=/ Vary: User-Agent JP: D=93807 t=1313157132393620 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/dchankhour HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:44 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c38313633393b332c37383732323b332c36373839373b332c323030313b332c313b332c38393734373b332c3133393930333b332c3134303730373b332c3134303532383b332c3134313133383b33382c363333363b; Expires=Sun, 11-Sep-2011 13:52:44 GMT; Path=/ Vary: User-Agent JP: D=75356 t=1313157164475506 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/eferreira HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:10 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c3133343430323b332c34383739343b332c39313330313b332c3134303635343b332c31303737303b332c31393037313b332c33353136303b332c35333639373b332c38383732373b332c39343632373b; Expires=Sun, 11-Sep-2011 13:52:10 GMT; Path=/ Vary: User-Agent JP: D=84607 t=1313157130615032 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/emailPasswordToken!input.jspa HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:50 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Vary: User-Agent JP: D=41689 t=1313157111149225 Cache-Control: no-cache, private Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/encore HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:16 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c31303939373b332c3133363236393b332c31323739393b332c323839313b332c323430323b332c3133313833303b332c323032353b; Expires=Sun, 11-Sep-2011 13:52:17 GMT; Path=/ Vary: User-Agent JP: D=147969 t=1313157137124462 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/ezimerchant/blog/2009/11/26/confusion-between-express-checkout-and-web-payments-standard HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:48 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b33382c363330313b3130322c313130363b3130322c333831313b332c35333735313b332c3133373331333b332c35353331393b332c3133363236393b332c38323134383b332c37383732323b332c38313633393b332c3130323736323b332c36373839373b332c38343138313b; Expires=Sun, 11-Sep-2011 13:51:48 GMT; Path=/ Vary: User-Agent JP: D=175267 t=1313157108233489 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/gazugafan HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:13 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c3133363236393b332c3133373331333b332c3132393239303b332c3133393730313b332c3133313833303b332c3133373135383b332c3132323335343b332c3133343430323b332c39313330313b332c3134303635343b; Expires=Sun, 11-Sep-2011 13:52:13 GMT; Path=/ Vary: User-Agent JP: D=78479 t=1313157133485041 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/gem HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:52 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c35333831373b332c3132333639353b332c3130323736323b332c38343138313b332c38323134383b332c38313633393b332c37383732323b332c36373839373b332c323030313b332c313b33382c363333363b; Expires=Sun, 11-Sep-2011 13:52:53 GMT; Path=/ Vary: User-Agent JP: D=130479 t=1313157173386719 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/gogoeric HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:59 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c38303434333b332c36363938333b332c37383635393b332c35353331393b332c38393433393b332c35333436333b332c323030383b332c35333437343b332c35333735313b332c35373137393b; Expires=Sun, 11-Sep-2011 13:51:59 GMT; Path=/ Vary: User-Agent JP: D=166431 t=1313157119718400 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/hotellina HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:28 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c3134303532383b332c3131353130373b332c3131303734313b332c3131313737343b332c3134313133383b332c3131353037373b332c38323534333b332c3130383730353b332c3131303831343b332c38383139383b; Expires=Sun, 11-Sep-2011 13:52:29 GMT; Path=/ Vary: User-Agent JP: D=239357 t=1313157149186681 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/iConcessionStand HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:00 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c39343632373b332c38303434333b332c36363938333b332c37383635393b332c35353331393b332c38393433393b332c35333436333b332c323030383b332c35333437343b332c35333735313b; Expires=Sun, 11-Sep-2011 13:52:01 GMT; Path=/ Vary: User-Agent JP: D=158386 t=1313157121449840 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/joncas HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:45 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c38323134383b332c38313633393b332c37383732323b332c36373839373b332c323030313b332c313b332c38393734373b332c3133393930333b332c3134303730373b332c3134303532383b33382c363333363b; Expires=Sun, 11-Sep-2011 13:52:46 GMT; Path=/ Vary: User-Agent JP: D=77890 t=1313157166303738 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/lwhite2104 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:50 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c3132333639353b332c3130323736323b332c38343138313b332c38323134383b332c38313633393b332c37383732323b332c36373839373b332c323030313b332c313b332c38393734373b33382c363333363b; Expires=Sun, 11-Sep-2011 13:52:51 GMT; Path=/ Vary: User-Agent JP: D=79758 t=1313157171575959 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/mandeheritage HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:11 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c3133393730313b332c3133343430323b332c3134303635343b332c39313330313b332c3132323335343b332c34383739343b332c31303737303b332c31393037313b332c33353136303b332c35333639373b; Expires=Sun, 11-Sep-2011 13:52:11 GMT; Path=/ Vary: User-Agent JP: D=79098 t=1313157131216875 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/odeskdev HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:55 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c37383635393b332c35353331393b332c38393433393b332c35333436333b332c323030383b332c35333437343b332c35333735313b332c35373137393b332c3133363935343b332c3133373131353b; Expires=Sun, 11-Sep-2011 13:51:56 GMT; Path=/ Vary: User-Agent JP: D=77481 t=1313157116029628 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/omuleanu HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:42 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c37383732323b332c36373839373b332c323030313b332c313b332c38393734373b332c3133393930333b332c3134303730373b332c3134303532383b332c3134313133383b332c38383139383b33382c363333363b; Expires=Sun, 11-Sep-2011 13:52:42 GMT; Path=/ Vary: User-Agent JP: D=161006 t=1313157162705096 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/pluto26 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:40 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c36373839373b332c323030313b332c313b332c38393734373b332c3133393930333b332c3134303730373b332c3134303532383b332c3134313133383b332c38383139383b332c38373839383b33382c363333363b; Expires=Sun, 11-Sep-2011 13:52:40 GMT; Path=/ Vary: User-Agent JP: D=76607 t=1313157160904760 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/posiden5665 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:10 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c3134303635343b332c3133343430323b332c34383739343b332c39313330313b332c31303737303b332c31393037313b332c33353136303b332c35333639373b332c38383732373b332c39343632373b; Expires=Sun, 11-Sep-2011 13:52:10 GMT; Path=/ Vary: User-Agent JP: D=81038 t=1313157130321120 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/ramonmorales123 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:10 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c3132323335343b332c3133343430323b332c34383739343b332c3134303635343b332c39313330313b332c31303737303b332c31393037313b332c33353136303b332c35333639373b332c38383732373b; Expires=Sun, 11-Sep-2011 13:52:10 GMT; Path=/ Vary: User-Agent JP: D=87382 t=1313157130920019 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/rizkygarut HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:50 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b33382c363330313b3130322c313130363b3130322c333831313b332c3133363935343b332c35333735313b332c3133383538323b332c36303039313b332c3133373131353b332c3133373331333b332c35353331393b332c3133363236393b332c38323134383b332c37383732323b; Expires=Sun, 11-Sep-2011 13:51:50 GMT; Path=/ Vary: User-Agent JP: D=78953 t=1313157110910504 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/roguereptile HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:10 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c39313330313b332c3134303635343b332c34383739343b332c31303737303b332c31393037313b332c33353136303b332c35333639373b332c38383732373b332c39343632373b332c38303434333b; Expires=Sun, 11-Sep-2011 13:52:10 GMT; Path=/ Vary: User-Agent JP: D=134822 t=1313157130043079 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/s.ng.oldiebro186/blog/2011/08/10/attitude-determines-everything HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:32 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c3133393930333b332c3134303730373b332c3134303532383b332c3134313133383b332c38383139383b332c38373839383b332c38353530363b332c3131353130373b332c3131303734313b332c3131313737343b33382c363333363b; Expires=Sun, 11-Sep-2011 13:52:33 GMT; Path=/ Vary: User-Agent JP: D=72931 t=1313157153516546 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/sebastian.kopp@wooga.com HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:02 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c38383732373b332c39343632373b332c38303434333b332c36363938333b332c37383635393b332c35353331393b332c38393433393b332c35333436333b332c323030383b332c35333437343b; Expires=Sun, 11-Sep-2011 13:52:03 GMT; Path=/ Vary: User-Agent JP: D=79810 t=1313157123276448 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/skier HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:13 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c31323739393b332c3133313833303b332c3133363236393b332c3132393239303b332c3133373135383b332c3133373331333b332c3133393730313b332c3132323335343b332c3133343430323b332c39313330313b; Expires=Sun, 11-Sep-2011 13:52:13 GMT; Path=/ Vary: User-Agent JP: D=93161 t=1313157133808445 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /projects/ HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:43 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Vary: User-Agent JP: D=83836 t=1313157103895348 Cache-Control: no-cache, private Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /search.jspa HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:54:15 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Vary: User-Agent JP: D=25842 t=1313157255790926 Cache-Control: no-cache, private Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The presence of email addresses within application responses does not necessarily constitute a security vulnerability. Email addresses may appear intentionally within contact information, and many applications (such as web mail) include arbitrary third-party email addresses within their core content.
However, email addresses of developers and other individuals (whether appearing on-screen or hidden within page source) may disclose information that is useful to an attacker; for example, they may represent usernames that can be used at the application's login, and they may be used in social engineering attacks against the organisation's personnel. Unnecessary or excessive disclosure of email addresses may also lead to an increase in the volume of spam email received.
Issue remediation
You should review the email addresses being disclosed by the application, and consider removing any that are unnecessary, or replacing personal addresses with anonymous mailbox addresses (such as helpdesk@example.com).
The following email address was disclosed in the response:
travis@travisrobertson.com
Request
GET /community/feeds/blogs HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:50:07 GMT Server: Apache-Coyote/1.1 Last-Modified: Fri, 12 Aug 2011 05:00:01 GMT Etag: "1313125201939" Content-Type: text/xml;charset=UTF-8 Content-Language: en-US JP: D=32459 t=1313157008547513 Cache-Control: no-cache, private Vary: User-Agent Connection: close
The following email addresses were disclosed in the response:
Joe.Smith@anyemail.com
payflowbeta@paypal.com
Request
GET /community/feeds/documents HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:50:09 GMT Server: Apache-Coyote/1.1 Last-Modified: Thu, 11 Aug 2011 22:17:57 GMT Etag: "1313101077659" Content-Type: text/xml;charset=UTF-8 Content-Language: en-US JP: D=39783 t=1313157009161570 Cache-Control: no-cache, private Vary: User-Agent Connection: close
<?xml version="1.0" encoding="UTF-8"?> <rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:clearspace="http://www.jivesoftware.com/xmlns/clearspace/rss" xmlns:rdf="http://www.w3.org/1 ...[SNIP]... s scheduled to be available in July 2011.&#160; If you are interested in evaluating and developing for the new version, please send your request to <a class="jive-link-email-small" href="mailto:payflowbeta@paypal.com">payflowbeta@paypal.com</a>.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&nbsp;</p><p><strong>May 25, 2011 (Pilot Environment Only.&#160; Released to production on Ju ...[SNIP]... amp;BILLTOCOUNTRY[3]=840&amp;BILLTOZIP[5]=12345&amp;<br/>BILLTOPHONENUM[12]=555-243-7689&amp;BILLTOEMAIL<span>[22]</span><a class="jive-link-email-small" href="mailto:=Joe.Smith@anyemail.com">=Joe.Smith@anyemail.com</a><span>&amp;<br/>BILLTOFIRSTNAME[3]=Joe&amp;BILLTOLASTNAME[5]=Smith&amp;SHIPTOSTREET</span>[12]=123 Main St.<br/>&amp;SHIPTOCITY[8]=San Jose&amp;SHI ...[SNIP]... STATE[2]=CA&amp;SHIPTOCOUNTRY[3]=840&amp;<br/>SHIPTOZIP[5]=12345&amp;SHIPTOPHONE[12]=555-243-7689&amp;SHIPTOEMAIL[22]<br/>=<a class="jive-link-email-small" href="mailto:=Joe.Smith@anyemail.com">Joe.Smith@anyemail.com</a><span>&amp;SHIPTOFIRSTNAME[3]=Joe&amp;SHIPTOLASTNAME[5]=Smith<br/>&amp;USER[9]</span>=toddprov4&amp;VENDOR[9]=toddprov4&amp;PARTNER[8]=VeriSign&amp;P ...[SNIP]...
The following email addresses were disclosed in the response:
contact@XXXXXXX.com
contact@YYYYYYY.com
rubbyraj22@yahoo.com
Request
GET /community/feeds/messages HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:50:15 GMT Server: Apache-Coyote/1.1 Last-Modified: Fri, 12 Aug 2011 13:49:18 GMT Etag: "1313156958073" Content-Type: text/xml;charset=UTF-8 Content-Language: en-US JP: D=11113 t=1313157015643994 Cache-Control: no-cache, private Vary: User-Agent Connection: close
The following email address was disclosed in the response:
bzdmit_1243814267_biz@gmail.com
Request
GET /community/feeds/popularthreads HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:50:10 GMT Server: Apache-Coyote/1.1 Last-Modified: Fri, 12 Aug 2011 13:48:31 GMT Etag: "1313156911867" Content-Type: text/xml;charset=UTF-8 Content-Language: en-US JP: D=116756 t=1313157010798881 Cache-Control: no-cache, private Vary: User-Agent Connection: close
<?xml version="1.0" encoding="UTF-8"?> <rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:clearspace="http://www.jivesoftware.com/xmlns/clearspace/rss" xmlns:rdf="http://www.w3.org/1 ...[SNIP]... ;/p><p>My sandbox business account email is</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&nbsp;</p><p><a class="jive-link-email-small" href="mailto:bzdmit_1243814267_biz@gmail.com">bzdmit_1243814267_biz@gmail.com</a></p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&nbsp;</p><p>Thank you very much in advance and best regards,</p><p>Dmitry</p></div ...[SNIP]...
The following email address was disclosed in the response:
seller_1282344506_biz@gmail.com
Request
GET /community/feeds/unansweredthreads?community=2114 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:50:27 GMT Server: Apache-Coyote/1.1 Last-Modified: Thu, 02 Jun 2011 12:51:07 GMT Etag: "1307019067561" Content-Type: text/xml;charset=UTF-8 Content-Language: en-US JP: D=8661 t=1313157027820792 Cache-Control: no-cache, private Vary: User-Agent Connection: close
<?xml version="1.0" encoding="UTF-8"?> <rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:clearspace="http://www.jivesoftware.com/xmlns/clearspace/rss" xmlns:rdf="http://www.w3.org/1 ...[SNIP]... p direct payment on my account. thanks</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&nbsp;</p><p><strong><a class="jive-link-email-small" href="mailto:seller_1282344506_biz@gmail.com">seller_1282344506_biz@gmail.com</a></strong></p></div><!-- [DocumentBodyEnd:fe1ef89b-0a60-4b13-88f9-86317b895cde] --></description> ...[SNIP]...
The following email address was disclosed in the response:
dl-pp-businesspayments@paypal.com
Request
GET /community/ppx/businesspayments HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The following email address was disclosed in the response:
contest@paypal.com
Request
GET /community/ppx/devchallenge HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The following email address was disclosed in the response:
contest@paypal.com
Request
GET /community/ppx/devchallenge/ HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The following email address was disclosed in the response:
paypalstory@accesspr.com
Request
GET /community/ppx/devtalk HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The following email address was disclosed in the response:
travis@travisrobertson.com
Request
GET /community/ppx/devzone HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The following email address was disclosed in the response:
ukdevelopers@paypal.com
Request
GET /community/ppx/global/uk HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The following email addresses were disclosed in the response:
XX-usbiz@paypal.com
merchant@abc.com
Request
GET /docs/DOC-1106.pdf HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:54:11 GMT Server: Apache-Coyote/1.1 Pragma: expires Cache-Control: no-cache, private Content-disposition: attachment Content-Type: application/pdf;charset=UTF-8 Content-Language: en-US JP: D=725131 t=1313157250843835 Vary: User-Agent Connection: close
The following email address was disclosed in the response:
paypal@your-domain.com
Request
GET /docs/DOC-1431 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The following email address was disclosed in the response:
dlajoie66@aol.com
Request
GET /docs/DOC-1551 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The following email addresses were disclosed in the response:
paypro_1301916441_biz@bambeeq.com
xxxxx_1305510764_per@gmail.com
Request
GET /docs/DOC-1613 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The following email addresses were disclosed in the response:
Joe.Smith@anyemail.com
payflowbeta@paypal.com
Request
GET /docs/DOC-2241 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The following email address was disclosed in the response:
book_0123456789_biz@isp.net
Request
GET /message/198017 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The following email address was disclosed in the response:
merch_1309501980_biz@seneca-global.com
Request
GET /message/212753 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The following email addresses were disclosed in the response:
codehe_1307099300_biz@gmail.com
codehe_1307339868_biz@gmail.com
codehecode@gmail.com
filthy_1308141645_per@gmail.com
filthy_1308141865_biz@gmail.com
seller_1311232257_biz@gmail.com
Request
GET /message/213865 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The following email address was disclosed in the response:
hitesh_1312610572_per@gmail.com
Request
GET /message/214902 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The following email addresses were disclosed in the response:
contact@XXXXXXX.com
contact@YYYYYYY.com
Request
GET /message/215254 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The following email addresses were disclosed in the response:
akhi.p_1272864268_per@gmail.com
akhile_1242918801_per@cubettech.com
xxxx@xxxx.com
Request
GET /message/215291 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The following email address was disclosed in the response:
naveedanwar@gmail.com
Request
GET /people/BaldGeek.vcf HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:50 GMT Server: Apache-Coyote/1.1 Content-Type: text/x-vcard;charset=UTF-8 Content-Language: en-US JP: D=5452 t=1313157111270263 Vary: User-Agent Connection: close
BEGIN:VCARD VERSION:3.0 FN:Naveed Anwar ORG:PayPal EMAIL;TYPE=internet:naveedanwar@gmail.com TZ:Pacific Standard Time URL:http://x.com END:VCARD
The following email address was disclosed in the response:
csherman@paypal.com
Request
GET /people/CorinneSherman HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:53 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c38393433393b332c323030383b332c35333735313b332c35333436333b332c35353331393b332c35333437343b332c35373137393b332c3133363935343b332c3133373131353b332c36303039313b; Expires=Sun, 11-Sep-2011 13:51:54 GMT; Path=/ Vary: User-Agent JP: D=153786 t=1313157114086096 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The following email address was disclosed in the response:
sujamthe@paypal.com
Request
GET /people/PayPal_Sudha HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:52 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b33382c363330313b3130322c313130363b3130322c333831313b332c35333436333b332c36303039313b332c323030383b332c35333437343b332c3133363935343b332c3133373131353b332c35333735313b332c3133383538323b332c3133373331333b332c35353331393b; Expires=Sun, 11-Sep-2011 13:51:52 GMT; Path=/ Vary: User-Agent JP: D=104130 t=1313157112744233 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The following email address was disclosed in the response:
service@angelleye.com
Request
GET /people/angelleye HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:14 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c323430323b332c3133373331333b332c3133313833303b332c3133363236393b332c31323739393b332c3133373135383b332c3132393239303b332c3133393730313b332c3132323335343b332c3133343430323b; Expires=Sun, 11-Sep-2011 13:52:14 GMT; Path=/ Vary: User-Agent JP: D=188523 t=1313157134358773 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The following email address was disclosed in the response:
sliddicoat@encoresystems.net
Request
GET /people/encore HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:16 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c31303939373b332c3133363236393b332c31323739393b332c323839313b332c323430323b332c3133313833303b332c323032353b; Expires=Sun, 11-Sep-2011 13:52:17 GMT; Path=/ Vary: User-Agent JP: D=147969 t=1313157137124462 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 01:59:40 GMT Server: Apache-Coyote/1.1 Cache-Control: max-age=2016000, public Content-Type: text/javascript Content-Length: 31770 JP: D=418 t=1313114381172952 Vary: User-Agent Connection: close
/** * DD_roundies, this adds rounded-corner CSS in standard browsers and VML sublayers in IE that accomplish a similar appearance when comparing said browsers. * Author: Drew Diller * Email: drew.diller@gmail.com * URL: http://www.dillerdesign.com/experiment/DD_roundies/ * Version: 0.0.2a - preview 2008.12.26 * Licensed under the MIT License: http://dillerdesign.com/experiment/DD_roundies/#license * * Usage:
The following social security number was disclosed in the response:
102-10-3104
Issue background
Responses containing social security 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 SSNs and whether their disclosure within the application is appropriate.
Request
GET /docs/DOC-3251 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
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 numbers were disclosed in the response:
373953192351004
4012888888881881
4111111111111111
5105105105105100
Request
GET /community/feeds/documents HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:50:09 GMT Server: Apache-Coyote/1.1 Last-Modified: Thu, 11 Aug 2011 22:17:57 GMT Etag: "1313101077659" Content-Type: text/xml;charset=UTF-8 Content-Language: en-US JP: D=39783 t=1313157009161570 Cache-Control: no-cache, private Vary: User-Agent Connection: close
<?xml version="1.0" encoding="UTF-8"?> <rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:clearspace="http://www.jivesoftware.com/xmlns/clearspace/rss" xmlns:rdf="http://www.w3.org/1 ...[SNIP]... mall" href="https://www.x.com/docs/DOC-1642">post</a> regarding using the Request ID.<br/><br/>Example:<br/><br/>TRXTYPE=S&amp;TENDER=C&amp;AMT=11&amp;ACCT=4012888888881881&amp;EXPDATE=0119&amp;<br/>INVNUM=PONUM1&amp;VERBOSITY=HIGH&amp;STREET=123 Main St&amp;<br/>PONUM=010001&amp;<strong>ORDERID=1ef2ca34bc24e66fa<br/></s ...[SNIP]... the following items: TRXTYPE, TENDER, ACCT and EXPDATE.<br/><br/>Example:<br/><br/><strong style="color: #ff0000; ">TRXTYPE=L</strong>&amp;TENDER=C&amp;ACCT=5105105105105100&amp;EXPDATE=1212&amp;<br/>FIRSTNAME=Ted&amp;LASTNAME=Smith&amp;STREET=123 Main Street&amp;City=San Jose&amp;<br/>STATE=CA&amp;ZIP=12345&amp;PHONE=123-123-12 ...[SNIP]... ofile to run every day for X number of Days.<br/><br/>Example:<br/>TRXTYPE=R&amp;TENDER=C&amp;ACTION=A&amp;PROFILENAME=MyProfile&amp;AMT=20.00&amp;<br/>ACCT=4111111111111111&amp;EXPDATE=0213&amp;START=01252010&amp;<strong style="color: #ff0000; ">PAYPERIOD=DAYS<br/></strong>&amp;TERM=2&amp;COMMENT1=First-time customer&amp;OPTIONAL ...[SNIP]... and EMAIL parameters with the appropriate data.&#160; To receive the response VERBOSITY must be set to HIGH.<br/><br/>Example Request:<br/>TRXTYPE=S&amp;TENDER=C&amp;ACCT=373953192351004&amp;AMT=100.00&amp;EXPDATE=1210&amp;<br/><strong>PHONENUM=4083456789</strong>&amp;<strong>VERBOSITY=HIGH</strong>&amp;<strong>EMAIL=myemail at e ...[SNIP]... paid debit card with a remaining balance of $100.<br/></li><li>Merchant requests authorization for $75.<br/><br/>TRXTYPE=A&amp;TENDER=C&amp;AMT=75.00&amp;ACCT=4111111111111111&amp;<span style="color: #ff0000;">PARTIALAUTH=Y</span>&amp;EXPDATE=0119&amp;<br/><span style="color: #ff0000;">VERBOSITY=HIGH<br/></span><br/>< ...[SNIP]...
The following credit card numbers were disclosed in the response:
373953192351004
4012888888881881
4111111111111111
5105105105105100
Request
GET /docs/DOC-2241 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) 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:
// Provide a default path to dwr.engine if (dwr == null) var dwr = {}; if (dwr.engine == null) dwr.engine = {}; if (DWREngine == null) var DWREngine = dwr.engine;
GET /opensearch.xml HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:50:07 GMT Server: Apache-Coyote/1.1 Content-Type: application/opensearchdescription+xml;charset=UTF-8 Vary: User-Agent JP: D=2678 t=1313157007976957 Connection: close
GET /people/BaldGeek.vcf HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:50 GMT Server: Apache-Coyote/1.1 Content-Type: text/x-vcard;charset=UTF-8 Content-Language: en-US JP: D=5452 t=1313157111270263 Vary: User-Agent Connection: close
BEGIN:VCARD VERSION:3.0 FN:Naveed Anwar ORG:PayPal EMAIL;TYPE=internet:naveedanwar@gmail.com TZ:Pacific Standard Time URL:http://x.com END:VCARD
GET /people/BaldGeek/blog HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:49 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Vary: User-Agent JP: D=127143 t=1313157109294622 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/CorinneSherman HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:53 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c38393433393b332c323030383b332c35333735313b332c35333436333b332c35353331393b332c35333437343b332c35373137393b332c3133363935343b332c3133373131353b332c36303039313b; Expires=Sun, 11-Sep-2011 13:51:54 GMT; Path=/ Vary: User-Agent JP: D=153786 t=1313157114086096 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/GiancarloUk2 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:28 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c38383139383b332c3131353037373b332c3130383730353b332c3131303734313b332c3131303831343b332c38323534333b332c3131353130373b332c38353530363b332c3131313737343b332c38373839383b; Expires=Sun, 11-Sep-2011 13:52:29 GMT; Path=/ Vary: User-Agent JP: D=109527 t=1313157149159421 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/IndieReign HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:30 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c3134303730373b332c38383139383b332c38373839383b332c3134313133383b332c38353530363b332c3134303532383b332c3131353130373b332c3131303734313b332c3131313737343b332c3131353037373b; Expires=Sun, 11-Sep-2011 13:52:30 GMT; Path=/ Vary: User-Agent JP: D=98253 t=1313157150770204 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/JasonVenner HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:49 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b33382c363330313b3130322c313130363b3130322c333831313b332c3133383538323b332c35333735313b332c3133373331333b332c35353331393b332c3133363236393b332c38323134383b332c37383732323b332c38313633393b332c3130323736323b332c36373839373b; Expires=Sun, 11-Sep-2011 13:51:49 GMT; Path=/ Vary: User-Agent JP: D=146802 t=1313157109565171 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/MrcheckAPX HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:47 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c38343138313b332c38323134383b332c38313633393b332c37383732323b332c36373839373b332c323030313b332c313b332c38393734373b332c3133393930333b332c3134303730373b33382c363333363b; Expires=Sun, 11-Sep-2011 13:52:48 GMT; Path=/ Vary: User-Agent JP: D=97089 t=1313157168042186 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/PP_Igor HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:09 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c34383739343b332c31303737303b332c31393037313b332c33353136303b332c35333639373b332c38383732373b332c39343632373b332c38303434333b332c36363938333b332c37383635393b; Expires=Sun, 11-Sep-2011 13:52:09 GMT; Path=/ Vary: User-Agent JP: D=77818 t=1313157129602041 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/PP_MTS_Andre HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:05 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c31393037313b332c33353136303b332c35333639373b332c38383732373b332c39343632373b332c38303434333b332c36363938333b332c37383635393b332c35353331393b332c38393433393b; Expires=Sun, 11-Sep-2011 13:52:06 GMT; Path=/ Vary: User-Agent JP: D=85787 t=1313157126041615 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/PP_MTS_Chad HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:03 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c33353136303b332c38383732373b332c39343632373b332c38303434333b332c36363938333b332c37383635393b332c35353331393b332c38393433393b332c35333436333b332c323030383b; Expires=Sun, 11-Sep-2011 13:52:04 GMT; Path=/ Vary: User-Agent JP: D=167980 t=1313157123846369 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/PP_MTS_GuidoT HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:07 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c31303737303b332c31393037313b332c33353136303b332c35333639373b332c38383732373b332c39343632373b332c38303434333b332c36363938333b332c37383635393b332c35353331393b; Expires=Sun, 11-Sep-2011 13:52:07 GMT; Path=/ Vary: User-Agent JP: D=96030 t=1313157127847926 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/PP_MTS_Magarvin HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:03 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c35333639373b332c33353136303b332c38383732373b332c39343632373b332c38303434333b332c36363938333b332c37383635393b332c35353331393b332c38393433393b332c35333436333b; Expires=Sun, 11-Sep-2011 13:52:04 GMT; Path=/ Vary: User-Agent JP: D=130947 t=1313157124385931 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/PP_MTS_Patrick HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:12 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c3133313833303b332c3132393239303b332c3133373135383b332c3133373331333b332c3132323335343b332c3133393730313b332c3133343430323b332c39313330313b332c3134303635343b332c34383739343b; Expires=Sun, 11-Sep-2011 13:52:13 GMT; Path=/ Vary: User-Agent JP: D=143994 t=1313157132945144 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/PayPalXadmin HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:39 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c323030313b332c313b332c38393734373b332c3133393930333b332c3134303730373b332c3134303532383b332c3134313133383b332c38383139383b332c38373839383b332c38353530363b33382c363333363b; Expires=Sun, 11-Sep-2011 13:52:39 GMT; Path=/ Vary: User-Agent JP: D=96924 t=1313157159108661 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/PayPal_Carolyn HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:51 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b33382c363330313b3130322c313130363b3130322c333831313b332c323030383b332c35333437343b332c3133363935343b332c3133373131353b332c35333735313b332c3133383538323b332c36303039313b332c3133373331333b332c35353331393b332c3133363236393b; Expires=Sun, 11-Sep-2011 13:51:51 GMT; Path=/ Vary: User-Agent JP: D=182753 t=1313157111682138 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/PayPal_Sudha HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:52 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b33382c363330313b3130322c313130363b3130322c333831313b332c35333436333b332c36303039313b332c323030383b332c35333437343b332c3133363935343b332c3133373131353b332c35333735313b332c3133383538323b332c3133373331333b332c35353331393b; Expires=Sun, 11-Sep-2011 13:51:52 GMT; Path=/ Vary: User-Agent JP: D=104130 t=1313157112744233 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/PayPal_ToddS HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:14 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c323839313b332c323430323b332c3133363236393b332c3133313833303b332c31323739393b332c3133373331333b332c3133373135383b332c3132393239303b332c3133393730313b332c3132323335343b; Expires=Sun, 11-Sep-2011 13:52:14 GMT; Path=/ Vary: User-Agent JP: D=172832 t=1313157134792842 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/Praveen HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:52 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b33382c363330313b3130322c313130363b3130322c333831313b332c35353331393b332c35373137393b332c35333436333b332c35333437343b332c323030383b332c3133363935343b332c3133373131353b332c36303039313b332c35333735313b332c3133383538323b; Expires=Sun, 11-Sep-2011 13:51:53 GMT; Path=/ Vary: User-Agent JP: D=139937 t=1313157113112925 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/Praveen/blog/2011/01/31/icanhas-instant-app-approval HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:53 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c35353331393b332c35333437343b332c323030383b332c35333436333b332c35373137393b332c3133363935343b332c3133373131353b332c36303039313b332c35333735313b332c3133383538323b; Expires=Sun, 11-Sep-2011 13:51:53 GMT; Path=/ Vary: User-Agent JP: D=129836 t=1313157113665921 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/RightWayMail HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:28 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c3134313133383b332c3131353037373b332c38323534333b332c3130383730353b332c3131303831343b332c38383139383b332c3131303734313b332c3131353130373b332c38353530363b332c3131313737343b; Expires=Sun, 11-Sep-2011 13:52:29 GMT; Path=/ Vary: User-Agent JP: D=143442 t=1313157149181583 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/S.Aijaz HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:11 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c3132393239303b332c3134303635343b332c3133393730313b332c3132323335343b332c3133343430323b332c39313330313b332c34383739343b332c31303737303b332c31393037313b332c33353136303b; Expires=Sun, 11-Sep-2011 13:52:11 GMT; Path=/ Vary: User-Agent JP: D=107761 t=1313157131723635 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/SRS HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:28 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c38373839383b332c3133383934323b332c3131363438333b332c32333938353b332c3131303838353b332c33393238333b332c3131383939313b332c3134313133383b332c39323635363b332c3132323433393b; Expires=Sun, 11-Sep-2011 13:52:28 GMT; Path=/ Vary: User-Agent JP: D=95619 t=1313157148836785 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/Saleem HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:51 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b33382c363330313b3130322c313130363b3130322c333831313b332c35333437343b332c3133373131353b332c3133363935343b332c35333735313b332c36303039313b332c323030383b332c3133383538323b332c3133373331333b332c35353331393b332c3133363236393b; Expires=Sun, 11-Sep-2011 13:51:52 GMT; Path=/ Vary: User-Agent JP: D=174302 t=1313157112089068 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/Shade8934 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:50 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b33382c363330313b3130322c313130363b3130322c333831313b332c3133373131353b332c3133363935343b332c3133383538323b332c35333735313b332c36303039313b332c3133373331333b332c35353331393b332c3133363236393b332c38323134383b332c37383732323b; Expires=Sun, 11-Sep-2011 13:51:50 GMT; Path=/ Vary: User-Agent JP: D=78825 t=1313157110665049 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/Suneetha HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:12 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c3133373135383b332c3132393239303b332c3133393730313b332c3132323335343b332c3133343430323b332c39313330313b332c3134303635343b332c34383739343b332c31303737303b332c31393037313b; Expires=Sun, 11-Sep-2011 13:52:12 GMT; Path=/ Vary: User-Agent JP: D=77775 t=1313157132121636 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/admin HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:36 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c313b332c38393734373b332c3133393930333b332c3134303730373b332c3134303532383b332c3134313133383b332c38383139383b332c38373839383b332c38353530363b332c3131353130373b33382c363333363b; Expires=Sun, 11-Sep-2011 13:52:37 GMT; Path=/ Vary: User-Agent JP: D=92314 t=1313157157248318 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/amypiazza00 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:49 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b33382c363330313b3130322c313130363b3130322c333831313b332c36303039313b332c3133383538323b332c35333735313b332c3133373331333b332c35353331393b332c3133363236393b332c38323134383b332c37383732323b332c38313633393b332c3130323736323b; Expires=Sun, 11-Sep-2011 13:51:50 GMT; Path=/ Vary: User-Agent JP: D=166730 t=1313157109973921 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/angelleye HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:14 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c323430323b332c3133373331333b332c3133313833303b332c3133363236393b332c31323739393b332c3133373135383b332c3132393239303b332c3133393730313b332c3132323335343b332c3133343430323b; Expires=Sun, 11-Sep-2011 13:52:14 GMT; Path=/ Vary: User-Agent JP: D=188523 t=1313157134358773 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/billday HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:34 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c38393734373b332c3133393930333b332c3134303730373b332c3134303532383b332c3134313133383b332c38383139383b332c38373839383b332c38353530363b332c3131353130373b332c3131303734313b33382c363333363b; Expires=Sun, 11-Sep-2011 13:52:35 GMT; Path=/ Vary: User-Agent JP: D=155484 t=1313157155442148 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/blingnation2010 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:57 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c36363938333b332c37383635393b332c35353331393b332c38393433393b332c35333436333b332c323030383b332c35333437343b332c35333735313b332c35373137393b332c3133363935343b; Expires=Sun, 11-Sep-2011 13:51:57 GMT; Path=/ Vary: User-Agent JP: D=82638 t=1313157117852719 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/bryngregory HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:49 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c3130323736323b332c38343138313b332c38323134383b332c38313633393b332c37383732323b332c36373839373b332c323030313b332c313b332c38393734373b332c3133393930333b33382c363333363b; Expires=Sun, 11-Sep-2011 13:52:49 GMT; Path=/ Vary: User-Agent JP: D=142323 t=1313157169831259 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/das_licht HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:12 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c3133373331333b332c3132393239303b332c39313330313b332c3132323335343b332c3133393730313b332c3134303635343b332c3133373135383b332c3133343430323b332c34383739343b332c31303737303b; Expires=Sun, 11-Sep-2011 13:52:12 GMT; Path=/ Vary: User-Agent JP: D=93807 t=1313157132393620 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/dchankhour HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:44 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c38313633393b332c37383732323b332c36373839373b332c323030313b332c313b332c38393734373b332c3133393930333b332c3134303730373b332c3134303532383b332c3134313133383b33382c363333363b; Expires=Sun, 11-Sep-2011 13:52:44 GMT; Path=/ Vary: User-Agent JP: D=75356 t=1313157164475506 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/eferreira HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:10 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c3133343430323b332c34383739343b332c39313330313b332c3134303635343b332c31303737303b332c31393037313b332c33353136303b332c35333639373b332c38383732373b332c39343632373b; Expires=Sun, 11-Sep-2011 13:52:10 GMT; Path=/ Vary: User-Agent JP: D=84607 t=1313157130615032 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/encore HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:16 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c31303939373b332c3133363236393b332c31323739393b332c323839313b332c323430323b332c3133313833303b332c323032353b; Expires=Sun, 11-Sep-2011 13:52:17 GMT; Path=/ Vary: User-Agent JP: D=147969 t=1313157137124462 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/ezimerchant/blog/2009/11/26/confusion-between-express-checkout-and-web-payments-standard HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:48 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b33382c363330313b3130322c313130363b3130322c333831313b332c35333735313b332c3133373331333b332c35353331393b332c3133363236393b332c38323134383b332c37383732323b332c38313633393b332c3130323736323b332c36373839373b332c38343138313b; Expires=Sun, 11-Sep-2011 13:51:48 GMT; Path=/ Vary: User-Agent JP: D=175267 t=1313157108233489 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/gazugafan HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:13 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c3133363236393b332c3133373331333b332c3132393239303b332c3133393730313b332c3133313833303b332c3133373135383b332c3132323335343b332c3133343430323b332c39313330313b332c3134303635343b; Expires=Sun, 11-Sep-2011 13:52:13 GMT; Path=/ Vary: User-Agent JP: D=78479 t=1313157133485041 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/gem HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:52 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c35333831373b332c3132333639353b332c3130323736323b332c38343138313b332c38323134383b332c38313633393b332c37383732323b332c36373839373b332c323030313b332c313b33382c363333363b; Expires=Sun, 11-Sep-2011 13:52:53 GMT; Path=/ Vary: User-Agent JP: D=130479 t=1313157173386719 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/gogoeric HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:59 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c38303434333b332c36363938333b332c37383635393b332c35353331393b332c38393433393b332c35333436333b332c323030383b332c35333437343b332c35333735313b332c35373137393b; Expires=Sun, 11-Sep-2011 13:51:59 GMT; Path=/ Vary: User-Agent JP: D=166431 t=1313157119718400 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/hotellina HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:28 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c3134303532383b332c3131353130373b332c3131303734313b332c3131313737343b332c3134313133383b332c3131353037373b332c38323534333b332c3130383730353b332c3131303831343b332c38383139383b; Expires=Sun, 11-Sep-2011 13:52:29 GMT; Path=/ Vary: User-Agent JP: D=239357 t=1313157149186681 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/iConcessionStand HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:00 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c39343632373b332c38303434333b332c36363938333b332c37383635393b332c35353331393b332c38393433393b332c35333436333b332c323030383b332c35333437343b332c35333735313b; Expires=Sun, 11-Sep-2011 13:52:01 GMT; Path=/ Vary: User-Agent JP: D=158386 t=1313157121449840 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/joncas HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:45 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c38323134383b332c38313633393b332c37383732323b332c36373839373b332c323030313b332c313b332c38393734373b332c3133393930333b332c3134303730373b332c3134303532383b33382c363333363b; Expires=Sun, 11-Sep-2011 13:52:46 GMT; Path=/ Vary: User-Agent JP: D=77890 t=1313157166303738 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/lwhite2104 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:50 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c3132333639353b332c3130323736323b332c38343138313b332c38323134383b332c38313633393b332c37383732323b332c36373839373b332c323030313b332c313b332c38393734373b33382c363333363b; Expires=Sun, 11-Sep-2011 13:52:51 GMT; Path=/ Vary: User-Agent JP: D=79758 t=1313157171575959 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/mandeheritage HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:11 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c3133393730313b332c3133343430323b332c3134303635343b332c39313330313b332c3132323335343b332c34383739343b332c31303737303b332c31393037313b332c33353136303b332c35333639373b; Expires=Sun, 11-Sep-2011 13:52:11 GMT; Path=/ Vary: User-Agent JP: D=79098 t=1313157131216875 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/odeskdev HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:55 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c37383635393b332c35353331393b332c38393433393b332c35333436333b332c323030383b332c35333437343b332c35333735313b332c35373137393b332c3133363935343b332c3133373131353b; Expires=Sun, 11-Sep-2011 13:51:56 GMT; Path=/ Vary: User-Agent JP: D=77481 t=1313157116029628 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/omuleanu HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:42 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c37383732323b332c36373839373b332c323030313b332c313b332c38393734373b332c3133393930333b332c3134303730373b332c3134303532383b332c3134313133383b332c38383139383b33382c363333363b; Expires=Sun, 11-Sep-2011 13:52:42 GMT; Path=/ Vary: User-Agent JP: D=161006 t=1313157162705096 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/pluto26 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:40 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c36373839373b332c323030313b332c313b332c38393734373b332c3133393930333b332c3134303730373b332c3134303532383b332c3134313133383b332c38383139383b332c38373839383b33382c363333363b; Expires=Sun, 11-Sep-2011 13:52:40 GMT; Path=/ Vary: User-Agent JP: D=76607 t=1313157160904760 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/posiden5665 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:10 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c3134303635343b332c3133343430323b332c34383739343b332c39313330313b332c31303737303b332c31393037313b332c33353136303b332c35333639373b332c38383732373b332c39343632373b; Expires=Sun, 11-Sep-2011 13:52:10 GMT; Path=/ Vary: User-Agent JP: D=81038 t=1313157130321120 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/ramonmorales123 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:10 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c3132323335343b332c3133343430323b332c34383739343b332c3134303635343b332c39313330313b332c31303737303b332c31393037313b332c33353136303b332c35333639373b332c38383732373b; Expires=Sun, 11-Sep-2011 13:52:10 GMT; Path=/ Vary: User-Agent JP: D=87382 t=1313157130920019 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/rizkygarut HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:50 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b33382c363330313b3130322c313130363b3130322c333831313b332c3133363935343b332c35333735313b332c3133383538323b332c36303039313b332c3133373131353b332c3133373331333b332c35353331393b332c3133363236393b332c38323134383b332c37383732323b; Expires=Sun, 11-Sep-2011 13:51:50 GMT; Path=/ Vary: User-Agent JP: D=78953 t=1313157110910504 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/roguereptile HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:10 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c39313330313b332c3134303635343b332c34383739343b332c31303737303b332c31393037313b332c33353136303b332c35333639373b332c38383732373b332c39343632373b332c38303434333b; Expires=Sun, 11-Sep-2011 13:52:10 GMT; Path=/ Vary: User-Agent JP: D=134822 t=1313157130043079 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/s.ng.oldiebro186/blog/2011/08/10/attitude-determines-everything HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:32 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323036333b332c3133393930333b332c3134303730373b332c3134303532383b332c3134313133383b332c38383139383b332c38373839383b332c38353530363b332c3131353130373b332c3131303734313b332c3131313737343b33382c363333363b; Expires=Sun, 11-Sep-2011 13:52:33 GMT; Path=/ Vary: User-Agent JP: D=72931 t=1313157153516546 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/sebastian.kopp@wooga.com HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:02 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c38383732373b332c39343632373b332c38303434333b332c36363938333b332c37383635393b332c35353331393b332c38393433393b332c35333436333b332c323030383b332c35333437343b; Expires=Sun, 11-Sep-2011 13:52:03 GMT; Path=/ Vary: User-Agent JP: D=79810 t=1313157123276448 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /people/skier HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:52:13 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Set-Cookie: jive.recentHistory.-1=31342c323032343b31342c323232363b31342c323037333b31342c323030323b31342c323135343b31342c323131353b31342c323131313b31342c323134393b31342c323038363b31342c323038323b33382c343431363b33382c323436353b33382c353534353b33382c333337373b33382c353939353b33382c363030363b33382c363039373b33382c363133383b33382c363233383b33382c363238353b3130322c313130363b3130322c333831313b332c31323739393b332c3133313833303b332c3133363236393b332c3132393239303b332c3133373135383b332c3133373331333b332c3133393730313b332c3132323335343b332c3133343430323b332c39313330313b; Expires=Sun, 11-Sep-2011 13:52:13 GMT; Path=/ Vary: User-Agent JP: D=93161 t=1313157133808445 Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
GET /resources/scripts/fancyzoom/images/ HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:33 GMT Server: Apache-Coyote/1.1 Content-Type: application/octet-stream Content-Length: 0 JP: D=1433 t=1313157093676141 Cache-Control: max-age=2016000, public Vary: User-Agent Connection: close
GET /resources/scripts/tiny_mce3 HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:51:33 GMT Server: Apache-Coyote/1.1 Content-Type: application/octet-stream Content-Length: 353 JP: D=2144 t=1313157093566199 Vary: User-Agent Connection: close
GET /servlet/JiveServlet/download/1481-1-1070/pp_dev_Datasheet_PPX_R3.pdf HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:53:45 GMT Server: Apache-Coyote/1.1 Last-Modified: Sun, 07 Aug 2011 10:39:41 GMT Etag: "3.0.7-193831" Content-disposition: attachment Pragma: expires Cache-Control: private Content-Type: application/pdf Content-Length: 193831 JP: D=2254 t=1313157225870164 Vary: User-Agent Connection: close
%PDF-1.4%.... 9 0 obj<</Linearized 1/L 193831/O 11/E 124255/N 2/T 193610/H [ 1436 301]>>endobj xref9 570000000016 00000 n 0000001737 00000 n 0000001834 00000 n 0000002408 000 ...[SNIP]...
<html><head><title>Jive SBS</title></head> <body><font face="arial,helvetica,sans-serif"> <b>Error</b><br><font size="-1"> The requested document could not be loaded. </font></font></body></html>
If a web response states that it contains HTML content but does not specify a character set, then the browser may analyse the HTML and attempt to determine which character set it appears to be using. Even if the majority of the HTML actually employs a standard character set such as UTF-8, the presence of non-standard characters anywhere in the response may cause the browser to interpret the content using a different character set. This can have unexpected results, and can lead to cross-site scripting vulnerabilities in which non-standard encodings like UTF-7 can be used to bypass the application's defensive filters.
In most cases, the absence of a charset directive does not constitute a security flaw, particularly if the response contains static content. You should review the contents of the response and the context in which it appears to determine whether any vulnerability exists.
Issue remediation
For every response containing HTML content, the application should include within the Content-type header a directive specifying a standard recognised character set, for example charset=ISO-8859-1.
GET /dwr/interface HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 404 Not Found Date: Fri, 12 Aug 2011 13:53:45 GMT Server: Apache-Coyote/1.1 Content-Type: text/html Vary: User-Agent JP: D=3397 t=1313157225958050 Connection: close
<html> <head> <title>The page can't be found (404)</title>
<html><head><title>Jive SBS</title></head> <body><font face="arial,helvetica,sans-serif"> <b>Error</b><br><font size="-1"> The requested document could not be loaded. </font></font></body></html>
13. Content type incorrectly statedpreviousnext There are 3 instances of this issue:
If a web response specifies an incorrect content type, then browsers may process the response in unexpected ways. If the specified content type is a renderable text-based format, then the browser will usually attempt to parse and render the response in that format. If the specified type is an image format, then the browser will usually detect the anomaly and will analyse the actual content and attempt to determine its MIME type. Either case can lead to unexpected results, and if the content contains any user-controllable data may lead to cross-site scripting or other client-side vulnerabilities.
In most cases, the presence of an incorrect content type statement does not constitute a security flaw, particularly if the response contains static content. You should review the contents of the response and the context in which it appears to determine whether any vulnerability exists.
Issue remediation
For every response containing a message body, the application should include a single Content-type header which correctly and unambiguously states the MIME type of the content in the response body.
// Provide a default path to dwr.engine if (dwr == null) var dwr = {}; if (dwr.engine == null) dwr.engine = {}; if (DWREngine == null) var DWREngine = dwr.engine;
The response states that it contains script. However, it actually appears to contain XML.
Request
GET /opensearch.xml HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:50:07 GMT Server: Apache-Coyote/1.1 Content-Type: application/opensearchdescription+xml;charset=UTF-8 Vary: User-Agent JP: D=2678 t=1313157007976957 Connection: close
The response contains the following Content-type statement:
Content-Type: text/html;charset=UTF-8
The response states that it contains HTML. However, it actually appears to contain plain text.
Request
GET /view-video-short.jspa HTTP/1.1 Host: www.x.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.0 200 OK Date: Fri, 12 Aug 2011 13:53:46 GMT Server: Apache-Coyote/1.1 Content-Type: text/html;charset=UTF-8 Content-Language: en-US Content-Length: 50 Vary: User-Agent JP: D=5433 t=1313157226253277 Cache-Control: no-cache, private Connection: close
There was an error loading that video information.
The server presented a valid, trusted SSL certificate. This issue is purely informational.
The server presented the following certificates:
Server certificate
Issued to:
www.x.com
Issued by:
VeriSign Class 3 Extended Validation SSL CA
Valid from:
Tue Apr 12 18:00:00 GMT-06:00 2011
Valid to:
Tue May 07 17:59:59 GMT-06:00 2013
Certificate chain #1
Issued to:
VeriSign Class 3 Extended Validation SSL CA
Issued by:
VeriSign Class 3 Public Primary Certification Authority - G5
Valid from:
Tue Nov 07 18:00:00 GMT-06:00 2006
Valid to:
Mon Nov 07 17:59:59 GMT-06:00 2016
Certificate chain #2
Issued to:
VeriSign Class 3 Public Primary Certification Authority - G5
Issued by:
Class 3 Public Primary Certification Authority
Valid from:
Tue Nov 07 18:00:00 GMT-06:00 2006
Valid to:
Sun Nov 07 17:59:59 GMT-06:00 2021
Certificate chain #3
Issued to:
Class 3 Public Primary Certification Authority
Issued by:
Class 3 Public Primary Certification Authority
Valid from:
Sun Jan 28 18:00:00 GMT-06:00 1996
Valid to:
Wed Aug 02 17:59:59 GMT-06:00 2028
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:27:09 GMT-06:00 2011.