weddingshop.theknot.com, SQL Injection, SQLi, CWE-89, CAPEC-66

SQL Injection in weddingshop.theknot.co, | Vulnerability Crawler Report

Report generated by XSS.CX at Sun Jan 02 08:24:38 CST 2011.


Contents

Loading

1. SQL injection

2. Cookie without HttpOnly flag set

2.1. http://weddingshop.theknot.com/weddingwarehouse/BoutiqueDetail.aspx

2.2. http://weddingshop.theknot.com/weddingwarehouse/BoutiqueDetailWithImage.aspx

2.3. http://weddingshop.theknot.com/weddingwarehouse/ProductPage.aspx

2.4. http://weddingshop.theknot.com/weddingwarehouse/SubCategory.aspx

2.5. http://weddingshop.theknot.com/weddingwarehouse/UICategory.aspx

2.6. http://weddingshop.theknot.com/weddingwarehouse/homepage.aspx

2.7. http://weddingshop.theknot.com/

3. Cookie scoped to parent domain

3.1. http://weddingshop.theknot.com/

3.2. http://weddingshop.theknot.com/weddingwarehouse/BoutiqueDetail.aspx

3.3. http://weddingshop.theknot.com/weddingwarehouse/BoutiqueDetailWithImage.aspx

3.4. http://weddingshop.theknot.com/weddingwarehouse/ProductPage.aspx

3.5. http://weddingshop.theknot.com/weddingwarehouse/SubCategory.aspx

3.6. http://weddingshop.theknot.com/weddingwarehouse/UICategory.aspx

3.7. http://weddingshop.theknot.com/weddingwarehouse/homepage.aspx

4. Cross-domain Referer leakage

4.1. http://weddingshop.theknot.com/weddingwarehouse/BoutiqueDetail.aspx

4.2. http://weddingshop.theknot.com/weddingwarehouse/BoutiqueDetailWithImage.aspx

4.3. http://weddingshop.theknot.com/weddingwarehouse/ProductPage.aspx

4.4. http://weddingshop.theknot.com/weddingwarehouse/UICategory.aspx

5. Cross-domain script include

5.1. http://weddingshop.theknot.com/

5.2. http://weddingshop.theknot.com/weddingwarehouse/BoutiqueDetail.aspx

5.3. http://weddingshop.theknot.com/weddingwarehouse/BoutiqueDetailWithImage.aspx

5.4. http://weddingshop.theknot.com/weddingwarehouse/ProductPage.aspx

5.5. http://weddingshop.theknot.com/weddingwarehouse/UICategory.aspx

5.6. http://weddingshop.theknot.com/weddingwarehouse/homepage.aspx

6. Email addresses disclosed

7. HTML does not specify charset

7.1. http://weddingshop.theknot.com/weddingwarehouse/SubCategory.aspx

7.2. http://weddingshop.theknot.com/weddingwarehouse/UICategory.aspx

8. Content type incorrectly stated

8.1. http://weddingshop.theknot.com/weddingwarehouse/SubCategory.aspx

8.2. http://weddingshop.theknot.com/weddingwarehouse/UICategory.aspx



1. SQL injection  next

Summary

Severity:   High
Confidence:   Tentative
Host:   http://weddingshop.theknot.com
Path:   /weddingwarehouse/ProductPage.aspx

Issue detail

The pId parameter appears to be vulnerable to SQL injection attacks. A single quote was submitted in the pId parameter, and a general error message was returned. Two single quotes were then submitted and the error message disappeared. You should review the contents of the error message, and the application's handling of other input, to confirm whether a vulnerability is present.

The application attempts to block SQL injection attacks but this can be circumvented by submitting a URL-encoded NULL byte (%00) before the characters that are being blocked.

Remediation detail

NULL byte bypasses typically arise when the application is being defended by a web application firewall (WAF) that is written in native code, where strings are terminated by a NULL byte. You should fix the actual vulnerability within the application code, and if appropriate ask your WAF vendor to provide a fix for the NULL byte bypass.

Issue background

SQL injection vulnerabilities arise when user-controllable data is incorporated into database SQL queries in an unsafe manner. An attacker can supply crafted input to break out of the data context in which their input appears and interfere with the structure of the surrounding query.

Various attacks can be delivered via SQL injection, including reading or modifying critical application data, interfering with application logic, escalating privileges within the database and executing operating system commands.

Remediation background

The most effective way to prevent SQL injection attacks is to use parameterised queries (also known as prepared statements) for all database access. This method uses two steps to incorporate potentially tainted data into SQL queries: first, the application specifies the structure of the query, leaving placeholders for each item of user input; second, the application specifies the contents of each placeholder. Because the structure of the query has already defined in the first step, it is not possible for malformed data in the second step to interfere with the query structure. You should review the documentation for your database and application platform to determine the appropriate APIs which you can use to perform parameterised queries. It is strongly recommended that you parameterise every variable data item that is incorporated into database queries, even if it is not obviously tainted, to prevent oversights occurring and avoid vulnerabilities being introduced by changes elsewhere within the code base of the application.

You should be aware that some commonly employed and recommended mitigations for SQL injection vulnerabilities are not always effective:

Request 1

GET /weddingwarehouse/ProductPage.aspx?pId=P1984(KnotShop)%00' HTTP/1.1
Host: weddingshop.theknot.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response 1 (redirected)

HTTP/1.1 200 OK
Date: Sun, 02 Jan 2011 13:59:43 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-AspNet-Version: 1.1.4322
COMMERCE-SERVER-SOFTWARE: Microsoft Commerce Server 2002, Enterprise Edition
Set-Cookie: temp=T20110102075943209332; domain=theknot.com; expires=Fri, 02-Jan-2026 13:59:43 GMT; path=/
Set-Cookie: Commerce2002_TestPersistentCookie=TestCookie; expires=Mon, 03-Jan-2011 13:59:43 GMT; path=/
Set-Cookie: Commerce2002_TestSessionCookie=TestCookie; path=/
Set-Cookie: ASP.NET_SessionId=inpc2n55gkfcu1554ehyzlm0; path=/
Cache-Control: private
Content-Type: text/html; charset=utf-8
Content-Length: 143607
Set-Cookie: NSC_JOwop3zpcv23nygdk3xpfib3jf2yfdn=ffffffffaf111ec045525d5f4f58455e445a4a423660;expires=Sun, 02-Jan-2011 15:01:21 GMT;path=/;httponly


<META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

<!doctype html public "-//w3c//dtd html 4.0 transitional//en" >
<HTML xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http
...[SNIP]...
<link rel="canonical" href="http://weddingshop.theknot.com/WEDDINGWAREHOUSE/ErrorPage.aspx" />
...[SNIP]...

Request 2

GET /weddingwarehouse/ProductPage.aspx?pId=P1984(KnotShop)%00'' HTTP/1.1
Host: weddingshop.theknot.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response 2

HTTP/1.1 200 OK
Date: Sun, 02 Jan 2011 13:59:53 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-AspNet-Version: 1.1.4322
COMMERCE-SERVER-SOFTWARE: Microsoft Commerce Server 2002, Enterprise Edition
Set-Cookie: temp=T20110102075951209992; domain=theknot.com; expires=Fri, 02-Jan-2026 13:59:51 GMT; path=/
Set-Cookie: Commerce2002_TestPersistentCookie=TestCookie; expires=Mon, 03-Jan-2011 13:59:51 GMT; path=/
Set-Cookie: Commerce2002_TestSessionCookie=TestCookie; path=/
Set-Cookie: ASP.NET_SessionId=lbhmuk55dgkqxsimbgxe2c2e; path=/
Cache-Control: private
Content-Type: text/html; charset=utf-8
Content-Length: 175906
Set-Cookie: NSC_JOwop3zpcv23nygdk3xpfib3jf2yfdn=ffffffffaf111ec045525d5f4f58455e445a4a423660;expires=Sun, 02-Jan-2011 15:01:30 GMT;path=/;httponly


<!doctype html public "-//w3c//dtd html 4.0 transitional//en" >
<HTML xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fb
...[SNIP]...

2. Cookie without HttpOnly flag set  previous  next
There are 7 instances of this issue:

Issue background

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.



2.1. http://weddingshop.theknot.com/weddingwarehouse/BoutiqueDetail.aspx  next

Summary

Severity:   Low
Confidence:   Firm
Host:   http://weddingshop.theknot.com
Path:   /weddingwarehouse/BoutiqueDetail.aspx

Issue detail

The following cookies were issued by the application and do not have the HttpOnly flag set:The highlighted cookies appear to contain session tokens, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.

Request

GET /weddingwarehouse/BoutiqueDetail.aspx?pVal=0&cTyp=ViewAll&sVal=KSRank&sTyp=Desc&scId=OnSaleKWS(KnotShop)&cId=OnSaleKWS(KnotShop)&cTypF=OS&filter=& HTTP/1.1
Host: weddingshop.theknot.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Sun, 02 Jan 2011 13:58:28 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-AspNet-Version: 1.1.4322
COMMERCE-SERVER-SOFTWARE: Microsoft Commerce Server 2002, Enterprise Edition
Set-Cookie: temp=T20110102075828211046; domain=theknot.com; expires=Fri, 02-Jan-2026 13:58:28 GMT; path=/
Set-Cookie: Commerce2002_TestPersistentCookie=TestCookie; expires=Mon, 03-Jan-2011 13:58:28 GMT; path=/
Set-Cookie: Commerce2002_TestSessionCookie=TestCookie; path=/
Set-Cookie: ASP.NET_SessionId=2sobcinm4nu320euvc51eo45; path=/
Cache-Control: private
Content-Type: text/html; charset=utf-8
Content-Length: 790100
Set-Cookie: NSC_JOwop3zpcv23nygdk3xpfib3jf2yfdn=ffffffffaf111ec245525d5f4f58455e445a4a423660;expires=Sun, 02-Jan-2011 15:00:12 GMT;path=/;httponly


<!doctype html public "-//w3c//dtd html 4.0 transitional//en" >
<HTML xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fb
...[SNIP]...

2.2. http://weddingshop.theknot.com/weddingwarehouse/BoutiqueDetailWithImage.aspx  previous  next

Summary

Severity:   Low
Confidence:   Firm
Host:   http://weddingshop.theknot.com
Path:   /weddingwarehouse/BoutiqueDetailWithImage.aspx

Issue detail

The following cookies were issued by the application and do not have the HttpOnly flag set:The highlighted cookies appear to contain session tokens, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.

Request

GET /weddingwarehouse/BoutiqueDetailWithImage.aspx?pVal=0&cTyp=ViewAll&sVal=KSRank&sTyp=Desc&scId=Chocolates(KnotShop)&cId=Boutiques(KnotShop)&cTypF=BO&filter=&org=BO& HTTP/1.1
Host: weddingshop.theknot.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Sun, 02 Jan 2011 13:59:00 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-AspNet-Version: 1.1.4322
COMMERCE-SERVER-SOFTWARE: Microsoft Commerce Server 2002, Enterprise Edition
Set-Cookie: temp=T20110102075859209088; domain=theknot.com; expires=Fri, 02-Jan-2026 13:58:59 GMT; path=/
Set-Cookie: Commerce2002_TestPersistentCookie=TestCookie; expires=Mon, 03-Jan-2011 13:58:59 GMT; path=/
Set-Cookie: Commerce2002_TestSessionCookie=TestCookie; path=/
Set-Cookie: ASP.NET_SessionId=3fxani55tjhd5t551jxsq3ez; path=/
Cache-Control: private
Content-Type: text/html; charset=utf-8
Content-Length: 812170
Set-Cookie: NSC_JOwop3zpcv23nygdk3xpfib3jf2yfdn=ffffffffaf111ec045525d5f4f58455e445a4a423660;expires=Sun, 02-Jan-2011 15:00:38 GMT;path=/;httponly


<!doctype html public "-//w3c//dtd html 4.0 transitional//en" >
<HTML xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fb
...[SNIP]...

2.3. http://weddingshop.theknot.com/weddingwarehouse/ProductPage.aspx  previous  next

Summary

Severity:   Low
Confidence:   Firm
Host:   http://weddingshop.theknot.com
Path:   /weddingwarehouse/ProductPage.aspx

Issue detail

The following cookies were issued by the application and do not have the HttpOnly flag set:The highlighted cookies appear to contain session tokens, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.

Request

GET /weddingwarehouse/ProductPage.aspx HTTP/1.1
Host: weddingshop.theknot.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 302 Found
Date: Sun, 02 Jan 2011 13:58:19 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-AspNet-Version: 1.1.4322
COMMERCE-SERVER-SOFTWARE: Microsoft Commerce Server 2002, Enterprise Edition
Location: /weddingwarehouse/ErrorPage.aspx?errCode=1007
Set-Cookie: temp=T20110102075819205598; domain=theknot.com; expires=Fri, 02-Jan-2026 13:58:19 GMT; path=/
Set-Cookie: Commerce2002_TestPersistentCookie=TestCookie; expires=Mon, 03-Jan-2011 13:58:19 GMT; path=/
Set-Cookie: Commerce2002_TestSessionCookie=TestCookie; path=/
Set-Cookie: ASP.NET_SessionId=vjvd24vs0b0yag552c20dhrv; path=/
Cache-Control: private
Content-Type: text/html; charset=utf-8
Content-Length: 162
Set-Cookie: NSC_JOwop3zpcv23nygdk3xpfib3jf2yfdn=ffffffffaf111edc45525d5f4f58455e445a4a423660;expires=Sun, 02-Jan-2011 15:00:02 GMT;path=/;httponly

<html><head><title>Object moved</title></head><body>
<h2>Object moved to <a href='/weddingwarehouse/ErrorPage.aspx?errCode=1007'>here</a>.</h2>
</body></html>

2.4. http://weddingshop.theknot.com/weddingwarehouse/SubCategory.aspx  previous  next

Summary

Severity:   Low
Confidence:   Firm
Host:   http://weddingshop.theknot.com
Path:   /weddingwarehouse/SubCategory.aspx

Issue detail

The following cookies were issued by the application and do not have the HttpOnly flag set: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 /weddingwarehouse/SubCategory.aspx HTTP/1.1
Host: weddingshop.theknot.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 302 Found
Date: Sun, 02 Jan 2011 13:58:19 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-AspNet-Version: 1.1.4322
COMMERCE-SERVER-SOFTWARE: Microsoft Commerce Server 2002, Enterprise Edition
Location: /WEDDINGWAREHOUSE/ErrorPage.aspx?errorCode=1015
Set-Cookie: temp=T20110102075819211616; domain=theknot.com; expires=Fri, 02-Jan-2026 13:58:19 GMT; path=/
Set-Cookie: Commerce2002_TestPersistentCookie=TestCookie; expires=Mon, 03-Jan-2011 13:58:19 GMT; path=/
Set-Cookie: Commerce2002_TestSessionCookie=TestCookie; path=/
Cache-Control: private
Content-Type: text/html; charset=utf-8
Content-Length: 164
Set-Cookie: NSC_JOwop3zpcv23nygdk3xpfib3jf2yfdn=ffffffffaf111ec245525d5f4f58455e445a4a423660;expires=Sun, 02-Jan-2011 15:00:02 GMT;path=/;httponly

<html><head><title>Object moved</title></head><body>
<h2>Object moved to <a href='/WEDDINGWAREHOUSE/ErrorPage.aspx?errorCode=1015'>here</a>.</h2>
</body></html>

2.5. http://weddingshop.theknot.com/weddingwarehouse/UICategory.aspx  previous  next

Summary

Severity:   Low
Confidence:   Firm
Host:   http://weddingshop.theknot.com
Path:   /weddingwarehouse/UICategory.aspx

Issue detail

The following cookies were issued by the application and do not have the HttpOnly flag set:The highlighted cookies appear to contain session tokens, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.

Request

GET /weddingwarehouse/UICategory.aspx HTTP/1.1
Host: weddingshop.theknot.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 302 Found
Date: Sun, 02 Jan 2011 13:58:25 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-AspNet-Version: 1.1.4322
COMMERCE-SERVER-SOFTWARE: Microsoft Commerce Server 2002, Enterprise Edition
Location: /weddingwarehouse/Homepage.aspx
Set-Cookie: temp=T20110102075825210757; domain=theknot.com; expires=Fri, 02-Jan-2026 13:58:25 GMT; path=/
Set-Cookie: Commerce2002_TestPersistentCookie=TestCookie; expires=Mon, 03-Jan-2011 13:58:25 GMT; path=/
Set-Cookie: Commerce2002_TestSessionCookie=TestCookie; path=/
Set-Cookie: ASP.NET_SessionId=4rdzrd55qywg1ze5o4eeh555; path=/
Cache-Control: private
Content-Type: text/html; charset=utf-8
Content-Length: 148
Set-Cookie: NSC_JOwop3zpcv23nygdk3xpfib3jf2yfdn=ffffffffaf111ec345525d5f4f58455e445a4a423660;expires=Sun, 02-Jan-2011 15:00:08 GMT;path=/;httponly

<html><head><title>Object moved</title></head><body>
<h2>Object moved to <a href='/weddingwarehouse/Homepage.aspx'>here</a>.</h2>
</body></html>

2.6. http://weddingshop.theknot.com/weddingwarehouse/homepage.aspx  previous  next

Summary

Severity:   Low
Confidence:   Firm
Host:   http://weddingshop.theknot.com
Path:   /weddingwarehouse/homepage.aspx

Issue detail

The following cookies were issued by the application and do not have the HttpOnly flag set:The highlighted cookies appear to contain session tokens, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.

Request

GET /weddingwarehouse/homepage.aspx HTTP/1.1
Host: weddingshop.theknot.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Sun, 02 Jan 2011 13:58:26 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-AspNet-Version: 1.1.4322
COMMERCE-SERVER-SOFTWARE: Microsoft Commerce Server 2002, Enterprise Edition
Set-Cookie: temp=T20110102075825209140; domain=theknot.com; expires=Fri, 02-Jan-2026 13:58:25 GMT; path=/
Set-Cookie: Commerce2002_TestPersistentCookie=TestCookie; expires=Mon, 03-Jan-2011 13:58:25 GMT; path=/
Set-Cookie: Commerce2002_TestSessionCookie=TestCookie; path=/
Set-Cookie: ASP.NET_SessionId=xzq04knmztyrs3aoogs1g155; path=/
Cache-Control: private
Content-Type: text/html; charset=utf-8
Content-Length: 167634
Set-Cookie: NSC_JOwop3zpcv23nygdk3xpfib3jf2yfdn=ffffffffaf111ec045525d5f4f58455e445a4a423660;expires=Sun, 02-Jan-2011 15:00:03 GMT;path=/;httponly


<!doctype html public "-//w3c//dtd html 4.0 transitional//en" >
<HTML xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fb
...[SNIP]...

2.7. http://weddingshop.theknot.com/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://weddingshop.theknot.com
Path:   /

Issue detail

The following cookie was issued by the application and does not have the HttpOnly flag set:The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.

Request

GET / HTTP/1.1
Host: weddingshop.theknot.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 301 Moved Permanently
Date: Sun, 02 Jan 2011 13:58:19 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-AspNet-Version: 1.1.4322
Location: http://weddingshop.theknot.com/weddingwarehouse/homepage.aspx
Set-Cookie: temp=T20110102075819205184; domain=theknot.com; expires=Fri, 02-Jan-2026 13:58:19 GMT; path=/
Cache-Control: private
Content-Type: text/html; charset=utf-8
Content-Length: 225
Set-Cookie: NSC_JOwop3zpcv23nygdk3xpfib3jf2yfdn=ffffffffaf111edc45525d5f4f58455e445a4a423660;expires=Sun, 02-Jan-2011 15:00:03 GMT;path=/;httponly


<html>
<head>
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "UA-208036-4";
urchinTracker();
</script>
</h
...[SNIP]...

3. Cookie scoped to parent domain  previous  next
There are 7 instances of this issue:

Issue background

A cookie's domain attribute determines which domains can access the cookie. Browsers will automatically submit the cookie in requests to in-scope domains, and those domains will also be able to access the cookie via JavaScript. If a cookie is scoped to a parent domain, then that cookie will be accessible by the parent domain and also by any other subdomains of the parent domain. If the cookie contains sensitive data (such as a session token) then this data may be accessible by less trusted or less secure applications residing at those domains, leading to a security compromise.

Issue remediation

By default, cookies are scoped to the issuing domain and all subdomains. If you remove the explicit domain attribute from your Set-cookie directive, then the cookie will have this default scope, which is safe and appropriate in most situations. If you particularly need a cookie to be accessible by a parent domain, then you should thoroughly review the security of the applications residing on that domain and its subdomains, and confirm that you are willing to trust the people and systems which support those applications.


3.1. http://weddingshop.theknot.com/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://weddingshop.theknot.com
Path:   /

Issue detail

The following cookie was issued by the application and is scoped to a parent of the issuing domain:The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.

Request

GET / HTTP/1.1
Host: weddingshop.theknot.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 301 Moved Permanently
Date: Sun, 02 Jan 2011 13:58:19 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-AspNet-Version: 1.1.4322
Location: http://weddingshop.theknot.com/weddingwarehouse/homepage.aspx
Set-Cookie: temp=T20110102075819205184; domain=theknot.com; expires=Fri, 02-Jan-2026 13:58:19 GMT; path=/
Cache-Control: private
Content-Type: text/html; charset=utf-8
Content-Length: 225
Set-Cookie: NSC_JOwop3zpcv23nygdk3xpfib3jf2yfdn=ffffffffaf111edc45525d5f4f58455e445a4a423660;expires=Sun, 02-Jan-2011 15:00:03 GMT;path=/;httponly


<html>
<head>
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "UA-208036-4";
urchinTracker();
</script>
</h
...[SNIP]...

3.2. http://weddingshop.theknot.com/weddingwarehouse/BoutiqueDetail.aspx  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://weddingshop.theknot.com
Path:   /weddingwarehouse/BoutiqueDetail.aspx

Issue detail

The following cookie was issued by the application and is scoped to a parent of the issuing domain:The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.

Request

GET /weddingwarehouse/BoutiqueDetail.aspx HTTP/1.1
Host: weddingshop.theknot.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 302 Found
Date: Sun, 02 Jan 2011 13:58:28 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-AspNet-Version: 1.1.4322
COMMERCE-SERVER-SOFTWARE: Microsoft Commerce Server 2002, Enterprise Edition
Location: /WEDDINGWAREHOUSE/ErrorPage.aspx?errorCode=1015
Set-Cookie: temp=T20110102075828211258; domain=theknot.com; expires=Fri, 02-Jan-2026 13:58:28 GMT; path=/
Set-Cookie: Commerce2002_TestPersistentCookie=TestCookie; expires=Mon, 03-Jan-2011 13:58:28 GMT; path=/
Set-Cookie: Commerce2002_TestSessionCookie=TestCookie; path=/
Cache-Control: private
Content-Type: text/html; charset=utf-8
Content-Length: 164
Set-Cookie: NSC_JOwop3zpcv23nygdk3xpfib3jf2yfdn=ffffffffaf111ec245525d5f4f58455e445a4a423660;expires=Sun, 02-Jan-2011 15:00:12 GMT;path=/;httponly

<html><head><title>Object moved</title></head><body>
<h2>Object moved to <a href='/WEDDINGWAREHOUSE/ErrorPage.aspx?errorCode=1015'>here</a>.</h2>
</body></html>

3.3. http://weddingshop.theknot.com/weddingwarehouse/BoutiqueDetailWithImage.aspx  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://weddingshop.theknot.com
Path:   /weddingwarehouse/BoutiqueDetailWithImage.aspx

Issue detail

The following cookie was issued by the application and is scoped to a parent of the issuing domain:The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.

Request

GET /weddingwarehouse/BoutiqueDetailWithImage.aspx HTTP/1.1
Host: weddingshop.theknot.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 302 Found
Date: Sun, 02 Jan 2011 13:58:51 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-AspNet-Version: 1.1.4322
COMMERCE-SERVER-SOFTWARE: Microsoft Commerce Server 2002, Enterprise Edition
Location: /WEDDINGWAREHOUSE/ErrorPage.aspx?errorCode=1015
Set-Cookie: temp=T20110102075850209992; domain=theknot.com; expires=Fri, 02-Jan-2026 13:58:50 GMT; path=/
Set-Cookie: Commerce2002_TestPersistentCookie=TestCookie; expires=Mon, 03-Jan-2011 13:58:50 GMT; path=/
Set-Cookie: Commerce2002_TestSessionCookie=TestCookie; path=/
Cache-Control: private
Content-Type: text/html; charset=utf-8
Content-Length: 164
Set-Cookie: NSC_JOwop3zpcv23nygdk3xpfib3jf2yfdn=ffffffffaf111ec045525d5f4f58455e445a4a423660;expires=Sun, 02-Jan-2011 15:00:28 GMT;path=/;httponly

<html><head><title>Object moved</title></head><body>
<h2>Object moved to <a href='/WEDDINGWAREHOUSE/ErrorPage.aspx?errorCode=1015'>here</a>.</h2>
</body></html>

3.4. http://weddingshop.theknot.com/weddingwarehouse/ProductPage.aspx  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://weddingshop.theknot.com
Path:   /weddingwarehouse/ProductPage.aspx

Issue detail

The following cookie was issued by the application and is scoped to a parent of the issuing domain:The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.

Request

GET /weddingwarehouse/ProductPage.aspx HTTP/1.1
Host: weddingshop.theknot.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 302 Found
Date: Sun, 02 Jan 2011 13:58:19 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-AspNet-Version: 1.1.4322
COMMERCE-SERVER-SOFTWARE: Microsoft Commerce Server 2002, Enterprise Edition
Location: /weddingwarehouse/ErrorPage.aspx?errCode=1007
Set-Cookie: temp=T20110102075819205598; domain=theknot.com; expires=Fri, 02-Jan-2026 13:58:19 GMT; path=/
Set-Cookie: Commerce2002_TestPersistentCookie=TestCookie; expires=Mon, 03-Jan-2011 13:58:19 GMT; path=/
Set-Cookie: Commerce2002_TestSessionCookie=TestCookie; path=/
Set-Cookie: ASP.NET_SessionId=vjvd24vs0b0yag552c20dhrv; path=/
Cache-Control: private
Content-Type: text/html; charset=utf-8
Content-Length: 162
Set-Cookie: NSC_JOwop3zpcv23nygdk3xpfib3jf2yfdn=ffffffffaf111edc45525d5f4f58455e445a4a423660;expires=Sun, 02-Jan-2011 15:00:02 GMT;path=/;httponly

<html><head><title>Object moved</title></head><body>
<h2>Object moved to <a href='/weddingwarehouse/ErrorPage.aspx?errCode=1007'>here</a>.</h2>
</body></html>

3.5. http://weddingshop.theknot.com/weddingwarehouse/SubCategory.aspx  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://weddingshop.theknot.com
Path:   /weddingwarehouse/SubCategory.aspx

Issue detail

The following cookie was issued by the application and is scoped to a parent of the issuing domain:The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.

Request

GET /weddingwarehouse/SubCategory.aspx HTTP/1.1
Host: weddingshop.theknot.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 302 Found
Date: Sun, 02 Jan 2011 13:58:19 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-AspNet-Version: 1.1.4322
COMMERCE-SERVER-SOFTWARE: Microsoft Commerce Server 2002, Enterprise Edition
Location: /WEDDINGWAREHOUSE/ErrorPage.aspx?errorCode=1015
Set-Cookie: temp=T20110102075819211616; domain=theknot.com; expires=Fri, 02-Jan-2026 13:58:19 GMT; path=/
Set-Cookie: Commerce2002_TestPersistentCookie=TestCookie; expires=Mon, 03-Jan-2011 13:58:19 GMT; path=/
Set-Cookie: Commerce2002_TestSessionCookie=TestCookie; path=/
Cache-Control: private
Content-Type: text/html; charset=utf-8
Content-Length: 164
Set-Cookie: NSC_JOwop3zpcv23nygdk3xpfib3jf2yfdn=ffffffffaf111ec245525d5f4f58455e445a4a423660;expires=Sun, 02-Jan-2011 15:00:02 GMT;path=/;httponly

<html><head><title>Object moved</title></head><body>
<h2>Object moved to <a href='/WEDDINGWAREHOUSE/ErrorPage.aspx?errorCode=1015'>here</a>.</h2>
</body></html>

3.6. http://weddingshop.theknot.com/weddingwarehouse/UICategory.aspx  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://weddingshop.theknot.com
Path:   /weddingwarehouse/UICategory.aspx

Issue detail

The following cookie was issued by the application and is scoped to a parent of the issuing domain:The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.

Request

GET /weddingwarehouse/UICategory.aspx HTTP/1.1
Host: weddingshop.theknot.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 302 Found
Date: Sun, 02 Jan 2011 13:58:25 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-AspNet-Version: 1.1.4322
COMMERCE-SERVER-SOFTWARE: Microsoft Commerce Server 2002, Enterprise Edition
Location: /weddingwarehouse/Homepage.aspx
Set-Cookie: temp=T20110102075825210757; domain=theknot.com; expires=Fri, 02-Jan-2026 13:58:25 GMT; path=/
Set-Cookie: Commerce2002_TestPersistentCookie=TestCookie; expires=Mon, 03-Jan-2011 13:58:25 GMT; path=/
Set-Cookie: Commerce2002_TestSessionCookie=TestCookie; path=/
Set-Cookie: ASP.NET_SessionId=4rdzrd55qywg1ze5o4eeh555; path=/
Cache-Control: private
Content-Type: text/html; charset=utf-8
Content-Length: 148
Set-Cookie: NSC_JOwop3zpcv23nygdk3xpfib3jf2yfdn=ffffffffaf111ec345525d5f4f58455e445a4a423660;expires=Sun, 02-Jan-2011 15:00:08 GMT;path=/;httponly

<html><head><title>Object moved</title></head><body>
<h2>Object moved to <a href='/weddingwarehouse/Homepage.aspx'>here</a>.</h2>
</body></html>

3.7. http://weddingshop.theknot.com/weddingwarehouse/homepage.aspx  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://weddingshop.theknot.com
Path:   /weddingwarehouse/homepage.aspx

Issue detail

The following cookie was issued by the application and is scoped to a parent of the issuing domain:The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.

Request

GET /weddingwarehouse/homepage.aspx HTTP/1.1
Host: weddingshop.theknot.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Sun, 02 Jan 2011 13:58:26 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-AspNet-Version: 1.1.4322
COMMERCE-SERVER-SOFTWARE: Microsoft Commerce Server 2002, Enterprise Edition
Set-Cookie: temp=T20110102075825209140; domain=theknot.com; expires=Fri, 02-Jan-2026 13:58:25 GMT; path=/
Set-Cookie: Commerce2002_TestPersistentCookie=TestCookie; expires=Mon, 03-Jan-2011 13:58:25 GMT; path=/
Set-Cookie: Commerce2002_TestSessionCookie=TestCookie; path=/
Set-Cookie: ASP.NET_SessionId=xzq04knmztyrs3aoogs1g155; path=/
Cache-Control: private
Content-Type: text/html; charset=utf-8
Content-Length: 167634
Set-Cookie: NSC_JOwop3zpcv23nygdk3xpfib3jf2yfdn=ffffffffaf111ec045525d5f4f58455e445a4a423660;expires=Sun, 02-Jan-2011 15:00:03 GMT;path=/;httponly


<!doctype html public "-//w3c//dtd html 4.0 transitional//en" >
<HTML xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fb
...[SNIP]...

4. Cross-domain Referer leakage  previous  next
There are 4 instances of this issue:

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.


4.1. http://weddingshop.theknot.com/weddingwarehouse/BoutiqueDetail.aspx  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://weddingshop.theknot.com
Path:   /weddingwarehouse/BoutiqueDetail.aspx

Issue detail

The page was loaded from a URL containing a query string:The response contains the following links to other domains:

Request

GET /weddingwarehouse/BoutiqueDetail.aspx?pVal=0&cTyp=ViewAll&sVal=KSRank&sTyp=Desc&scId=OnSaleKWS(KnotShop)&cId=OnSaleKWS(KnotShop)&cTypF=OS&filter=& HTTP/1.1
Host: weddingshop.theknot.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Sun, 02 Jan 2011 13:58:28 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-AspNet-Version: 1.1.4322
COMMERCE-SERVER-SOFTWARE: Microsoft Commerce Server 2002, Enterprise Edition
Set-Cookie: temp=T20110102075828211046; domain=theknot.com; expires=Fri, 02-Jan-2026 13:58:28 GMT; path=/
Set-Cookie: Commerce2002_TestPersistentCookie=TestCookie; expires=Mon, 03-Jan-2011 13:58:28 GMT; path=/
Set-Cookie: Commerce2002_TestSessionCookie=TestCookie; path=/
Set-Cookie: ASP.NET_SessionId=2sobcinm4nu320euvc51eo45; path=/
Cache-Control: private
Content-Type: text/html; charset=utf-8
Content-Length: 790100
Set-Cookie: NSC_JOwop3zpcv23nygdk3xpfib3jf2yfdn=ffffffffaf111ec245525d5f4f58455e445a4a423660;expires=Sun, 02-Jan-2011 15:00:12 GMT;path=/;httponly


<!doctype html public "-//w3c//dtd html 4.0 transitional//en" >
<HTML xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fb
...[SNIP]...
<li class="thenest"><a href="http://www.thenest.com" title="The Nest"><span >
...[SNIP]...
<li class="thebump"><a href="http://www.thebump.com" title="The Bump"><span>
...[SNIP]...
<div class="noclass" style="text-transform:lowercase;">
           <A class='noclass' id="aWeddingPaperDivasTK" href="http://theknot.stores.weddingpaperdivas.com/refid/theknot001/?cm_sp=KWSLEFTNAV-_-TKWPDCAT-_-MICROSITE" target="_blank">
               Wedding Paper Divas + The Knot
           </a>
...[SNIP]...
<div class="submenu">
               <a href="http://theknot.stores.weddingpaperdivas.com/refid/theknot001/?cm_sp=KWSLEFTNAV-_-WEDSTATIONERY-_-MICROSITE" target="_blank">Wedding Stationery</a>
...[SNIP]...
</a><a href="http://theknot.stores.weddingpaperdivas.com/refid/theknot001/?cm_sp=KWSLEFTNAV-_-WEDDINGINV-_-PERSTATIONERY" target="_blank">Personalized Stationery</a> <a href="http://www.zazzle.com/theknot?CMPN=tkl&rf=238172683517033064">Wedding Postage</a>
...[SNIP]...
</a>
<a href="http://theknot.stores.weddingpaperdivas.com/refid/theknot001/?cm_sp=KWSLEFTNAV-_-SHOPBYBRAND-_-WPDTK" target="_blank">WEDDING PAPER DIVAS</a>
...[SNIP]...
<span class="nsearch"><a href="https://www.scanalert.com/RatingVerify?ref=weddingshop.theknot.com" target="_blank">
           <img class="HackerSafe" oncontextmenu="alert('Copying Prohibited by Law - HACKER SAFE is a Trademark of ScanAlert'); return false;"
               height="37" alt="HACKER SAFE certified sites prevent over 99.9% of hacker crime."
               src="http://images.scanalert.com/meter/weddingshop.theknot.com/31.gif" width="65" border="0">
</a>
...[SNIP]...
<p><a href="http://theknot.stores.weddingpaperdivas.com/refid/theknot001/?cm_sp=KWSQuickLinks-_-NEWJULY2010-_-STATIONERY" target="_blank">Wedding Stationery</a>
...[SNIP]...
<div><a href="https://www.securecheckout.billmelater.com/paycapture-content/fetch?hash=2BP272EP&amp;content=/bmlweb/np90drollingiw.html" target="_blank"><img height="41" alt="Bill Me Later" src="http://media.theknot.com/StaticImages/KnotShop/BML/Aug2010/BML_catpage0810.gif" width="768" border="0" />
...[SNIP]...
<DIV class="dealimg"><A href="http://www.giftregistry360.com?cm_sp=TKDART-_-GR360-_-120x90b" target="_blank"><IMG height="90" alt="Bill Me Later" src="http://media.theknot.com/StaticImages/KnotShop/specialoffers/gr360_120x90.gif" width="120" border="0">
...[SNIP]...
</a>&nbsp;|&nbsp;
<a href="http://theknot.stores.weddingpaperdivas.com/refid/theknot001/?cm_sp=KWSBOTTOMMAV-_-TKWPD-_-MICROSITE" target="_blank">Wedding Stationery</a>
...[SNIP]...
</a>&nbsp;|&nbsp;
<a href="http://www.zazzle.com/theknot?CMPN=tkl&rf=238172683517033064">Personalized Stamps</a>
...[SNIP]...
</a>&nbsp;|&nbsp;<a href="http://phx.corporate-ir.net/phoenix.zhtml?c=99931&p=irol-irhome" style="color:#000;">Investor Relations</a>
...[SNIP]...
<div style="color:#999999;">OUR SIBLING SITES: <a href="http://www.thenest.com/" target="_blank" style="color:#999999">TheNest.com</a>&nbsp;|&nbsp;<a href="http://thenestbaby.com/" target="_blank" style="color:#999999">TheNestBaby.com</a> &nbsp;|&nbsp;<a href="http://www.lilaguide.com/" target="_blank" style="color:#999999">Lilaguide.com</a>&nbsp;|&nbsp;<a href="http://www.partyspot.com/" target="_blank" style="color:#999999">PartySpot.com</a>&nbsp;|&nbsp;<a href="http://www.promspot.com" target="_blank" style="color:#999999">PromSpot.com</a>&nbsp;|&nbsp;<a href="http://www.weddingtracker.com" target="_blank" style="color:#999999">WeddingTracker.com</a>
...[SNIP]...
<br />
PARTNER STORES: <a href="http://www.shopforweddings.com" target="_blank" style="color:#999999">ShopForWeddings.com</a>&nbsp;|&nbsp;<a href="http://www.thebumpbabyshop.com" target="_blank" style="color:#999999">TheBumpBabyShop.com</a>&nbsp;|&nbsp;<a href="http://www.partyspotshop.com" target="_blank" style="color:#999999">PartySpotShop</a>
...[SNIP]...
<br />
NICHE KNOT SITES: <a href="http://chineseweddingsbytheknot.com/" target="_blank" style="color:#999999">ChineseWeddingsByTheKnot.com</a>&nbsp;|&nbsp;<a href="http://BeachWeddingsByTheKnot.com" target="_blank" style="color:#999999">BeachWeddingsByTheKnot.com</a>
...[SNIP]...
<!-- Google Analytics -->
<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
</script>
...[SNIP]...
<!-- Begin Acerno Tag -->
<IFRAME SRC="http://www.imiclk.com/cgi/r.cgi?m=3&mid=H8erbkW5&did=sale" FRAMEBORDER="0" SCROLLING="no" WIDTH="0" HEIGHT="0">
</IFRAME>
...[SNIP]...
<noscript>
<img src="http://b.scorecardresearch.com/p?c1=2&c2=6035362&c3=&c4=&c5=&c6=&c15=&cj=1" />
</noscript>
...[SNIP]...

4.2. http://weddingshop.theknot.com/weddingwarehouse/BoutiqueDetailWithImage.aspx  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://weddingshop.theknot.com
Path:   /weddingwarehouse/BoutiqueDetailWithImage.aspx

Issue detail

The page was loaded from a URL containing a query string:The response contains the following links to other domains:

Request

GET /weddingwarehouse/BoutiqueDetailWithImage.aspx?pVal=0&cTyp=ViewAll&sVal=KSRank&sTyp=Desc&scId=Chocolates(KnotShop)&cId=Boutiques(KnotShop)&cTypF=BO&filter=&org=BO& HTTP/1.1
Host: weddingshop.theknot.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Sun, 02 Jan 2011 13:59:00 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-AspNet-Version: 1.1.4322
COMMERCE-SERVER-SOFTWARE: Microsoft Commerce Server 2002, Enterprise Edition
Set-Cookie: temp=T20110102075859209088; domain=theknot.com; expires=Fri, 02-Jan-2026 13:58:59 GMT; path=/
Set-Cookie: Commerce2002_TestPersistentCookie=TestCookie; expires=Mon, 03-Jan-2011 13:58:59 GMT; path=/
Set-Cookie: Commerce2002_TestSessionCookie=TestCookie; path=/
Set-Cookie: ASP.NET_SessionId=3fxani55tjhd5t551jxsq3ez; path=/
Cache-Control: private
Content-Type: text/html; charset=utf-8
Content-Length: 812170
Set-Cookie: NSC_JOwop3zpcv23nygdk3xpfib3jf2yfdn=ffffffffaf111ec045525d5f4f58455e445a4a423660;expires=Sun, 02-Jan-2011 15:00:38 GMT;path=/;httponly


<!doctype html public "-//w3c//dtd html 4.0 transitional//en" >
<HTML xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fb
...[SNIP]...
<li class="thenest"><a href="http://www.thenest.com" title="The Nest"><span >
...[SNIP]...
<li class="thebump"><a href="http://www.thebump.com" title="The Bump"><span>
...[SNIP]...
<div class="noclass" style="text-transform:lowercase;">
           <A class='noclass' id="aWeddingPaperDivasTK" href="http://theknot.stores.weddingpaperdivas.com/refid/theknot001/?cm_sp=KWSLEFTNAV-_-TKWPDCAT-_-MICROSITE" target="_blank">
               Wedding Paper Divas + The Knot
           </a>
...[SNIP]...
<div class="submenu">
               <a href="http://theknot.stores.weddingpaperdivas.com/refid/theknot001/?cm_sp=KWSLEFTNAV-_-WEDSTATIONERY-_-MICROSITE" target="_blank">Wedding Stationery</a>
...[SNIP]...
</a><a href="http://theknot.stores.weddingpaperdivas.com/refid/theknot001/?cm_sp=KWSLEFTNAV-_-WEDDINGINV-_-PERSTATIONERY" target="_blank">Personalized Stationery</a> <a href="http://www.zazzle.com/theknot?CMPN=tkl&rf=238172683517033064">Wedding Postage</a>
...[SNIP]...
</a>
<a href="http://theknot.stores.weddingpaperdivas.com/refid/theknot001/?cm_sp=KWSLEFTNAV-_-SHOPBYBRAND-_-WPDTK" target="_blank">WEDDING PAPER DIVAS</a>
...[SNIP]...
<span class="nsearch"><a href="https://www.scanalert.com/RatingVerify?ref=weddingshop.theknot.com" target="_blank">
           <img class="HackerSafe" oncontextmenu="alert('Copying Prohibited by Law - HACKER SAFE is a Trademark of ScanAlert'); return false;"
               height="37" alt="HACKER SAFE certified sites prevent over 99.9% of hacker crime."
               src="http://images.scanalert.com/meter/weddingshop.theknot.com/31.gif" width="65" border="0">
</a>
...[SNIP]...
<p><a href="http://theknot.stores.weddingpaperdivas.com/refid/theknot001/?cm_sp=KWSQuickLinks-_-NEWJULY2010-_-STATIONERY" target="_blank">Wedding Stationery</a>
...[SNIP]...
<div><a href="https://www.securecheckout.billmelater.com/paycapture-content/fetch?hash=2BP272EP&amp;content=/bmlweb/np90drollingiw.html" target="_blank"><img height="41" alt="Bill Me Later" src="http://media.theknot.com/StaticImages/KnotShop/BML/Aug2010/BML_catpage0810.gif" width="768" border="0" />
...[SNIP]...
<DIV class="dealimg"><A href="http://www.giftregistry360.com?cm_sp=TKDART-_-GR360-_-120x90b" target="_blank"><IMG height="90" alt="Bill Me Later" src="http://media.theknot.com/StaticImages/KnotShop/specialoffers/gr360_120x90.gif" width="120" border="0">
...[SNIP]...
</a>&nbsp;|&nbsp;
<a href="http://theknot.stores.weddingpaperdivas.com/refid/theknot001/?cm_sp=KWSBOTTOMMAV-_-TKWPD-_-MICROSITE" target="_blank">Wedding Stationery</a>
...[SNIP]...
</a>&nbsp;|&nbsp;
<a href="http://www.zazzle.com/theknot?CMPN=tkl&rf=238172683517033064">Personalized Stamps</a>
...[SNIP]...
</a>&nbsp;|&nbsp;<a href="http://phx.corporate-ir.net/phoenix.zhtml?c=99931&p=irol-irhome" style="color:#000;">Investor Relations</a>
...[SNIP]...
<div style="color:#999999;">OUR SIBLING SITES: <a href="http://www.thenest.com/" target="_blank" style="color:#999999">TheNest.com</a>&nbsp;|&nbsp;<a href="http://thenestbaby.com/" target="_blank" style="color:#999999">TheNestBaby.com</a> &nbsp;|&nbsp;<a href="http://www.lilaguide.com/" target="_blank" style="color:#999999">Lilaguide.com</a>&nbsp;|&nbsp;<a href="http://www.partyspot.com/" target="_blank" style="color:#999999">PartySpot.com</a>&nbsp;|&nbsp;<a href="http://www.promspot.com" target="_blank" style="color:#999999">PromSpot.com</a>&nbsp;|&nbsp;<a href="http://www.weddingtracker.com" target="_blank" style="color:#999999">WeddingTracker.com</a>
...[SNIP]...
<br />
PARTNER STORES: <a href="http://www.shopforweddings.com" target="_blank" style="color:#999999">ShopForWeddings.com</a>&nbsp;|&nbsp;<a href="http://www.thebumpbabyshop.com" target="_blank" style="color:#999999">TheBumpBabyShop.com</a>&nbsp;|&nbsp;<a href="http://www.partyspotshop.com" target="_blank" style="color:#999999">PartySpotShop</a>
...[SNIP]...
<br />
NICHE KNOT SITES: <a href="http://chineseweddingsbytheknot.com/" target="_blank" style="color:#999999">ChineseWeddingsByTheKnot.com</a>&nbsp;|&nbsp;<a href="http://BeachWeddingsByTheKnot.com" target="_blank" style="color:#999999">BeachWeddingsByTheKnot.com</a>
...[SNIP]...
<!-- Google Analytics -->
<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
</script>
...[SNIP]...
<noscript>
<img src="http://b.scorecardresearch.com/p?c1=2&c2=6035362&c3=&c4=&c5=&c6=&c15=&cj=1" />
</noscript>
...[SNIP]...

4.3. http://weddingshop.theknot.com/weddingwarehouse/ProductPage.aspx  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://weddingshop.theknot.com
Path:   /weddingwarehouse/ProductPage.aspx

Issue detail

The page was loaded from a URL containing a query string:The response contains the following links to other domains:

Request

GET /weddingwarehouse/ProductPage.aspx?pId=P1984(KnotShop) HTTP/1.1
Host: weddingshop.theknot.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Sun, 02 Jan 2011 13:58:27 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-AspNet-Version: 1.1.4322
COMMERCE-SERVER-SOFTWARE: Microsoft Commerce Server 2002, Enterprise Edition
Set-Cookie: temp=T20110102075825209140; domain=theknot.com; expires=Fri, 02-Jan-2026 13:58:25 GMT; path=/
Set-Cookie: Commerce2002_TestPersistentCookie=TestCookie; expires=Mon, 03-Jan-2011 13:58:25 GMT; path=/
Set-Cookie: Commerce2002_TestSessionCookie=TestCookie; path=/
Set-Cookie: ASP.NET_SessionId=q5soz15540ppt4aylmh4oonb; path=/
Cache-Control: private
Content-Type: text/html; charset=utf-8
Content-Length: 175821
Set-Cookie: NSC_JOwop3zpcv23nygdk3xpfib3jf2yfdn=ffffffffaf111ec045525d5f4f58455e445a4a423660;expires=Sun, 02-Jan-2011 15:00:04 GMT;path=/;httponly


<!doctype html public "-//w3c//dtd html 4.0 transitional//en" >
<HTML xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fb
...[SNIP]...
<li class="thenest"><a href="http://www.thenest.com" title="The Nest"><span >
...[SNIP]...
<li class="thebump"><a href="http://www.thebump.com" title="The Bump"><span>
...[SNIP]...
<div class="noclass" style="text-transform:lowercase;">
           <A class='noclass' id="aWeddingPaperDivasTK" href="http://theknot.stores.weddingpaperdivas.com/refid/theknot001/?cm_sp=KWSLEFTNAV-_-TKWPDCAT-_-MICROSITE" target="_blank">
               Wedding Paper Divas + The Knot
           </a>
...[SNIP]...
<div class="submenu">
               <a href="http://theknot.stores.weddingpaperdivas.com/refid/theknot001/?cm_sp=KWSLEFTNAV-_-WEDSTATIONERY-_-MICROSITE" target="_blank">Wedding Stationery</a>
...[SNIP]...
</a><a href="http://theknot.stores.weddingpaperdivas.com/refid/theknot001/?cm_sp=KWSLEFTNAV-_-WEDDINGINV-_-PERSTATIONERY" target="_blank">Personalized Stationery</a> <a href="http://www.zazzle.com/theknot?CMPN=tkl&rf=238172683517033064">Wedding Postage</a>
...[SNIP]...
</a>
<a href="http://theknot.stores.weddingpaperdivas.com/refid/theknot001/?cm_sp=KWSLEFTNAV-_-SHOPBYBRAND-_-WPDTK" target="_blank">WEDDING PAPER DIVAS</a>
...[SNIP]...
<span class="nsearch"><a href="https://www.scanalert.com/RatingVerify?ref=weddingshop.theknot.com" target="_blank">
           <img class="HackerSafe" oncontextmenu="alert('Copying Prohibited by Law - HACKER SAFE is a Trademark of ScanAlert'); return false;"
               height="37" alt="HACKER SAFE certified sites prevent over 99.9% of hacker crime."
               src="http://images.scanalert.com/meter/weddingshop.theknot.com/31.gif" width="65" border="0">
</a>
...[SNIP]...
<p><a href="http://theknot.stores.weddingpaperdivas.com/refid/theknot001/?cm_sp=KWSQuickLinks-_-NEWJULY2010-_-STATIONERY" target="_blank">Wedding Stationery</a>
...[SNIP]...
m/weddingwarehouse/ProductPage.aspx?pId=P1984(KnotShop)" layout="standard" show_faces="false" width="325" action="like" font="Verdana,Geneva,Arial,Helvetica,sans-serif" colorscheme="default" />
                       <script src="http://connect.facebook.net/en_US/all.js"></script>
...[SNIP]...
<!-- ADDTHIS BUTTON DROP-DOWN BEGIN -->
                       <script type="text/javascript" language="javascript" src="http://s7.addthis.com/custom/theknot/js/addthis_widget.php?v=12"></script>
                       <a class="addthis" style="text-decoration:underline;" href="http://www.addthis.com/bookmark.php"
                           onmouseover="return addthis_onmouseover(this, event, '', '', 'TheKnot')" onmouseout="addthis_onmouseout()"
                           onclick="return addthis_to()">
<img src="http://scmedia.theknot.com/~/media/4E0A28AD5DDC4BE4B0EE7FACF5C39467.ashx" border="0" />
...[SNIP]...
<div style="PADDING-TOP:5px"><a href="https://www.securecheckout.billmelater.com/paycapture-content/fetch?hash=2BP272EP&amp;content=/bmlweb/np90drollingiw.html"
                       target="_blank">
<img src="http://media.theknot.com/StaticImages/Knotshop/BML/productpage/BML_logo_prodpg.gif"
                           alt="Bill Me Later" border="0" class="pd2">
...[SNIP]...
<span class="whatsthis">(<a href="https://www.securecheckout.billmelater.com/paycapture-content/fetch?hash=2BP272EP&amp;content=/bmlweb/np90drollingiw.html" target="_blank">what's this?</a>
...[SNIP]...
<td colspan="2" class="BMLprod"><a href="https://www.securecheckout.billmelater.com/paycapture-content/fetch?hash=2BP272EP&content=/bmlweb/np90drollingiw.html" target="_blank"><img src="http://media.theknot.com/StaticImages/KnotShop/BML/Aug2010/BML_150productpg0810.gif" border="0" width="150" height="90" alt="Bill Me Later" />
...[SNIP]...
<DIV class="dealimg"><A href="http://www.giftregistry360.com?cm_sp=TKDART-_-GR360-_-120x90b" target="_blank"><IMG height="90" alt="Bill Me Later" src="http://media.theknot.com/StaticImages/KnotShop/specialoffers/gr360_120x90.gif" width="120" border="0">
...[SNIP]...
</a>&nbsp;|&nbsp;
<a href="http://theknot.stores.weddingpaperdivas.com/refid/theknot001/?cm_sp=KWSBOTTOMMAV-_-TKWPD-_-MICROSITE" target="_blank">Wedding Stationery</a>
...[SNIP]...
</a>&nbsp;|&nbsp;
<a href="http://www.zazzle.com/theknot?CMPN=tkl&rf=238172683517033064">Personalized Stamps</a>
...[SNIP]...
</a>&nbsp;|&nbsp;<a href="http://phx.corporate-ir.net/phoenix.zhtml?c=99931&p=irol-irhome" style="color:#000;">Investor Relations</a>
...[SNIP]...
<div style="color:#999999;">OUR SIBLING SITES: <a href="http://www.thenest.com/" target="_blank" style="color:#999999">TheNest.com</a>&nbsp;|&nbsp;<a href="http://thenestbaby.com/" target="_blank" style="color:#999999">TheNestBaby.com</a> &nbsp;|&nbsp;<a href="http://www.lilaguide.com/" target="_blank" style="color:#999999">Lilaguide.com</a>&nbsp;|&nbsp;<a href="http://www.partyspot.com/" target="_blank" style="color:#999999">PartySpot.com</a>&nbsp;|&nbsp;<a href="http://www.promspot.com" target="_blank" style="color:#999999">PromSpot.com</a>&nbsp;|&nbsp;<a href="http://www.weddingtracker.com" target="_blank" style="color:#999999">WeddingTracker.com</a>
...[SNIP]...
<br />
PARTNER STORES: <a href="http://www.shopforweddings.com" target="_blank" style="color:#999999">ShopForWeddings.com</a>&nbsp;|&nbsp;<a href="http://www.thebumpbabyshop.com" target="_blank" style="color:#999999">TheBumpBabyShop.com</a>&nbsp;|&nbsp;<a href="http://www.partyspotshop.com" target="_blank" style="color:#999999">PartySpotShop</a>
...[SNIP]...
<br />
NICHE KNOT SITES: <a href="http://chineseweddingsbytheknot.com/" target="_blank" style="color:#999999">ChineseWeddingsByTheKnot.com</a>&nbsp;|&nbsp;<a href="http://BeachWeddingsByTheKnot.com" target="_blank" style="color:#999999">BeachWeddingsByTheKnot.com</a>
...[SNIP]...
<!-- Google Analytics -->
<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
</script>
...[SNIP]...
<noscript>
<img src="http://b.scorecardresearch.com/p?c1=2&c2=6035362&c3=&c4=&c5=&c6=&c15=&cj=1" />
</noscript>
...[SNIP]...

4.4. http://weddingshop.theknot.com/weddingwarehouse/UICategory.aspx  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://weddingshop.theknot.com
Path:   /weddingwarehouse/UICategory.aspx

Issue detail

The page was loaded from a URL containing a query string:The response contains the following links to other domains:

Request

GET /weddingwarehouse/UICategory.aspx?cId=Favors(KnotShop)& HTTP/1.1
Host: weddingshop.theknot.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Sun, 02 Jan 2011 13:58:29 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-AspNet-Version: 1.1.4322
COMMERCE-SERVER-SOFTWARE: Microsoft Commerce Server 2002, Enterprise Edition
Set-Cookie: temp=T20110102075826205935; domain=theknot.com; expires=Fri, 02-Jan-2026 13:58:26 GMT; path=/
Set-Cookie: Commerce2002_TestPersistentCookie=TestCookie; expires=Mon, 03-Jan-2011 13:58:26 GMT; path=/
Set-Cookie: Commerce2002_TestSessionCookie=TestCookie; path=/
Set-Cookie: ASP.NET_SessionId=2ensgebp2g3uwt55hhbfp3qp; path=/
Cache-Control: private
Content-Type: text/html; charset=utf-8
Content-Length: 203620
Set-Cookie: NSC_JOwop3zpcv23nygdk3xpfib3jf2yfdn=ffffffffaf111edc45525d5f4f58455e445a4a423660;expires=Sun, 02-Jan-2011 15:00:12 GMT;path=/;httponly


<!doctype html public "-//w3c//dtd html 4.0 transitional//en" >
<HTML xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fb
...[SNIP]...
<li class="thenest"><a href="http://www.thenest.com" title="The Nest"><span >
...[SNIP]...
<li class="thebump"><a href="http://www.thebump.com" title="The Bump"><span>
...[SNIP]...
<div class="noclass" style="text-transform:lowercase;">
           <A class='noclass' id="aWeddingPaperDivasTK" href="http://theknot.stores.weddingpaperdivas.com/refid/theknot001/?cm_sp=KWSLEFTNAV-_-TKWPDCAT-_-MICROSITE" target="_blank">
               Wedding Paper Divas + The Knot
           </a>
...[SNIP]...
<div class="submenu">
               <a href="http://theknot.stores.weddingpaperdivas.com/refid/theknot001/?cm_sp=KWSLEFTNAV-_-WEDSTATIONERY-_-MICROSITE" target="_blank">Wedding Stationery</a>
...[SNIP]...
</a><a href="http://theknot.stores.weddingpaperdivas.com/refid/theknot001/?cm_sp=KWSLEFTNAV-_-WEDDINGINV-_-PERSTATIONERY" target="_blank">Personalized Stationery</a> <a href="http://www.zazzle.com/theknot?CMPN=tkl&rf=238172683517033064">Wedding Postage</a>
...[SNIP]...
</a>
<a href="http://theknot.stores.weddingpaperdivas.com/refid/theknot001/?cm_sp=KWSLEFTNAV-_-SHOPBYBRAND-_-WPDTK" target="_blank">WEDDING PAPER DIVAS</a>
...[SNIP]...
<span class="nsearch"><a href="https://www.scanalert.com/RatingVerify?ref=weddingshop.theknot.com" target="_blank">
           <img class="HackerSafe" oncontextmenu="alert('Copying Prohibited by Law - HACKER SAFE is a Trademark of ScanAlert'); return false;"
               height="37" alt="HACKER SAFE certified sites prevent over 99.9% of hacker crime."
               src="http://images.scanalert.com/meter/weddingshop.theknot.com/31.gif" width="65" border="0">
</a>
...[SNIP]...
<p><a href="http://theknot.stores.weddingpaperdivas.com/refid/theknot001/?cm_sp=KWSQuickLinks-_-NEWJULY2010-_-STATIONERY" target="_blank">Wedding Stationery</a>
...[SNIP]...
<DIV class="bmlpad10"><A href="https://www.securecheckout.billmelater.com/paycapture-content/fetch?hash=2BP272EP&amp;content=/bmlweb/np90drollingiw.html"
                   target="_blank">
<IMG height="41" alt="Bill Me Later" src="http://media.theknot.com/StaticImages/KnotShop/BML/Aug2010/BML_catpage0810.gif"
                       width="768" border="0">
...[SNIP]...
<DIV class="dealimg"><A href="http://www.giftregistry360.com?cm_sp=TKDART-_-GR360-_-120x90b" target="_blank"><IMG height="90" alt="Bill Me Later" src="http://media.theknot.com/StaticImages/KnotShop/specialoffers/gr360_120x90.gif" width="120" border="0">
...[SNIP]...
<div class="promo_thumb"><a href="http://www.babynest.com/babynest/aflhomepage.aspx" target="_blank"><img src="http://media.theknot.com/StaticImages/KnotShop/promos/nbsproduct_011207.gif">
...[SNIP]...
<div class="promo_submit"><a href="http://www.babynest.com/babynest/aflhomepage.aspx" target="_blank"><img src="http://media.theknot.com/StaticImages/KnotShop/promos/btn_shop_for_baby_gifts.gif">
...[SNIP]...
<div class="pww_left"><a href="http://www.weddingtracker.com/" target="_blank"><img src="http://media.theknot.com/StaticImages/KnotShop/promos/screenshots.gif">
...[SNIP]...
<div class="wt-logo"><a href="http://www.weddingtracker.com/" target="_blank"><img src="http://media.theknot.com/StaticImages/KnotShop/promos/wed_track_logo.gif" alt="Wedding Tracker">
...[SNIP]...
<div class="wt-btn"><a href="http://www.weddingtracker.com/" target="_blank"><img src="http://media.theknot.com/StaticImages/KnotShop/promos/buy_now.gif" alt="BUY NOW">
...[SNIP]...
</a>&nbsp;|&nbsp;
<a href="http://theknot.stores.weddingpaperdivas.com/refid/theknot001/?cm_sp=KWSBOTTOMMAV-_-TKWPD-_-MICROSITE" target="_blank">Wedding Stationery</a>
...[SNIP]...
</a>&nbsp;|&nbsp;
<a href="http://www.zazzle.com/theknot?CMPN=tkl&rf=238172683517033064">Personalized Stamps</a>
...[SNIP]...
</a>&nbsp;|&nbsp;<a href="http://phx.corporate-ir.net/phoenix.zhtml?c=99931&p=irol-irhome" style="color:#000;">Investor Relations</a>
...[SNIP]...
<div style="color:#999999;">OUR SIBLING SITES: <a href="http://www.thenest.com/" target="_blank" style="color:#999999">TheNest.com</a>&nbsp;|&nbsp;<a href="http://thenestbaby.com/" target="_blank" style="color:#999999">TheNestBaby.com</a> &nbsp;|&nbsp;<a href="http://www.lilaguide.com/" target="_blank" style="color:#999999">Lilaguide.com</a>&nbsp;|&nbsp;<a href="http://www.partyspot.com/" target="_blank" style="color:#999999">PartySpot.com</a>&nbsp;|&nbsp;<a href="http://www.promspot.com" target="_blank" style="color:#999999">PromSpot.com</a>&nbsp;|&nbsp;<a href="http://www.weddingtracker.com" target="_blank" style="color:#999999">WeddingTracker.com</a>
...[SNIP]...
<br />
PARTNER STORES: <a href="http://www.shopforweddings.com" target="_blank" style="color:#999999">ShopForWeddings.com</a>&nbsp;|&nbsp;<a href="http://www.thebumpbabyshop.com" target="_blank" style="color:#999999">TheBumpBabyShop.com</a>&nbsp;|&nbsp;<a href="http://www.partyspotshop.com" target="_blank" style="color:#999999">PartySpotShop</a>
...[SNIP]...
<br />
NICHE KNOT SITES: <a href="http://chineseweddingsbytheknot.com/" target="_blank" style="color:#999999">ChineseWeddingsByTheKnot.com</a>&nbsp;|&nbsp;<a href="http://BeachWeddingsByTheKnot.com" target="_blank" style="color:#999999">BeachWeddingsByTheKnot.com</a>
...[SNIP]...
<!-- Google Analytics -->
<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
</script>
...[SNIP]...
<!-- Begin Acerno Tag -->
<IFRAME SRC="http://www.imiclk.com/cgi/r.cgi?m=3&mid=H8erbkW5&did=favors" FRAMEBORDER="0" SCROLLING="no" WIDTH="0" HEIGHT="0">
</IFRAME>
...[SNIP]...
<noscript>
<img src="http://b.scorecardresearch.com/p?c1=2&c2=6035362&c3=&c4=&c5=&c6=&c15=&cj=1" />
</noscript>
...[SNIP]...

5. Cross-domain script include  previous  next
There are 6 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.


5.1. http://weddingshop.theknot.com/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://weddingshop.theknot.com
Path:   /

Issue detail

The response dynamically includes the following script from another domain:

Request

GET / HTTP/1.1
Host: weddingshop.theknot.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 301 Moved Permanently
Date: Sun, 02 Jan 2011 13:58:19 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-AspNet-Version: 1.1.4322
Location: http://weddingshop.theknot.com/weddingwarehouse/homepage.aspx
Set-Cookie: temp=T20110102075819205184; domain=theknot.com; expires=Fri, 02-Jan-2026 13:58:19 GMT; path=/
Cache-Control: private
Content-Type: text/html; charset=utf-8
Content-Length: 225
Set-Cookie: NSC_JOwop3zpcv23nygdk3xpfib3jf2yfdn=ffffffffaf111edc45525d5f4f58455e445a4a423660;expires=Sun, 02-Jan-2011 15:00:03 GMT;path=/;httponly


<html>
<head>
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "UA-208036-4";
urchinTracker();
</script>
</h
...[SNIP]...

5.2. http://weddingshop.theknot.com/weddingwarehouse/BoutiqueDetail.aspx  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://weddingshop.theknot.com
Path:   /weddingwarehouse/BoutiqueDetail.aspx

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /weddingwarehouse/BoutiqueDetail.aspx?pVal=0&cTyp=ViewAll&sVal=KSRank&sTyp=Desc&scId=OnSaleKWS(KnotShop)&cId=OnSaleKWS(KnotShop)&cTypF=OS&filter=& HTTP/1.1
Host: weddingshop.theknot.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Sun, 02 Jan 2011 13:58:28 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-AspNet-Version: 1.1.4322
COMMERCE-SERVER-SOFTWARE: Microsoft Commerce Server 2002, Enterprise Edition
Set-Cookie: temp=T20110102075828211046; domain=theknot.com; expires=Fri, 02-Jan-2026 13:58:28 GMT; path=/
Set-Cookie: Commerce2002_TestPersistentCookie=TestCookie; expires=Mon, 03-Jan-2011 13:58:28 GMT; path=/
Set-Cookie: Commerce2002_TestSessionCookie=TestCookie; path=/
Set-Cookie: ASP.NET_SessionId=2sobcinm4nu320euvc51eo45; path=/
Cache-Control: private
Content-Type: text/html; charset=utf-8
Content-Length: 790100
Set-Cookie: NSC_JOwop3zpcv23nygdk3xpfib3jf2yfdn=ffffffffaf111ec245525d5f4f58455e445a4a423660;expires=Sun, 02-Jan-2011 15:00:12 GMT;path=/;httponly


<!doctype html public "-//w3c//dtd html 4.0 transitional//en" >
<HTML xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fb
...[SNIP]...
<!-- Google Analytics -->
<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
</script>
...[SNIP]...

5.3. http://weddingshop.theknot.com/weddingwarehouse/BoutiqueDetailWithImage.aspx  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://weddingshop.theknot.com
Path:   /weddingwarehouse/BoutiqueDetailWithImage.aspx

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /weddingwarehouse/BoutiqueDetailWithImage.aspx?pVal=0&cTyp=ViewAll&sVal=KSRank&sTyp=Desc&scId=Chocolates(KnotShop)&cId=Boutiques(KnotShop)&cTypF=BO&filter=&org=BO& HTTP/1.1
Host: weddingshop.theknot.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Sun, 02 Jan 2011 13:59:00 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-AspNet-Version: 1.1.4322
COMMERCE-SERVER-SOFTWARE: Microsoft Commerce Server 2002, Enterprise Edition
Set-Cookie: temp=T20110102075859209088; domain=theknot.com; expires=Fri, 02-Jan-2026 13:58:59 GMT; path=/
Set-Cookie: Commerce2002_TestPersistentCookie=TestCookie; expires=Mon, 03-Jan-2011 13:58:59 GMT; path=/
Set-Cookie: Commerce2002_TestSessionCookie=TestCookie; path=/
Set-Cookie: ASP.NET_SessionId=3fxani55tjhd5t551jxsq3ez; path=/
Cache-Control: private
Content-Type: text/html; charset=utf-8
Content-Length: 812170
Set-Cookie: NSC_JOwop3zpcv23nygdk3xpfib3jf2yfdn=ffffffffaf111ec045525d5f4f58455e445a4a423660;expires=Sun, 02-Jan-2011 15:00:38 GMT;path=/;httponly


<!doctype html public "-//w3c//dtd html 4.0 transitional//en" >
<HTML xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fb
...[SNIP]...
<!-- Google Analytics -->
<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
</script>
...[SNIP]...

5.4. http://weddingshop.theknot.com/weddingwarehouse/ProductPage.aspx  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://weddingshop.theknot.com
Path:   /weddingwarehouse/ProductPage.aspx

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /weddingwarehouse/ProductPage.aspx?pId=P1984(KnotShop) HTTP/1.1
Host: weddingshop.theknot.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Sun, 02 Jan 2011 13:58:27 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-AspNet-Version: 1.1.4322
COMMERCE-SERVER-SOFTWARE: Microsoft Commerce Server 2002, Enterprise Edition
Set-Cookie: temp=T20110102075825209140; domain=theknot.com; expires=Fri, 02-Jan-2026 13:58:25 GMT; path=/
Set-Cookie: Commerce2002_TestPersistentCookie=TestCookie; expires=Mon, 03-Jan-2011 13:58:25 GMT; path=/
Set-Cookie: Commerce2002_TestSessionCookie=TestCookie; path=/
Set-Cookie: ASP.NET_SessionId=q5soz15540ppt4aylmh4oonb; path=/
Cache-Control: private
Content-Type: text/html; charset=utf-8
Content-Length: 175821
Set-Cookie: NSC_JOwop3zpcv23nygdk3xpfib3jf2yfdn=ffffffffaf111ec045525d5f4f58455e445a4a423660;expires=Sun, 02-Jan-2011 15:00:04 GMT;path=/;httponly


<!doctype html public "-//w3c//dtd html 4.0 transitional//en" >
<HTML xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fb
...[SNIP]...
m/weddingwarehouse/ProductPage.aspx?pId=P1984(KnotShop)" layout="standard" show_faces="false" width="325" action="like" font="Verdana,Geneva,Arial,Helvetica,sans-serif" colorscheme="default" />
                       <script src="http://connect.facebook.net/en_US/all.js"></script>
...[SNIP]...
<!-- ADDTHIS BUTTON DROP-DOWN BEGIN -->
                       <script type="text/javascript" language="javascript" src="http://s7.addthis.com/custom/theknot/js/addthis_widget.php?v=12"></script>
...[SNIP]...
<!-- Google Analytics -->
<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
</script>
...[SNIP]...

5.5. http://weddingshop.theknot.com/weddingwarehouse/UICategory.aspx  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://weddingshop.theknot.com
Path:   /weddingwarehouse/UICategory.aspx

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /weddingwarehouse/UICategory.aspx?cId=Favors(KnotShop)& HTTP/1.1
Host: weddingshop.theknot.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Sun, 02 Jan 2011 13:58:29 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-AspNet-Version: 1.1.4322
COMMERCE-SERVER-SOFTWARE: Microsoft Commerce Server 2002, Enterprise Edition
Set-Cookie: temp=T20110102075826205935; domain=theknot.com; expires=Fri, 02-Jan-2026 13:58:26 GMT; path=/
Set-Cookie: Commerce2002_TestPersistentCookie=TestCookie; expires=Mon, 03-Jan-2011 13:58:26 GMT; path=/
Set-Cookie: Commerce2002_TestSessionCookie=TestCookie; path=/
Set-Cookie: ASP.NET_SessionId=2ensgebp2g3uwt55hhbfp3qp; path=/
Cache-Control: private
Content-Type: text/html; charset=utf-8
Content-Length: 203620
Set-Cookie: NSC_JOwop3zpcv23nygdk3xpfib3jf2yfdn=ffffffffaf111edc45525d5f4f58455e445a4a423660;expires=Sun, 02-Jan-2011 15:00:12 GMT;path=/;httponly


<!doctype html public "-//w3c//dtd html 4.0 transitional//en" >
<HTML xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fb
...[SNIP]...
<!-- Google Analytics -->
<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
</script>
...[SNIP]...

5.6. http://weddingshop.theknot.com/weddingwarehouse/homepage.aspx  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://weddingshop.theknot.com
Path:   /weddingwarehouse/homepage.aspx

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /weddingwarehouse/homepage.aspx HTTP/1.1
Host: weddingshop.theknot.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Sun, 02 Jan 2011 13:58:26 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-AspNet-Version: 1.1.4322
COMMERCE-SERVER-SOFTWARE: Microsoft Commerce Server 2002, Enterprise Edition
Set-Cookie: temp=T20110102075825209140; domain=theknot.com; expires=Fri, 02-Jan-2026 13:58:25 GMT; path=/
Set-Cookie: Commerce2002_TestPersistentCookie=TestCookie; expires=Mon, 03-Jan-2011 13:58:25 GMT; path=/
Set-Cookie: Commerce2002_TestSessionCookie=TestCookie; path=/
Set-Cookie: ASP.NET_SessionId=xzq04knmztyrs3aoogs1g155; path=/
Cache-Control: private
Content-Type: text/html; charset=utf-8
Content-Length: 167634
Set-Cookie: NSC_JOwop3zpcv23nygdk3xpfib3jf2yfdn=ffffffffaf111ec045525d5f4f58455e445a4a423660;expires=Sun, 02-Jan-2011 15:00:03 GMT;path=/;httponly


<!doctype html public "-//w3c//dtd html 4.0 transitional//en" >
<HTML xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fb
...[SNIP]...
<!-- Google Analytics -->
<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
</script>
...[SNIP]...

6. Email addresses disclosed  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://weddingshop.theknot.com
Path:   /weddingwarehouse/ProductPage.aspx

Issue detail

The following email address was disclosed in the response:

Issue background

The presence of email addresses within application responses does not necessarily constitute a security vulnerability. Email addresses may appear intentionally within contact information, and many applications (such as web mail) include arbitrary third-party email addresses within their core content.

However, email addresses of developers and other individuals (whether appearing on-screen or hidden within page source) may disclose information that is useful to an attacker; for example, they may represent usernames that can be used at the application's login, and they may be used in social engineering attacks against the organisation's personnel. Unnecessary or excessive disclosure of email addresses may also lead to an increase in the volume of spam email received.

Issue remediation

You should review the email addresses being disclosed by the application, and consider removing any that are unnecessary, or replacing personal addresses with anonymous mailbox addresses (such as helpdesk@example.com).

Request

GET /weddingwarehouse/ProductPage.aspx?pId=P1984(KnotShop) HTTP/1.1
Host: weddingshop.theknot.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Sun, 02 Jan 2011 13:58:27 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-AspNet-Version: 1.1.4322
COMMERCE-SERVER-SOFTWARE: Microsoft Commerce Server 2002, Enterprise Edition
Set-Cookie: temp=T20110102075825209140; domain=theknot.com; expires=Fri, 02-Jan-2026 13:58:25 GMT; path=/
Set-Cookie: Commerce2002_TestPersistentCookie=TestCookie; expires=Mon, 03-Jan-2011 13:58:25 GMT; path=/
Set-Cookie: Commerce2002_TestSessionCookie=TestCookie; path=/
Set-Cookie: ASP.NET_SessionId=q5soz15540ppt4aylmh4oonb; path=/
Cache-Control: private
Content-Type: text/html; charset=utf-8
Content-Length: 175821
Set-Cookie: NSC_JOwop3zpcv23nygdk3xpfib3jf2yfdn=ffffffffaf111ec045525d5f4f58455e445a4a423660;expires=Sun, 02-Jan-2011 15:00:04 GMT;path=/;httponly


<!doctype html public "-//w3c//dtd html 4.0 transitional//en" >
<HTML xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fb
...[SNIP]...
<A
title=mailto:availability@adornbrides.com
href="mailto:availability@adornbrides.com">availability@adornbrides.com</A>
...[SNIP]...

7. HTML does not specify charset  previous  next
There are 2 instances of this issue:

Issue description

If a web response states that it contains HTML content but does not specify a character set, then the browser may analyse the HTML and attempt to determine which character set it appears to be using. Even if the majority of the HTML actually employs a standard character set such as UTF-8, the presence of non-standard characters anywhere in the response may cause the browser to interpret the content using a different character set. This can have unexpected results, and can lead to cross-site scripting vulnerabilities in which non-standard encodings like UTF-7 can be used to bypass the application's defensive filters.

In most cases, the absence of a charset directive does not constitute a security flaw, particularly if the response contains static content. You should review the contents of the response and the context in which it appears to determine whether any vulnerability exists.

Issue remediation

For every response containing HTML content, the application should include within the Content-type header a directive specifying a standard recognised character set, for example charset=ISO-8859-1.


7.1. http://weddingshop.theknot.com/weddingwarehouse/SubCategory.aspx  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://weddingshop.theknot.com
Path:   /weddingwarehouse/SubCategory.aspx

Request

GET /weddingwarehouse/SubCategory.aspx?pVal=0&cTyp=ViewAll&sVal=MostPopular&sTyp=Desc&scId=Unique Favors(KnotShop)&cId=Favors(KnotShop)&filter=&sscId=PersonalizedFavors(KnotShop)& HTTP/1.1
Host: weddingshop.theknot.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 400 Bad Request
Content-Type: text/html
Date: Sun, 02 Jan 2011 13:58:20 GMT
Connection: close
Content-Length: 20

<h1>Bad Request</h1>

7.2. http://weddingshop.theknot.com/weddingwarehouse/UICategory.aspx  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://weddingshop.theknot.com
Path:   /weddingwarehouse/UICategory.aspx

Request

GET /weddingwarehouse/UICategory.aspx?scId=Bridesmaid Gifts(KnotShop)&cId=Attendant Gifts(KnotShop)& HTTP/1.1
Host: weddingshop.theknot.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 400 Bad Request
Content-Type: text/html
Date: Sun, 02 Jan 2011 13:58:24 GMT
Connection: close
Content-Length: 20

<h1>Bad Request</h1>

8. Content type incorrectly stated  previous
There are 2 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.


8.1. http://weddingshop.theknot.com/weddingwarehouse/SubCategory.aspx  previous  next

Summary

Severity:   Information
Confidence:   Firm
Host:   http://weddingshop.theknot.com
Path:   /weddingwarehouse/SubCategory.aspx

Issue detail

The response contains the following Content-type statement:The response states that it contains HTML. However, it actually appears to contain XML.

Request

GET /weddingwarehouse/SubCategory.aspx?pVal=0&cTyp=ViewAll&sVal=MostPopular&sTyp=Desc&scId=Unique Favors(KnotShop)&cId=Favors(KnotShop)&filter=&sscId=PersonalizedFavors(KnotShop)& HTTP/1.1
Host: weddingshop.theknot.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 400 Bad Request
Content-Type: text/html
Date: Sun, 02 Jan 2011 13:58:20 GMT
Connection: close
Content-Length: 20

<h1>Bad Request</h1>

8.2. http://weddingshop.theknot.com/weddingwarehouse/UICategory.aspx  previous

Summary

Severity:   Information
Confidence:   Firm
Host:   http://weddingshop.theknot.com
Path:   /weddingwarehouse/UICategory.aspx

Issue detail

The response contains the following Content-type statement:The response states that it contains HTML. However, it actually appears to contain XML.

Request

GET /weddingwarehouse/UICategory.aspx?scId=Bridesmaid Gifts(KnotShop)&cId=Attendant Gifts(KnotShop)& HTTP/1.1
Host: weddingshop.theknot.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 400 Bad Request
Content-Type: text/html
Date: Sun, 02 Jan 2011 13:58:24 GMT
Connection: close
Content-Length: 20

<h1>Bad Request</h1>

Report generated by XSS.CX at Sun Jan 02 08:24:38 CST 2011.