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 XSS.CX at Wed Oct 06 10:19:45 CDT 2010.


Cross Site Scripting Reports | Hoyt LLC Research

1. SQL injection

2. Cookie without HttpOnly flag set

3. Password field with autocomplete enabled

3.1. http://www.summerlodgehotel.co.uk/travel-agents

3.2. http://www.summerlodgehotel.co.uk/travel-agents

4. Cleartext submission of password

5. Cross-domain Referer leakage

5.1. http://www.summerlodgehotel.co.uk/dining

5.2. http://www.summerlodgehotel.co.uk/offers-and-gifts

5.3. http://www.summerlodgehotel.co.uk/rooms-and-suites

5.4. http://www.summerlodgehotel.co.uk/travel-agents

6. Cross-domain script include

6.1. http://www.summerlodgehotel.co.uk/

6.2. http://www.summerlodgehotel.co.uk/contact-us

6.3. http://www.summerlodgehotel.co.uk/dining

6.4. http://www.summerlodgehotel.co.uk/offers-and-gifts

6.5. http://www.summerlodgehotel.co.uk/rooms-and-suites

6.6. http://www.summerlodgehotel.co.uk/search

6.7. http://www.summerlodgehotel.co.uk/travel-agents

7. Email addresses disclosed

7.1. http://www.summerlodgehotel.co.uk/

7.2. http://www.summerlodgehotel.co.uk/contact-us

7.3. http://www.summerlodgehotel.co.uk/dining

7.4. http://www.summerlodgehotel.co.uk/offers-and-gifts

7.5. http://www.summerlodgehotel.co.uk/rooms-and-suites

7.6. http://www.summerlodgehotel.co.uk/rss/press-room/hotel/uk-sl

7.7. http://www.summerlodgehotel.co.uk/search

7.8. http://www.summerlodgehotel.co.uk/travel-agents

8. Private IP addresses disclosed

8.1. http://www.summerlodgehotel.co.uk/rss/offers-and-gifts/hotel/uk-sl

8.2. http://www.summerlodgehotel.co.uk/rss/press-room/hotel/uk-sl



1. SQL injection  next

Summary

Severity:   High
Confidence:   Tentative
Host:   http://www.summerlodgehotel.co.uk
Path:   /rooms-and-suites

Issue detail

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

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:

Request 1

GET /rooms-and-suites?business HTTP/1.1
Host: www.summerlodgehotel.co.uk
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: redcarnationhotels_session=9fb7afecceb1983316169482313810d8';

Response 1

HTTP/1.1 502 Proxy Error
Date: Wed, 06 Oct 2010 14:16:44 GMT
Vary: Accept-Encoding
Content-Length: 411
Connection: close
Content-Type: text/html; charset=iso-8859-1

<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>502 Proxy Error</title>
</head><body>
<h1>Proxy Error</h1>
<p>The proxy server received an invalid
response from an upstream server.<br />
...[SNIP]...

Request 2

GET /rooms-and-suites?business HTTP/1.1
Host: www.summerlodgehotel.co.uk
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: redcarnationhotels_session=9fb7afecceb1983316169482313810d8'';

Response 2

HTTP/1.1 200 OK
Date: Wed, 06 Oct 2010 14:17:14 GMT
Server: Apache
Expires: Sat, 26 Jul 1997 05:00:00 GMT
Pragma: no-cache
Last-Modified: Wed, 06 Oct 2010 14:17:14 GMT
Cache-Control: private, no-store
Vary: Accept-Encoding,User-Agent
Content-Type: text/html; charset=UTF-8
Set-Cookie: redcarnationhotels_session=3a43a653549e6d60c23e8dd1f441899d; path=/
Connection: close
Content-Length: 26594

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Rooms and Suites at the Summer
...[SNIP]...

2. Cookie without HttpOnly flag set  previous  next

Summary

Severity:   Low
Confidence:   Firm
Host:   http://www.summerlodgehotel.co.uk
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
Host: www.summerlodgehotel.co.uk
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Wed, 06 Oct 2010 14:09:15 GMT
Server: Apache
Expires: Sat, 26 Jul 1997 05:00:00 GMT
Pragma: no-cache
Last-Modified: Wed, 06 Oct 2010 14:09:15 GMT
Cache-Control: private, no-store
Vary: Accept-Encoding,User-Agent
Content-Type: text/html; charset=UTF-8
Set-Cookie: redcarnationhotels_session=fac353873c8ddcba2dba3309b8bcc6d0; path=/
Connection: close
Content-Length: 25887

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Luxury Hotel, Boutique Hotels,
...[SNIP]...

3. Password field with autocomplete enabled  previous  next
There are 2 instances of this issue:

Issue background

Most browsers have a facility to remember user credentials that are entered into HTML forms. This function can be configured by the user and also by applications which employ user credentials. If the function is enabled, then credentials entered by the user are stored on their local computer and retrieved by the browser on future visits to the same application.

The stored credentials can be captured by an attacker who gains access to the computer, either locally or through some remote compromise. Further, methods have existed whereby a malicious web site can retrieve the stored credentials for other applications, by exploiting browser vulnerabilities or through application-level cross-domain attacks.

Issue remediation

To prevent browsers from storing credentials entered into HTML forms, you should include the attribute autocomplete="off" within the FORM tag (to protect all form fields) or within the relevant INPUT tags (to protect specific individual fields).


3.1. http://www.summerlodgehotel.co.uk/travel-agents  next

Summary

Severity:   Low
Confidence:   Certain
Host:   http://www.summerlodgehotel.co.uk
Path:   /travel-agents

Issue detail

The page contains a form with the following action URL:The form contains the following password field with autocomplete enabled:

Request

GET /travel-agents HTTP/1.1
Host: www.summerlodgehotel.co.uk
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Referer: http://www.summerlodgehotel.co.uk/
Cookie: redcarnationhotels_session=9fb7afecceb1983316169482313810d8;

Response

HTTP/1.1 200 OK
Date: Wed, 06 Oct 2010 14:10:39 GMT
Server: Apache
Expires: Sat, 26 Jul 1997 05:00:00 GMT
Pragma: no-cache
Last-Modified: Wed, 06 Oct 2010 14:10:39 GMT
Cache-Control: private, no-store
Vary: Accept-Encoding,User-Agent
Content-Type: text/html; charset=UTF-8
Connection: close
Content-Length: 23441

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Travel Agents Booking Area ...
...[SNIP]...
<br />
   
           <form class="frm" id="travel_agent_form" action="" method="post" enctype="multipart/form-data" >
           <fieldset>
...[SNIP]...
</label>
                   <input type="password" name="travel_agent_iata" id="travel_agent_iata" value="" />
               </div>
...[SNIP]...

3.2. http://www.summerlodgehotel.co.uk/travel-agents  previous  next

Summary

Severity:   Low
Confidence:   Certain
Host:   http://www.summerlodgehotel.co.uk
Path:   /travel-agents

Issue detail

The page contains a form with the following action URL:The form contains the following password field with autocomplete enabled:

Request

GET /travel-agents?leisure HTTP/1.1
Host: www.summerlodgehotel.co.uk
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: redcarnationhotels_session=9fb7afecceb1983316169482313810d8;

Response

HTTP/1.1 200 OK
Date: Wed, 06 Oct 2010 14:10:39 GMT
Server: Apache
Expires: Sat, 26 Jul 1997 05:00:00 GMT
Pragma: no-cache
Last-Modified: Wed, 06 Oct 2010 14:10:39 GMT
Cache-Control: private, no-store
Vary: Accept-Encoding,User-Agent
Content-Type: text/html; charset=UTF-8
Connection: close
Content-Length: 23441

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Travel Agents Booking Area ...
...[SNIP]...
<br />
   
           <form class="frm" id="travel_agent_form" action="" method="post" enctype="multipart/form-data" >
           <fieldset>
...[SNIP]...
</label>
                   <input type="password" name="travel_agent_iata" id="travel_agent_iata" value="" />
               </div>
...[SNIP]...

4. Cleartext submission of password  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.summerlodgehotel.co.uk
Path:   /travel-agents

Issue detail

The page contains a form with the following action URL, which is submitted over clear-text HTTP:The form contains the following password field:

Issue background

Passwords submitted over an unencrypted connection are vulnerable to capture by an attacker who is suitably positioned on the network. This includes any malicious party located on the user's own network, within their ISP, within the ISP used by the application, and within the application's hosting infrastructure. Even if switched networks are employed at some of these locations, techniques exist to circumvent this defense and monitor the traffic passing through switches.

Issue remediation

The application should use transport-level encryption (SSL or TLS) to protect all sensitive communications passing between the client and the server. Communications that should be protected include the login mechanism and related functionality, and any functions where sensitive data can be accessed or privileged actions can be performed. These areas of the application should employ their own session handling mechanism, and the session tokens used should never be transmitted over unencrypted communications. If HTTP cookies are used for transmitting session tokens, then the secure flag should be set to prevent transmission over clear-text HTTP.

Request

GET /travel-agents?leisure HTTP/1.1
Host: www.summerlodgehotel.co.uk
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: redcarnationhotels_session=9fb7afecceb1983316169482313810d8;

Response

HTTP/1.1 200 OK
Date: Wed, 06 Oct 2010 14:10:39 GMT
Server: Apache
Expires: Sat, 26 Jul 1997 05:00:00 GMT
Pragma: no-cache
Last-Modified: Wed, 06 Oct 2010 14:10:39 GMT
Cache-Control: private, no-store
Vary: Accept-Encoding,User-Agent
Content-Type: text/html; charset=UTF-8
Connection: close
Content-Length: 23441

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Travel Agents Booking Area ...
...[SNIP]...
<br />
   
           <form class="frm" id="travel_agent_form" action="" method="post" enctype="multipart/form-data" >
           <fieldset>
...[SNIP]...
</label>
                   <input type="password" name="travel_agent_iata" id="travel_agent_iata" value="" />
               </div>
...[SNIP]...

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

Issue background

When a web browser makes a request for a resource, it typically adds an HTTP header, called the "Referer" header, indicating the URL of the resource from which the request originated. This occurs in numerous situations, for example when a web page loads an image or script, or when a user clicks on a link or submits a form.

If the resource being requested resides on a different domain, then the Referer header is still generally included in the cross-domain request. If the originating URL contains any sensitive information within its query string, such as a session token, then this information will be transmitted to the other domain. If the other domain is not fully trusted by the application, then this may lead to a security compromise.

You should review the contents of the information being transmitted to other domains, and also determine whether those domains are fully trusted by the originating application.

Today's browsers may withhold the Referer header in some situations (for example, when loading a non-HTTPS resource from a page that was loaded over HTTPS, or when a Refresh directive is issued), but this behaviour should not be relied upon to protect the originating URL from disclosure.

Note also that if users can author content within the application then an attacker may be able to inject links referring to a domain they control in order to capture data from URLs used within the application.

Issue remediation

The application should never transmit any sensitive information within the URL query string. In addition to being leaked in the Referer header, such information may be logged in various locations and may be visible on-screen to untrusted parties.


5.1. http://www.summerlodgehotel.co.uk/dining  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.summerlodgehotel.co.uk
Path:   /dining

Issue detail

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

Request

GET /dining?leisure HTTP/1.1
Host: www.summerlodgehotel.co.uk
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: redcarnationhotels_session=9fb7afecceb1983316169482313810d8;

Response

HTTP/1.1 200 OK
Date: Wed, 06 Oct 2010 14:09:40 GMT
Server: Apache
Expires: Sat, 26 Jul 1997 05:00:00 GMT
Pragma: no-cache
Last-Modified: Wed, 06 Oct 2010 14:09:40 GMT
Cache-Control: private, no-store
Vary: Accept-Encoding,User-Agent
Content-Type: text/html; charset=UTF-8
Connection: close
Content-Length: 26035

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Fine dining & hotel restaurants
...[SNIP]...
<noscript><img border="0"
name="rwtag" width="1" height="1" alt="rwtag"
src="http://www.sptag.com/rwtag.gif?rw.pf=rchsummerlodge&rw.st=nojavascript">
</noscript>
...[SNIP]...
<div>
<img src="http://uk.sitestat.com/pod1/redcarnationhotels/s?hotel.summerlodge.dining.index" width="1" height="1" alt="" />
</div>
...[SNIP]...
<strong><a target="_blank" href="http://www.pagegangster.com/p/Rvild/">electronic brochure</a>
...[SNIP]...
<br />
<a target="_blank" class="pod1-branding" href="http://www.pod1.com" title="Pod1 Web Design Company London"
rel="nofollow">
Web Design by Pod1

</a>
...[SNIP]...
</script>
<a href="http://www.addthis.com/bookmark.php" onMouseOver="return addthis_open(this, '', '[URL]', '[TITLE]')" onMouseOut="addthis_close()" onClick="return addthis_sendto()" class="btn_bookmark_footer">Bookmark &amp; Share</a><script type="text/javascript" src="http://s7.addthis.com/js/152/addthis_widget.js"></script>
...[SNIP]...
<div class="footer_small-hotels"><a href="http://www.relaischateaux.com/en/search-book/hotel-restaurant/summer/" onclick="return !window.open(this.href);" onkeypress="" title="A member of the Relais and Cheateaux (opens in a new window)"><img src="/images/hotels/logo-relais-chateaux.gif" alt="A member of the Relais and Cheateaux" width="59" height="54" />
...[SNIP]...
</div>

<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
...[SNIP]...

5.2. http://www.summerlodgehotel.co.uk/offers-and-gifts  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.summerlodgehotel.co.uk
Path:   /offers-and-gifts

Issue detail

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

Request

GET /offers-and-gifts?leisure HTTP/1.1
Host: www.summerlodgehotel.co.uk
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: redcarnationhotels_session=9fb7afecceb1983316169482313810d8;

Response

HTTP/1.1 200 OK
Date: Wed, 06 Oct 2010 14:09:49 GMT
Server: Apache
Expires: Sat, 26 Jul 1997 05:00:00 GMT
Pragma: no-cache
Last-Modified: Wed, 06 Oct 2010 14:09:49 GMT
Cache-Control: private, no-store
Vary: Accept-Encoding,User-Agent
Content-Type: text/html; charset=UTF-8
Connection: close
Content-Length: 29421

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Special Offers & Holiday Packag
...[SNIP]...
<noscript><img border="0"
name="rwtag" width="1" height="1" alt="rwtag"
src="http://www.sptag.com/rwtag.gif?rw.pf=rchsummerlodge&rw.st=nojavascript">
</noscript>
...[SNIP]...
<div>
<img src="http://uk.sitestat.com/pod1/redcarnationhotels/s?hotel.summerlodge.offers_and_gifts.index" width="1" height="1" alt="" />
</div>
...[SNIP]...
<br />
<a target="_blank" class="pod1-branding" href="http://www.pod1.com" title="Pod1 Web Design Company London"
rel="nofollow">
Web Design by Pod1

</a>
...[SNIP]...
</script>
<a href="http://www.addthis.com/bookmark.php" onMouseOver="return addthis_open(this, '', '[URL]', '[TITLE]')" onMouseOut="addthis_close()" onClick="return addthis_sendto()" class="btn_bookmark_footer">Bookmark &amp; Share</a><script type="text/javascript" src="http://s7.addthis.com/js/152/addthis_widget.js"></script>
...[SNIP]...
<div class="footer_small-hotels"><a href="http://www.relaischateaux.com/en/search-book/hotel-restaurant/summer/" onclick="return !window.open(this.href);" onkeypress="" title="A member of the Relais and Cheateaux (opens in a new window)"><img src="/images/hotels/logo-relais-chateaux.gif" alt="A member of the Relais and Cheateaux" width="59" height="54" />
...[SNIP]...
</div>

<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
...[SNIP]...

5.3. http://www.summerlodgehotel.co.uk/rooms-and-suites  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.summerlodgehotel.co.uk
Path:   /rooms-and-suites

Issue detail

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

Request

GET /rooms-and-suites?leisure HTTP/1.1
Host: www.summerlodgehotel.co.uk
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: redcarnationhotels_session=9fb7afecceb1983316169482313810d8;

Response

HTTP/1.1 200 OK
Date: Wed, 06 Oct 2010 14:10:06 GMT
Server: Apache
Expires: Sat, 26 Jul 1997 05:00:00 GMT
Pragma: no-cache
Last-Modified: Wed, 06 Oct 2010 14:10:06 GMT
Cache-Control: private, no-store
Vary: Accept-Encoding,User-Agent
Content-Type: text/html; charset=UTF-8
Connection: close
Content-Length: 26594

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Rooms and Suites at the Summer
...[SNIP]...
<noscript><img border="0"
name="rwtag" width="1" height="1" alt="rwtag"
src="http://www.sptag.com/rwtag.gif?rw.pf=rchsummerlodge&rw.st=nojavascript">
</noscript>
...[SNIP]...
<div>
<img src="http://uk.sitestat.com/pod1/redcarnationhotels/s?hotel.summerlodge.rooms_and_suites.index" width="1" height="1" alt="" />
</div>
...[SNIP]...
<br />
<a target="_blank" class="pod1-branding" href="http://www.pod1.com" title="Pod1 Web Design Company London"
rel="nofollow">
Web Design by Pod1

</a>
...[SNIP]...
</script>
<a href="http://www.addthis.com/bookmark.php" onMouseOver="return addthis_open(this, '', '[URL]', '[TITLE]')" onMouseOut="addthis_close()" onClick="return addthis_sendto()" class="btn_bookmark_footer">Bookmark &amp; Share</a><script type="text/javascript" src="http://s7.addthis.com/js/152/addthis_widget.js"></script>
...[SNIP]...
<div class="footer_small-hotels"><a href="http://www.relaischateaux.com/en/search-book/hotel-restaurant/summer/" onclick="return !window.open(this.href);" onkeypress="" title="A member of the Relais and Cheateaux (opens in a new window)"><img src="/images/hotels/logo-relais-chateaux.gif" alt="A member of the Relais and Cheateaux" width="59" height="54" />
...[SNIP]...
</div>

<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
...[SNIP]...

5.4. http://www.summerlodgehotel.co.uk/travel-agents  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.summerlodgehotel.co.uk
Path:   /travel-agents

Issue detail

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

Request

GET /travel-agents?leisure HTTP/1.1
Host: www.summerlodgehotel.co.uk
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: redcarnationhotels_session=9fb7afecceb1983316169482313810d8;

Response

HTTP/1.1 200 OK
Date: Wed, 06 Oct 2010 14:10:39 GMT
Server: Apache
Expires: Sat, 26 Jul 1997 05:00:00 GMT
Pragma: no-cache
Last-Modified: Wed, 06 Oct 2010 14:10:39 GMT
Cache-Control: private, no-store
Vary: Accept-Encoding,User-Agent
Content-Type: text/html; charset=UTF-8
Connection: close
Content-Length: 23441

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Travel Agents Booking Area ...
...[SNIP]...
<noscript><img border="0"
name="rwtag" width="1" height="1" alt="rwtag"
src="http://www.sptag.com/rwtag.gif?rw.pf=rchsummerlodge&rw.st=nojavascript">
</noscript>
...[SNIP]...
<div>
<img src="http://uk.sitestat.com/pod1/redcarnationhotels/s?hotel.summerlodge.travel_agents.index" width="1" height="1" alt="" />
</div>
...[SNIP]...
<br />
<a target="_blank" class="pod1-branding" href="http://www.pod1.com" title="Pod1 Web Design Company London"
rel="nofollow">
Web Design by Pod1

</a>
...[SNIP]...
</script>
<a href="http://www.addthis.com/bookmark.php" onMouseOver="return addthis_open(this, '', '[URL]', '[TITLE]')" onMouseOut="addthis_close()" onClick="return addthis_sendto()" class="btn_bookmark_footer">Bookmark &amp; Share</a><script type="text/javascript" src="http://s7.addthis.com/js/152/addthis_widget.js"></script>
...[SNIP]...
<div class="footer_small-hotels"><a href="http://www.relaischateaux.com/en/search-book/hotel-restaurant/summer/" onclick="return !window.open(this.href);" onkeypress="" title="A member of the Relais and Cheateaux (opens in a new window)"><img src="/images/hotels/logo-relais-chateaux.gif" alt="A member of the Relais and Cheateaux" width="59" height="54" />
...[SNIP]...
</div>

<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
...[SNIP]...

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


6.1. http://www.summerlodgehotel.co.uk/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.summerlodgehotel.co.uk
Path:   /

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET / HTTP/1.1
Host: www.summerlodgehotel.co.uk
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Wed, 06 Oct 2010 14:09:15 GMT
Server: Apache
Expires: Sat, 26 Jul 1997 05:00:00 GMT
Pragma: no-cache
Last-Modified: Wed, 06 Oct 2010 14:09:15 GMT
Cache-Control: private, no-store
Vary: Accept-Encoding,User-Agent
Content-Type: text/html; charset=UTF-8
Set-Cookie: redcarnationhotels_session=fac353873c8ddcba2dba3309b8bcc6d0; path=/
Connection: close
Content-Length: 25887

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Luxury Hotel, Boutique Hotels,
...[SNIP]...
</a><script type="text/javascript" src="http://s7.addthis.com/js/152/addthis_widget.js"></script>
...[SNIP]...
</div>

<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
...[SNIP]...

6.2. http://www.summerlodgehotel.co.uk/contact-us  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.summerlodgehotel.co.uk
Path:   /contact-us

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /contact-us HTTP/1.1
Host: www.summerlodgehotel.co.uk
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: redcarnationhotels_session=9fb7afecceb1983316169482313810d8;

Response

HTTP/1.1 200 OK
Date: Wed, 06 Oct 2010 14:09:43 GMT
Server: Apache
Expires: Sat, 26 Jul 1997 05:00:00 GMT
Pragma: no-cache
Last-Modified: Wed, 06 Oct 2010 14:09:43 GMT
Cache-Control: private, no-store
Vary: Accept-Encoding,User-Agent
Content-Type: text/html; charset=UTF-8
Connection: close
Content-Length: 39174

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Contact Us - Dorset Luxury Hote
...[SNIP]...
</a><script type="text/javascript" src="http://s7.addthis.com/js/152/addthis_widget.js"></script>
...[SNIP]...
</div>

<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
...[SNIP]...

6.3. http://www.summerlodgehotel.co.uk/dining  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.summerlodgehotel.co.uk
Path:   /dining

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /dining HTTP/1.1
Host: www.summerlodgehotel.co.uk
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Referer: http://www.summerlodgehotel.co.uk/
Cookie: redcarnationhotels_session=9fb7afecceb1983316169482313810d8;

Response

HTTP/1.1 200 OK
Date: Wed, 06 Oct 2010 14:09:40 GMT
Server: Apache
Expires: Sat, 26 Jul 1997 05:00:00 GMT
Pragma: no-cache
Last-Modified: Wed, 06 Oct 2010 14:09:40 GMT
Cache-Control: private, no-store
Vary: Accept-Encoding,User-Agent
Content-Type: text/html; charset=UTF-8
Connection: close
Content-Length: 26035

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Fine dining & hotel restaurants
...[SNIP]...
</a><script type="text/javascript" src="http://s7.addthis.com/js/152/addthis_widget.js"></script>
...[SNIP]...
</div>

<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
...[SNIP]...

6.4. http://www.summerlodgehotel.co.uk/offers-and-gifts  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.summerlodgehotel.co.uk
Path:   /offers-and-gifts

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /offers-and-gifts?leisure HTTP/1.1
Host: www.summerlodgehotel.co.uk
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: redcarnationhotels_session=9fb7afecceb1983316169482313810d8;

Response

HTTP/1.1 200 OK
Date: Wed, 06 Oct 2010 14:09:49 GMT
Server: Apache
Expires: Sat, 26 Jul 1997 05:00:00 GMT
Pragma: no-cache
Last-Modified: Wed, 06 Oct 2010 14:09:49 GMT
Cache-Control: private, no-store
Vary: Accept-Encoding,User-Agent
Content-Type: text/html; charset=UTF-8
Connection: close
Content-Length: 29421

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Special Offers & Holiday Packag
...[SNIP]...
</a><script type="text/javascript" src="http://s7.addthis.com/js/152/addthis_widget.js"></script>
...[SNIP]...
</div>

<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
...[SNIP]...

6.5. http://www.summerlodgehotel.co.uk/rooms-and-suites  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.summerlodgehotel.co.uk
Path:   /rooms-and-suites

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /rooms-and-suites HTTP/1.1
Host: www.summerlodgehotel.co.uk
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Referer: http://www.summerlodgehotel.co.uk/
Cookie: redcarnationhotels_session=9fb7afecceb1983316169482313810d8;

Response

HTTP/1.1 200 OK
Date: Wed, 06 Oct 2010 14:10:09 GMT
Server: Apache
Expires: Sat, 26 Jul 1997 05:00:00 GMT
Pragma: no-cache
Last-Modified: Wed, 06 Oct 2010 14:10:09 GMT
Cache-Control: private, no-store
Vary: Accept-Encoding,User-Agent
Content-Type: text/html; charset=UTF-8
Connection: close
Content-Length: 26594

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Rooms and Suites at the Summer
...[SNIP]...
</a><script type="text/javascript" src="http://s7.addthis.com/js/152/addthis_widget.js"></script>
...[SNIP]...
</div>

<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
...[SNIP]...

6.6. http://www.summerlodgehotel.co.uk/search  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.summerlodgehotel.co.uk
Path:   /search

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /search HTTP/1.1
Host: www.summerlodgehotel.co.uk
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: redcarnationhotels_session=9fb7afecceb1983316169482313810d8;

Response

HTTP/1.1 200 OK
Date: Wed, 06 Oct 2010 14:10:32 GMT
Server: Apache
Expires: Sat, 26 Jul 1997 05:00:00 GMT
Pragma: no-cache
Last-Modified: Wed, 06 Oct 2010 14:10:32 GMT
Cache-Control: private, no-store
Vary: Accept-Encoding,User-Agent
Content-Type: text/html; charset=UTF-8
Connection: close
Content-Length: 22128

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Search</title>
<meta http-equiv
...[SNIP]...
</a><script type="text/javascript" src="http://s7.addthis.com/js/152/addthis_widget.js"></script>
...[SNIP]...
</div>

<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
...[SNIP]...

6.7. http://www.summerlodgehotel.co.uk/travel-agents  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.summerlodgehotel.co.uk
Path:   /travel-agents

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /travel-agents?leisure HTTP/1.1
Host: www.summerlodgehotel.co.uk
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: redcarnationhotels_session=9fb7afecceb1983316169482313810d8;

Response

HTTP/1.1 200 OK
Date: Wed, 06 Oct 2010 14:10:39 GMT
Server: Apache
Expires: Sat, 26 Jul 1997 05:00:00 GMT
Pragma: no-cache
Last-Modified: Wed, 06 Oct 2010 14:10:39 GMT
Cache-Control: private, no-store
Vary: Accept-Encoding,User-Agent
Content-Type: text/html; charset=UTF-8
Connection: close
Content-Length: 23441

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Travel Agents Booking Area ...
...[SNIP]...
</a><script type="text/javascript" src="http://s7.addthis.com/js/152/addthis_widget.js"></script>
...[SNIP]...
</div>

<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
...[SNIP]...

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


7.1. http://www.summerlodgehotel.co.uk/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.summerlodgehotel.co.uk
Path:   /

Issue detail

The following email address was disclosed in the response:

Request

GET / HTTP/1.1
Host: www.summerlodgehotel.co.uk
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Wed, 06 Oct 2010 14:09:15 GMT
Server: Apache
Expires: Sat, 26 Jul 1997 05:00:00 GMT
Pragma: no-cache
Last-Modified: Wed, 06 Oct 2010 14:09:15 GMT
Cache-Control: private, no-store
Vary: Accept-Encoding,User-Agent
Content-Type: text/html; charset=UTF-8
Set-Cookie: redcarnationhotels_session=fac353873c8ddcba2dba3309b8bcc6d0; path=/
Connection: close
Content-Length: 25887

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Luxury Hotel, Boutique Hotels,
...[SNIP]...
<!--
===================================
Designed & built by Pod1
Tel: 0870 246 2066
E-mail: info@pod1.com
Web: http://www.pod1.com
===================================
-->
...[SNIP]...

7.2. http://www.summerlodgehotel.co.uk/contact-us  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.summerlodgehotel.co.uk
Path:   /contact-us

Issue detail

The following email addresses were disclosed in the response:

Request

GET /contact-us HTTP/1.1
Host: www.summerlodgehotel.co.uk
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: redcarnationhotels_session=9fb7afecceb1983316169482313810d8;

Response

HTTP/1.1 200 OK
Date: Wed, 06 Oct 2010 14:09:43 GMT
Server: Apache
Expires: Sat, 26 Jul 1997 05:00:00 GMT
Pragma: no-cache
Last-Modified: Wed, 06 Oct 2010 14:09:43 GMT
Cache-Control: private, no-store
Vary: Accept-Encoding,User-Agent
Content-Type: text/html; charset=UTF-8
Connection: close
Content-Length: 39174

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Contact Us - Dorset Luxury Hote
...[SNIP]...
<!--
===================================
Designed & built by Pod1
Tel: 0870 246 2066
E-mail: info@pod1.com
Web: http://www.pod1.com
===================================
-->
...[SNIP]...
<a href="mailto:infosl@rchmail.com">infosl@rchmail.com</a>
...[SNIP]...
<a href="mailto:summer@relaischateaux.com">summer@relaischateaux.com</a>
...[SNIP]...

7.3. http://www.summerlodgehotel.co.uk/dining  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.summerlodgehotel.co.uk
Path:   /dining

Issue detail

The following email address was disclosed in the response:

Request

GET /dining HTTP/1.1
Host: www.summerlodgehotel.co.uk
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Referer: http://www.summerlodgehotel.co.uk/
Cookie: redcarnationhotels_session=9fb7afecceb1983316169482313810d8;

Response

HTTP/1.1 200 OK
Date: Wed, 06 Oct 2010 14:09:40 GMT
Server: Apache
Expires: Sat, 26 Jul 1997 05:00:00 GMT
Pragma: no-cache
Last-Modified: Wed, 06 Oct 2010 14:09:40 GMT
Cache-Control: private, no-store
Vary: Accept-Encoding,User-Agent
Content-Type: text/html; charset=UTF-8
Connection: close
Content-Length: 26035

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Fine dining & hotel restaurants
...[SNIP]...
<!--
===================================
Designed & built by Pod1
Tel: 0870 246 2066
E-mail: info@pod1.com
Web: http://www.pod1.com
===================================
-->
...[SNIP]...

7.4. http://www.summerlodgehotel.co.uk/offers-and-gifts  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.summerlodgehotel.co.uk
Path:   /offers-and-gifts

Issue detail

The following email address was disclosed in the response:

Request

GET /offers-and-gifts?leisure HTTP/1.1
Host: www.summerlodgehotel.co.uk
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: redcarnationhotels_session=9fb7afecceb1983316169482313810d8;

Response

HTTP/1.1 200 OK
Date: Wed, 06 Oct 2010 14:09:49 GMT
Server: Apache
Expires: Sat, 26 Jul 1997 05:00:00 GMT
Pragma: no-cache
Last-Modified: Wed, 06 Oct 2010 14:09:49 GMT
Cache-Control: private, no-store
Vary: Accept-Encoding,User-Agent
Content-Type: text/html; charset=UTF-8
Connection: close
Content-Length: 29421

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Special Offers & Holiday Packag
...[SNIP]...
<!--
===================================
Designed & built by Pod1
Tel: 0870 246 2066
E-mail: info@pod1.com
Web: http://www.pod1.com
===================================
-->
...[SNIP]...

7.5. http://www.summerlodgehotel.co.uk/rooms-and-suites  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.summerlodgehotel.co.uk
Path:   /rooms-and-suites

Issue detail

The following email address was disclosed in the response:

Request

GET /rooms-and-suites HTTP/1.1
Host: www.summerlodgehotel.co.uk
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Referer: http://www.summerlodgehotel.co.uk/
Cookie: redcarnationhotels_session=9fb7afecceb1983316169482313810d8;

Response

HTTP/1.1 200 OK
Date: Wed, 06 Oct 2010 14:10:09 GMT
Server: Apache
Expires: Sat, 26 Jul 1997 05:00:00 GMT
Pragma: no-cache
Last-Modified: Wed, 06 Oct 2010 14:10:09 GMT
Cache-Control: private, no-store
Vary: Accept-Encoding,User-Agent
Content-Type: text/html; charset=UTF-8
Connection: close
Content-Length: 26594

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Rooms and Suites at the Summer
...[SNIP]...
<!--
===================================
Designed & built by Pod1
Tel: 0870 246 2066
E-mail: info@pod1.com
Web: http://www.pod1.com
===================================
-->
...[SNIP]...

7.6. http://www.summerlodgehotel.co.uk/rss/press-room/hotel/uk-sl  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.summerlodgehotel.co.uk
Path:   /rss/press-room/hotel/uk-sl

Issue detail

The following email address was disclosed in the response:

Request

GET /rss/press-room/hotel/uk-sl HTTP/1.1
Host: www.summerlodgehotel.co.uk
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: redcarnationhotels_session=9fb7afecceb1983316169482313810d8;

Response

HTTP/1.1 200 OK
Date: Wed, 06 Oct 2010 14:10:20 GMT
Server: Apache
Expires: Sat, 26 Jul 1997 05:00:00 GMT
Pragma: no-cache
Last-Modified: Wed, 06 Oct 2010 14:10:20 GMT
Cache-Control: private, no-store
Vary: Accept-Encoding,User-Agent
Content-Type: text/xml
Connection: close
Content-Length: 42358

<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"><channel><title>5 Star Luxury Hotel, Boutique Hotels Kensington - The Milestone London : Press Room RSS Feed</title><link>http://www.milestone
...[SNIP]...
&lt;br /&gt;&#13;
&lt;br /&gt;&#13;
&lt;strong&gt;FOR MORE INFORMATION&lt;/strong&gt;&lt;br /&gt;&#13;
Please contact Arnelle Kendall: USA: (561) 659-2174; UK: 0791 770 8666; email: &lt;a href="mailto:akendall@rchmail.com"&gt;akendall@rchmail.com&lt;/a&gt;</description>
...[SNIP]...

7.7. http://www.summerlodgehotel.co.uk/search  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.summerlodgehotel.co.uk
Path:   /search

Issue detail

The following email address was disclosed in the response:

Request

GET /search HTTP/1.1
Host: www.summerlodgehotel.co.uk
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: redcarnationhotels_session=9fb7afecceb1983316169482313810d8;

Response

HTTP/1.1 200 OK
Date: Wed, 06 Oct 2010 14:10:32 GMT
Server: Apache
Expires: Sat, 26 Jul 1997 05:00:00 GMT
Pragma: no-cache
Last-Modified: Wed, 06 Oct 2010 14:10:32 GMT
Cache-Control: private, no-store
Vary: Accept-Encoding,User-Agent
Content-Type: text/html; charset=UTF-8
Connection: close
Content-Length: 22128

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Search</title>
<meta http-equiv
...[SNIP]...
<!--
===================================
Designed & built by Pod1
Tel: 0870 246 2066
E-mail: info@pod1.com
Web: http://www.pod1.com
===================================
-->
...[SNIP]...

7.8. http://www.summerlodgehotel.co.uk/travel-agents  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.summerlodgehotel.co.uk
Path:   /travel-agents

Issue detail

The following email address was disclosed in the response:

Request

GET /travel-agents?leisure HTTP/1.1
Host: www.summerlodgehotel.co.uk
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: redcarnationhotels_session=9fb7afecceb1983316169482313810d8;

Response

HTTP/1.1 200 OK
Date: Wed, 06 Oct 2010 14:10:39 GMT
Server: Apache
Expires: Sat, 26 Jul 1997 05:00:00 GMT
Pragma: no-cache
Last-Modified: Wed, 06 Oct 2010 14:10:39 GMT
Cache-Control: private, no-store
Vary: Accept-Encoding,User-Agent
Content-Type: text/html; charset=UTF-8
Connection: close
Content-Length: 23441

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Travel Agents Booking Area ...
...[SNIP]...
<!--
===================================
Designed & built by Pod1
Tel: 0870 246 2066
E-mail: info@pod1.com
Web: http://www.pod1.com
===================================
-->
...[SNIP]...

8. Private IP addresses disclosed  previous
There are 2 instances of this issue:

Issue background

RFC 1918 specifies ranges of IP addresses that are reserved for use in private networks and cannot be routed on the public Internet. Although various methods exist by which an attacker can determine the public IP addresses in use by an organisation, the private addresses used internally cannot usually be determined in the same ways.

Discovering the private addresses used within an organisation can help an attacker in carrying out network-layer attacks aiming to penetrate the organisation's internal infrastructure.

Issue remediation

There is not usually any good reason to disclose the internal IP addresses used within an organisation's infrastructure. If these are being returned in service banners or debug messages, then the relevant services should be configured to mask the private addresses. If they are being used to track back-end servers for load balancing purposes, then the addresses should be rewritten with innocuous identifiers from which an attacker cannot infer any useful information about the infrastructure.


8.1. http://www.summerlodgehotel.co.uk/rss/offers-and-gifts/hotel/uk-sl  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.summerlodgehotel.co.uk
Path:   /rss/offers-and-gifts/hotel/uk-sl

Issue detail

The following RFC 1918 IP address was disclosed in the response:

Request

GET /rss/offers-and-gifts/hotel/uk-sl HTTP/1.1
Host: www.summerlodgehotel.co.uk
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: redcarnationhotels_session=9fb7afecceb1983316169482313810d8;

Response

HTTP/1.1 200 OK
Date: Wed, 06 Oct 2010 14:10:20 GMT
Server: Apache
Expires: Sat, 26 Jul 1997 05:00:00 GMT
Pragma: no-cache
Last-Modified: Wed, 06 Oct 2010 14:10:20 GMT
Cache-Control: private, no-store
Vary: Accept-Encoding,User-Agent
Content-Type: text/xml
Connection: close
Content-Length: 16932

<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"><channel><title>5 Star Luxury Hotel, Boutique Hotels Kensington - The Milestone London : Offers and Gifts RSS Feed</title><link>http://www.mil
...[SNIP]...
<url>http://192.168.100.18/images/red-carnation-hotels-cp-logo.gif</url>
...[SNIP]...

8.2. http://www.summerlodgehotel.co.uk/rss/press-room/hotel/uk-sl  previous

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.summerlodgehotel.co.uk
Path:   /rss/press-room/hotel/uk-sl

Issue detail

The following RFC 1918 IP address was disclosed in the response:

Request

GET /rss/press-room/hotel/uk-sl HTTP/1.1
Host: www.summerlodgehotel.co.uk
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: redcarnationhotels_session=9fb7afecceb1983316169482313810d8;

Response

HTTP/1.1 200 OK
Date: Wed, 06 Oct 2010 14:10:20 GMT
Server: Apache
Expires: Sat, 26 Jul 1997 05:00:00 GMT
Pragma: no-cache
Last-Modified: Wed, 06 Oct 2010 14:10:20 GMT
Cache-Control: private, no-store
Vary: Accept-Encoding,User-Agent
Content-Type: text/xml
Connection: close
Content-Length: 42358

<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"><channel><title>5 Star Luxury Hotel, Boutique Hotels Kensington - The Milestone London : Press Room RSS Feed</title><link>http://www.milestone
...[SNIP]...
<url>http://192.168.100.18/images/red-carnation-hotels-cp-logo.gif</url>
...[SNIP]...

Report generated by XSS.CX at Wed Oct 06 10:19:45 CDT 2010.