CWE-79: Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') Report generated by XSS.CX at Fri Apr 01 09:29:27 CDT 2011.
Public Domain Vulnerability Information, Security Articles, Vulnerability Reports, GHDB, DORK Search
XSS Crawler | SQLi Crawler | HTTPi Crawler | FI Crawler
Loading
1. Cross-site scripting (reflected)
2. Session token in URL
2.1. https://www.patagonia.com/us/order/us/order_summary.jsp
2.2. https://www.patagonia.com/us/order/us/shipping.jsp
3. Cross-domain Referer leakage
4. Cross-domain script include
4.1. https://www.patagonia.com/us/order/us/order_summary.jsp
4.2. https://www.patagonia.com/us/order/us/shipping.jsp
4.3. https://www.patagonia.com/us/us/order/us/a
4.4. https://www.patagonia.com/us/user/a
4.5. https://www.patagonia.com/us/user/qas_prompt.jsp
5. Email addresses disclosed
5.1. https://www.patagonia.com/us/js/AjaxWrapperClass.js
5.2. https://www.patagonia.com/us/js/omniture/OmnitureCommon.js
6. Cacheable HTTPS response
6.1. https://www.patagonia.com/us/js/AjaxWrapperClass.js
6.2. https://www.patagonia.com/us/js/Global.js
6.3. https://www.patagonia.com/us/js/OmnitureWrapperClass.js
6.4. https://www.patagonia.com/us/js/TopNav.js
6.5. https://www.patagonia.com/us/js/liveperson/mtagconfig.js
6.6. https://www.patagonia.com/us/js/moo.fx.js
6.7. https://www.patagonia.com/us/js/omniture/OmnitureCommon.js
6.8. https://www.patagonia.com/us/js/prototype.js
6.9. https://www.patagonia.com/us/js/scriptaculous/effects.js
6.10. https://www.patagonia.com/us/js/shipping.js
6.11. https://www.patagonia.com/us/js/shipping_common.js
7. Content type incorrectly stated
7.1. https://www.patagonia.com/us/js/AjaxWrapperClass.js
7.2. https://www.patagonia.com/us/js/Global.js
7.3. https://www.patagonia.com/us/js/OmnitureWrapperClass.js
7.4. https://www.patagonia.com/us/js/TopNav.js
7.5. https://www.patagonia.com/us/js/liveperson/mtagconfig.js
7.6. https://www.patagonia.com/us/js/moo.fx.js
7.7. https://www.patagonia.com/us/js/omniture/OmnitureCommon.js
7.8. https://www.patagonia.com/us/js/prototype.js
7.9. https://www.patagonia.com/us/js/scriptaculous/effects.js
7.10. https://www.patagonia.com/us/js/shipping.js
7.11. https://www.patagonia.com/us/js/shipping_common.js
1. Cross-site scripting (reflected)
next
Summary
Severity:
High
Confidence:
Certain
Host:
https://www.patagonia.com
Path:
/us/us/order/us/order_summary.jsp
Issue detail
The value of the zo_ship_addr3 request parameter is copied into the HTML document as plain text between tags. The payload 29c3b<img%20src%3da%20onerror%3dalert(1)>8203623083b was submitted in the zo_ship_addr3 parameter. This input was echoed as 29c3b<img src=a onerror=alert(1)>8203623083b in the application's response. This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. The PoC attack demonstrated uses an event handler to introduce arbitrary JavaScript into the document. Note that a redirection occurred between the attack request and the response containing the echoed input. It is necessary to follow this redirection for the attack to succeed. When the attack is carried out via a browser, the redirection will be followed automatically.
Issue background
Reflected cross-site scripting vulnerabilities arise when data is copied from a request and echoed into the application's immediate response in an unsafe way. An attacker can use the vulnerability to construct a request which, if issued by another application user, will cause JavaScript code supplied by the attacker to execute within the user's browser in the context of that user's session with the application. The attacker-supplied code can perform a wide variety of actions, such as stealing the victim's session token or login credentials, performing arbitrary actions on the victim's behalf, and logging their keystrokes. Users can be induced to issue the attacker's crafted request in various ways. For example, the attacker can send a victim a link containing a malicious URL in an email or instant message. They can submit the link to popular web sites that allow content authoring, for example in blog comments. And they can create an innocuous looking web site which causes anyone viewing it to make arbitrary cross-domain requests to the vulnerable application (using either the GET or the POST method). The security impact of cross-site scripting vulnerabilities is dependent upon the nature of the vulnerable application, the kinds of data and functionality which it contains, and the other applications which belong to the same domain and organisation. If the application is used only to display non-sensitive public content, with no authentication or access control functionality, then a cross-site scripting flaw may be considered low risk. However, if the same application resides on a domain which can access cookies for other more security-critical applications, then the vulnerability could be used to attack those other applications, and so may be considered high risk. Similarly, if the organisation which owns the application is a likely target for phishing attacks, then the vulnerability could be leveraged to lend credibility to such attacks, by injecting Trojan functionality into the vulnerable application, and exploiting users' trust in the organisation in order to capture credentials for other applications which it owns. In many kinds of application, such as those providing online banking functionality, cross-site scripting should always be considered high risk.
Issue remediation
In most situations where user-controllable data is copied into application responses, cross-site scripting attacks can be prevented using two layers of defences:Input should be validated as strictly as possible on arrival, given the kind of content which it is expected to contain. For example, personal names should consist of alphabetical and a small range of typographical characters, and be relatively short; a year of birth should consist of exactly four numerals; email addresses should match a well-defined regular expression. Input which fails the validation should be rejected, not sanitised. User input should be HTML-encoded at any point where it is copied into application responses. All HTML metacharacters, including < > " ' and =, should be replaced with the corresponding HTML entities (< > etc). In cases where the application's functionality allows users to author content using a restricted subset of HTML tags and attributes (for example, blog comments which allow limited formatting and linking), it is necessary to parse the supplied HTML to validate that it does not use any dangerous syntax; this is a non-trivial task.
Request
POST /us/us/order/us/order_summary.jsp HTTP/1.1 Host: www.patagonia.com Connection: keep-alive Referer: https://www.patagonia.com/us/order/us/shipping.jsp?OPTION=VIRTUAL_GIFT_CARD_CHECK_SHIPPING Content-Length: 769 Cache-Control: max-age=0 Origin: https://www.patagonia.com User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Content-Type: application/x-www-form-urlencoded Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: ts=1301247084458; JSESSIONID=dbc-MJcWNeeJa4cL_w47s; b=SHOP%3A%3A1D-eGD8-6F%3APatagonia%20Men's%20Baggies%E2%84%A2%20Shorts%3A57019-0-485%3Apatagonia-mens-baggies-shorts; 47760958-VID=44502044936234; 47760958-SKEY=958751430488923974; HumanClickSiteContainerID_47760958=STANDALONE; lc=en_US%3AUS%3AWWW.PATAGONIA.COM%3A700; tr_p1=SHIPPING; s_cc=true; s_sq=patagoniav2production%3D%2526pid%253DPatagonia%25253A%252520Checkout%252520-%252520Shipping%252520Address%2526pidt%253D1%2526oid%253Dhttps%25253A//www.patagonia.com/images/structure/en_US/buttons/btn_continue_to_billing.gif%2526ot%253DIMAGE noncevalue=p8Z12ubkOc5B2QrZYsZDkVdIXBN0YoKKRSyumJe2rE4%253D&OPTION=PREADDRESSENTRY&origin=&zo_ship_first_name=%27&zo_ship_last_name=%27&zo_ship_company=&zo_ship_addr1=32+%27lk+mk&zo_ship_addr2=&zo_ship_addr3=29c3b<img%20src%3da%20onerror%3dalert(1)>8203623083b &zo_ship_city=grdeefcx&zo_ship_state=FL&zo_ship_postal_code=45345&zo_ship_country_code=USA&zosd_value_SHIP_AS_BILL-1=1&zosd_id=5565425&zo_ship_id=&zo_shipping_method_id=15&zo_ship_user_ref_id=dbc-MJcW...[SNIP]...
Response (redirected)
HTTP/1.1 200 OK Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 DAV/2 Resin/3.2.1 Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Content-Length: 21947 Expires: Sun, 27 Mar 2011 18:01:33 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sun, 27 Mar 2011 18:01:33 GMT Connection: keep-alive <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-T...[SNIP]... <br/>29c3b<img src=a onerror=alert(1)>8203623083b <br/>...[SNIP]...
2. Session token in URL
previous
next
There are 2 instances of this issue:
Issue background
Sensitive information within URLs may be logged in various locations, including the user's browser, the web server, and any forward or reverse proxy servers between the two endpoints. URLs may also be displayed on-screen, bookmarked or emailed around by users. They may be disclosed to third parties via the Referer header when any off-site links are followed. Placing session tokens into the URL increases the risk that they will be captured by an attacker.
Issue remediation
The application should use an alternative mechanism for transmitting session tokens, such as HTTP cookies or hidden fields in forms that are submitted using the POST method.
2.1. https://www.patagonia.com/us/order/us/order_summary.jsp
next
Summary
Severity:
Medium
Confidence:
Firm
Host:
https://www.patagonia.com
Path:
/us/order/us/order_summary.jsp
Issue detail
The response contains the following links that appear to contain session tokens:http://www.patagonia.com/us/product/product_focus.jsp?OPTION=PRODUCT_FOCUS_DISPLAY_HANDLER&style_color=49822-333&skuRefId=1162676&quantity=5&cartId=13092266&ws=&resultingPage=/us/order/us/order_summary.jsp?OPTION=EDITCARTORDERSUMM&cartType=CURRENT&noncevalue=p8Z12ubkOc5B2QrZYsZDkVdIXBN0YoKKRSyumJe2rE4%3D http://www.patagonia.com/us/product/product_focus.jsp?OPTION=PRODUCT_FOCUS_DISPLAY_HANDLER&style_color=57019-565&skuRefId=1199048&quantity=2&cartId=13092276&ws=&resultingPage=/us/order/us/order_summary.jsp?OPTION=EDITCARTORDERSUMM&cartType=CURRENT&noncevalue=p8Z12ubkOc5B2QrZYsZDkVdIXBN0YoKKRSyumJe2rE4%3D http://www.patagonia.com/us/product/product_focus.jsp?OPTION=PRODUCT_FOCUS_DISPLAY_HANDLER&style_color=57221-176&skuRefId=1142281&quantity=2&cartId=13092271&ws=&resultingPage=/us/order/us/order_summary.jsp?OPTION=EDITCARTORDERSUMM&cartType=CURRENT&noncevalue=p8Z12ubkOc5B2QrZYsZDkVdIXBN0YoKKRSyumJe2rE4%3D https://www.patagonia.com/us/option?OPTION=PAYPAL_ECM_LOOKUP_HANDLER&noncevalue=p8Z12ubkOc5B2QrZYsZDkVdIXBN0YoKKRSyumJe2rE4%3D https://www.patagonia.com/us/order/us/order_summary.jsp?OPTION=EDITCARTORDERSUMM&zoi_save=1&zoi_id-1=13092266&zoi_delete-1=true&prod_track=;Ultra Lightweight Endurance Anklet Socks (49822);5;75.0;;evar2=false|evar4=1D-6P&zoiid=13092266&noncevalue=p8Z12ubkOc5B2QrZYsZDkVdIXBN0YoKKRSyumJe2rE4%3D https://www.patagonia.com/us/order/us/order_summary.jsp?OPTION=EDITCARTORDERSUMM&zoi_save=1&zoi_id-1=13092276&zoi_delete-1=true&prod_track=;M\'s Baggies... Shorts (57019);2;90.0;;evar2=false|evar4=1D-6F&zoiid=13092276&noncevalue=p8Z12ubkOc5B2QrZYsZDkVdIXBN0YoKKRSyumJe2rE4%3D
Request
GET /us/order/us/order_summary.jsp HTTP/1.1 Host: www.patagonia.com Connection: keep-alive Referer: https://www.patagonia.com/us/user/qas_prompt.jsp Cache-Control: max-age=0 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: lpCloseInvite=null; ts=1301247084458; JSESSIONID=dbc-MJcWNeeJa4cL_w47s; b=SHOP%3A%3A1D-eGD8-6F%3APatagonia%20Men's%20Baggies%E2%84%A2%20Shorts%3A57019-0-485%3Apatagonia-mens-baggies-shorts; 47760958-VID=44502044936234; 47760958-SKEY=958751430488923974; HumanClickSiteContainerID_47760958=STANDALONE; lc=en_US%3AUS%3AWWW.PATAGONIA.COM%3A700; tr_p1=QAS%20PROMPT; s_cc=true; s_sq=patagoniav2production%3D%2526pid%253DPatagonia%25253A%252520Checkout%252520-%252520QAS%2526pidt%253D1%2526oid%253Djavascript%25253Adocument.forceform.submit%252528%252529%2526ot%253DA
Response
HTTP/1.1 200 OK Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 DAV/2 Resin/3.2.1 Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Content-Length: 32012 Expires: Sun, 27 Mar 2011 17:35:53 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sun, 27 Mar 2011 17:35:53 GMT Connection: keep-alive <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-T...[SNIP]... <br /><a href="http://www.patagonia.com/us/product/product_focus.jsp?OPTION=PRODUCT_FOCUS_DISPLAY_HANDLER&style_color=57019-565&skuRefId=1199048&quantity=2&cartId=13092276&ws=&resultingPage=/us/order/us/order_summary.jsp?OPTION=EDITCARTORDERSUMM&cartType=CURRENT&noncevalue=p8Z12ubkOc5B2QrZYsZDkVdIXBN0YoKKRSyumJe2rE4%3D"> Edit</a> <span>|</span><a href="/us/order/us/order_summary.jsp?OPTION=EDITCARTORDERSUMM&zoi_save=1&zoi_id-1=13092276&zoi_delete-1=true&prod_track=;M\'s Baggies... Shorts (57019);2;90.0;;evar2=false|evar4=1D-6F&zoiid=13092276&noncevalue=p8Z12ubkOc5B2QrZYsZDkVdIXBN0YoKKRSyumJe2rE4%3D"> Remove</a>...[SNIP]... <br /><a href="http://www.patagonia.com/us/product/product_focus.jsp?OPTION=PRODUCT_FOCUS_DISPLAY_HANDLER&style_color=57221-176&skuRefId=1142281&quantity=2&cartId=13092271&ws=&resultingPage=/us/order/us/order_summary.jsp?OPTION=EDITCARTORDERSUMM&cartType=CURRENT&noncevalue=p8Z12ubkOc5B2QrZYsZDkVdIXBN0YoKKRSyumJe2rE4%3D"> Edit</a>...[SNIP]... <br /><a href="http://www.patagonia.com/us/product/product_focus.jsp?OPTION=PRODUCT_FOCUS_DISPLAY_HANDLER&style_color=49822-333&skuRefId=1162676&quantity=5&cartId=13092266&ws=&resultingPage=/us/order/us/order_summary.jsp?OPTION=EDITCARTORDERSUMM&cartType=CURRENT&noncevalue=p8Z12ubkOc5B2QrZYsZDkVdIXBN0YoKKRSyumJe2rE4%3D"> Edit</a> <span>|</span><a href="/us/order/us/order_summary.jsp?OPTION=EDITCARTORDERSUMM&zoi_save=1&zoi_id-1=13092266&zoi_delete-1=true&prod_track=;Ultra Lightweight Endurance Anklet Socks (49822);5;75.0;;evar2=false|evar4=1D-6P&zoiid=13092266&noncevalue=p8Z12ubkOc5B2QrZYsZDkVdIXBN0YoKKRSyumJe2rE4%3D"> Remove</a>...[SNIP]... <div id="ezpay"><a href="/us/option?OPTION=PAYPAL_ECM_LOOKUP_HANDLER&noncevalue=p8Z12ubkOc5B2QrZYsZDkVdIXBN0YoKKRSyumJe2rE4%3D"> <img style="margin-right: 30px;" class="imgaltpay" border="0" src="https://www.paypal.com/en_US/i/btn/btn_xpressCheckout.gif" width="145" height="42" alt="Checkout with PayPal" />...[SNIP]...
2.2. https://www.patagonia.com/us/order/us/shipping.jsp
previous
next
Summary
Severity:
Medium
Confidence:
Firm
Host:
https://www.patagonia.com
Path:
/us/order/us/shipping.jsp
Issue detail
The response contains the following links that appear to contain session tokens:http://www.patagonia.com/us/product/product_focus.jsp?OPTION=PRODUCT_FOCUS_DISPLAY_HANDLER&style_color=49822-333&skuRefId=1162676&quantity=5&cartId=13092266&ws=&resultingPage=/us/order/us/shipping.jsp?OPTION=EDITCARTSTND&cartType=CURRENT&noncevalue=p8Z12ubkOc5B2QrZYsZDkVdIXBN0YoKKRSyumJe2rE4%3D http://www.patagonia.com/us/product/product_focus.jsp?OPTION=PRODUCT_FOCUS_DISPLAY_HANDLER&style_color=57019-565&skuRefId=1199048&quantity=2&cartId=13092276&ws=&resultingPage=/us/order/us/shipping.jsp?OPTION=EDITCARTSTND&cartType=CURRENT&noncevalue=p8Z12ubkOc5B2QrZYsZDkVdIXBN0YoKKRSyumJe2rE4%3D http://www.patagonia.com/us/product/product_focus.jsp?OPTION=PRODUCT_FOCUS_DISPLAY_HANDLER&style_color=57221-176&skuRefId=1142281&quantity=2&cartId=13092271&ws=&resultingPage=/us/order/us/shipping.jsp?OPTION=EDITCARTSTND&cartType=CURRENT&noncevalue=p8Z12ubkOc5B2QrZYsZDkVdIXBN0YoKKRSyumJe2rE4%3D https://www.patagonia.com/us/order/us/shipping.jsp?OPTION=EDITCARTSTND&zoi_save=1&zoi_id-1=13092266&zoi_delete-1=true&prod_track=;Ultra Lightweight Endurance Anklet Socks (49822);5;75.0;;evar2=false|evar4=1D-6P&zoiid=13092266&noncevalue=p8Z12ubkOc5B2QrZYsZDkVdIXBN0YoKKRSyumJe2rE4%3D https://www.patagonia.com/us/order/us/shipping.jsp?OPTION=EDITCARTSTND&zoi_save=1&zoi_id-1=13092276&zoi_delete-1=true&prod_track=;M\'s Baggies... Shorts (57019);2;90.0;;evar2=false|evar4=1D-6F&zoiid=13092276&noncevalue=p8Z12ubkOc5B2QrZYsZDkVdIXBN0YoKKRSyumJe2rE4%3D
Request
GET /us/order/us/shipping.jsp?OPTION=VIRTUAL_GIFT_CARD_CHECK_SHIPPING HTTP/1.1 Host: www.patagonia.com Connection: keep-alive Referer: http://www.patagonia.com/us/order/us/shopcart.jsp User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: lpCloseInvite=null; ts=1301247084458; JSESSIONID=dbc-MJcWNeeJa4cL_w47s; b=SHOP%3A%3A1D-eGD8-6F%3APatagonia%20Men's%20Baggies%E2%84%A2%20Shorts%3A57019-0-485%3Apatagonia-mens-baggies-shorts; lc=en_US%3AUS%3AWWW.PATAGONIA.COM%3A700; tr_p1=SHOPCART%7E%5B1%5D; s_cc=true; 47760958-VID=44502044936234; 47760958-SKEY=958751430488923974; HumanClickSiteContainerID_47760958=STANDALONE; s_sq=patagoniav2production%3D%2526pid%253DPatagonia%25253A%252520Checkout%252520-%252520Review%252520Your%252520Order%2526pidt%253D1%2526oid%253Dhttps%25253A//www.patagonia.com/us/order/us/shipping.jsp%25253FOPTION%25253DVIRTUAL_GIFT_CARD_CHECK_SHIPPING%2526ot%253DA
Response
HTTP/1.1 200 OK Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 DAV/2 Resin/3.2.1 Content-Language: en-US Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Content-Length: 36049 Expires: Sun, 27 Mar 2011 17:34:01 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sun, 27 Mar 2011 17:34:01 GMT Connection: keep-alive <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-T...[SNIP]... <br /><a href="http://www.patagonia.com/us/product/product_focus.jsp?OPTION=PRODUCT_FOCUS_DISPLAY_HANDLER&style_color=57019-565&skuRefId=1199048&quantity=2&cartId=13092276&ws=&resultingPage=/us/order/us/shipping.jsp?OPTION=EDITCARTSTND&cartType=CURRENT&noncevalue=p8Z12ubkOc5B2QrZYsZDkVdIXBN0YoKKRSyumJe2rE4%3D"> Edit</a> <span>|</span><a href="/us/order/us/shipping.jsp?OPTION=EDITCARTSTND&zoi_save=1&zoi_id-1=13092276&zoi_delete-1=true&prod_track=;M\'s Baggies... Shorts (57019);2;90.0;;evar2=false|evar4=1D-6F&zoiid=13092276&noncevalue=p8Z12ubkOc5B2QrZYsZDkVdIXBN0YoKKRSyumJe2rE4%3D"> Remove</a>...[SNIP]... <br /><a href="http://www.patagonia.com/us/product/product_focus.jsp?OPTION=PRODUCT_FOCUS_DISPLAY_HANDLER&style_color=57221-176&skuRefId=1142281&quantity=2&cartId=13092271&ws=&resultingPage=/us/order/us/shipping.jsp?OPTION=EDITCARTSTND&cartType=CURRENT&noncevalue=p8Z12ubkOc5B2QrZYsZDkVdIXBN0YoKKRSyumJe2rE4%3D"> Edit</a>...[SNIP]... <br /><a href="http://www.patagonia.com/us/product/product_focus.jsp?OPTION=PRODUCT_FOCUS_DISPLAY_HANDLER&style_color=49822-333&skuRefId=1162676&quantity=5&cartId=13092266&ws=&resultingPage=/us/order/us/shipping.jsp?OPTION=EDITCARTSTND&cartType=CURRENT&noncevalue=p8Z12ubkOc5B2QrZYsZDkVdIXBN0YoKKRSyumJe2rE4%3D"> Edit</a> <span>|</span><a href="/us/order/us/shipping.jsp?OPTION=EDITCARTSTND&zoi_save=1&zoi_id-1=13092266&zoi_delete-1=true&prod_track=;Ultra Lightweight Endurance Anklet Socks (49822);5;75.0;;evar2=false|evar4=1D-6P&zoiid=13092266&noncevalue=p8Z12ubkOc5B2QrZYsZDkVdIXBN0YoKKRSyumJe2rE4%3D"> Remove</a>...[SNIP]...
3. Cross-domain Referer leakage
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
https://www.patagonia.com
Path:
/us/order/us/shipping.jsp
Issue detail
The page was loaded from a URL containing a query string:https://www.patagonia.com/us/order/us/shipping.jsp?OPTION=VIRTUAL_GIFT_CARD_CHECK_SHIPPING The response contains the following link to another domain:https://media.richrelevance.com/rrserver/js/0.4/p13n.js
Issue background
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.
Request
GET /us/order/us/shipping.jsp?OPTION=VIRTUAL_GIFT_CARD_CHECK_SHIPPING HTTP/1.1 Host: www.patagonia.com Connection: keep-alive Referer: http://www.patagonia.com/us/order/us/shopcart.jsp User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: lpCloseInvite=null; ts=1301247084458; JSESSIONID=dbc-MJcWNeeJa4cL_w47s; b=SHOP%3A%3A1D-eGD8-6F%3APatagonia%20Men's%20Baggies%E2%84%A2%20Shorts%3A57019-0-485%3Apatagonia-mens-baggies-shorts; lc=en_US%3AUS%3AWWW.PATAGONIA.COM%3A700; tr_p1=SHOPCART%7E%5B1%5D; s_cc=true; 47760958-VID=44502044936234; 47760958-SKEY=958751430488923974; HumanClickSiteContainerID_47760958=STANDALONE; s_sq=patagoniav2production%3D%2526pid%253DPatagonia%25253A%252520Checkout%252520-%252520Review%252520Your%252520Order%2526pidt%253D1%2526oid%253Dhttps%25253A//www.patagonia.com/us/order/us/shipping.jsp%25253FOPTION%25253DVIRTUAL_GIFT_CARD_CHECK_SHIPPING%2526ot%253DA
Response
HTTP/1.1 200 OK Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 DAV/2 Resin/3.2.1 Content-Language: en-US Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Content-Length: 36049 Expires: Sun, 27 Mar 2011 17:34:01 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sun, 27 Mar 2011 17:34:01 GMT Connection: keep-alive <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-T...[SNIP]... </noscript><script type="text/javascript" src="//media.richrelevance.com/rrserver/js/0.4/p13n.js"> </script>...[SNIP]...
4. Cross-domain script include
previous
next
There are 5 instances of this issue:
Issue background
When an application includes a script from an external domain, this script is executed by the browser within the security context of the invoking application. The script can therefore do anything that the application's own scripts can do, such as accessing application data and performing actions within the context of the current user. If you include a script from an external domain, then you are trusting that domain with the data and functionality of your application, and you are trusting the domain's own security to prevent an attacker from modifying the script to perform malicious actions within your application.
Issue remediation
Scripts should not be included from untrusted domains. If you have a requirement which a third-party script appears to fulfil, then you should ideally copy the contents of that script onto your own domain and include it from there. If that is not possible (e.g. for licensing reasons) then you should consider reimplementing the script's functionality within your own code.
4.1. https://www.patagonia.com/us/order/us/order_summary.jsp
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
https://www.patagonia.com
Path:
/us/order/us/order_summary.jsp
Issue detail
The response dynamically includes the following script from another domain:https://media.richrelevance.com/rrserver/js/0.4/p13n.js
Request
GET /us/order/us/order_summary.jsp HTTP/1.1 Host: www.patagonia.com Connection: keep-alive Referer: https://www.patagonia.com/us/user/qas_prompt.jsp Cache-Control: max-age=0 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: lpCloseInvite=null; ts=1301247084458; JSESSIONID=dbc-MJcWNeeJa4cL_w47s; b=SHOP%3A%3A1D-eGD8-6F%3APatagonia%20Men's%20Baggies%E2%84%A2%20Shorts%3A57019-0-485%3Apatagonia-mens-baggies-shorts; 47760958-VID=44502044936234; 47760958-SKEY=958751430488923974; HumanClickSiteContainerID_47760958=STANDALONE; lc=en_US%3AUS%3AWWW.PATAGONIA.COM%3A700; tr_p1=QAS%20PROMPT; s_cc=true; s_sq=patagoniav2production%3D%2526pid%253DPatagonia%25253A%252520Checkout%252520-%252520QAS%2526pidt%253D1%2526oid%253Djavascript%25253Adocument.forceform.submit%252528%252529%2526ot%253DA
Response
HTTP/1.1 200 OK Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 DAV/2 Resin/3.2.1 Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Content-Length: 32012 Expires: Sun, 27 Mar 2011 17:35:53 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sun, 27 Mar 2011 17:35:53 GMT Connection: keep-alive <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-T...[SNIP]... </noscript><script type="text/javascript" src="//media.richrelevance.com/rrserver/js/0.4/p13n.js"> </script>...[SNIP]...
4.2. https://www.patagonia.com/us/order/us/shipping.jsp
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
https://www.patagonia.com
Path:
/us/order/us/shipping.jsp
Issue detail
The response dynamically includes the following script from another domain:https://media.richrelevance.com/rrserver/js/0.4/p13n.js
Request
GET /us/order/us/shipping.jsp?OPTION=VIRTUAL_GIFT_CARD_CHECK_SHIPPING HTTP/1.1 Host: www.patagonia.com Connection: keep-alive Referer: http://www.patagonia.com/us/order/us/shopcart.jsp User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: lpCloseInvite=null; ts=1301247084458; JSESSIONID=dbc-MJcWNeeJa4cL_w47s; b=SHOP%3A%3A1D-eGD8-6F%3APatagonia%20Men's%20Baggies%E2%84%A2%20Shorts%3A57019-0-485%3Apatagonia-mens-baggies-shorts; lc=en_US%3AUS%3AWWW.PATAGONIA.COM%3A700; tr_p1=SHOPCART%7E%5B1%5D; s_cc=true; 47760958-VID=44502044936234; 47760958-SKEY=958751430488923974; HumanClickSiteContainerID_47760958=STANDALONE; s_sq=patagoniav2production%3D%2526pid%253DPatagonia%25253A%252520Checkout%252520-%252520Review%252520Your%252520Order%2526pidt%253D1%2526oid%253Dhttps%25253A//www.patagonia.com/us/order/us/shipping.jsp%25253FOPTION%25253DVIRTUAL_GIFT_CARD_CHECK_SHIPPING%2526ot%253DA
Response
HTTP/1.1 200 OK Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 DAV/2 Resin/3.2.1 Content-Language: en-US Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Content-Length: 36049 Expires: Sun, 27 Mar 2011 17:34:01 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sun, 27 Mar 2011 17:34:01 GMT Connection: keep-alive <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-T...[SNIP]... </noscript><script type="text/javascript" src="//media.richrelevance.com/rrserver/js/0.4/p13n.js"> </script>...[SNIP]...
4.3. https://www.patagonia.com/us/us/order/us/a
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
https://www.patagonia.com
Path:
/us/us/order/us/a
Issue detail
The response dynamically includes the following script from another domain:https://media.richrelevance.com/rrserver/js/0.4/p13n.js
Request
GET /us/us/order/us/a HTTP/1.1 Host: www.patagonia.com Connection: keep-alive Referer: https://www.patagonia.com/us/us/order/us/order_summary.jsp User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: ts=1301247084458; JSESSIONID=dbc-MJcWNeeJa4cL_w47s; b=SHOP%3A%3A1D-eGD8-6F%3APatagonia%20Men's%20Baggies%E2%84%A2%20Shorts%3A57019-0-485%3Apatagonia-mens-baggies-shorts; 47760958-VID=44502044936234; 47760958-SKEY=958751430488923974; HumanClickSiteContainerID_47760958=STANDALONE; tr_p1=GENERIC%20ERROR; s_cc=true; s_sq=%5B%5BB%5D%5D; lc=en_US%3AUS%3AWWW.PATAGONIA.COM%3A700
Response
HTTP/1.1 404 Not Found Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 DAV/2 Resin/3.2.1 Content-Type: text/html; charset=UTF-8 Content-Length: 18379 Vary: Accept-Encoding Expires: Sun, 27 Mar 2011 18:04:22 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sun, 27 Mar 2011 18:04:22 GMT Connection: keep-alive <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-T...[SNIP]... <body onload="LoadPage();"><script type="text/javascript" src="//media.richrelevance.com/rrserver/js/0.4/p13n.js"> </script>...[SNIP]... <!-- Set page specific css calls --><script type="text/javascript" src="//media.richrelevance.com/rrserver/js/0.4/p13n.js"> </script>...[SNIP]...
4.4. https://www.patagonia.com/us/user/a
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
https://www.patagonia.com
Path:
/us/user/a
Issue detail
The response dynamically includes the following script from another domain:https://media.richrelevance.com/rrserver/js/0.4/p13n.js
Request
GET /us/user/a HTTP/1.1 Host: www.patagonia.com Connection: keep-alive Referer: https://www.patagonia.com/us/user/qas_prompt.jsp User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: ts=1301247084458; JSESSIONID=dbc-MJcWNeeJa4cL_w47s; b=SHOP%3A%3A1D-eGD8-6F%3APatagonia%20Men's%20Baggies%E2%84%A2%20Shorts%3A57019-0-485%3Apatagonia-mens-baggies-shorts; 47760958-VID=44502044936234; 47760958-SKEY=958751430488923974; HumanClickSiteContainerID_47760958=STANDALONE; tr_p1=GENERIC%20ERROR%7E%5B1%5D; s_cc=true; s_sq=%5B%5BB%5D%5D; lc=en_US%3AUS%3AWWW.PATAGONIA.COM%3A700
Response
HTTP/1.1 404 Not Found Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 DAV/2 Resin/3.2.1 Content-Type: text/html; charset=UTF-8 Content-Length: 18379 Vary: Accept-Encoding Expires: Sun, 27 Mar 2011 18:06:39 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sun, 27 Mar 2011 18:06:39 GMT Connection: keep-alive <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-T...[SNIP]... <body onload="LoadPage();"><script type="text/javascript" src="//media.richrelevance.com/rrserver/js/0.4/p13n.js"> </script>...[SNIP]... <!-- Set page specific css calls --><script type="text/javascript" src="//media.richrelevance.com/rrserver/js/0.4/p13n.js"> </script>...[SNIP]...
4.5. https://www.patagonia.com/us/user/qas_prompt.jsp
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
https://www.patagonia.com
Path:
/us/user/qas_prompt.jsp
Issue detail
The response dynamically includes the following script from another domain:https://media.richrelevance.com/rrserver/js/0.4/p13n.js
Request
GET /us/user/qas_prompt.jsp HTTP/1.1 Host: www.patagonia.com Connection: keep-alive Referer: https://www.patagonia.com/us/order/us/shipping.jsp?OPTION=VIRTUAL_GIFT_CARD_CHECK_SHIPPING Cache-Control: max-age=0 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: ts=1301247084458; JSESSIONID=dbc-MJcWNeeJa4cL_w47s; b=SHOP%3A%3A1D-eGD8-6F%3APatagonia%20Men's%20Baggies%E2%84%A2%20Shorts%3A57019-0-485%3Apatagonia-mens-baggies-shorts; 47760958-VID=44502044936234; 47760958-SKEY=958751430488923974; HumanClickSiteContainerID_47760958=STANDALONE; lc=en_US%3AUS%3AWWW.PATAGONIA.COM%3A700; tr_p1=SHIPPING; s_cc=true; s_sq=patagoniav2production%3D%2526pid%253DPatagonia%25253A%252520Checkout%252520-%252520Shipping%252520Address%2526pidt%253D1%2526oid%253Dhttps%25253A//www.patagonia.com/images/structure/en_US/buttons/btn_continue_to_billing.gif%2526ot%253DIMAGE
Response
HTTP/1.1 200 OK Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 DAV/2 Resin/3.2.1 Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Content-Length: 21898 Expires: Sun, 27 Mar 2011 17:35:39 GMT Cache-Control: max-age=0, no-cache, no-store Pragma: no-cache Date: Sun, 27 Mar 2011 17:35:39 GMT Connection: keep-alive <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-T...[SNIP]... </noscript><script type="text/javascript" src="//media.richrelevance.com/rrserver/js/0.4/p13n.js"> </script>...[SNIP]...
5. Email addresses disclosed
previous
next
There are 2 instances of this issue:
Issue background
The presence of email addresses within application responses does not necessarily constitute a security vulnerability. Email addresses may appear intentionally within contact information, and many applications (such as web mail) include arbitrary third-party email addresses within their core content. However, email addresses of developers and other individuals (whether appearing on-screen or hidden within page source) may disclose information that is useful to an attacker; for example, they may represent usernames that can be used at the application's login, and they may be used in social engineering attacks against the organisation's personnel. Unnecessary or excessive disclosure of email addresses may also lead to an increase in the volume of spam email received.
Issue remediation
You should review the email addresses being disclosed by the application, and consider removing any that are unnecessary, or replacing personal addresses with anonymous mailbox addresses (such as helpdesk@example.com).
5.1. https://www.patagonia.com/us/js/AjaxWrapperClass.js
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
https://www.patagonia.com
Path:
/us/js/AjaxWrapperClass.js
Issue detail
The following email address was disclosed in the response:
Request
GET /us/js/AjaxWrapperClass.js HTTP/1.1 Host: www.patagonia.com Connection: keep-alive Referer: https://www.patagonia.com/us/order/us/shipping.jsp?OPTION=VIRTUAL_GIFT_CARD_CHECK_SHIPPING User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: ts=1301247084458; JSESSIONID=dbc-MJcWNeeJa4cL_w47s; b=SHOP%3A%3A1D-eGD8-6F%3APatagonia%20Men's%20Baggies%E2%84%A2%20Shorts%3A57019-0-485%3Apatagonia-mens-baggies-shorts; lc=en_US%3AUS%3AWWW.PATAGONIA.COM%3A700; tr_p1=SHOPCART%7E%5B1%5D; s_cc=true; 47760958-VID=44502044936234; 47760958-SKEY=958751430488923974; HumanClickSiteContainerID_47760958=STANDALONE; s_sq=patagoniav2production%3D%2526pid%253DPatagonia%25253A%252520Checkout%252520-%252520Review%252520Your%252520Order%2526pidt%253D1%2526oid%253Dhttps%25253A//www.patagonia.com/us/order/us/shipping.jsp%25253FOPTION%25253DVIRTUAL_GIFT_CARD_CHECK_SHIPPING%2526ot%253DA
Response
HTTP/1.1 200 OK Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 DAV/2 Resin/3.2.1 Last-Modified: Wed, 23 Mar 2011 20:42:33 GMT ETag: 0dd8d4e948c88b260822a007b38555a9a Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Content-Length: 6501 Date: Sun, 27 Mar 2011 17:34:01 GMT Connection: keep-alive //Copyright (c) 2005 Allan Spartacus Mangune, allan@lexysoft.com , http://www.ajaxgear.com //Permission is hereby granted, free of charge, to any person //obtaining a copy of this software and associated documentation //files (the "Software"), to deal in the ...[SNIP]...
5.2. https://www.patagonia.com/us/js/omniture/OmnitureCommon.js
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
https://www.patagonia.com
Path:
/us/js/omniture/OmnitureCommon.js
Issue detail
The following email address was disclosed in the response:
Request
GET /us/js/omniture/OmnitureCommon.js HTTP/1.1 Host: www.patagonia.com Connection: keep-alive Referer: https://www.patagonia.com/us/order/us/shipping.jsp?OPTION=VIRTUAL_GIFT_CARD_CHECK_SHIPPING User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: ts=1301247084458; JSESSIONID=dbc-MJcWNeeJa4cL_w47s; b=SHOP%3A%3A1D-eGD8-6F%3APatagonia%20Men's%20Baggies%E2%84%A2%20Shorts%3A57019-0-485%3Apatagonia-mens-baggies-shorts; tr_p1=SHOPCART%7E%5B1%5D; s_cc=true; 47760958-VID=44502044936234; 47760958-SKEY=958751430488923974; HumanClickSiteContainerID_47760958=STANDALONE; s_sq=patagoniav2production%3D%2526pid%253DPatagonia%25253A%252520Checkout%252520-%252520Review%252520Your%252520Order%2526pidt%253D1%2526oid%253Dhttps%25253A//www.patagonia.com/us/order/us/shipping.jsp%25253FOPTION%25253DVIRTUAL_GIFT_CARD_CHECK_SHIPPING%2526ot%253DA; lc=en_US%3AUS%3AWWW.PATAGONIA.COM%3A700
Response
HTTP/1.1 200 OK Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 DAV/2 Resin/3.2.1 Last-Modified: Wed, 23 Mar 2011 20:39:17 GMT ETag: 0bfc078da5a0076833d5e6630fa356437 Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Content-Length: 27871 Date: Sun, 27 Mar 2011 17:34:03 GMT Connection: keep-alive /* SiteCatalyst code version: H.19.4. Copyright 1997-2009 Omniture, Inc. More info available at http://www.omniture.com */...[SNIP]... #G=#S($G,(vt#it`avt)`gs.hav()+q+(qs?qs:s.rq(^7)),0,id,ta);qs`j;`Rm('t')`5s.p_r)s.p_r(`I`b`j}^J(qs);^T`v($A;`n$A`d^3,`H$U1',vb`I@Q=^H=s.`Q`s=s.`Q^4=`G`m`j`5s.pg)`G@0@Q=`G@0eo=`G@0`Q`s=`G@0`Q^4`j`5!i" +"d@8s.tc @3tc=1;s.flush`U()}`2#G`Ctl`0o,t,n,vo`1;s.@Q=$Lo`I`Q^4=t;s.`Q`s=n;s.t($A}`5pg){`G@0co`0o){`N^u\"_\",1,$l`2$Lo)`Cwd@0gs`0u$3`N^uun,1,$l`2s.t()`Cwd@0dc`0u$3`N^uun,$l`2s.t()}}@El=(`G`M`k`A`4$Ks" +"@M0`Id=...[SNIP]...
6. Cacheable HTTPS response
previous
next
There are 11 instances of this issue:
Issue description
Unless directed otherwise, browsers may store a local cached copy of content received from web servers. Some browsers, including Internet Explorer, cache content accessed via HTTPS. If sensitive information in application responses is stored in the local cache, then this may be retrieved by other users who have access to the same computer at a future time.
Issue remediation
The application should return caching directives instructing browsers not to store local copies of any sensitive data. Often, this can be achieved by configuring the web server to prevent caching for relevant paths within the web root. Alternatively, most web development platforms allow you to control the server's caching directives from within individual scripts. Ideally, the web server should return the following HTTP headers in all responses containing sensitive content:Cache-control: no-store Pragma: no-cache
6.1. https://www.patagonia.com/us/js/AjaxWrapperClass.js
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
https://www.patagonia.com
Path:
/us/js/AjaxWrapperClass.js
Request
GET /us/js/AjaxWrapperClass.js HTTP/1.1 Host: www.patagonia.com Connection: keep-alive Referer: https://www.patagonia.com/us/order/us/shipping.jsp?OPTION=VIRTUAL_GIFT_CARD_CHECK_SHIPPING User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: ts=1301247084458; JSESSIONID=dbc-MJcWNeeJa4cL_w47s; b=SHOP%3A%3A1D-eGD8-6F%3APatagonia%20Men's%20Baggies%E2%84%A2%20Shorts%3A57019-0-485%3Apatagonia-mens-baggies-shorts; lc=en_US%3AUS%3AWWW.PATAGONIA.COM%3A700; tr_p1=SHOPCART%7E%5B1%5D; s_cc=true; 47760958-VID=44502044936234; 47760958-SKEY=958751430488923974; HumanClickSiteContainerID_47760958=STANDALONE; s_sq=patagoniav2production%3D%2526pid%253DPatagonia%25253A%252520Checkout%252520-%252520Review%252520Your%252520Order%2526pidt%253D1%2526oid%253Dhttps%25253A//www.patagonia.com/us/order/us/shipping.jsp%25253FOPTION%25253DVIRTUAL_GIFT_CARD_CHECK_SHIPPING%2526ot%253DA
Response
HTTP/1.1 200 OK Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 DAV/2 Resin/3.2.1 Last-Modified: Wed, 23 Mar 2011 20:42:33 GMT ETag: 0dd8d4e948c88b260822a007b38555a9a Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Content-Length: 6501 Date: Sun, 27 Mar 2011 17:34:01 GMT Connection: keep-alive //Copyright (c) 2005 Allan Spartacus Mangune, allan@lexysoft.com, http://www.ajaxgear.com //Permission is hereby granted, free of charge, to any person //obtaining a copy of this software and ass...[SNIP]...
6.2. https://www.patagonia.com/us/js/Global.js
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
https://www.patagonia.com
Path:
/us/js/Global.js
Request
GET /us/js/Global.js HTTP/1.1 Host: www.patagonia.com Connection: keep-alive Referer: https://www.patagonia.com/us/order/us/shipping.jsp?OPTION=VIRTUAL_GIFT_CARD_CHECK_SHIPPING User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: ts=1301247084458; JSESSIONID=dbc-MJcWNeeJa4cL_w47s; b=SHOP%3A%3A1D-eGD8-6F%3APatagonia%20Men's%20Baggies%E2%84%A2%20Shorts%3A57019-0-485%3Apatagonia-mens-baggies-shorts; lc=en_US%3AUS%3AWWW.PATAGONIA.COM%3A700; tr_p1=SHOPCART%7E%5B1%5D; s_cc=true; 47760958-VID=44502044936234; 47760958-SKEY=958751430488923974; HumanClickSiteContainerID_47760958=STANDALONE; s_sq=patagoniav2production%3D%2526pid%253DPatagonia%25253A%252520Checkout%252520-%252520Review%252520Your%252520Order%2526pidt%253D1%2526oid%253Dhttps%25253A//www.patagonia.com/us/order/us/shipping.jsp%25253FOPTION%25253DVIRTUAL_GIFT_CARD_CHECK_SHIPPING%2526ot%253DA
Response
HTTP/1.1 200 OK Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 DAV/2 Resin/3.2.1 Last-Modified: Wed, 23 Mar 2011 20:42:34 GMT ETag: 0629a5ef38bc43520a2a228eedbe13093 Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Content-Length: 18258 Date: Sun, 27 Mar 2011 17:34:01 GMT Connection: keep-alive var M_IN_STOCK = "IN_STOCK"; var M_IN_STOCK_RETAIL = "IN_STOCK_RETAIL"; var M_BACKORDERED = "BACKORDERED"; var M_RE_O...[SNIP]...
6.3. https://www.patagonia.com/us/js/OmnitureWrapperClass.js
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
https://www.patagonia.com
Path:
/us/js/OmnitureWrapperClass.js
Request
GET /us/js/OmnitureWrapperClass.js HTTP/1.1 Host: www.patagonia.com Connection: keep-alive Referer: https://www.patagonia.com/us/order/us/shipping.jsp?OPTION=VIRTUAL_GIFT_CARD_CHECK_SHIPPING User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: ts=1301247084458; JSESSIONID=dbc-MJcWNeeJa4cL_w47s; b=SHOP%3A%3A1D-eGD8-6F%3APatagonia%20Men's%20Baggies%E2%84%A2%20Shorts%3A57019-0-485%3Apatagonia-mens-baggies-shorts; lc=en_US%3AUS%3AWWW.PATAGONIA.COM%3A700; tr_p1=SHOPCART%7E%5B1%5D; s_cc=true; 47760958-VID=44502044936234; 47760958-SKEY=958751430488923974; HumanClickSiteContainerID_47760958=STANDALONE; s_sq=patagoniav2production%3D%2526pid%253DPatagonia%25253A%252520Checkout%252520-%252520Review%252520Your%252520Order%2526pidt%253D1%2526oid%253Dhttps%25253A//www.patagonia.com/us/order/us/shipping.jsp%25253FOPTION%25253DVIRTUAL_GIFT_CARD_CHECK_SHIPPING%2526ot%253DA
Response
HTTP/1.1 200 OK Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 DAV/2 Resin/3.2.1 Last-Modified: Wed, 23 Mar 2011 20:42:34 GMT ETag: 051b0313e720ab03427c1a461075b859e Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Content-Length: 6063 Date: Sun, 27 Mar 2011 17:34:02 GMT Connection: keep-alive function OmnitureHelper( strPageName ) { var _objOmniture = s_gi( s_account ); var _strPageName = strPageName; var _strEvent = ""; var _strProducts = ""; var _strCity...[SNIP]...
6.4. https://www.patagonia.com/us/js/TopNav.js
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
https://www.patagonia.com
Path:
/us/js/TopNav.js
Request
GET /us/js/TopNav.js HTTP/1.1 Host: www.patagonia.com Connection: keep-alive Referer: https://www.patagonia.com/us/order/us/shipping.jsp?OPTION=VIRTUAL_GIFT_CARD_CHECK_SHIPPING User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: ts=1301247084458; JSESSIONID=dbc-MJcWNeeJa4cL_w47s; b=SHOP%3A%3A1D-eGD8-6F%3APatagonia%20Men's%20Baggies%E2%84%A2%20Shorts%3A57019-0-485%3Apatagonia-mens-baggies-shorts; lc=en_US%3AUS%3AWWW.PATAGONIA.COM%3A700; tr_p1=SHOPCART%7E%5B1%5D; s_cc=true; 47760958-VID=44502044936234; 47760958-SKEY=958751430488923974; HumanClickSiteContainerID_47760958=STANDALONE; s_sq=patagoniav2production%3D%2526pid%253DPatagonia%25253A%252520Checkout%252520-%252520Review%252520Your%252520Order%2526pidt%253D1%2526oid%253Dhttps%25253A//www.patagonia.com/us/order/us/shipping.jsp%25253FOPTION%25253DVIRTUAL_GIFT_CARD_CHECK_SHIPPING%2526ot%253DA
Response
HTTP/1.1 200 OK Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 DAV/2 Resin/3.2.1 Last-Modified: Wed, 23 Mar 2011 20:42:33 GMT ETag: 0a631acd76e2d8d41804861a1981f42f8 Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Content-Length: 38209 Date: Sun, 27 Mar 2011 17:34:01 GMT Connection: keep-alive var M_objHolster; var myHeight; var myHeight2; var M_ToggleOnImgSrc; var M_ToggleOffImgSrc; var M_bIsIframeLoaded = fal...[SNIP]...
6.5. https://www.patagonia.com/us/js/liveperson/mtagconfig.js
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
https://www.patagonia.com
Path:
/us/js/liveperson/mtagconfig.js
Request
GET /us/js/liveperson/mtagconfig.js HTTP/1.1 Host: www.patagonia.com Connection: keep-alive Referer: https://www.patagonia.com/us/order/us/shipping.jsp?OPTION=VIRTUAL_GIFT_CARD_CHECK_SHIPPING User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: ts=1301247084458; JSESSIONID=dbc-MJcWNeeJa4cL_w47s; b=SHOP%3A%3A1D-eGD8-6F%3APatagonia%20Men's%20Baggies%E2%84%A2%20Shorts%3A57019-0-485%3Apatagonia-mens-baggies-shorts; tr_p1=SHOPCART%7E%5B1%5D; s_cc=true; 47760958-VID=44502044936234; 47760958-SKEY=958751430488923974; HumanClickSiteContainerID_47760958=STANDALONE; s_sq=patagoniav2production%3D%2526pid%253DPatagonia%25253A%252520Checkout%252520-%252520Review%252520Your%252520Order%2526pidt%253D1%2526oid%253Dhttps%25253A//www.patagonia.com/us/order/us/shipping.jsp%25253FOPTION%25253DVIRTUAL_GIFT_CARD_CHECK_SHIPPING%2526ot%253DA; lc=en_US%3AUS%3AWWW.PATAGONIA.COM%3A700
Response
HTTP/1.1 200 OK Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 DAV/2 Resin/3.2.1 Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Content-Length: 4796 Date: Sun, 27 Mar 2011 17:34:03 GMT Connection: keep-alive // Date last modified = <YYYYMMDD> // Modified by = <INITIALS> var lpMTagConfig = { 'lpServer' : "sales.liveperson.net", 'lpNumber' : "47760958", 'lpProtocol' : (documen...[SNIP]...
6.6. https://www.patagonia.com/us/js/moo.fx.js
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
https://www.patagonia.com
Path:
/us/js/moo.fx.js
Request
GET /us/js/moo.fx.js HTTP/1.1 Host: www.patagonia.com Connection: keep-alive Referer: https://www.patagonia.com/us/order/us/shipping.jsp?OPTION=VIRTUAL_GIFT_CARD_CHECK_SHIPPING User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: ts=1301247084458; JSESSIONID=dbc-MJcWNeeJa4cL_w47s; b=SHOP%3A%3A1D-eGD8-6F%3APatagonia%20Men's%20Baggies%E2%84%A2%20Shorts%3A57019-0-485%3Apatagonia-mens-baggies-shorts; lc=en_US%3AUS%3AWWW.PATAGONIA.COM%3A700; tr_p1=SHOPCART%7E%5B1%5D; s_cc=true; 47760958-VID=44502044936234; 47760958-SKEY=958751430488923974; HumanClickSiteContainerID_47760958=STANDALONE; s_sq=patagoniav2production%3D%2526pid%253DPatagonia%25253A%252520Checkout%252520-%252520Review%252520Your%252520Order%2526pidt%253D1%2526oid%253Dhttps%25253A//www.patagonia.com/us/order/us/shipping.jsp%25253FOPTION%25253DVIRTUAL_GIFT_CARD_CHECK_SHIPPING%2526ot%253DA
Response
HTTP/1.1 200 OK Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 DAV/2 Resin/3.2.1 Last-Modified: Wed, 23 Mar 2011 20:42:34 GMT ETag: 055cdbfdd35d3b1b624e58b677116d102 Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Content-Length: 3825 Date: Sun, 27 Mar 2011 17:34:02 GMT Connection: keep-alive /* moo.fx, simple effects library built with prototype.js (http://prototype.conio.net). by Valerio Proietti (http://mad4milk.net) MIT-style LICENSE. for more info (http://moofx.mad4milk.net). Sund...[SNIP]...
6.7. https://www.patagonia.com/us/js/omniture/OmnitureCommon.js
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
https://www.patagonia.com
Path:
/us/js/omniture/OmnitureCommon.js
Request
GET /us/js/omniture/OmnitureCommon.js HTTP/1.1 Host: www.patagonia.com Connection: keep-alive Referer: https://www.patagonia.com/us/order/us/shipping.jsp?OPTION=VIRTUAL_GIFT_CARD_CHECK_SHIPPING User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: ts=1301247084458; JSESSIONID=dbc-MJcWNeeJa4cL_w47s; b=SHOP%3A%3A1D-eGD8-6F%3APatagonia%20Men's%20Baggies%E2%84%A2%20Shorts%3A57019-0-485%3Apatagonia-mens-baggies-shorts; tr_p1=SHOPCART%7E%5B1%5D; s_cc=true; 47760958-VID=44502044936234; 47760958-SKEY=958751430488923974; HumanClickSiteContainerID_47760958=STANDALONE; s_sq=patagoniav2production%3D%2526pid%253DPatagonia%25253A%252520Checkout%252520-%252520Review%252520Your%252520Order%2526pidt%253D1%2526oid%253Dhttps%25253A//www.patagonia.com/us/order/us/shipping.jsp%25253FOPTION%25253DVIRTUAL_GIFT_CARD_CHECK_SHIPPING%2526ot%253DA; lc=en_US%3AUS%3AWWW.PATAGONIA.COM%3A700
Response
HTTP/1.1 200 OK Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 DAV/2 Resin/3.2.1 Last-Modified: Wed, 23 Mar 2011 20:39:17 GMT ETag: 0bfc078da5a0076833d5e6630fa356437 Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Content-Length: 27871 Date: Sun, 27 Mar 2011 17:34:03 GMT Connection: keep-alive /* SiteCatalyst code version: H.19.4. Copyright 1997-2009 Omniture, Inc. More info available at http://www.omniture.com */...[SNIP]...
6.8. https://www.patagonia.com/us/js/prototype.js
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
https://www.patagonia.com
Path:
/us/js/prototype.js
Request
GET /us/js/prototype.js HTTP/1.1 Host: www.patagonia.com Connection: keep-alive Referer: https://www.patagonia.com/us/order/us/shipping.jsp?OPTION=VIRTUAL_GIFT_CARD_CHECK_SHIPPING User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: ts=1301247084458; JSESSIONID=dbc-MJcWNeeJa4cL_w47s; b=SHOP%3A%3A1D-eGD8-6F%3APatagonia%20Men's%20Baggies%E2%84%A2%20Shorts%3A57019-0-485%3Apatagonia-mens-baggies-shorts; lc=en_US%3AUS%3AWWW.PATAGONIA.COM%3A700; tr_p1=SHOPCART%7E%5B1%5D; s_cc=true; 47760958-VID=44502044936234; 47760958-SKEY=958751430488923974; HumanClickSiteContainerID_47760958=STANDALONE; s_sq=patagoniav2production%3D%2526pid%253DPatagonia%25253A%252520Checkout%252520-%252520Review%252520Your%252520Order%2526pidt%253D1%2526oid%253Dhttps%25253A//www.patagonia.com/us/order/us/shipping.jsp%25253FOPTION%25253DVIRTUAL_GIFT_CARD_CHECK_SHIPPING%2526ot%253DA
Response
HTTP/1.1 200 OK Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 DAV/2 Resin/3.2.1 Last-Modified: Wed, 23 Mar 2011 20:42:33 GMT ETag: 0f01af9aceef56847b6fc2e7a77b67ceb Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Content-Length: 129370 Date: Sun, 27 Mar 2011 17:34:01 GMT Connection: keep-alive /* Prototype JavaScript framework, version 1.6.0 * (c) 2005-2007 Sam Stephenson * * Prototype is freely distributable under the terms of an MIT-style license. * For details, see the Protot...[SNIP]...
6.9. https://www.patagonia.com/us/js/scriptaculous/effects.js
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
https://www.patagonia.com
Path:
/us/js/scriptaculous/effects.js
Request
GET /us/js/scriptaculous/effects.js HTTP/1.1 Host: www.patagonia.com Connection: keep-alive Referer: https://www.patagonia.com/us/order/us/shipping.jsp?OPTION=VIRTUAL_GIFT_CARD_CHECK_SHIPPING User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: ts=1301247084458; JSESSIONID=dbc-MJcWNeeJa4cL_w47s; b=SHOP%3A%3A1D-eGD8-6F%3APatagonia%20Men's%20Baggies%E2%84%A2%20Shorts%3A57019-0-485%3Apatagonia-mens-baggies-shorts; lc=en_US%3AUS%3AWWW.PATAGONIA.COM%3A700; tr_p1=SHOPCART%7E%5B1%5D; s_cc=true; 47760958-VID=44502044936234; 47760958-SKEY=958751430488923974; HumanClickSiteContainerID_47760958=STANDALONE; s_sq=patagoniav2production%3D%2526pid%253DPatagonia%25253A%252520Checkout%252520-%252520Review%252520Your%252520Order%2526pidt%253D1%2526oid%253Dhttps%25253A//www.patagonia.com/us/order/us/shipping.jsp%25253FOPTION%25253DVIRTUAL_GIFT_CARD_CHECK_SHIPPING%2526ot%253DA
Response
HTTP/1.1 200 OK Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 DAV/2 Resin/3.2.1 Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Content-Length: 38986 Date: Sun, 27 Mar 2011 17:34:02 GMT Connection: keep-alive // script.aculo.us effects.js v1.8.1, Thu Jan 03 22:07:12 -0500 2008 // Copyright (c) 2005-2007 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us) // Contributors: // Justin Palmer (http://e...[SNIP]...
6.10. https://www.patagonia.com/us/js/shipping.js
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
https://www.patagonia.com
Path:
/us/js/shipping.js
Request
GET /us/js/shipping.js?lo=false HTTP/1.1 Host: www.patagonia.com Connection: keep-alive Referer: https://www.patagonia.com/us/order/us/shipping.jsp?OPTION=VIRTUAL_GIFT_CARD_CHECK_SHIPPING User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: ts=1301247084458; JSESSIONID=dbc-MJcWNeeJa4cL_w47s; b=SHOP%3A%3A1D-eGD8-6F%3APatagonia%20Men's%20Baggies%E2%84%A2%20Shorts%3A57019-0-485%3Apatagonia-mens-baggies-shorts; lc=en_US%3AUS%3AWWW.PATAGONIA.COM%3A700; tr_p1=SHOPCART%7E%5B1%5D; s_cc=true; 47760958-VID=44502044936234; 47760958-SKEY=958751430488923974; HumanClickSiteContainerID_47760958=STANDALONE; s_sq=patagoniav2production%3D%2526pid%253DPatagonia%25253A%252520Checkout%252520-%252520Review%252520Your%252520Order%2526pidt%253D1%2526oid%253Dhttps%25253A//www.patagonia.com/us/order/us/shipping.jsp%25253FOPTION%25253DVIRTUAL_GIFT_CARD_CHECK_SHIPPING%2526ot%253DA
Response
HTTP/1.1 200 OK Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 DAV/2 Resin/3.2.1 Last-Modified: Wed, 23 Mar 2011 20:56:02 GMT ETag: 086f5704735671e9af771ee30813a6d6f Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Content-Length: 7448 Date: Sun, 27 Mar 2011 17:34:03 GMT Connection: keep-alive /***********************************************************************\ ** The shipping matrix ** ** UPS USPS FedEx UPS Fed Ex UPS Next ** ...[SNIP]...
6.11. https://www.patagonia.com/us/js/shipping_common.js
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
https://www.patagonia.com
Path:
/us/js/shipping_common.js
Request
GET /us/js/shipping_common.js?lo=false HTTP/1.1 Host: www.patagonia.com Connection: keep-alive Referer: https://www.patagonia.com/us/order/us/shipping.jsp?OPTION=VIRTUAL_GIFT_CARD_CHECK_SHIPPING User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: ts=1301247084458; JSESSIONID=dbc-MJcWNeeJa4cL_w47s; b=SHOP%3A%3A1D-eGD8-6F%3APatagonia%20Men's%20Baggies%E2%84%A2%20Shorts%3A57019-0-485%3Apatagonia-mens-baggies-shorts; lc=en_US%3AUS%3AWWW.PATAGONIA.COM%3A700; tr_p1=SHOPCART%7E%5B1%5D; s_cc=true; 47760958-VID=44502044936234; 47760958-SKEY=958751430488923974; HumanClickSiteContainerID_47760958=STANDALONE; s_sq=patagoniav2production%3D%2526pid%253DPatagonia%25253A%252520Checkout%252520-%252520Review%252520Your%252520Order%2526pidt%253D1%2526oid%253Dhttps%25253A//www.patagonia.com/us/order/us/shipping.jsp%25253FOPTION%25253DVIRTUAL_GIFT_CARD_CHECK_SHIPPING%2526ot%253DA
Response
HTTP/1.1 200 OK Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 DAV/2 Resin/3.2.1 Last-Modified: Wed, 23 Mar 2011 18:41:01 GMT ETag: 07aa9d6c40b7297cc48e4afee7500effe Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Content-Length: 7475 Date: Sun, 27 Mar 2011 17:34:03 GMT Connection: keep-alive function ShowDropdownBackstop() { try { setInterval( "if(M_bIsDropdownHidden && !M_bIsPFWOpen && !IsHolsterOpen())DisplayDr...[SNIP]...
7. Content type incorrectly stated
previous
There are 11 instances of this issue:
Issue background
If a web response specifies an incorrect content type, then browsers may process the response in unexpected ways. If the specified content type is a renderable text-based format, then the browser will usually attempt to parse and render the response in that format. If the specified type is an image format, then the browser will usually detect the anomaly and will analyse the actual content and attempt to determine its MIME type. Either case can lead to unexpected results, and if the content contains any user-controllable data may lead to cross-site scripting or other client-side vulnerabilities. In most cases, the presence of an incorrect content type statement does not constitute a security flaw, particularly if the response contains static content. You should review the contents of the response and the context in which it appears to determine whether any vulnerability exists.
Issue remediation
For every response containing a message body, the application should include a single Content-type header which correctly and unambiguously states the MIME type of the content in the response body.
7.1. https://www.patagonia.com/us/js/AjaxWrapperClass.js
previous
next
Summary
Severity:
Information
Confidence:
Firm
Host:
https://www.patagonia.com
Path:
/us/js/AjaxWrapperClass.js
Issue detail
The response contains the following Content-type statement:Content-Type: text/html; charset=UTF-8 The response states that it contains HTML . However, it actually appears to contain script .
Request
GET /us/js/AjaxWrapperClass.js HTTP/1.1 Host: www.patagonia.com Connection: keep-alive Referer: https://www.patagonia.com/us/order/us/shipping.jsp?OPTION=VIRTUAL_GIFT_CARD_CHECK_SHIPPING User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: ts=1301247084458; JSESSIONID=dbc-MJcWNeeJa4cL_w47s; b=SHOP%3A%3A1D-eGD8-6F%3APatagonia%20Men's%20Baggies%E2%84%A2%20Shorts%3A57019-0-485%3Apatagonia-mens-baggies-shorts; lc=en_US%3AUS%3AWWW.PATAGONIA.COM%3A700; tr_p1=SHOPCART%7E%5B1%5D; s_cc=true; 47760958-VID=44502044936234; 47760958-SKEY=958751430488923974; HumanClickSiteContainerID_47760958=STANDALONE; s_sq=patagoniav2production%3D%2526pid%253DPatagonia%25253A%252520Checkout%252520-%252520Review%252520Your%252520Order%2526pidt%253D1%2526oid%253Dhttps%25253A//www.patagonia.com/us/order/us/shipping.jsp%25253FOPTION%25253DVIRTUAL_GIFT_CARD_CHECK_SHIPPING%2526ot%253DA
Response
HTTP/1.1 200 OK Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 DAV/2 Resin/3.2.1 Last-Modified: Wed, 23 Mar 2011 20:42:33 GMT ETag: 0dd8d4e948c88b260822a007b38555a9aContent-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Content-Length: 6501 Date: Sun, 27 Mar 2011 17:34:01 GMT Connection: keep-alive //Copyright (c) 2005 Allan Spartacus Mangune, allan@lexysoft.com, http://www.ajaxgear.com //Permission is hereby granted, free of charge, to any person //obtaining a copy of this software and ass...[SNIP]...
7.2. https://www.patagonia.com/us/js/Global.js
previous
next
Summary
Severity:
Information
Confidence:
Firm
Host:
https://www.patagonia.com
Path:
/us/js/Global.js
Issue detail
The response contains the following Content-type statement:Content-Type: text/html; charset=UTF-8 The response states that it contains HTML . However, it actually appears to contain script .
Request
GET /us/js/Global.js HTTP/1.1 Host: www.patagonia.com Connection: keep-alive Referer: https://www.patagonia.com/us/order/us/shipping.jsp?OPTION=VIRTUAL_GIFT_CARD_CHECK_SHIPPING User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: ts=1301247084458; JSESSIONID=dbc-MJcWNeeJa4cL_w47s; b=SHOP%3A%3A1D-eGD8-6F%3APatagonia%20Men's%20Baggies%E2%84%A2%20Shorts%3A57019-0-485%3Apatagonia-mens-baggies-shorts; lc=en_US%3AUS%3AWWW.PATAGONIA.COM%3A700; tr_p1=SHOPCART%7E%5B1%5D; s_cc=true; 47760958-VID=44502044936234; 47760958-SKEY=958751430488923974; HumanClickSiteContainerID_47760958=STANDALONE; s_sq=patagoniav2production%3D%2526pid%253DPatagonia%25253A%252520Checkout%252520-%252520Review%252520Your%252520Order%2526pidt%253D1%2526oid%253Dhttps%25253A//www.patagonia.com/us/order/us/shipping.jsp%25253FOPTION%25253DVIRTUAL_GIFT_CARD_CHECK_SHIPPING%2526ot%253DA
Response
HTTP/1.1 200 OK Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 DAV/2 Resin/3.2.1 Last-Modified: Wed, 23 Mar 2011 20:42:34 GMT ETag: 0629a5ef38bc43520a2a228eedbe13093Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Content-Length: 18258 Date: Sun, 27 Mar 2011 17:34:01 GMT Connection: keep-alive var M_IN_STOCK = "IN_STOCK"; var M_IN_STOCK_RETAIL = "IN_STOCK_RETAIL"; var M_BACKORDERED = "BACKORDERED"; var M_RE_O...[SNIP]...
7.3. https://www.patagonia.com/us/js/OmnitureWrapperClass.js
previous
next
Summary
Severity:
Information
Confidence:
Firm
Host:
https://www.patagonia.com
Path:
/us/js/OmnitureWrapperClass.js
Issue detail
The response contains the following Content-type statement:Content-Type: text/html; charset=UTF-8 The response states that it contains HTML . However, it actually appears to contain script .
Request
GET /us/js/OmnitureWrapperClass.js HTTP/1.1 Host: www.patagonia.com Connection: keep-alive Referer: https://www.patagonia.com/us/order/us/shipping.jsp?OPTION=VIRTUAL_GIFT_CARD_CHECK_SHIPPING User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: ts=1301247084458; JSESSIONID=dbc-MJcWNeeJa4cL_w47s; b=SHOP%3A%3A1D-eGD8-6F%3APatagonia%20Men's%20Baggies%E2%84%A2%20Shorts%3A57019-0-485%3Apatagonia-mens-baggies-shorts; lc=en_US%3AUS%3AWWW.PATAGONIA.COM%3A700; tr_p1=SHOPCART%7E%5B1%5D; s_cc=true; 47760958-VID=44502044936234; 47760958-SKEY=958751430488923974; HumanClickSiteContainerID_47760958=STANDALONE; s_sq=patagoniav2production%3D%2526pid%253DPatagonia%25253A%252520Checkout%252520-%252520Review%252520Your%252520Order%2526pidt%253D1%2526oid%253Dhttps%25253A//www.patagonia.com/us/order/us/shipping.jsp%25253FOPTION%25253DVIRTUAL_GIFT_CARD_CHECK_SHIPPING%2526ot%253DA
Response
HTTP/1.1 200 OK Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 DAV/2 Resin/3.2.1 Last-Modified: Wed, 23 Mar 2011 20:42:34 GMT ETag: 051b0313e720ab03427c1a461075b859eContent-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Content-Length: 6063 Date: Sun, 27 Mar 2011 17:34:02 GMT Connection: keep-alive function OmnitureHelper( strPageName ) { var _objOmniture = s_gi( s_account ); var _strPageName = strPageName; var _strEvent = ""; var _strProducts = ""; var _strCity...[SNIP]...
7.4. https://www.patagonia.com/us/js/TopNav.js
previous
next
Summary
Severity:
Information
Confidence:
Firm
Host:
https://www.patagonia.com
Path:
/us/js/TopNav.js
Issue detail
The response contains the following Content-type statement:Content-Type: text/html; charset=UTF-8 The response states that it contains HTML . However, it actually appears to contain script .
Request
GET /us/js/TopNav.js HTTP/1.1 Host: www.patagonia.com Connection: keep-alive Referer: https://www.patagonia.com/us/order/us/shipping.jsp?OPTION=VIRTUAL_GIFT_CARD_CHECK_SHIPPING User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: ts=1301247084458; JSESSIONID=dbc-MJcWNeeJa4cL_w47s; b=SHOP%3A%3A1D-eGD8-6F%3APatagonia%20Men's%20Baggies%E2%84%A2%20Shorts%3A57019-0-485%3Apatagonia-mens-baggies-shorts; lc=en_US%3AUS%3AWWW.PATAGONIA.COM%3A700; tr_p1=SHOPCART%7E%5B1%5D; s_cc=true; 47760958-VID=44502044936234; 47760958-SKEY=958751430488923974; HumanClickSiteContainerID_47760958=STANDALONE; s_sq=patagoniav2production%3D%2526pid%253DPatagonia%25253A%252520Checkout%252520-%252520Review%252520Your%252520Order%2526pidt%253D1%2526oid%253Dhttps%25253A//www.patagonia.com/us/order/us/shipping.jsp%25253FOPTION%25253DVIRTUAL_GIFT_CARD_CHECK_SHIPPING%2526ot%253DA
Response
HTTP/1.1 200 OK Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 DAV/2 Resin/3.2.1 Last-Modified: Wed, 23 Mar 2011 20:42:33 GMT ETag: 0a631acd76e2d8d41804861a1981f42f8Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Content-Length: 38209 Date: Sun, 27 Mar 2011 17:34:01 GMT Connection: keep-alive var M_objHolster; var myHeight; var myHeight2; var M_ToggleOnImgSrc; var M_ToggleOffImgSrc; var M_bIsIframeLoaded = fal...[SNIP]...
7.5. https://www.patagonia.com/us/js/liveperson/mtagconfig.js
previous
next
Summary
Severity:
Information
Confidence:
Firm
Host:
https://www.patagonia.com
Path:
/us/js/liveperson/mtagconfig.js
Issue detail
The response contains the following Content-type statement:Content-Type: text/html; charset=UTF-8 The response states that it contains HTML . However, it actually appears to contain script .
Request
GET /us/js/liveperson/mtagconfig.js HTTP/1.1 Host: www.patagonia.com Connection: keep-alive Referer: https://www.patagonia.com/us/order/us/shipping.jsp?OPTION=VIRTUAL_GIFT_CARD_CHECK_SHIPPING User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: ts=1301247084458; JSESSIONID=dbc-MJcWNeeJa4cL_w47s; b=SHOP%3A%3A1D-eGD8-6F%3APatagonia%20Men's%20Baggies%E2%84%A2%20Shorts%3A57019-0-485%3Apatagonia-mens-baggies-shorts; tr_p1=SHOPCART%7E%5B1%5D; s_cc=true; 47760958-VID=44502044936234; 47760958-SKEY=958751430488923974; HumanClickSiteContainerID_47760958=STANDALONE; s_sq=patagoniav2production%3D%2526pid%253DPatagonia%25253A%252520Checkout%252520-%252520Review%252520Your%252520Order%2526pidt%253D1%2526oid%253Dhttps%25253A//www.patagonia.com/us/order/us/shipping.jsp%25253FOPTION%25253DVIRTUAL_GIFT_CARD_CHECK_SHIPPING%2526ot%253DA; lc=en_US%3AUS%3AWWW.PATAGONIA.COM%3A700
Response
HTTP/1.1 200 OK Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 DAV/2 Resin/3.2.1Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Content-Length: 4796 Date: Sun, 27 Mar 2011 17:34:03 GMT Connection: keep-alive // Date last modified = <YYYYMMDD> // Modified by = <INITIALS> var lpMTagConfig = { 'lpServer' : "sales.liveperson.net", 'lpNumber' : "47760958", 'lpProtocol' : (documen...[SNIP]...
7.6. https://www.patagonia.com/us/js/moo.fx.js
previous
next
Summary
Severity:
Information
Confidence:
Firm
Host:
https://www.patagonia.com
Path:
/us/js/moo.fx.js
Issue detail
The response contains the following Content-type statement:Content-Type: text/html; charset=UTF-8 The response states that it contains HTML . However, it actually appears to contain script .
Request
GET /us/js/moo.fx.js HTTP/1.1 Host: www.patagonia.com Connection: keep-alive Referer: https://www.patagonia.com/us/order/us/shipping.jsp?OPTION=VIRTUAL_GIFT_CARD_CHECK_SHIPPING User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: ts=1301247084458; JSESSIONID=dbc-MJcWNeeJa4cL_w47s; b=SHOP%3A%3A1D-eGD8-6F%3APatagonia%20Men's%20Baggies%E2%84%A2%20Shorts%3A57019-0-485%3Apatagonia-mens-baggies-shorts; lc=en_US%3AUS%3AWWW.PATAGONIA.COM%3A700; tr_p1=SHOPCART%7E%5B1%5D; s_cc=true; 47760958-VID=44502044936234; 47760958-SKEY=958751430488923974; HumanClickSiteContainerID_47760958=STANDALONE; s_sq=patagoniav2production%3D%2526pid%253DPatagonia%25253A%252520Checkout%252520-%252520Review%252520Your%252520Order%2526pidt%253D1%2526oid%253Dhttps%25253A//www.patagonia.com/us/order/us/shipping.jsp%25253FOPTION%25253DVIRTUAL_GIFT_CARD_CHECK_SHIPPING%2526ot%253DA
Response
HTTP/1.1 200 OK Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 DAV/2 Resin/3.2.1 Last-Modified: Wed, 23 Mar 2011 20:42:34 GMT ETag: 055cdbfdd35d3b1b624e58b677116d102Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Content-Length: 3825 Date: Sun, 27 Mar 2011 17:34:02 GMT Connection: keep-alive /* moo.fx, simple effects library built with prototype.js (http://prototype.conio.net). by Valerio Proietti (http://mad4milk.net) MIT-style LICENSE. for more info (http://moofx.mad4milk.net). Sund...[SNIP]...
7.7. https://www.patagonia.com/us/js/omniture/OmnitureCommon.js
previous
next
Summary
Severity:
Information
Confidence:
Firm
Host:
https://www.patagonia.com
Path:
/us/js/omniture/OmnitureCommon.js
Issue detail
The response contains the following Content-type statement:Content-Type: text/html; charset=UTF-8 The response states that it contains HTML . However, it actually appears to contain script .
Request
GET /us/js/omniture/OmnitureCommon.js HTTP/1.1 Host: www.patagonia.com Connection: keep-alive Referer: https://www.patagonia.com/us/order/us/shipping.jsp?OPTION=VIRTUAL_GIFT_CARD_CHECK_SHIPPING User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: ts=1301247084458; JSESSIONID=dbc-MJcWNeeJa4cL_w47s; b=SHOP%3A%3A1D-eGD8-6F%3APatagonia%20Men's%20Baggies%E2%84%A2%20Shorts%3A57019-0-485%3Apatagonia-mens-baggies-shorts; tr_p1=SHOPCART%7E%5B1%5D; s_cc=true; 47760958-VID=44502044936234; 47760958-SKEY=958751430488923974; HumanClickSiteContainerID_47760958=STANDALONE; s_sq=patagoniav2production%3D%2526pid%253DPatagonia%25253A%252520Checkout%252520-%252520Review%252520Your%252520Order%2526pidt%253D1%2526oid%253Dhttps%25253A//www.patagonia.com/us/order/us/shipping.jsp%25253FOPTION%25253DVIRTUAL_GIFT_CARD_CHECK_SHIPPING%2526ot%253DA; lc=en_US%3AUS%3AWWW.PATAGONIA.COM%3A700
Response
HTTP/1.1 200 OK Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 DAV/2 Resin/3.2.1 Last-Modified: Wed, 23 Mar 2011 20:39:17 GMT ETag: 0bfc078da5a0076833d5e6630fa356437Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Content-Length: 27871 Date: Sun, 27 Mar 2011 17:34:03 GMT Connection: keep-alive /* SiteCatalyst code version: H.19.4. Copyright 1997-2009 Omniture, Inc. More info available at http://www.omniture.com */...[SNIP]...
7.8. https://www.patagonia.com/us/js/prototype.js
previous
next
Summary
Severity:
Information
Confidence:
Firm
Host:
https://www.patagonia.com
Path:
/us/js/prototype.js
Issue detail
The response contains the following Content-type statement:Content-Type: text/html; charset=UTF-8 The response states that it contains HTML . However, it actually appears to contain script .
Request
GET /us/js/prototype.js HTTP/1.1 Host: www.patagonia.com Connection: keep-alive Referer: https://www.patagonia.com/us/order/us/shipping.jsp?OPTION=VIRTUAL_GIFT_CARD_CHECK_SHIPPING User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: ts=1301247084458; JSESSIONID=dbc-MJcWNeeJa4cL_w47s; b=SHOP%3A%3A1D-eGD8-6F%3APatagonia%20Men's%20Baggies%E2%84%A2%20Shorts%3A57019-0-485%3Apatagonia-mens-baggies-shorts; lc=en_US%3AUS%3AWWW.PATAGONIA.COM%3A700; tr_p1=SHOPCART%7E%5B1%5D; s_cc=true; 47760958-VID=44502044936234; 47760958-SKEY=958751430488923974; HumanClickSiteContainerID_47760958=STANDALONE; s_sq=patagoniav2production%3D%2526pid%253DPatagonia%25253A%252520Checkout%252520-%252520Review%252520Your%252520Order%2526pidt%253D1%2526oid%253Dhttps%25253A//www.patagonia.com/us/order/us/shipping.jsp%25253FOPTION%25253DVIRTUAL_GIFT_CARD_CHECK_SHIPPING%2526ot%253DA
Response
HTTP/1.1 200 OK Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 DAV/2 Resin/3.2.1 Last-Modified: Wed, 23 Mar 2011 20:42:33 GMT ETag: 0f01af9aceef56847b6fc2e7a77b67cebContent-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Content-Length: 129370 Date: Sun, 27 Mar 2011 17:34:01 GMT Connection: keep-alive /* Prototype JavaScript framework, version 1.6.0 * (c) 2005-2007 Sam Stephenson * * Prototype is freely distributable under the terms of an MIT-style license. * For details, see the Protot...[SNIP]...
7.9. https://www.patagonia.com/us/js/scriptaculous/effects.js
previous
next
Summary
Severity:
Information
Confidence:
Firm
Host:
https://www.patagonia.com
Path:
/us/js/scriptaculous/effects.js
Issue detail
The response contains the following Content-type statement:Content-Type: text/html; charset=UTF-8 The response states that it contains HTML . However, it actually appears to contain script .
Request
GET /us/js/scriptaculous/effects.js HTTP/1.1 Host: www.patagonia.com Connection: keep-alive Referer: https://www.patagonia.com/us/order/us/shipping.jsp?OPTION=VIRTUAL_GIFT_CARD_CHECK_SHIPPING User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: ts=1301247084458; JSESSIONID=dbc-MJcWNeeJa4cL_w47s; b=SHOP%3A%3A1D-eGD8-6F%3APatagonia%20Men's%20Baggies%E2%84%A2%20Shorts%3A57019-0-485%3Apatagonia-mens-baggies-shorts; lc=en_US%3AUS%3AWWW.PATAGONIA.COM%3A700; tr_p1=SHOPCART%7E%5B1%5D; s_cc=true; 47760958-VID=44502044936234; 47760958-SKEY=958751430488923974; HumanClickSiteContainerID_47760958=STANDALONE; s_sq=patagoniav2production%3D%2526pid%253DPatagonia%25253A%252520Checkout%252520-%252520Review%252520Your%252520Order%2526pidt%253D1%2526oid%253Dhttps%25253A//www.patagonia.com/us/order/us/shipping.jsp%25253FOPTION%25253DVIRTUAL_GIFT_CARD_CHECK_SHIPPING%2526ot%253DA
Response
HTTP/1.1 200 OK Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 DAV/2 Resin/3.2.1Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Content-Length: 38986 Date: Sun, 27 Mar 2011 17:34:02 GMT Connection: keep-alive // script.aculo.us effects.js v1.8.1, Thu Jan 03 22:07:12 -0500 2008 // Copyright (c) 2005-2007 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us) // Contributors: // Justin Palmer (http://e...[SNIP]...
7.10. https://www.patagonia.com/us/js/shipping.js
previous
next
Summary
Severity:
Information
Confidence:
Firm
Host:
https://www.patagonia.com
Path:
/us/js/shipping.js
Issue detail
The response contains the following Content-type statement:Content-Type: text/html; charset=UTF-8 The response states that it contains HTML . However, it actually appears to contain script .
Request
GET /us/js/shipping.js?lo=false HTTP/1.1 Host: www.patagonia.com Connection: keep-alive Referer: https://www.patagonia.com/us/order/us/shipping.jsp?OPTION=VIRTUAL_GIFT_CARD_CHECK_SHIPPING User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: ts=1301247084458; JSESSIONID=dbc-MJcWNeeJa4cL_w47s; b=SHOP%3A%3A1D-eGD8-6F%3APatagonia%20Men's%20Baggies%E2%84%A2%20Shorts%3A57019-0-485%3Apatagonia-mens-baggies-shorts; lc=en_US%3AUS%3AWWW.PATAGONIA.COM%3A700; tr_p1=SHOPCART%7E%5B1%5D; s_cc=true; 47760958-VID=44502044936234; 47760958-SKEY=958751430488923974; HumanClickSiteContainerID_47760958=STANDALONE; s_sq=patagoniav2production%3D%2526pid%253DPatagonia%25253A%252520Checkout%252520-%252520Review%252520Your%252520Order%2526pidt%253D1%2526oid%253Dhttps%25253A//www.patagonia.com/us/order/us/shipping.jsp%25253FOPTION%25253DVIRTUAL_GIFT_CARD_CHECK_SHIPPING%2526ot%253DA
Response
HTTP/1.1 200 OK Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 DAV/2 Resin/3.2.1 Last-Modified: Wed, 23 Mar 2011 20:56:02 GMT ETag: 086f5704735671e9af771ee30813a6d6fContent-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Content-Length: 7448 Date: Sun, 27 Mar 2011 17:34:03 GMT Connection: keep-alive /***********************************************************************\ ** The shipping matrix ** ** UPS USPS FedEx UPS Fed Ex UPS Next ** ...[SNIP]...
7.11. https://www.patagonia.com/us/js/shipping_common.js
previous
Summary
Severity:
Information
Confidence:
Firm
Host:
https://www.patagonia.com
Path:
/us/js/shipping_common.js
Issue detail
The response contains the following Content-type statement:Content-Type: text/html; charset=UTF-8 The response states that it contains HTML . However, it actually appears to contain script .
Request
GET /us/js/shipping_common.js?lo=false HTTP/1.1 Host: www.patagonia.com Connection: keep-alive Referer: https://www.patagonia.com/us/order/us/shipping.jsp?OPTION=VIRTUAL_GIFT_CARD_CHECK_SHIPPING User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Accept: */* Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: ts=1301247084458; JSESSIONID=dbc-MJcWNeeJa4cL_w47s; b=SHOP%3A%3A1D-eGD8-6F%3APatagonia%20Men's%20Baggies%E2%84%A2%20Shorts%3A57019-0-485%3Apatagonia-mens-baggies-shorts; lc=en_US%3AUS%3AWWW.PATAGONIA.COM%3A700; tr_p1=SHOPCART%7E%5B1%5D; s_cc=true; 47760958-VID=44502044936234; 47760958-SKEY=958751430488923974; HumanClickSiteContainerID_47760958=STANDALONE; s_sq=patagoniav2production%3D%2526pid%253DPatagonia%25253A%252520Checkout%252520-%252520Review%252520Your%252520Order%2526pidt%253D1%2526oid%253Dhttps%25253A//www.patagonia.com/us/order/us/shipping.jsp%25253FOPTION%25253DVIRTUAL_GIFT_CARD_CHECK_SHIPPING%2526ot%253DA
Response
HTTP/1.1 200 OK Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 DAV/2 Resin/3.2.1 Last-Modified: Wed, 23 Mar 2011 18:41:01 GMT ETag: 07aa9d6c40b7297cc48e4afee7500effeContent-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Content-Length: 7475 Date: Sun, 27 Mar 2011 17:34:03 GMT Connection: keep-alive function ShowDropdownBackstop() { try { setInterval( "if(M_bIsDropdownHidden && !M_bIsPFWOpen && !IsHolsterOpen())DisplayDr...[SNIP]...
Report generated by XSS.CX at Fri Apr 01 09:29:27 CDT 2011.