Reflected cross-site scripting vulnerabilities arise when data is copied from a request and echoed into the application's immediate response in an unsafe way. An attacker can use the vulnerability to construct a request which, if issued by another application user, will cause JavaScript code supplied by the attacker to execute within the user's browser in the context of that user's session with the application.
The attacker-supplied code can perform a wide variety of actions, such as stealing the victim's session token or login credentials, performing arbitrary actions on the victim's behalf, and logging their keystrokes.
Users can be induced to issue the attacker's crafted request in various ways. For example, the attacker can send a victim a link containing a malicious URL in an email or instant message. They can submit the link to popular web sites that allow content authoring, for example in blog comments. And they can create an innocuous looking web site which causes anyone viewing it to make arbitrary cross-domain requests to the vulnerable application (using either the GET or the POST method).
The security impact of cross-site scripting vulnerabilities is dependent upon the nature of the vulnerable application, the kinds of data and functionality which it contains, and the other applications which belong to the same domain and organisation. If the application is used only to display non-sensitive public content, with no authentication or access control functionality, then a cross-site scripting flaw may be considered low risk. However, if the same application resides on a domain which can access cookies for other more security-critical applications, then the vulnerability could be used to attack those other applications, and so may be considered high risk. Similarly, if the organisation which owns the application is a likely target for phishing attacks, then the vulnerability could be leveraged to lend credibility to such attacks, by injecting Trojan functionality into the vulnerable application, and exploiting users' trust in the organisation in order to capture credentials for other applications which it owns. In many kinds of application, such as those providing online banking functionality, cross-site scripting should always be considered high risk.
Remediation background
In most situations where user-controllable data is copied into application responses, cross-site scripting attacks can be prevented using two layers of defenses:
Input should be validated as strictly as possible on arrival, given the kind of content which it is expected to contain. For example, personal names should consist of alphabetical and a small range of typographical characters, and be relatively short; a year of birth should consist of exactly four numerals; email addresses should match a well-defined regular expression. Input which fails the validation should be rejected, not sanitised.
User input should be HTML-encoded at any point where it is copied into application responses. All HTML metacharacters, including < > " ' and =, should be replaced with the corresponding HTML entities (< > etc).
In cases where the application's functionality allows users to author content using a restricted subset of HTML tags and attributes (for example, blog comments which allow limited formatting and linking), it is necessary to parse the supplied HTML to validate that it does not use any dangerous syntax; this is a non-trivial task.
The value of the MPID request parameter is copied into a JavaScript string which is encapsulated in single quotation marks. The payload ff4df'%3b4eda189b01a was submitted in the MPID parameter. This input was echoed as ff4df';4eda189b01a in the application's response.
This behaviour demonstrates that it is possible to terminate the JavaScript string into which our data is being copied. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
Remediation detail
Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.
Request
GET /CustomerReviews/ReviewPage.aspx?pageId=201641&ProducttypeId=1&DeptId=10755&MPID=ff4df'%3b4eda189b01a HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 25688 Expires: Sun, 26 Dec 2010 14:02:04 GMT Date: Sun, 26 Dec 2010 14:02:04 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 14:02:04 GMT; path=/ Cache-Control: private
<!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 id="ctl00_Head1"><m ...[SNIP]... var pr_page_id="201641-1"; var pr_merchant_group_id = '10193'; var pr_site_id = '11'; var pr_promo_code= 'reviewPromo' ; var pr_style_sheet = '/styles/customer_reviews.css'; var pr_merchant_user_id ='ff4df';4eda189b01a';</script> ...[SNIP]...
The value of the Certona cookie is copied into a JavaScript expression which is not encapsulated in any quotation marks. The payload 225f7(a)67f96978925 was submitted in the Certona cookie. This input was echoed unmodified in the application's response.
This behaviour demonstrates that it is possible to inject JavaScript commands 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 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 /Product.aspx HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=225f7(a)67f96978925; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 22662 Expires: Sun, 26 Dec 2010 13:56:40 GMT Date: Sun, 26 Dec 2010 13:56:40 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 13:56:39 GMT; path=/ Set-Cookie: Certona=customerid=; expires=Sun, 26-Dec-2010 14:06:39 GMT; path=/ Cache-Control: private
<!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" >
The value of the Certona cookie is copied into a JavaScript expression which is not encapsulated in any quotation marks. The payload 4858c(a)a44314bbceb was submitted in the Certona cookie. This input was echoed unmodified in the application's response.
This behaviour demonstrates that it is possible to inject JavaScript commands 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 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 /large-size/Argyle-V-Neck-Sweater.aspx HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; Basket=Indy.Basket.BasketID=7d2d2a1a-bdb7-4590-ab15-7ea3a9c80d4c|12/26/2010 2:02:07 PM&Indy.Basket.BasketCount=1; mr_referredVisitor=1; mbox=session#1293371734894-478357#1293373986|check#true#1293372186; OM=EVAR13=Browse,Browse&NOmnitureReturnToBasket=12/26/2010 2:02:10 PM; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; vendor.Basket.BasketCount=1; Certona=customerid=4858c(a)a44314bbceb; Mobile=mobi_stop=true; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=92236#1*22153,201641#1*; __utmc=18223651; LastViewedProducts=92236#1*22153,201641#1*; __utmb=18223651.8.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 22676 Expires: Sun, 26 Dec 2010 14:22:12 GMT Date: Sun, 26 Dec 2010 14:22:12 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 14:22:12 GMT; path=/ Set-Cookie: Certona=customerid=; expires=Sun, 26-Dec-2010 14:32:12 GMT; path=/ Cache-Control: private
<!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" >
The value of the Certona cookie is copied into a JavaScript expression which is not encapsulated in any quotation marks. The payload a43f9(a)e10073d0ffc was submitted in the Certona cookie. This input was echoed unmodified in the application's response.
This behaviour demonstrates that it is possible to inject JavaScript commands 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 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 /large-size/Fleece-Zip-Up-Hoodie-Sweatshirt.aspx HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; Basket=Indy.Basket.BasketID=7d2d2a1a-bdb7-4590-ab15-7ea3a9c80d4c|12/26/2010 2:02:07 PM&Indy.Basket.BasketCount=1; mr_referredVisitor=1; mbox=session#1293371734894-478357#1293373986|check#true#1293372186; OM=EVAR13=Browse,Browse&NOmnitureReturnToBasket=12/26/2010 2:02:10 PM; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; vendor.Basket.BasketCount=1; Certona=customerid=a43f9(a)e10073d0ffc; Mobile=mobi_stop=true; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=92236#1*22153,201641#1*; __utmc=18223651; LastViewedProducts=92236#1*22153,201641#1*; __utmb=18223651.8.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 22686 Expires: Sun, 26 Dec 2010 14:22:11 GMT Date: Sun, 26 Dec 2010 14:22:11 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 14:22:11 GMT; path=/ Set-Cookie: Certona=customerid=; expires=Sun, 26-Dec-2010 14:32:11 GMT; path=/ Cache-Control: private
<!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" >
The value of the Certona cookie is copied into a JavaScript expression which is not encapsulated in any quotation marks. The payload 29bd1(a)9e206dc97bc was submitted in the Certona cookie. This input was echoed unmodified in the application's response.
This behaviour demonstrates that it is possible to inject JavaScript commands 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 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 /large-size/Heavyweight-Long-Sleeve-No-Pocket-T-Shirt.aspx HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; Basket=Indy.Basket.BasketID=7d2d2a1a-bdb7-4590-ab15-7ea3a9c80d4c|12/26/2010 2:02:07 PM&Indy.Basket.BasketCount=1; mr_referredVisitor=1; mbox=session#1293371734894-478357#1293373986|check#true#1293372186; OM=EVAR13=Browse,Browse&NOmnitureReturnToBasket=12/26/2010 2:02:10 PM; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; vendor.Basket.BasketCount=1; Certona=customerid=29bd1(a)9e206dc97bc; Mobile=mobi_stop=true; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=92236#1*22153,201641#1*; __utmc=18223651; LastViewedProducts=92236#1*22153,201641#1*; __utmb=18223651.8.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 22696 Expires: Sun, 26 Dec 2010 14:22:11 GMT Date: Sun, 26 Dec 2010 14:22:11 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 14:22:11 GMT; path=/ Set-Cookie: Certona=customerid=; expires=Sun, 26-Dec-2010 14:32:11 GMT; path=/ Cache-Control: private
<!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" >
The value of the Certona cookie is copied into a JavaScript expression which is not encapsulated in any quotation marks. The payload d6090(a)566fca11b53 was submitted in the Certona cookie. This input was echoed unmodified in the application's response.
This behaviour demonstrates that it is possible to inject JavaScript commands 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 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 /large-size/Holiday-Graphic-Tee-Shirt.aspx HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; Basket=Indy.Basket.BasketID=7d2d2a1a-bdb7-4590-ab15-7ea3a9c80d4c|12/26/2010 2:02:07 PM&Indy.Basket.BasketCount=1; mr_referredVisitor=1; mbox=session#1293371734894-478357#1293373986|check#true#1293372186; OM=EVAR13=Browse,Browse&NOmnitureReturnToBasket=12/26/2010 2:02:10 PM; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; vendor.Basket.BasketCount=1; Certona=customerid=d6090(a)566fca11b53; Mobile=mobi_stop=true; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=92236#1*22153,201641#1*; __utmc=18223651; LastViewedProducts=92236#1*22153,201641#1*; __utmb=18223651.8.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 22680 Expires: Sun, 26 Dec 2010 14:22:10 GMT Date: Sun, 26 Dec 2010 14:22:10 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 14:22:10 GMT; path=/ Set-Cookie: Certona=customerid=; expires=Sun, 26-Dec-2010 14:32:10 GMT; path=/ Cache-Control: private
<!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" >
The value of the Certona cookie is copied into a JavaScript expression which is not encapsulated in any quotation marks. The payload ac5b7(a)05454f35429 was submitted in the Certona cookie. This input was echoed unmodified in the application's response.
This behaviour demonstrates that it is possible to inject JavaScript commands 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 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 /large-size/Lightweight-Cotton-No-Pocket-Crewneck-T-Shirt.aspx HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; Basket=Indy.Basket.BasketID=7d2d2a1a-bdb7-4590-ab15-7ea3a9c80d4c|12/26/2010 2:02:07 PM&Indy.Basket.BasketCount=1; mr_referredVisitor=1; mbox=session#1293371734894-478357#1293373986|check#true#1293372186; OM=EVAR13=Browse,Browse&NOmnitureReturnToBasket=12/26/2010 2:02:10 PM; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; vendor.Basket.BasketCount=1; Certona=customerid=ac5b7(a)05454f35429; Mobile=mobi_stop=true; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=92236#1*22153,201641#1*; __utmc=18223651; LastViewedProducts=92236#1*22153,201641#1*; __utmb=18223651.8.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 22700 Expires: Sun, 26 Dec 2010 14:22:11 GMT Date: Sun, 26 Dec 2010 14:22:11 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 14:22:11 GMT; path=/ Set-Cookie: Certona=customerid=; expires=Sun, 26-Dec-2010 14:32:11 GMT; path=/ Cache-Control: private
<!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" >
The value of the Certona cookie is copied into a JavaScript expression which is not encapsulated in any quotation marks. The payload 46721(a)02a9412b24d was submitted in the Certona cookie. This input was echoed unmodified in the application's response.
This behaviour demonstrates that it is possible to inject JavaScript commands 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 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 /large-size/Lightweight-V-Neck-T-Shirt.aspx HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; Basket=Indy.Basket.BasketID=7d2d2a1a-bdb7-4590-ab15-7ea3a9c80d4c|12/26/2010 2:02:07 PM&Indy.Basket.BasketCount=1; mr_referredVisitor=1; mbox=session#1293371734894-478357#1293373986|check#true#1293372186; OM=EVAR13=Browse,Browse&NOmnitureReturnToBasket=12/26/2010 2:02:10 PM; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; vendor.Basket.BasketCount=1; Certona=customerid=46721(a)02a9412b24d; Mobile=mobi_stop=true; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=92236#1*22153,201641#1*; __utmc=18223651; LastViewedProducts=92236#1*22153,201641#1*; __utmb=18223651.8.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 22681 Expires: Sun, 26 Dec 2010 14:22:12 GMT Date: Sun, 26 Dec 2010 14:22:12 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 14:22:12 GMT; path=/ Set-Cookie: Certona=customerid=; expires=Sun, 26-Dec-2010 14:32:12 GMT; path=/ Cache-Control: private
<!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" >
The value of the Certona cookie is copied into a JavaScript expression which is not encapsulated in any quotation marks. The payload bec4b(a)0a60d90ba6c was submitted in the Certona cookie. This input was echoed unmodified in the application's response.
This behaviour demonstrates that it is possible to inject JavaScript commands 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 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 /large-size/Microfiber-Detachable-Hood-Parka.aspx HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; Basket=Indy.Basket.BasketID=7d2d2a1a-bdb7-4590-ab15-7ea3a9c80d4c|12/26/2010 2:02:07 PM&Indy.Basket.BasketCount=1; mr_referredVisitor=1; mbox=session#1293371734894-478357#1293373986|check#true#1293372186; OM=EVAR13=Browse,Browse&NOmnitureReturnToBasket=12/26/2010 2:02:10 PM; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; vendor.Basket.BasketCount=1; Certona=customerid=bec4b(a)0a60d90ba6c; Mobile=mobi_stop=true; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=92236#1*22153,201641#1*; __utmc=18223651; LastViewedProducts=92236#1*22153,201641#1*; __utmb=18223651.8.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 22687 Expires: Sun, 26 Dec 2010 14:22:15 GMT Date: Sun, 26 Dec 2010 14:22:15 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 14:22:15 GMT; path=/ Set-Cookie: Certona=customerid=; expires=Sun, 26-Dec-2010 14:32:15 GMT; path=/ Cache-Control: private
<!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" >
The value of the Certona cookie is copied into a JavaScript expression which is not encapsulated in any quotation marks. The payload 96a69(a)a394f4f10ce was submitted in the Certona cookie. This input was echoed unmodified in the application's response.
This behaviour demonstrates that it is possible to inject JavaScript commands 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 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 /large-size/Relaxed-Fit-Wrangler-Jeans.aspx HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; Basket=Indy.Basket.BasketID=7d2d2a1a-bdb7-4590-ab15-7ea3a9c80d4c|12/26/2010 2:02:07 PM&Indy.Basket.BasketCount=1; mr_referredVisitor=1; mbox=session#1293371734894-478357#1293373986|check#true#1293372186; OM=EVAR13=Browse,Browse&NOmnitureReturnToBasket=12/26/2010 2:02:10 PM; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; vendor.Basket.BasketCount=1; Certona=customerid=96a69(a)a394f4f10ce; Mobile=mobi_stop=true; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=92236#1*22153,201641#1*; __utmc=18223651; LastViewedProducts=92236#1*22153,201641#1*; __utmb=18223651.8.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 22681 Expires: Sun, 26 Dec 2010 14:22:12 GMT Date: Sun, 26 Dec 2010 14:22:12 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 14:22:12 GMT; path=/ Set-Cookie: Certona=customerid=; expires=Sun, 26-Dec-2010 14:32:12 GMT; path=/ Cache-Control: private
<!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" >
The value of the Certona cookie is copied into a JavaScript expression which is not encapsulated in any quotation marks. The payload 103e6(a)4a3b9b3a957 was submitted in the Certona cookie. This input was echoed unmodified in the application's response.
This behaviour demonstrates that it is possible to inject JavaScript commands 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 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 /large-size/Video-Games-Graphic-Tee-Shirt.aspx HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=103e6(a)4a3b9b3a957; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 22684 Expires: Sun, 26 Dec 2010 13:56:42 GMT Date: Sun, 26 Dec 2010 13:56:42 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 13:56:42 GMT; path=/ Set-Cookie: Certona=customerid=; expires=Sun, 26-Dec-2010 14:06:42 GMT; path=/ Cache-Control: private
<!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" >
The value of the Certona cookie is copied into a JavaScript expression which is not encapsulated in any quotation marks. The payload 17e0d(a)e9cc1eed0b was submitted in the Certona cookie. This input was echoed unmodified in the application's response.
This behaviour demonstrates that it is possible to inject JavaScript commands 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 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 /large-size/Waffle-Weave-Henley.aspx HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; Basket=Indy.Basket.BasketID=7d2d2a1a-bdb7-4590-ab15-7ea3a9c80d4c|12/26/2010 2:02:07 PM&Indy.Basket.BasketCount=1; mr_referredVisitor=1; mbox=session#1293371734894-478357#1293373986|check#true#1293372186; OM=EVAR13=Browse,Browse&NOmnitureReturnToBasket=12/26/2010 2:02:10 PM; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; vendor.Basket.BasketCount=1; Certona=customerid=17e0d(a)e9cc1eed0b; Mobile=mobi_stop=true; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=92236#1*22153,201641#1*; __utmc=18223651; LastViewedProducts=92236#1*22153,201641#1*; __utmb=18223651.8.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 22673 Expires: Sun, 26 Dec 2010 14:22:13 GMT Date: Sun, 26 Dec 2010 14:22:13 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 14:22:13 GMT; path=/ Set-Cookie: Certona=customerid=; expires=Sun, 26-Dec-2010 14:32:13 GMT; path=/ Cache-Control: private
<!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" >
If the HttpOnly attribute is set on a cookie, then the cookie's value cannot be read or set by client-side JavaScript. This measure can prevent certain client-side attacks, such as cross-site scripting, from trivially capturing the cookie's value via an injected script.
Issue remediation
There is usually no good reason not to set the HttpOnly flag on all cookies. Unless you specifically require legitimate client-side scripts within your application to read or set a cookie's value, you should set the HttpOnly flag by including this attribute within the relevant Set-cookie directive.
You should be aware that the restrictions imposed by the HttpOnly flag can potentially be circumvented in some circumstances, and that numerous other serious attacks can be delivered by client-side script injection, aside from simple cookie stealing.
The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /1/1/index1.html HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Cneonction: close Server: X-Powered-By: ASP.NET ntCoent-Length: 128304 Content-Type: text/html; charset=utf-8 Vary: X-SL-Host Expires: Sun, 26 Dec 2010 13:59:56 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sun, 26 Dec 2010 13:59:56 GMT Connection: close Connection: Transfer-Encoding Set-Cookie: YAMVT=BQcDAAAAAwQDAAAAAgiAAAAACVJFRENBVFMwMQiBAAAAC0NIQURXSUNLUzAxAAAACHZhcmlhbnRzBAMAAAACCgoxMjI3Mjc0MjAwAAAACVJFRENBVFMwMQoKMTI0MDAzMDgwMAAAAAtDSEFEV0lDS1MwMQAAAAV0ZXN0cwoHNDQ3ODkxMAAAAAd1c2VyX2lk; path=/1; expires=Wed, 21-Dec-2011 13:59:56 GMT Set-Cookie: slx_session=b6e6d1109e2be5b59b42e72f430f4b2b23d971bd; path=/ Content-Length: 128304
<!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" >
The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /1/1/indexb1.html HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Cneonction: close Server: X-Powered-By: ASP.NET ntCoent-Length: 135385 Content-Type: text/html; charset=utf-8 Vary: X-SL-Host Expires: Sun, 26 Dec 2010 13:59:59 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sun, 26 Dec 2010 13:59:59 GMT Connection: close Connection: Transfer-Encoding Set-Cookie: YAMVT=BQcDAAAAAwQDAAAAAgiBAAAACVJFRENBVFMwMQiBAAAAC0NIQURXSUNLUzAxAAAACHZhcmlhbnRzBAMAAAACCgoxMjI3Mjc0MjAwAAAACVJFRENBVFMwMQoKMTI0MDAzMDgwMAAAAAtDSEFEV0lDS1MwMQAAAAV0ZXN0cwoKMTc0NDQ1OTc3MgAAAAd1c2VyX2lk; path=/1; expires=Wed, 21-Dec-2011 13:59:59 GMT Set-Cookie: slx_session=2519f8d4490b8bde329a4d03043167bbade17ee6; path=/ Content-Length: 135385
<!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" >
The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /1/1/indexc1.html HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Cneonction: close Server: X-Powered-By: ASP.NET ntCoent-Length: 125208 Content-Type: text/html; charset=utf-8 Vary: X-SL-Host Expires: Sun, 26 Dec 2010 14:00:00 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sun, 26 Dec 2010 14:00:00 GMT Connection: close Connection: Transfer-Encoding Set-Cookie: YAMVT=BQcDAAAAAwQDAAAAAgiAAAAACVJFRENBVFMwMQiAAAAAC0NIQURXSUNLUzAxAAAACHZhcmlhbnRzBAMAAAACCgoxMjI3Mjc0MjAwAAAACVJFRENBVFMwMQoKMTI0MDAzMDgwMAAAAAtDSEFEV0lDS1MwMQAAAAV0ZXN0cwoJMTIzNzUyMDU5AAAAB3VzZXJfaWQ%3D; path=/1; expires=Wed, 21-Dec-2011 14:00:00 GMT Set-Cookie: slx_session=0457f12bf468efb1898c3e85b7269ad707702007; path=/ Content-Length: 125208
<!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" >
The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /1/2/index1.html HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Cneonction: close Server: X-Powered-By: ASP.NET ntCoent-Length: 100857 Content-Type: text/html; charset=utf-8 Vary: X-SL-Host Expires: Sun, 26 Dec 2010 14:00:02 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sun, 26 Dec 2010 14:00:02 GMT Connection: close Connection: Transfer-Encoding Set-Cookie: YAMVT=BQcDAAAAAwQDAAAAAgiAAAAACVJFRENBVFMwMQiAAAAAC0NIQURXSUNLUzAxAAAACHZhcmlhbnRzBAMAAAACCgoxMjI3Mjc0MjAwAAAACVJFRENBVFMwMQoKMTI0MDAzMDgwMAAAAAtDSEFEV0lDS1MwMQAAAAV0ZXN0cwoKMTExMTE0NDY2MwAAAAd1c2VyX2lk; path=/1; expires=Wed, 21-Dec-2011 14:00:01 GMT Set-Cookie: slx_session=823294795a043b76ac127888e41a8b836b99bc10; path=/ Content-Length: 100857
<!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" >
The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /1/2/indexb1.html HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Cneonction: close Server: X-Powered-By: ASP.NET ntCoent-Length: 165299 Content-Type: text/html; charset=utf-8 Vary: X-SL-Host Expires: Sun, 26 Dec 2010 14:00:21 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sun, 26 Dec 2010 14:00:21 GMT Connection: close Connection: Transfer-Encoding Set-Cookie: YAMVT=BQcDAAAAAwQDAAAAAgiAAAAACVJFRENBVFMwMQiAAAAAC0NIQURXSUNLUzAxAAAACHZhcmlhbnRzBAMAAAACCgoxMjI3Mjc0MjAwAAAACVJFRENBVFMwMQoKMTI0MDAzMDgwMAAAAAtDSEFEV0lDS1MwMQAAAAV0ZXN0cwoJNzA4OTY4MDgyAAAAB3VzZXJfaWQ%3D; path=/1; expires=Wed, 21-Dec-2011 14:00:20 GMT Set-Cookie: slx_session=daeea4ed210f4b502e534291b983e78e6aea739b; path=/ Content-Length: 165299
<!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" >
The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /1/2/indexc1.html HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Cneonction: close Server: X-Powered-By: ASP.NET ntCoent-Length: 105362 Content-Type: text/html; charset=utf-8 Vary: X-SL-Host Expires: Sun, 26 Dec 2010 14:00:22 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sun, 26 Dec 2010 14:00:22 GMT Connection: close Connection: Transfer-Encoding Set-Cookie: YAMVT=BQcDAAAAAwQDAAAAAgiBAAAACVJFRENBVFMwMQiAAAAAC0NIQURXSUNLUzAxAAAACHZhcmlhbnRzBAMAAAACCgoxMjI3Mjc0MjAwAAAACVJFRENBVFMwMQoKMTI0MDAzMDgwMAAAAAtDSEFEV0lDS1MwMQAAAAV0ZXN0cwoKMTg1OTg5MzY4MwAAAAd1c2VyX2lk; path=/1; expires=Wed, 21-Dec-2011 14:00:21 GMT Set-Cookie: slx_session=e8e39c2686266e824681242d7bfed6eed31c7597; path=/ Content-Length: 105362
<!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" >
The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /1/3/index1.html HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Cneonction: close Server: X-Powered-By: ASP.NET ntCoent-Length: 118150 Content-Type: text/html; charset=utf-8 Vary: X-SL-Host Expires: Sun, 26 Dec 2010 14:00:22 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sun, 26 Dec 2010 14:00:22 GMT Connection: close Connection: Transfer-Encoding Set-Cookie: YAMVT=BQcDAAAAAwQDAAAAAgiBAAAACVJFRENBVFMwMQiBAAAAC0NIQURXSUNLUzAxAAAACHZhcmlhbnRzBAMAAAACCgoxMjI3Mjc0MjAwAAAACVJFRENBVFMwMQoKMTI0MDAzMDgwMAAAAAtDSEFEV0lDS1MwMQAAAAV0ZXN0cwoKMTk5NDc2OTk2NAAAAAd1c2VyX2lk; path=/1; expires=Wed, 21-Dec-2011 14:00:22 GMT Set-Cookie: slx_session=ca85cd434cb007414c10956679054f88a29c3bff; path=/ Content-Length: 118150
<!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" >
The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /1/3/indexb1.html HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Cneonction: close Server: X-Powered-By: ASP.NET ntCoent-Length: 113529 Content-Type: text/html; charset=utf-8 Vary: X-SL-Host Expires: Sun, 26 Dec 2010 14:00:23 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sun, 26 Dec 2010 14:00:23 GMT Connection: close Connection: Transfer-Encoding Set-Cookie: YAMVT=BQcDAAAAAwQDAAAAAgiBAAAACVJFRENBVFMwMQiBAAAAC0NIQURXSUNLUzAxAAAACHZhcmlhbnRzBAMAAAACCgoxMjI3Mjc0MjAwAAAACVJFRENBVFMwMQoKMTI0MDAzMDgwMAAAAAtDSEFEV0lDS1MwMQAAAAV0ZXN0cwoKMTMxNTUzMTA1MwAAAAd1c2VyX2lk; path=/1; expires=Wed, 21-Dec-2011 14:00:23 GMT Set-Cookie: slx_session=39eb54089d04af3dcfa2d4d21bd8b888b232fcd5; path=/ Content-Length: 113529
<!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" >
The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /1/3/indexc1.html HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Cneonction: close Server: X-Powered-By: ASP.NET ntCoent-Length: 117306 Content-Type: text/html; charset=utf-8 Vary: X-SL-Host Expires: Sun, 26 Dec 2010 14:00:27 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sun, 26 Dec 2010 14:00:27 GMT Connection: close Connection: Transfer-Encoding Set-Cookie: YAMVT=BQcDAAAAAwQDAAAAAgiBAAAACVJFRENBVFMwMQiBAAAAC0NIQURXSUNLUzAxAAAACHZhcmlhbnRzBAMAAAACCgoxMjI3Mjc0MjAwAAAACVJFRENBVFMwMQoKMTI0MDAzMDgwMAAAAAtDSEFEV0lDS1MwMQAAAAV0ZXN0cwoKMTY0NzYxMzk1NQAAAAd1c2VyX2lk; path=/1; expires=Wed, 21-Dec-2011 14:00:26 GMT Set-Cookie: slx_session=a14bc3acb180235cca3f1c365b2498f2f951bb74; path=/ Content-Length: 117306
<!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" >
The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /1/3/indexd1.html HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Cneonction: close Server: X-Powered-By: ASP.NET ntCoent-Length: 111824 Content-Type: text/html; charset=utf-8 Vary: X-SL-Host Expires: Sun, 26 Dec 2010 14:00:27 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sun, 26 Dec 2010 14:00:27 GMT Connection: close Connection: Transfer-Encoding Set-Cookie: YAMVT=BQcDAAAAAwQDAAAAAgiAAAAACVJFRENBVFMwMQiAAAAAC0NIQURXSUNLUzAxAAAACHZhcmlhbnRzBAMAAAACCgoxMjI3Mjc0MjAwAAAACVJFRENBVFMwMQoKMTI0MDAzMDgwMAAAAAtDSEFEV0lDS1MwMQAAAAV0ZXN0cwoJNjAwMDIyMzY4AAAAB3VzZXJfaWQ%3D; path=/1; expires=Wed, 21-Dec-2011 14:00:27 GMT Set-Cookie: slx_session=13b9625e970ee162f696fa1bd5d9cd93395c42f8; path=/ Content-Length: 111824
<!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" >
The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /1/4/index1.html HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Cneonction: close Server: X-Powered-By: ASP.NET ntCoent-Length: 122951 Content-Type: text/html; charset=utf-8 Vary: X-SL-Host Expires: Sun, 26 Dec 2010 14:00:28 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sun, 26 Dec 2010 14:00:28 GMT Connection: close Connection: Transfer-Encoding Set-Cookie: YAMVT=BQcDAAAAAwQDAAAAAgiBAAAACVJFRENBVFMwMQiAAAAAC0NIQURXSUNLUzAxAAAACHZhcmlhbnRzBAMAAAACCgoxMjI3Mjc0MjAwAAAACVJFRENBVFMwMQoKMTI0MDAzMDgwMAAAAAtDSEFEV0lDS1MwMQAAAAV0ZXN0cwoJMTgzMzkzNjM3AAAAB3VzZXJfaWQ%3D; path=/1; expires=Wed, 21-Dec-2011 14:00:27 GMT Set-Cookie: slx_session=187ff735445ec2b722dabf3df8c58e288c4807d9; path=/ Content-Length: 122951
<!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" >
The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /1/4/indexb1.html HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Cneonction: close Server: X-Powered-By: ASP.NET ntCoent-Length: 119498 Content-Type: text/html; charset=utf-8 Vary: X-SL-Host Expires: Sun, 26 Dec 2010 14:00:29 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sun, 26 Dec 2010 14:00:29 GMT Connection: close Connection: Transfer-Encoding Set-Cookie: YAMVT=BQcDAAAAAwQDAAAAAgiBAAAACVJFRENBVFMwMQiAAAAAC0NIQURXSUNLUzAxAAAACHZhcmlhbnRzBAMAAAACCgoxMjI3Mjc0MjAwAAAACVJFRENBVFMwMQoKMTI0MDAzMDgwMAAAAAtDSEFEV0lDS1MwMQAAAAV0ZXN0cwoKMTY0NjMxMzY4NgAAAAd1c2VyX2lk; path=/1; expires=Wed, 21-Dec-2011 14:00:28 GMT Set-Cookie: slx_session=cf606a4f50ccd8aba72620bd67ca3b8c3129745f; path=/ Content-Length: 119498
<!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" >
The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /1/4/indexc1.html HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Cneonction: close Server: X-Powered-By: ASP.NET ntCoent-Length: 123470 Content-Type: text/html; charset=utf-8 Vary: X-SL-Host Expires: Sun, 26 Dec 2010 14:00:31 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sun, 26 Dec 2010 14:00:31 GMT Connection: close Connection: Transfer-Encoding Set-Cookie: YAMVT=BQcDAAAAAwQDAAAAAgiBAAAACVJFRENBVFMwMQiAAAAAC0NIQURXSUNLUzAxAAAACHZhcmlhbnRzBAMAAAACCgoxMjI3Mjc0MjAwAAAACVJFRENBVFMwMQoKMTI0MDAzMDgwMAAAAAtDSEFEV0lDS1MwMQAAAAV0ZXN0cwoKMTIxMjI5MzY4MwAAAAd1c2VyX2lk; path=/1; expires=Wed, 21-Dec-2011 14:00:31 GMT Set-Cookie: slx_session=8f13d5a475dd75e563aded062323b596f4434648; path=/ Content-Length: 123470
<!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" >
The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /1/4/indexd1.html HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Cneonction: close Server: X-Powered-By: ASP.NET ntCoent-Length: 117456 Content-Type: text/html; charset=utf-8 Vary: X-SL-Host Expires: Sun, 26 Dec 2010 14:00:38 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sun, 26 Dec 2010 14:00:38 GMT Connection: close Connection: Transfer-Encoding Set-Cookie: YAMVT=BQcDAAAAAwQDAAAAAgiBAAAACVJFRENBVFMwMQiAAAAAC0NIQURXSUNLUzAxAAAACHZhcmlhbnRzBAMAAAACCgoxMjI3Mjc0MjAwAAAACVJFRENBVFMwMQoKMTI0MDAzMDgwMAAAAAtDSEFEV0lDS1MwMQAAAAV0ZXN0cwoJMzIxMDA2MDUzAAAAB3VzZXJfaWQ%3D; path=/1; expires=Wed, 21-Dec-2011 14:00:37 GMT Set-Cookie: slx_session=4cc83fb8694efef84fcc02a16338ad3992967fbd; path=/ Content-Length: 117456
<!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" >
The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /1/5/index1.html HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Cneonction: close Server: X-Powered-By: ASP.NET ntCoent-Length: 117280 Content-Type: text/html; charset=utf-8 Vary: X-SL-Host Expires: Sun, 26 Dec 2010 14:01:02 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sun, 26 Dec 2010 14:01:02 GMT Connection: close Connection: Transfer-Encoding Set-Cookie: YAMVT=BQcDAAAAAwQDAAAAAgiAAAAACVJFRENBVFMwMQiBAAAAC0NIQURXSUNLUzAxAAAACHZhcmlhbnRzBAMAAAACCgoxMjI3Mjc0MjAwAAAACVJFRENBVFMwMQoKMTI0MDAzMDgwMAAAAAtDSEFEV0lDS1MwMQAAAAV0ZXN0cwoKMTE1MDA5NDU4NgAAAAd1c2VyX2lk; path=/1; expires=Wed, 21-Dec-2011 14:01:01 GMT Set-Cookie: slx_session=a51f8fc18c1835abc042e0a2d9905ef3ca6f1310; path=/ Content-Length: 117280
<!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" >
The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /1/5/indexb1.html HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Cneonction: close Server: X-Powered-By: ASP.NET ntCoent-Length: 130713 Content-Type: text/html; charset=utf-8 Vary: X-SL-Host Expires: Sun, 26 Dec 2010 14:01:28 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sun, 26 Dec 2010 14:01:28 GMT Connection: close Connection: Transfer-Encoding Set-Cookie: YAMVT=BQcDAAAAAwQDAAAAAgiBAAAACVJFRENBVFMwMQiBAAAAC0NIQURXSUNLUzAxAAAACHZhcmlhbnRzBAMAAAACCgoxMjI3Mjc0MjAwAAAACVJFRENBVFMwMQoKMTI0MDAzMDgwMAAAAAtDSEFEV0lDS1MwMQAAAAV0ZXN0cwoKMTY5MDY0MjA4NQAAAAd1c2VyX2lk; path=/1; expires=Wed, 21-Dec-2011 14:01:28 GMT Set-Cookie: slx_session=427818a6597244a5a5debe50cdfac7004430ed64; path=/ Content-Length: 130713
<!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" >
The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /1/5/indexc1.html HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Cneonction: close Server: X-Powered-By: ASP.NET ntCoent-Length: 136428 Content-Type: text/html; charset=utf-8 Vary: X-SL-Host Expires: Sun, 26 Dec 2010 14:01:28 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sun, 26 Dec 2010 14:01:28 GMT Connection: close Connection: Transfer-Encoding Set-Cookie: YAMVT=BQcDAAAAAwQDAAAAAgiBAAAACVJFRENBVFMwMQiAAAAAC0NIQURXSUNLUzAxAAAACHZhcmlhbnRzBAMAAAACCgoxMjI3Mjc0MjAwAAAACVJFRENBVFMwMQoKMTI0MDAzMDgwMAAAAAtDSEFEV0lDS1MwMQAAAAV0ZXN0cwoKMTMzNjAxODg1OQAAAAd1c2VyX2lk; path=/1; expires=Wed, 21-Dec-2011 14:01:27 GMT Set-Cookie: slx_session=8dded220483105610fb67bf1bf5e4ee644e49145; path=/ Content-Length: 136428
<!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" >
The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /1/5/indexd1.html HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Cneonction: close Server: X-Powered-By: ASP.NET ntCoent-Length: 119792 Content-Type: text/html; charset=utf-8 Vary: X-SL-Host Expires: Sun, 26 Dec 2010 14:01:39 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sun, 26 Dec 2010 14:01:39 GMT Connection: close Connection: Transfer-Encoding Set-Cookie: YAMVT=BQcDAAAAAwQDAAAAAgiAAAAACVJFRENBVFMwMQiBAAAAC0NIQURXSUNLUzAxAAAACHZhcmlhbnRzBAMAAAACCgoxMjI3Mjc0MjAwAAAACVJFRENBVFMwMQoKMTI0MDAzMDgwMAAAAAtDSEFEV0lDS1MwMQAAAAV0ZXN0cwoJODk2Mjk4MTk4AAAAB3VzZXJfaWQ%3D; path=/1; expires=Wed, 21-Dec-2011 14:01:38 GMT Set-Cookie: slx_session=a00b0cb1524c0eb897bb4251b4b77c55e36dcbed; path=/ Content-Length: 119792
<!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" >
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 /Big-and-Tall-Activewear.aspx?DeptId=21770 HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 35068 Expires: Sun, 26 Dec 2010 13:57:22 GMT Date: Sun, 26 Dec 2010 13:57:22 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 13:57:22 GMT; path=/ Set-Cookie: Certona=customerid=; expires=Sun, 26-Dec-2010 14:07:22 GMT; path=/ Cache-Control: private
<!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" >
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 /Big-and-Tall-Best-Selling-Tees.aspx HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; Basket=Indy.Basket.BasketID=7d2d2a1a-bdb7-4590-ab15-7ea3a9c80d4c|12/26/2010 2:02:07 PM&Indy.Basket.BasketCount=1; mr_referredVisitor=1; mbox=session#1293371734894-478357#1293373986|check#true#1293372186; OM=EVAR13=Browse,Browse&NOmnitureReturnToBasket=12/26/2010 2:02:10 PM; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; vendor.Basket.BasketCount=1; Certona=customerid=; Mobile=mobi_stop=true; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=92236#1*22153,201641#1*; __utmc=18223651; LastViewedProducts=92236#1*22153,201641#1*; __utmb=18223651.8.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 404 Not Found Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 RedirectUrl: /Big-and-Tall-Best-Selling-Tees.aspx Content-Type: text/html; charset=utf-8 Content-Length: 23808 Expires: Sun, 26 Dec 2010 14:23:15 GMT Date: Sun, 26 Dec 2010 14:23:15 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 14:23:15 GMT; path=/ Cache-Control: private
<!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" >
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 /Big-and-Tall-Casual-Jackets.aspx HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; Basket=Indy.Basket.BasketID=7d2d2a1a-bdb7-4590-ab15-7ea3a9c80d4c|12/26/2010 2:02:07 PM&Indy.Basket.BasketCount=1; mr_referredVisitor=1; mbox=session#1293371734894-478357#1293373986|check#true#1293372186; OM=EVAR13=Browse,Browse&NOmnitureReturnToBasket=12/26/2010 2:02:10 PM; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; vendor.Basket.BasketCount=1; Certona=customerid=; Mobile=mobi_stop=true; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=92236#1*22153,201641#1*; __utmc=18223651; LastViewedProducts=92236#1*22153,201641#1*; __utmb=18223651.8.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 404 Not Found Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 RedirectUrl: /Big-and-Tall-Casual-Jackets.aspx Content-Type: text/html; charset=utf-8 Content-Length: 23802 Expires: Sun, 26 Dec 2010 14:22:58 GMT Date: Sun, 26 Dec 2010 14:22:58 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 14:22:58 GMT; path=/ Cache-Control: private
<!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" >
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 /Big-and-Tall-Casual-Pants.aspx?DeptId=10721&Page=1&12PerPage=true HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 141757 Expires: Sun, 26 Dec 2010 13:59:19 GMT Date: Sun, 26 Dec 2010 13:59:19 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 13:59:19 GMT; path=/ Set-Cookie: Certona=customerid=; expires=Sun, 26-Dec-2010 14:09:19 GMT; path=/ Cache-Control: private
<!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" >
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 /Big-and-Tall-Casual-Shirts.aspx?DeptId=10707&Page=1&12PerPage=true HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 213526 Expires: Sun, 26 Dec 2010 13:59:07 GMT Date: Sun, 26 Dec 2010 13:59:07 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 13:59:07 GMT; path=/ Set-Cookie: Certona=customerid=; expires=Sun, 26-Dec-2010 14:09:07 GMT; path=/ Cache-Control: private
<!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" >
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 /Big-and-Tall-Clearance.aspx?DeptId=10963 HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 46083 Expires: Sun, 26 Dec 2010 13:58:14 GMT Date: Sun, 26 Dec 2010 13:58:14 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 13:58:14 GMT; path=/ Set-Cookie: Certona=customerid=; expires=Sun, 26-Dec-2010 14:08:14 GMT; path=/ Cache-Control: private
<!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" >
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 /Big-and-Tall-Clothing.aspx?DeptId=10706 HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 52825 Expires: Sun, 26 Dec 2010 13:57:12 GMT Date: Sun, 26 Dec 2010 13:57:12 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 13:57:12 GMT; path=/ Set-Cookie: Certona=customerid=; expires=Sun, 26-Dec-2010 14:07:12 GMT; path=/ Cache-Control: private
<!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" >
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 /Big-and-Tall-Dress-Pants.aspx?DeptId=10740&Page=1&12PerPage=true HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 111863 Expires: Sun, 26 Dec 2010 13:59:23 GMT Date: Sun, 26 Dec 2010 13:59:23 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 13:59:23 GMT; path=/ Set-Cookie: Certona=customerid=; expires=Sun, 26-Dec-2010 14:09:23 GMT; path=/ Cache-Control: private
<!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" >
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 /Big-and-Tall-Dress-Shirts.aspx?DeptId=10714&Page=1&12PerPage=true HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 124972 Expires: Sun, 26 Dec 2010 13:59:16 GMT Date: Sun, 26 Dec 2010 13:59:16 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 13:59:15 GMT; path=/ Set-Cookie: Certona=customerid=; expires=Sun, 26-Dec-2010 14:09:15 GMT; path=/ Cache-Control: private
<!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" >
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 /Big-and-Tall-Holiday-Gift-Store.aspx?nop=10000&DeptId=22022 HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 50240 Expires: Sun, 26 Dec 2010 13:57:04 GMT Date: Sun, 26 Dec 2010 13:57:04 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 13:57:04 GMT; path=/ Set-Cookie: Certona=customerid=; expires=Sun, 26-Dec-2010 14:07:04 GMT; path=/ Cache-Control: private
<!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" >
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 /Big-and-Tall-Holiday-Hits.aspx HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; Basket=Indy.Basket.BasketID=7d2d2a1a-bdb7-4590-ab15-7ea3a9c80d4c|12/26/2010 2:02:07 PM&Indy.Basket.BasketCount=1; mr_referredVisitor=1; mbox=session#1293371734894-478357#1293373986|check#true#1293372186; OM=EVAR13=Browse,Browse&NOmnitureReturnToBasket=12/26/2010 2:02:10 PM; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; vendor.Basket.BasketCount=1; Certona=customerid=; Mobile=mobi_stop=true; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=92236#1*22153,201641#1*; __utmc=18223651; LastViewedProducts=92236#1*22153,201641#1*; __utmb=18223651.8.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 404 Not Found Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 RedirectUrl: /Big-and-Tall-Holiday-Hits.aspx Content-Type: text/html; charset=utf-8 Content-Length: 23798 Expires: Sun, 26 Dec 2010 14:23:15 GMT Date: Sun, 26 Dec 2010 14:23:15 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 14:23:15 GMT; path=/ Cache-Control: private
<!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" >
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 /Big-and-Tall-Hooded-Outerwear.aspx HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; Basket=Indy.Basket.BasketID=7d2d2a1a-bdb7-4590-ab15-7ea3a9c80d4c|12/26/2010 2:02:07 PM&Indy.Basket.BasketCount=1; mr_referredVisitor=1; mbox=session#1293371734894-478357#1293373986|check#true#1293372186; OM=EVAR13=Browse,Browse&NOmnitureReturnToBasket=12/26/2010 2:02:10 PM; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; vendor.Basket.BasketCount=1; Certona=customerid=; Mobile=mobi_stop=true; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=92236#1*22153,201641#1*; __utmc=18223651; LastViewedProducts=92236#1*22153,201641#1*; __utmb=18223651.8.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 404 Not Found Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 RedirectUrl: /Big-and-Tall-Hooded-Outerwear.aspx Content-Type: text/html; charset=utf-8 Content-Length: 23806 Expires: Sun, 26 Dec 2010 14:23:12 GMT Date: Sun, 26 Dec 2010 14:23:12 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 14:23:12 GMT; path=/ Cache-Control: private
<!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" >
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 /Big-and-Tall-Hunting-and-Workwear.aspx?DeptId=18146&Page=1&12PerPage=true HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 124970 Expires: Sun, 26 Dec 2010 13:59:47 GMT Date: Sun, 26 Dec 2010 13:59:47 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 13:59:47 GMT; path=/ Set-Cookie: Certona=customerid=; expires=Sun, 26-Dec-2010 14:09:47 GMT; path=/ Cache-Control: private
<!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" >
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 /Big-and-Tall-Jeans.aspx?DeptId=10729&Page=1&12PerPage=true HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 174430 Expires: Sun, 26 Dec 2010 13:59:21 GMT Date: Sun, 26 Dec 2010 13:59:21 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 13:59:21 GMT; path=/ Set-Cookie: Certona=customerid=; expires=Sun, 26-Dec-2010 14:09:21 GMT; path=/ Cache-Control: private
<!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" >
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 /Big-and-Tall-Leather.aspx HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; Basket=Indy.Basket.BasketID=7d2d2a1a-bdb7-4590-ab15-7ea3a9c80d4c|12/26/2010 2:02:07 PM&Indy.Basket.BasketCount=1; mr_referredVisitor=1; mbox=session#1293371734894-478357#1293373986|check#true#1293372186; OM=EVAR13=Browse,Browse&NOmnitureReturnToBasket=12/26/2010 2:02:10 PM; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; vendor.Basket.BasketCount=1; Certona=customerid=; Mobile=mobi_stop=true; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=92236#1*22153,201641#1*; __utmc=18223651; LastViewedProducts=92236#1*22153,201641#1*; __utmb=18223651.8.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 404 Not Found Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 RedirectUrl: /Big-and-Tall-Leather.aspx Content-Type: text/html; charset=utf-8 Content-Length: 23788 Expires: Sun, 26 Dec 2010 14:23:11 GMT Date: Sun, 26 Dec 2010 14:23:11 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 14:23:11 GMT; path=/ Cache-Control: private
<!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" >
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 /Big-and-Tall-Licensed-Sports-Apparel.aspx?DeptId=10779&Page=1&12PerPage=true HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 164484 Expires: Sun, 26 Dec 2010 13:59:44 GMT Date: Sun, 26 Dec 2010 13:59:44 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 13:59:44 GMT; path=/ Set-Cookie: Certona=customerid=; expires=Sun, 26-Dec-2010 14:09:44 GMT; path=/ Cache-Control: private
<!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" >
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 /Big-and-Tall-Outerwear.aspx?DeptId=21912 HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 36283 Expires: Sun, 26 Dec 2010 13:57:16 GMT Date: Sun, 26 Dec 2010 13:57:16 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 13:57:16 GMT; path=/ Set-Cookie: Certona=customerid=; expires=Sun, 26-Dec-2010 14:07:16 GMT; path=/ Cache-Control: private
<!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" >
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 /Big-and-Tall-Parkas.aspx HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; Basket=Indy.Basket.BasketID=7d2d2a1a-bdb7-4590-ab15-7ea3a9c80d4c|12/26/2010 2:02:07 PM&Indy.Basket.BasketCount=1; mr_referredVisitor=1; mbox=session#1293371734894-478357#1293373986|check#true#1293372186; OM=EVAR13=Browse,Browse&NOmnitureReturnToBasket=12/26/2010 2:02:10 PM; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; vendor.Basket.BasketCount=1; Certona=customerid=; Mobile=mobi_stop=true; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=92236#1*22153,201641#1*; __utmc=18223651; LastViewedProducts=92236#1*22153,201641#1*; __utmb=18223651.8.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 404 Not Found Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 RedirectUrl: /Big-and-Tall-Parkas.aspx Content-Type: text/html; charset=utf-8 Content-Length: 23786 Expires: Sun, 26 Dec 2010 14:22:57 GMT Date: Sun, 26 Dec 2010 14:22:57 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 14:22:57 GMT; path=/ Cache-Control: private
<!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" >
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 /Big-and-Tall-Plus-Size-Living.aspx?DeptId=10828 HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 67299 Expires: Sun, 26 Dec 2010 13:56:49 GMT Date: Sun, 26 Dec 2010 13:56:49 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 13:56:49 GMT; path=/ Set-Cookie: Certona=customerid=; expires=Sun, 26-Dec-2010 14:06:49 GMT; path=/ Cache-Control: private
<!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" >
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 /Big-and-Tall-Rainwear.aspx HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; Basket=Indy.Basket.BasketID=7d2d2a1a-bdb7-4590-ab15-7ea3a9c80d4c|12/26/2010 2:02:07 PM&Indy.Basket.BasketCount=1; mr_referredVisitor=1; mbox=session#1293371734894-478357#1293373986|check#true#1293372186; OM=EVAR13=Browse,Browse&NOmnitureReturnToBasket=12/26/2010 2:02:10 PM; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; vendor.Basket.BasketCount=1; Certona=customerid=; Mobile=mobi_stop=true; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=92236#1*22153,201641#1*; __utmc=18223651; LastViewedProducts=92236#1*22153,201641#1*; __utmb=18223651.8.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 404 Not Found Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 RedirectUrl: /Big-and-Tall-Rainwear.aspx Content-Type: text/html; charset=utf-8 Content-Length: 23790 Expires: Sun, 26 Dec 2010 14:23:11 GMT Date: Sun, 26 Dec 2010 14:23:11 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 14:23:11 GMT; path=/ Cache-Control: private
<!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" >
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 /Big-and-Tall-Shoes-and-Accessories.aspx?DeptId=10837 HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 36966 Expires: Sun, 26 Dec 2010 13:57:39 GMT Date: Sun, 26 Dec 2010 13:57:39 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 13:57:39 GMT; path=/ Set-Cookie: Certona=customerid=; expires=Sun, 26-Dec-2010 14:07:39 GMT; path=/ Cache-Control: private
<!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" >
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 /Big-and-Tall-Shoes.aspx?DeptId=10838&Page=1&12PerPage=true HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 197547 Expires: Sun, 26 Dec 2010 13:58:54 GMT Date: Sun, 26 Dec 2010 13:58:54 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 13:58:54 GMT; path=/ Set-Cookie: Certona=customerid=; expires=Sun, 26-Dec-2010 14:08:54 GMT; path=/ Cache-Control: private
<!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" >
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 /Big-and-Tall-Shorts-and-Swim.aspx?DeptId=10763&Page=1&12PerPage=true HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 111624 Expires: Sun, 26 Dec 2010 13:59:42 GMT Date: Sun, 26 Dec 2010 13:59:42 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 13:59:42 GMT; path=/ Set-Cookie: Certona=customerid=; expires=Sun, 26-Dec-2010 14:09:42 GMT; path=/ Cache-Control: private
<!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" >
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 /Big-and-Tall-Sleepwear.aspx?DeptId=15655&Page=1&12PerPage=true HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 124239 Expires: Sun, 26 Dec 2010 13:59:00 GMT Date: Sun, 26 Dec 2010 13:59:00 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 13:59:00 GMT; path=/ Set-Cookie: Certona=customerid=; expires=Sun, 26-Dec-2010 14:09:00 GMT; path=/ Cache-Control: private
<!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" >
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 /Big-and-Tall-Sport-Coats.aspx?DeptId=10747&Page=1&12PerPage=true HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 90195 Expires: Sun, 26 Dec 2010 13:59:37 GMT Date: Sun, 26 Dec 2010 13:59:37 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 13:59:37 GMT; path=/ Set-Cookie: Certona=customerid=; expires=Sun, 26-Dec-2010 14:09:37 GMT; path=/ Cache-Control: private
<!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" >
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 /Big-and-Tall-Spring-Sneak-Preview.aspx HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; Basket=Indy.Basket.BasketID=7d2d2a1a-bdb7-4590-ab15-7ea3a9c80d4c|12/26/2010 2:02:07 PM&Indy.Basket.BasketCount=1; mr_referredVisitor=1; mbox=session#1293371734894-478357#1293373986|check#true#1293372186; OM=EVAR13=Browse,Browse&NOmnitureReturnToBasket=12/26/2010 2:02:10 PM; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; vendor.Basket.BasketCount=1; Certona=customerid=; Mobile=mobi_stop=true; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=92236#1*22153,201641#1*; __utmc=18223651; LastViewedProducts=92236#1*22153,201641#1*; __utmb=18223651.8.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 404 Not Found Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 RedirectUrl: /Big-and-Tall-Spring-Sneak-Preview.aspx Content-Type: text/html; charset=utf-8 Content-Length: 23814 Expires: Sun, 26 Dec 2010 14:23:14 GMT Date: Sun, 26 Dec 2010 14:23:14 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 14:23:14 GMT; path=/ Cache-Control: private
<!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" >
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 /Big-and-Tall-Sweatshirts.aspx?DeptId=10815&Page=1&12PerPage=true HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 105297 Expires: Sun, 26 Dec 2010 13:59:05 GMT Date: Sun, 26 Dec 2010 13:59:05 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 13:59:05 GMT; path=/ Set-Cookie: Certona=customerid=; expires=Sun, 26-Dec-2010 14:09:05 GMT; path=/ Cache-Control: private
<!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" >
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 /Big-and-Tall-T-Shirts.aspx?DeptId=10750&Page=1&12PerPage=true HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 169337 Expires: Sun, 26 Dec 2010 13:59:39 GMT Date: Sun, 26 Dec 2010 13:59:39 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 13:59:39 GMT; path=/ Set-Cookie: Certona=customerid=; expires=Sun, 26-Dec-2010 14:09:39 GMT; path=/ Cache-Control: private
<!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" >
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 /Big-and-Tall-The-Sportsmans-Guide-Collection.aspx HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; Basket=Indy.Basket.BasketID=7d2d2a1a-bdb7-4590-ab15-7ea3a9c80d4c|12/26/2010 2:02:07 PM&Indy.Basket.BasketCount=1; mr_referredVisitor=1; mbox=session#1293371734894-478357#1293373986|check#true#1293372186; OM=EVAR13=Browse,Browse&NOmnitureReturnToBasket=12/26/2010 2:02:10 PM; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; vendor.Basket.BasketCount=1; Certona=customerid=; Mobile=mobi_stop=true; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=92236#1*22153,201641#1*; __utmc=18223651; LastViewedProducts=92236#1*22153,201641#1*; __utmb=18223651.8.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 404 Not Found Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 RedirectUrl: /Big-and-Tall-The-Sportsmans-Guide-Collection.aspx Content-Type: text/html; charset=utf-8 Content-Length: 23836 Expires: Sun, 26 Dec 2010 14:23:11 GMT Date: Sun, 26 Dec 2010 14:23:11 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 14:23:11 GMT; path=/ Cache-Control: private
<!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" >
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 /Big-and-Tall-Top-Sellers.aspx?DeptId=19771 HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 214571 Expires: Sun, 26 Dec 2010 13:57:10 GMT Date: Sun, 26 Dec 2010 13:57:10 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 13:57:10 GMT; path=/ Set-Cookie: Certona=customerid=; expires=Sun, 26-Dec-2010 14:07:10 GMT; path=/ Cache-Control: private
<!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" >
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 /Big-and-Tall-Underwear-and-Sleepwear.aspx?DeptId=10895 HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 33812 Expires: Sun, 26 Dec 2010 13:57:45 GMT Date: Sun, 26 Dec 2010 13:57:45 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 13:57:45 GMT; path=/ Set-Cookie: Certona=customerid=; expires=Sun, 26-Dec-2010 14:07:45 GMT; path=/ Cache-Control: private
<!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" >
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 /Big-and-Tall-Underwear.aspx?DeptId=10896&Page=1&12PerPage=true HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 169948 Expires: Sun, 26 Dec 2010 13:58:56 GMT Date: Sun, 26 Dec 2010 13:58:56 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 13:58:56 GMT; path=/ Set-Cookie: Certona=customerid=; expires=Sun, 26-Dec-2010 14:08:56 GMT; path=/ Cache-Control: private
<!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" >
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 /Big-and-Tall-Wool-Coats.aspx HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; Basket=Indy.Basket.BasketID=7d2d2a1a-bdb7-4590-ab15-7ea3a9c80d4c|12/26/2010 2:02:07 PM&Indy.Basket.BasketCount=1; mr_referredVisitor=1; mbox=session#1293371734894-478357#1293373986|check#true#1293372186; OM=EVAR13=Browse,Browse&NOmnitureReturnToBasket=12/26/2010 2:02:10 PM; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; vendor.Basket.BasketCount=1; Certona=customerid=; Mobile=mobi_stop=true; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=92236#1*22153,201641#1*; __utmc=18223651; LastViewedProducts=92236#1*22153,201641#1*; __utmb=18223651.8.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 404 Not Found Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 RedirectUrl: /Big-and-Tall-Wool-Coats.aspx Content-Type: text/html; charset=utf-8 Content-Length: 23794 Expires: Sun, 26 Dec 2010 14:22:59 GMT Date: Sun, 26 Dec 2010 14:22:59 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 14:22:59 GMT; path=/ Cache-Control: private
<!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" >
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 /Browse_Catalog/OnlineCatalog.aspx HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 31271 Expires: Sun, 26 Dec 2010 13:58:47 GMT Date: Sun, 26 Dec 2010 13:58:47 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 13:58:47 GMT; path=/ Cache-Control: private
<!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" >
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 /Catalog/CatalogQuickOrder.aspx HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 26909 Expires: Sun, 26 Dec 2010 13:56:59 GMT Date: Sun, 26 Dec 2010 13:56:59 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 13:56:59 GMT; path=/ Set-Cookie: Certona=customerid=; expires=Sun, 26-Dec-2010 14:06:59 GMT; path=/ Cache-Control: private
<!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" >
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 /Catalog/email_cat_main_notlggdin.aspx HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 53312 Expires: Sun, 26 Dec 2010 13:56:52 GMT Date: Sun, 26 Dec 2010 13:56:52 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 13:56:52 GMT; path=/ Cache-Control: private
<!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" >
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 /Catalog/rdcts_brnd_main_no_lgin.aspx HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 63917 Expires: Sun, 26 Dec 2010 13:56:58 GMT Date: Sun, 26 Dec 2010 13:56:58 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; path=/ Set-Cookie: Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 13:56:58 GMT; path=/ Cache-Control: private
<!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" >
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.
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.
<html><head><title>Object moved</title></head><body> <h2>Object moved to <a href="%2fCheckout%2fShippingEnterAddress.aspx">here</a>.</h2> </body></html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML ...[SNIP]...
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /CustomerReviews/ReviewPage.aspx?pageId=201641&ProducttypeId=1&DeptId=10755&MPID= HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 25650 Expires: Sun, 26 Dec 2010 14:01:54 GMT Date: Sun, 26 Dec 2010 14:01:54 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 14:01:54 GMT; path=/ Cache-Control: private
<!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" >
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 /Department.aspx?deptId=18631 HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 38950 Expires: Sun, 26 Dec 2010 13:58:44 GMT Date: Sun, 26 Dec 2010 13:58:44 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 13:58:44 GMT; path=/ Set-Cookie: Certona=customerid=; expires=Sun, 26-Dec-2010 14:08:44 GMT; path=/ Cache-Control: private
<!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" >
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 /Help/Help.aspx HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 30422 Expires: Sun, 26 Dec 2010 13:56:37 GMT Date: Sun, 26 Dec 2010 13:56:37 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 13:56:37 GMT; path=/ Cache-Control: private
<!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" >
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 /Help/Help_AboutUs.aspx HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 25540 Expires: Sun, 26 Dec 2010 13:56:38 GMT Date: Sun, 26 Dec 2010 13:56:38 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 13:56:38 GMT; path=/ Cache-Control: private
<!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" >
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 /Help/Help_ReturnsExchanges.aspx HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 33795 Expires: Sun, 26 Dec 2010 13:56:41 GMT Date: Sun, 26 Dec 2010 13:56:41 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 13:56:41 GMT; path=/ Cache-Control: private
<!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" >
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 /Help/Help_ShippingHandling.aspx HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 33249 Expires: Sun, 26 Dec 2010 13:56:48 GMT Date: Sun, 26 Dec 2010 13:56:48 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 13:56:48 GMT; path=/ Cache-Control: private
<!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" >
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 /Help/Help_billingpayment.aspx HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 44792 Expires: Sun, 26 Dec 2010 13:56:47 GMT Date: Sun, 26 Dec 2010 13:56:47 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 13:56:47 GMT; path=/ Cache-Control: private
<!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" >
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 /Help/PrivacySecurity.aspx HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 76784 Expires: Sun, 26 Dec 2010 13:56:49 GMT Date: Sun, 26 Dec 2010 13:56:49 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 13:56:49 GMT; path=/ Cache-Control: private
<!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" >
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 /Product.aspx?PfId=201641&ProductTypeId=1&affiliate_id=017&affiliate_location_id=06&mr%3areferralID=d914c2d5-10f7-11e0-af68-001b2166becc HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /Product/ProductAltZoomPopUp.aspx?PfId=201641&&DeptId=-2147483648&&ProductTypeId=1&za=3 HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 17826 Expires: Sun, 26 Dec 2010 13:58:27 GMT Date: Sun, 26 Dec 2010 13:58:27 GMT Connection: close Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 13:58:27 GMT; path=/ Cache-Control: private
<html xmlns="http://www.w3.org/1999/xhtml" > <head id="ctl00_Head1"><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /><title> Big and Tall Clothes for Men at KingSize ...[SNIP]...
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /Product/ProductFriendPopUp.aspx?PfId=201641&ProductTypeId=1&affiliate_id=017&affiliate_location_id=06&mr%3areferralID=d914c2d5-10f7-11e0-af68-001b2166becc&za=3 HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 16899 Expires: Sun, 26 Dec 2010 13:58:30 GMT Date: Sun, 26 Dec 2010 13:58:30 GMT Connection: close Set-Cookie: User=Indy.FirstName=; path=/ Set-Cookie: Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 13:58:30 GMT; path=/ Cache-Control: private
<!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 id="ctl00_Head1"> ...[SNIP]...
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /ProductList/PreviouslyViewedProducts.aspx HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 24330 Expires: Sun, 26 Dec 2010 13:58:36 GMT Date: Sun, 26 Dec 2010 13:58:36 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 13:58:36 GMT; path=/ Set-Cookie: Certona=customerid=; expires=Sun, 26-Dec-2010 14:08:36 GMT; path=/ Cache-Control: private
<!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" >
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 /Search/NoResult.aspx HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; Basket=Indy.Basket.BasketID=7d2d2a1a-bdb7-4590-ab15-7ea3a9c80d4c|12/26/2010 2:02:07 PM&Indy.Basket.BasketCount=1; mr_referredVisitor=1; mbox=session#1293371734894-478357#1293373986|check#true#1293372186; OM=EVAR13=Browse,Browse&NOmnitureReturnToBasket=12/26/2010 2:02:10 PM; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; vendor.Basket.BasketCount=1; Certona=customerid=; Mobile=mobi_stop=true; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=92236#1*22153,201641#1*; __utmc=18223651; LastViewedProducts=92236#1*22153,201641#1*; __utmb=18223651.8.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 24986 Expires: Sun, 26 Dec 2010 14:23:14 GMT Date: Sun, 26 Dec 2010 14:23:14 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 14:23:14 GMT; path=/ Set-Cookie: Certona=customerid=; expires=Sun, 26-Dec-2010 14:33:14 GMT; path=/ Cache-Control: private
<!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" >
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 /Search/SearchResults.aspx HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; Basket=Indy.Basket.BasketID=7d2d2a1a-bdb7-4590-ab15-7ea3a9c80d4c|12/26/2010 2:02:07 PM&Indy.Basket.BasketCount=1; mr_referredVisitor=1; mbox=session#1293371734894-478357#1293373986|check#true#1293372186; OM=EVAR13=Browse,Browse&NOmnitureReturnToBasket=12/26/2010 2:02:10 PM; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; vendor.Basket.BasketCount=1; Certona=customerid=; Mobile=mobi_stop=true; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=92236#1*22153,201641#1*; __utmc=18223651; LastViewedProducts=92236#1*22153,201641#1*; __utmb=18223651.8.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 164431 Expires: Sun, 26 Dec 2010 14:23:15 GMT Date: Sun, 26 Dec 2010 14:23:15 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 14:23:15 GMT; path=/ Set-Cookie: Certona=customerid=; expires=Sun, 26-Dec-2010 14:33:15 GMT; path=/ Cache-Control: private
<!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" >
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 /account/referafriend.aspx HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 302 Moved Temporarily Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Location: /account/referfriendlogin.aspx?ReturnUrl=%2faccount%2freferafriend.aspx Content-Type: text/html; charset=utf-8 Content-Length: 34623 Expires: Sun, 26 Dec 2010 13:56:39 GMT Date: Sun, 26 Dec 2010 13:56:39 GMT Connection: close Set-Cookie: User=Indy.FirstName=; path=/ Set-Cookie: Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; path=/ Set-Cookie: Mobile=mobi_stop=true; path=/ Cache-Control: private
<html><head><title>Object moved</title></head><body> <h2>Object moved to <a href="%2faccount%2freferfriendlogin.aspx%3fReturnUrl%3d%252faccount%252freferafriend.aspx">here</a>.</h2> </body></html>
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 /landing_pages/GiftCardlandingpage.aspx HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 26167 Expires: Sun, 26 Dec 2010 13:58:44 GMT Date: Sun, 26 Dec 2010 13:58:44 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 13:58:44 GMT; path=/ Cache-Control: private
<!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" >
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 /large-size/Argyle-V-Neck-Sweater.aspx HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; Basket=Indy.Basket.BasketID=7d2d2a1a-bdb7-4590-ab15-7ea3a9c80d4c|12/26/2010 2:02:07 PM&Indy.Basket.BasketCount=1; mr_referredVisitor=1; mbox=session#1293371734894-478357#1293373986|check#true#1293372186; OM=EVAR13=Browse,Browse&NOmnitureReturnToBasket=12/26/2010 2:02:10 PM; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; vendor.Basket.BasketCount=1; Certona=customerid=; Mobile=mobi_stop=true; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=92236#1*22153,201641#1*; __utmc=18223651; LastViewedProducts=92236#1*22153,201641#1*; __utmb=18223651.8.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 22639 Expires: Sun, 26 Dec 2010 14:21:59 GMT Date: Sun, 26 Dec 2010 14:21:59 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 14:21:59 GMT; path=/ Set-Cookie: Certona=customerid=; expires=Sun, 26-Dec-2010 14:31:59 GMT; path=/ Cache-Control: private
<!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" >
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 /large-size/Fleece-Zip-Up-Hoodie-Sweatshirt.aspx HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; Basket=Indy.Basket.BasketID=7d2d2a1a-bdb7-4590-ab15-7ea3a9c80d4c|12/26/2010 2:02:07 PM&Indy.Basket.BasketCount=1; mr_referredVisitor=1; mbox=session#1293371734894-478357#1293373986|check#true#1293372186; OM=EVAR13=Browse,Browse&NOmnitureReturnToBasket=12/26/2010 2:02:10 PM; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; vendor.Basket.BasketCount=1; Certona=customerid=; Mobile=mobi_stop=true; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=92236#1*22153,201641#1*; __utmc=18223651; LastViewedProducts=92236#1*22153,201641#1*; __utmb=18223651.8.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 22649 Expires: Sun, 26 Dec 2010 14:21:59 GMT Date: Sun, 26 Dec 2010 14:21:59 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 14:21:59 GMT; path=/ Set-Cookie: Certona=customerid=; expires=Sun, 26-Dec-2010 14:31:59 GMT; path=/ Cache-Control: private
<!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" >
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 /large-size/Heavyweight-Long-Sleeve-No-Pocket-T-Shirt.aspx HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; Basket=Indy.Basket.BasketID=7d2d2a1a-bdb7-4590-ab15-7ea3a9c80d4c|12/26/2010 2:02:07 PM&Indy.Basket.BasketCount=1; mr_referredVisitor=1; mbox=session#1293371734894-478357#1293373986|check#true#1293372186; OM=EVAR13=Browse,Browse&NOmnitureReturnToBasket=12/26/2010 2:02:10 PM; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; vendor.Basket.BasketCount=1; Certona=customerid=; Mobile=mobi_stop=true; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=92236#1*22153,201641#1*; __utmc=18223651; LastViewedProducts=92236#1*22153,201641#1*; __utmb=18223651.8.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 22659 Expires: Sun, 26 Dec 2010 14:21:59 GMT Date: Sun, 26 Dec 2010 14:21:59 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 14:21:59 GMT; path=/ Set-Cookie: Certona=customerid=; expires=Sun, 26-Dec-2010 14:31:59 GMT; path=/ Cache-Control: private
<!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" >
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 /large-size/Holiday-Graphic-Tee-Shirt.aspx HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; Basket=Indy.Basket.BasketID=7d2d2a1a-bdb7-4590-ab15-7ea3a9c80d4c|12/26/2010 2:02:07 PM&Indy.Basket.BasketCount=1; mr_referredVisitor=1; mbox=session#1293371734894-478357#1293373986|check#true#1293372186; OM=EVAR13=Browse,Browse&NOmnitureReturnToBasket=12/26/2010 2:02:10 PM; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; vendor.Basket.BasketCount=1; Certona=customerid=; Mobile=mobi_stop=true; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=92236#1*22153,201641#1*; __utmc=18223651; LastViewedProducts=92236#1*22153,201641#1*; __utmb=18223651.8.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 22643 Expires: Sun, 26 Dec 2010 14:21:58 GMT Date: Sun, 26 Dec 2010 14:21:58 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 14:21:58 GMT; path=/ Set-Cookie: Certona=customerid=; expires=Sun, 26-Dec-2010 14:31:58 GMT; path=/ Cache-Control: private
<!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" >
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 /large-size/Lightweight-Cotton-No-Pocket-Crewneck-T-Shirt.aspx HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; Basket=Indy.Basket.BasketID=7d2d2a1a-bdb7-4590-ab15-7ea3a9c80d4c|12/26/2010 2:02:07 PM&Indy.Basket.BasketCount=1; mr_referredVisitor=1; mbox=session#1293371734894-478357#1293373986|check#true#1293372186; OM=EVAR13=Browse,Browse&NOmnitureReturnToBasket=12/26/2010 2:02:10 PM; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; vendor.Basket.BasketCount=1; Certona=customerid=; Mobile=mobi_stop=true; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=92236#1*22153,201641#1*; __utmc=18223651; LastViewedProducts=92236#1*22153,201641#1*; __utmb=18223651.8.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 22663 Expires: Sun, 26 Dec 2010 14:21:58 GMT Date: Sun, 26 Dec 2010 14:21:58 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 14:21:58 GMT; path=/ Set-Cookie: Certona=customerid=; expires=Sun, 26-Dec-2010 14:31:58 GMT; path=/ Cache-Control: private
<!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" >
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 /large-size/Lightweight-V-Neck-T-Shirt.aspx HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; Basket=Indy.Basket.BasketID=7d2d2a1a-bdb7-4590-ab15-7ea3a9c80d4c|12/26/2010 2:02:07 PM&Indy.Basket.BasketCount=1; mr_referredVisitor=1; mbox=session#1293371734894-478357#1293373986|check#true#1293372186; OM=EVAR13=Browse,Browse&NOmnitureReturnToBasket=12/26/2010 2:02:10 PM; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; vendor.Basket.BasketCount=1; Certona=customerid=; Mobile=mobi_stop=true; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=92236#1*22153,201641#1*; __utmc=18223651; LastViewedProducts=92236#1*22153,201641#1*; __utmb=18223651.8.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 22644 Expires: Sun, 26 Dec 2010 14:21:58 GMT Date: Sun, 26 Dec 2010 14:21:58 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 14:21:58 GMT; path=/ Set-Cookie: Certona=customerid=; expires=Sun, 26-Dec-2010 14:31:58 GMT; path=/ Cache-Control: private
<!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" >
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 /large-size/Microfiber-Detachable-Hood-Parka.aspx HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; Basket=Indy.Basket.BasketID=7d2d2a1a-bdb7-4590-ab15-7ea3a9c80d4c|12/26/2010 2:02:07 PM&Indy.Basket.BasketCount=1; mr_referredVisitor=1; mbox=session#1293371734894-478357#1293373986|check#true#1293372186; OM=EVAR13=Browse,Browse&NOmnitureReturnToBasket=12/26/2010 2:02:10 PM; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; vendor.Basket.BasketCount=1; Certona=customerid=; Mobile=mobi_stop=true; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=92236#1*22153,201641#1*; __utmc=18223651; LastViewedProducts=92236#1*22153,201641#1*; __utmb=18223651.8.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 22650 Expires: Sun, 26 Dec 2010 14:22:01 GMT Date: Sun, 26 Dec 2010 14:22:01 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 14:22:01 GMT; path=/ Set-Cookie: Certona=customerid=; expires=Sun, 26-Dec-2010 14:32:01 GMT; path=/ Cache-Control: private
<!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" >
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 /large-size/Relaxed-Fit-Wrangler-Jeans.aspx HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; Basket=Indy.Basket.BasketID=7d2d2a1a-bdb7-4590-ab15-7ea3a9c80d4c|12/26/2010 2:02:07 PM&Indy.Basket.BasketCount=1; mr_referredVisitor=1; mbox=session#1293371734894-478357#1293373986|check#true#1293372186; OM=EVAR13=Browse,Browse&NOmnitureReturnToBasket=12/26/2010 2:02:10 PM; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; vendor.Basket.BasketCount=1; Certona=customerid=; Mobile=mobi_stop=true; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=92236#1*22153,201641#1*; __utmc=18223651; LastViewedProducts=92236#1*22153,201641#1*; __utmb=18223651.8.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 22644 Expires: Sun, 26 Dec 2010 14:21:59 GMT Date: Sun, 26 Dec 2010 14:21:59 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 14:21:59 GMT; path=/ Set-Cookie: Certona=customerid=; expires=Sun, 26-Dec-2010 14:31:59 GMT; path=/ Cache-Control: private
<!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" >
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 /large-size/Video-Games-Graphic-Tee-Shirt.aspx?PfId=201641&DeptId=10755&ProductTypeId=1 HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
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 /large-size/Waffle-Weave-Henley.aspx HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; Basket=Indy.Basket.BasketID=7d2d2a1a-bdb7-4590-ab15-7ea3a9c80d4c|12/26/2010 2:02:07 PM&Indy.Basket.BasketCount=1; mr_referredVisitor=1; mbox=session#1293371734894-478357#1293373986|check#true#1293372186; OM=EVAR13=Browse,Browse&NOmnitureReturnToBasket=12/26/2010 2:02:10 PM; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; vendor.Basket.BasketCount=1; Certona=customerid=; Mobile=mobi_stop=true; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=92236#1*22153,201641#1*; __utmc=18223651; LastViewedProducts=92236#1*22153,201641#1*; __utmb=18223651.8.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
Response
HTTP/1.1 200 OK Server: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Content-Type: text/html; charset=utf-8 Content-Length: 22637 Expires: Sun, 26 Dec 2010 14:22:00 GMT Date: Sun, 26 Dec 2010 14:22:00 GMT Connection: close Set-Cookie: Mobile=mobi_stop=true; path=/ Set-Cookie: User=Indy.FirstName=; expires=Sat, 26-Dec-2009 14:22:00 GMT; path=/ Set-Cookie: Certona=customerid=; expires=Sun, 26-Dec-2010 14:32:00 GMT; path=/ Cache-Control: private
<!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" >
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.
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.
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 /shopping_bag/ShoppingBagDropDown.aspx HTTP/1.1 Host: www.kingsizedirect.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: RES_SESSIONID=369920506840571; User=Indy.FirstName=; mr_domainUserTicketID=da154f9a-7bc4-fe76-23d1-83fd711182d9; __utmz=18223651.1293371736.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ResonanceSegment=1; s_sq=%5B%5BB%5D%5D; mr_referredVisitor=1; mbox=check#true#1293371795|session#1293371734894-478357#1293373595; s_cc=true; Guest=Guest.FirstName=&Guest.LastName=&Guest.PreApprovedCardType=&Guest.HasPreApprovedOffer=&Guest.PreApprovedOfferDeclined=&Guest.PreApprovedOfferAccepted=; affiliate=affiliate_id=017&affiliate_id_config_key=Performics&affiliate_location_id=06&cid=&ver=&mid=&source=&type=; mobi_stop=true; Certona=customerid=; RES_TRACKINGID=23515481501817; __utma=18223651.84096669.1293371736.1293371736.1293371736.1; vendor.LastViewedProducts=201641#1*; __utmc=18223651; LastViewedProducts=201641#1*; __utmb=18223651.1.10.1293371736; ASP.NET_SessionId=e3xxfiulc2thgwmkcd43fn45;
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.