The Referer HTTP header appears to be vulnerable to SQL injection attacks. A single quote was submitted in the Referer HTTP header, 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:
One common defense is to double up any single quotation marks appearing within user input before incorporating that input into a SQL query. This defense is designed to prevent malformed data from terminating the string in which it is inserted. However, if the data being incorporated into queries is numeric, then the defense may fail, because numeric data may not be encapsulated within quotes, in which case only a space is required to break out of the data context and interfere with the query. Further, in second-order SQL injection attacks, data that has been safely escaped when initially inserted into the database is subsequently read from the database and then passed back to it again. Quotation marks that have been doubled up initially will return to their original form when the data is reused, allowing the defense to be bypassed.
Another often cited defense is to use stored procedures for database access. While stored procedures can provide security benefits, they are not guaranteed to prevent SQL injection attacks. The same kinds of vulnerabilities that arise within standard dynamic SQL queries can arise if any SQL is dynamically constructed within stored procedures. Further, even if the procedure is sound, SQL injection can arise if the procedure is invoked in an unsafe manner using user-controllable data.
Request 1
GET /tours/Riviera-Maya/2895MAYAHORSE/Horseback-Riding HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Referer: http://www.google.com/search?hl=en&q='
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> ...[SNIP]... <meta http-equiv="refresh" content="0; url=http://www.viator.com/error.jspa?code=VTC125" /> ...[SNIP]...
Request 2
GET /tours/Riviera-Maya/2895MAYAHORSE/Horseback-Riding HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Referer: http://www.google.com/search?hl=en&q=''
HTTP header injection vulnerabilities arise when user-supplied data is copied into a response header in an unsafe way. If an attacker can inject newline characters into the header, then they can inject new HTTP headers and also, by injecting an empty line, break out of the headers into the message body and write arbitrary content into the application's response.
Various kinds of attack can be delivered via HTTP header injection vulnerabilities. Any attack that can be delivered via cross-site scripting can usually be delivered via header injection, because the attacker can construct a request which causes arbitrary JavaScript to appear within the response body. Further, it is sometimes possible to leverage header injection vulnerabilities to poison the cache of any proxy server via which users access the application. Here, an attacker sends a crafted request which results in a "split" response containing arbitrary content. If the proxy server can be manipulated to associate the injected response with another URL used within the application, then the attacker can perform a "stored" attack against this URL which will compromise other users who request that URL in future.
Issue remediation
If possible, applications should avoid copying user-controllable data into HTTP response headers. If this is unavoidable, then the data should be strictly validated to prevent header injection attacks. In most situations, it will be appropriate to allow only short alphanumeric strings to be copied into headers, and any other input should be rejected. At a minimum, input containing any characters with ASCII codes less than 0x20 should be rejected.
The value of the mmod request parameter is copied into the Location response header. The payload 402f4%0d%0a57fca046ae8 was submitted in the mmod parameter. This caused a response containing an injected HTTP header.
Request
GET /tours/Paris/Eiffel-Tower-Paris-Moulin-Rouge-Show-and-Seine-River-Cruise/d479-2050TEM/photof-998214?mmod=402f4%0d%0a57fca046ae8 HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VIAPERSIST=53481644.0.0000; JSESSIONID=abcQpCDN9DG29-0bqjcUs; viator.cookie.currency=USD; HEADERIMAGECOOKIE=0.jpg; viator.cookie.ipCountry=US;
Response
HTTP/1.1 302 Found Date: Wed, 06 Oct 2010 17:24:27 GMT Server: Apache Location: /tours/Paris/Eiffel-Tower-Paris-Moulin-Rouge-Show-and-Seine-River-Cruise/d479-2050TEM/photos-1?scrollLeft=72&mmod=402f4 57fca046ae8#photo_998214 Content-Length: 0 Vary: Accept-Encoding Connection: close Content-Type: text/plain; charset=UTF-8
2.2. http://www.viator.com/tours/Riviera-Maya/2895MAYAHORSE/Horseback-Riding [name of an arbitrarily supplied request parameter]previousnext
The name of an arbitrarily supplied request parameter is copied into the Location response header. The payload 7825d%0d%0a6086efe71f9 was submitted in the name of an arbitrarily supplied request parameter. This caused a response containing an injected HTTP header.
Request
GET /tours/Riviera-Maya/2895MAYAHORSE/Horseback-Riding?7825d%0d%0a6086efe71f9=1 HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The value of the mmod request parameter is copied into the Location response header. The payload d5ac5%0d%0a328251be3ee was submitted in the mmod parameter. This caused a response containing an injected HTTP header.
Request
GET /tours/Sydney/Blue-Mountains-Nature-and-Wildlife-Day-Tour-from-Sydney/d357-2230S15/photof-995486?mmod=d5ac5%0d%0a328251be3ee HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VIAPERSIST=53481644.0.0000; JSESSIONID=abcQpCDN9DG29-0bqjcUs; viator.cookie.currency=USD; HEADERIMAGECOOKIE=0.jpg; viator.cookie.ipCountry=US;
Response
HTTP/1.1 302 Found Date: Wed, 06 Oct 2010 16:45:21 GMT Server: Apache Location: /tours/Sydney/Blue-Mountains-Nature-and-Wildlife-Day-Tour-from-Sydney/d357-2230S15/photos-1?scrollLeft=144&mmod=d5ac5 328251be3ee#photo_995486 Content-Length: 0 Vary: Accept-Encoding Connection: close Content-Type: text/plain; charset=UTF-8
3. Cross-site scripting (reflected)previousnext There are 3 instances of this issue:
Reflected cross-site scripting vulnerabilities arise when data is copied from a request and echoed into the application's immediate response in an unsafe way. An attacker can use the vulnerability to construct a request which, if issued by another application user, will cause JavaScript code supplied by the attacker to execute within the user's browser in the context of that user's session with the application.
The attacker-supplied code can perform a wide variety of actions, such as stealing the victim's session token or login credentials, performing arbitrary actions on the victim's behalf, and logging their keystrokes.
Users can be induced to issue the attacker's crafted request in various ways. For example, the attacker can send a victim a link containing a malicious URL in an email or instant message. They can submit the link to popular web sites that allow content authoring, for example in blog comments. And they can create an innocuous looking web site which causes anyone viewing it to make arbitrary cross-domain requests to the vulnerable application (using either the GET or the POST method).
The security impact of cross-site scripting vulnerabilities is dependent upon the nature of the vulnerable application, the kinds of data and functionality which it contains, and the other applications which belong to the same domain and organisation. If the application is used only to display non-sensitive public content, with no authentication or access control functionality, then a cross-site scripting flaw may be considered low risk. However, if the same application resides on a domain which can access cookies for other more security-critical applications, then the vulnerability could be used to attack those other applications, and so may be considered high risk. Similarly, if the organisation which owns the application is a likely target for phishing attacks, then the vulnerability could be leveraged to lend credibility to such attacks, by injecting Trojan functionality into the vulnerable application, and exploiting users' trust in the organisation in order to capture credentials for other applications which it owns. In many kinds of application, such as those providing online banking functionality, cross-site scripting should always be considered high risk.
Remediation background
In most situations where user-controllable data is copied into application responses, cross-site scripting attacks can be prevented using two layers of defenses:
Input should be validated as strictly as possible on arrival, given the kind of content which it is expected to contain. For example, personal names should consist of alphabetical and a small range of typographical characters, and be relatively short; a year of birth should consist of exactly four numerals; email addresses should match a well-defined regular expression. Input which fails the validation should be rejected, not sanitised.
User input should be HTML-encoded at any point where it is copied into application responses. All HTML metacharacters, including < > " ' and =, should be replaced with the corresponding HTML entities (< > etc).
In cases where the application's functionality allows users to author content using a restricted subset of HTML tags and attributes (for example, blog comments which allow limited formatting and linking), it is necessary to parse the supplied HTML to validate that it does not use any dangerous syntax; this is a non-trivial task.
The value of the mmod request parameter is copied into a JavaScript string which is encapsulated in double quotation marks. The payload 429b8"%3balert(1)//786db4d7104 was submitted in the mmod parameter. This input was echoed as 429b8";alert(1)//786db4d7104 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Note that a redirection occurred between the attack request and the response containing the echoed input. It is necessary to follow this redirection for the attack to succeed. When the attack is carried out via a browser, the redirection will be followed automatically.
Remediation detail
Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.
Request
GET /tours/Paris/Eiffel-Tower-Paris-Moulin-Rouge-Show-and-Seine-River-Cruise/d479-2050TEM/photof-998214?mmod=429b8"%3balert(1)//786db4d7104 HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VIAPERSIST=53481644.0.0000; JSESSIONID=abcQpCDN9DG29-0bqjcUs; viator.cookie.currency=USD; HEADERIMAGECOOKIE=0.jpg; viator.cookie.ipCountry=US;
Response (redirected)
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 17:24:20 GMT Server: Apache Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Connection: close Content-Length: 242706
The value of the mmod request parameter is copied into a JavaScript string which is encapsulated in double quotation marks. The payload 17c8f"%3balert(1)//21596bf4c98 was submitted in the mmod parameter. This input was echoed as 17c8f";alert(1)//21596bf4c98 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Remediation detail
Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.
Request
GET /tours/Sydney/Blue-Mountains-Nature-and-Wildlife-Day-Tour-from-Sydney/d357-2230S15?mmod=PHOTO-2230S1517c8f"%3balert(1)//21596bf4c98 HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VIAPERSIST=53481644.0.0000; JSESSIONID=abcQpCDN9DG29-0bqjcUs; viator.cookie.currency=USD; HEADERIMAGECOOKIE=0.jpg; viator.cookie.ipCountry=US;
Response
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 16:44:13 GMT Server: Apache Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Connection: close Content-Length: 201429
The value of the mmod request parameter is copied into a JavaScript string which is encapsulated in double quotation marks. The payload 2f99c"%3balert(1)//c626cbcad4e was submitted in the mmod parameter. This input was echoed as 2f99c";alert(1)//c626cbcad4e in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Note that a redirection occurred between the attack request and the response containing the echoed input. It is necessary to follow this redirection for the attack to succeed. When the attack is carried out via a browser, the redirection will be followed automatically.
Remediation detail
Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.
Request
GET /tours/Sydney/Blue-Mountains-Nature-and-Wildlife-Day-Tour-from-Sydney/d357-2230S15/photof-995486?mmod=2f99c"%3balert(1)//c626cbcad4e HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VIAPERSIST=53481644.0.0000; JSESSIONID=abcQpCDN9DG29-0bqjcUs; viator.cookie.currency=USD; HEADERIMAGECOOKIE=0.jpg; viator.cookie.ipCountry=US;
Response (redirected)
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 16:45:14 GMT Server: Apache Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Connection: close Content-Length: 226451
If the HttpOnly attribute is set on a cookie, then the cookie's value cannot be read or set by client-side JavaScript. This measure can prevent certain client-side attacks, such as cross-site scripting, from trivially capturing the cookie's value via an injected script.
Issue remediation
There is usually no good reason not to set the HttpOnly flag on all cookies. Unless you specifically require legitimate client-side scripts within your application to read or set a cookie's value, you should set the HttpOnly flag by including this attribute within the relevant Set-cookie directive.
You should be aware that the restrictions imposed by the HttpOnly flag can potentially be circumvented in some circumstances, and that numerous other serious attacks can be delivered by client-side script injection, aside from simple cookie stealing.
The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET / HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <!-- SES ...[SNIP]...
The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /tours/Riviera-Maya/2895MAYAHORSE/Horseback-Riding HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
The following cookie was issued by the application and does not have the HttpOnly flag set:
VIAPERSIST=52367532.0.0000; path=/
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /robots.txt HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 16:42:08 GMT Server: Apache Last-Modified: Thu, 26 Aug 2010 07:17:02 GMT ETag: "120a1b-319-c8dc9780" Accept-Ranges: bytes Vary: Accept-Encoding Connection: close Content-Type: text/plain X-Pad: avoid browser bug Set-Cookie: VIAPERSIST=52367532.0.0000; path=/ Content-Length: 793
# robots.txt for http://www.viator.com/ # comments are placed after hash.
When a web browser makes a request for a resource, it typically adds an HTTP header, called the "Referer" header, indicating the URL of the resource from which the request originated. This occurs in numerous situations, for example when a web page loads an image or script, or when a user clicks on a link or submits a form.
If the resource being requested resides on a different domain, then the Referer header is still generally included in the cross-domain request. If the originating URL contains any sensitive information within its query string, such as a session token, then this information will be transmitted to the other domain. If the other domain is not fully trusted by the application, then this may lead to a security compromise.
You should review the contents of the information being transmitted to other domains, and also determine whether those domains are fully trusted by the originating application.
Today's browsers may withhold the Referer header in some situations (for example, when loading a non-HTTPS resource from a page that was loaded over HTTPS, or when a Refresh directive is issued), but this behaviour should not be relied upon to protect the originating URL from disclosure.
Note also that if users can author content within the application then an attacker may be able to inject links referring to a domain they control in order to capture data from URLs used within the application.
Issue remediation
The application should never transmit any sensitive information within the URL query string. In addition to being leaked in the Referer header, such information may be logged in various locations and may be visible on-screen to untrusted parties.
Request
GET /tours/Sydney/Blue-Mountains-Nature-and-Wildlife-Day-Tour-from-Sydney/d357-2230S15?mmod=PHOTO-2230S15 HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VIAPERSIST=53481644.0.0000; JSESSIONID=abcQpCDN9DG29-0bqjcUs; viator.cookie.currency=USD; HEADERIMAGECOOKIE=0.jpg; viator.cookie.ipCountry=US;
Response
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 16:42:31 GMT Server: Apache Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Connection: close Content-Length: 201401
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.
GET /tours/Alice-Springs/3-Day-Alice-Springs-to-Uluru-Ayers-Rock-via-Kings-Canyon-Tour/d358-2230ARK3 HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VIAPERSIST=53481644.0.0000; JSESSIONID=abcQpCDN9DG29-0bqjcUs; viator.cookie.currency=USD; HEADERIMAGECOOKIE=0.jpg; viator.cookie.ipCountry=US;
Response
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 17:19:05 GMT Server: Apache Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Connection: close Content-Length: 173794
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> ...[SNIP]... </div><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username=viatortravel"></script> ...[SNIP]... </div>
GET /tours/Auckland/Auckland-Harbour-Bridge-Climb/d391-2454AKL_CLIMB HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VIAPERSIST=53481644.0.0000; JSESSIONID=abcQpCDN9DG29-0bqjcUs; viator.cookie.currency=USD; HEADERIMAGECOOKIE=0.jpg; viator.cookie.ipCountry=US;
Response
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 17:00:26 GMT Server: Apache Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Connection: close Content-Length: 165410
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> ...[SNIP]... </div><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username=viatortravel"></script> ...[SNIP]... </div>
GET /tours/Auckland/Waitomo-Caves-and-Rotorua-Day-Trip-from-Auckland/d391-3910GS16 HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VIAPERSIST=53481644.0.0000; JSESSIONID=abcQpCDN9DG29-0bqjcUs; viator.cookie.currency=USD; HEADERIMAGECOOKIE=0.jpg; viator.cookie.ipCountry=US;
Response
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 17:00:09 GMT Server: Apache Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Connection: close Content-Length: 177124
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> ...[SNIP]... </div><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username=viatortravel"></script> ...[SNIP]... </div>
GET /tours/Cairns-andamp-the-Tropical-North/Great-Barrier-Reef-Diving-and-Snorkeling-Cruise-from-Cairns/d754-3253OSPREY HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VIAPERSIST=53481644.0.0000; JSESSIONID=abcQpCDN9DG29-0bqjcUs; viator.cookie.currency=USD; HEADERIMAGECOOKIE=0.jpg; viator.cookie.ipCountry=US;
Response
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 17:00:09 GMT Server: Apache Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Connection: close Content-Length: 191680
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> ...[SNIP]... </div><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username=viatortravel"></script> ...[SNIP]... </div>
GET /tours/Chiang-Mai-and-Chiang-Rai/Chiang-Dao-Elephant-Jungle-Trek-with-River-Rafting-on-Ping-River/d752-3685CNX28/photos HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VIAPERSIST=53481644.0.0000; JSESSIONID=abcQpCDN9DG29-0bqjcUs; viator.cookie.currency=USD; HEADERIMAGECOOKIE=0.jpg; viator.cookie.ipCountry=US;
Response
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 16:42:11 GMT Server: Apache Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Connection: close Content-Length: 214145
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> ...[SNIP]... </div><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username=viatortravel"></script> ...[SNIP]...
GET /tours/Christchurch/Explore-Mount-Cook-from-Christchurch/d400-2950CLT05 HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VIAPERSIST=53481644.0.0000; JSESSIONID=abcQpCDN9DG29-0bqjcUs; viator.cookie.currency=USD; HEADERIMAGECOOKIE=0.jpg; viator.cookie.ipCountry=US;
Response
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 17:01:12 GMT Server: Apache Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Connection: close Content-Length: 166775
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> ...[SNIP]... </div><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username=viatortravel"></script> ...[SNIP]... </div>
GET /tours/Christchurch/Kaikoura-Whale-Watch-Day-Tour-from-Christchurch/d400-2950CLT08 HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VIAPERSIST=53481644.0.0000; JSESSIONID=abcQpCDN9DG29-0bqjcUs; viator.cookie.currency=USD; HEADERIMAGECOOKIE=0.jpg; viator.cookie.ipCountry=US;
Response
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 17:07:49 GMT Server: Apache Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Connection: close Content-Length: 170011
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> ...[SNIP]... </div><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username=viatortravel"></script> ...[SNIP]... </div>
GET /tours/Fiji/Fijian-Islands-and-Snorkel-Full-Day-Whales-Tale-Cruise-including-Beach-BBQ-Lunch/d23-2260FJTR32N HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VIAPERSIST=53481644.0.0000; JSESSIONID=abcQpCDN9DG29-0bqjcUs; viator.cookie.currency=USD; HEADERIMAGECOOKIE=0.jpg; viator.cookie.ipCountry=US;
Response
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 17:08:26 GMT Server: Apache Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Connection: close Content-Length: 190215
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> ...[SNIP]... </div><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username=viatortravel"></script> ...[SNIP]... </div>
GET /tours/Fiji/Navua-River-Rafting-Tour-including-BBQ-Lunch/d23-2260FJTR365N HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VIAPERSIST=53481644.0.0000; JSESSIONID=abcQpCDN9DG29-0bqjcUs; viator.cookie.currency=USD; HEADERIMAGECOOKIE=0.jpg; viator.cookie.ipCountry=US;
Response
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 17:08:45 GMT Server: Apache Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Connection: close Content-Length: 161304
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> ...[SNIP]... </div><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username=viatortravel"></script> ...[SNIP]... </div>
GET /tours/Fiji/Navua-River-Village-and-Kava-Ceramony-Tour-including-Lunch/d23-2260FJTR36N HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VIAPERSIST=53481644.0.0000; JSESSIONID=abcQpCDN9DG29-0bqjcUs; viator.cookie.currency=USD; HEADERIMAGECOOKIE=0.jpg; viator.cookie.ipCountry=US;
Response
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 17:09:08 GMT Server: Apache Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Connection: close Content-Length: 166821
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> ...[SNIP]... </div><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username=viatortravel"></script> ...[SNIP]... </div>
GET /tours/Fiji/Vuda-Lookout-Sabeto-Valley-and-Garden-of-the-Sleeping-Giant-Tour/d23-2260FJTR45N HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VIAPERSIST=53481644.0.0000; JSESSIONID=abcQpCDN9DG29-0bqjcUs; viator.cookie.currency=USD; HEADERIMAGECOOKIE=0.jpg; viator.cookie.ipCountry=US;
Response
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 17:09:51 GMT Server: Apache Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Connection: close Content-Length: 164459
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> ...[SNIP]... </div><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username=viatortravel"></script> ...[SNIP]... </div>
GET /tours/Franz-Josef-andamp-Fox-Glacier/Heli-Hiking-Franz-Josef/d757-3434WHO_HELIHIKE HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VIAPERSIST=53481644.0.0000; JSESSIONID=abcQpCDN9DG29-0bqjcUs; viator.cookie.currency=USD; HEADERIMAGECOOKIE=0.jpg; viator.cookie.ipCountry=US;
Response
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 17:00:54 GMT Server: Apache Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Connection: close Content-Length: 192200
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> ...[SNIP]... </div><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username=viatortravel"></script> ...[SNIP]... </div>
GET /tours/Las-Vegas/Grand-Canyon-and-Hoover-Dam-Day-Trip-from-Las-Vegas-with-Optional-Skywalk/d684-3951WESTDLX HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VIAPERSIST=53481644.0.0000; JSESSIONID=abcQpCDN9DG29-0bqjcUs; viator.cookie.currency=USD; HEADERIMAGECOOKIE=0.jpg; viator.cookie.ipCountry=US;
Response
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 16:42:18 GMT Server: Apache Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Connection: close Content-Length: 255015
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> ...[SNIP]... </div><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username=viatortravel"></script> ...[SNIP]... </div>
GET /tours/Madrid/4-Day-Spain-Tour-Cordoba-Seville-and-Granada-from-Madrid/d566-2140_A4L/photos HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VIAPERSIST=53481644.0.0000; JSESSIONID=abcQpCDN9DG29-0bqjcUs; viator.cookie.currency=USD; HEADERIMAGECOOKIE=0.jpg; viator.cookie.ipCountry=US;
Response
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 17:18:07 GMT Server: Apache Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Connection: close Content-Length: 170006
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> ...[SNIP]... </div><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username=viatortravel"></script> ...[SNIP]...
GET /tours/Melbourne/Phillip-Island-Penguins-Koalas-and-Kangaroos-Day-Tour-from-Melbourne/d384-2230M10 HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VIAPERSIST=53481644.0.0000; JSESSIONID=abcQpCDN9DG29-0bqjcUs; viator.cookie.currency=USD; HEADERIMAGECOOKIE=0.jpg; viator.cookie.ipCountry=US;
Response
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 16:43:37 GMT Server: Apache Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Connection: close Content-Length: 202255
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> ...[SNIP]... </div><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username=viatortravel"></script> ...[SNIP]... </div>
GET /tours/Melbourne/Yarra-Valley-Balloon-Flight-at-Sunrise/d384-3127YARRA HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VIAPERSIST=53481644.0.0000; JSESSIONID=abcQpCDN9DG29-0bqjcUs; viator.cookie.currency=USD; HEADERIMAGECOOKIE=0.jpg; viator.cookie.ipCountry=US;
Response
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 16:42:39 GMT Server: Apache Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Connection: close Content-Length: 181662
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> ...[SNIP]... </div><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username=viatortravel"></script> ...[SNIP]... </div>
GET /tours/New-York-City/2-Day-Niagara-Falls-Tour-from-New-York-by-Bus/d687-3857NYCNIA HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VIAPERSIST=53481644.0.0000; JSESSIONID=abcQpCDN9DG29-0bqjcUs; viator.cookie.currency=USD; HEADERIMAGECOOKIE=0.jpg; viator.cookie.ipCountry=US;
Response
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 16:42:16 GMT Server: Apache Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Connection: close Content-Length: 173694
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> ...[SNIP]... </div><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username=viatortravel"></script> ...[SNIP]... </div>
GET /tours/New-York-City/New-York-CityPass/d687-2640NYC HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VIAPERSIST=53481644.0.0000; JSESSIONID=abcQpCDN9DG29-0bqjcUs; viator.cookie.currency=USD; HEADERIMAGECOOKIE=0.jpg; viator.cookie.ipCountry=US;
Response
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 16:42:14 GMT Server: Apache Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Connection: close Content-Length: 193550
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> ...[SNIP]... </div><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username=viatortravel"></script> ...[SNIP]... </div>
GET /tours/Paris/Eiffel-Tower-Paris-Moulin-Rouge-Show-and-Seine-River-Cruise/d479-2050TEM HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VIAPERSIST=53481644.0.0000; JSESSIONID=abcQpCDN9DG29-0bqjcUs; viator.cookie.currency=USD; HEADERIMAGECOOKIE=0.jpg; viator.cookie.ipCountry=US;
Response
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 17:30:58 GMT Server: Apache Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Connection: close Content-Length: 203199
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> ...[SNIP]... </div><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username=viatortravel"></script> ...[SNIP]... </div>
GET /tours/Sedona-andamp-Flagstaff/2-Day-Grand-Canyon-Tour/d750-3630FGF2 HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VIAPERSIST=53481644.0.0000; JSESSIONID=abcQpCDN9DG29-0bqjcUs; viator.cookie.currency=USD; HEADERIMAGECOOKIE=0.jpg; viator.cookie.ipCountry=US;
Response
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 17:17:37 GMT Server: Apache Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Connection: close Content-Length: 160474
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> ...[SNIP]... </div><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username=viatortravel"></script> ...[SNIP]... </div>
GET /tours/Sydney/Blue-Mountains-Nature-and-Wildlife-Day-Tour-from-Sydney/d357-2230S15 HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VIAPERSIST=53481644.0.0000; JSESSIONID=abcQpCDN9DG29-0bqjcUs; viator.cookie.currency=USD; HEADERIMAGECOOKIE=0.jpg; viator.cookie.ipCountry=US;
Response
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 16:42:29 GMT Server: Apache Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Connection: close Content-Length: 201380
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> ...[SNIP]... </div><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username=viatortravel"></script> ...[SNIP]... </div>
GET /tours/Sydney/Sydney-Harbour-Lunch-Cruise-by-Catamaran/d357-2278MCLUNCH HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VIAPERSIST=53481644.0.0000; JSESSIONID=abcQpCDN9DG29-0bqjcUs; viator.cookie.currency=USD; HEADERIMAGECOOKIE=0.jpg; viator.cookie.ipCountry=US;
Response
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 16:42:21 GMT Server: Apache Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Connection: close Content-Length: 173229
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> ...[SNIP]... </div><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username=viatortravel"></script> ...[SNIP]... </div>
GET /tours/Sydney/Sydney-Harbour-Sunset-Dinner-Cruise/d357-3378SUNSET HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VIAPERSIST=53481644.0.0000; JSESSIONID=abcQpCDN9DG29-0bqjcUs; viator.cookie.currency=USD; HEADERIMAGECOOKIE=0.jpg; viator.cookie.ipCountry=US;
Response
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 16:42:25 GMT Server: Apache Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Connection: close Content-Length: 184574
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> ...[SNIP]... </div><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username=viatortravel"></script> ...[SNIP]... </div>
GET /tours/Tokyo/Tokyo-Night-Tour-with-Japanese-Dinner/d334-2142TYO_A160 HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VIAPERSIST=53481644.0.0000; JSESSIONID=abcQpCDN9DG29-0bqjcUs; viator.cookie.currency=USD; HEADERIMAGECOOKIE=0.jpg; viator.cookie.ipCountry=US;
Response
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 16:42:10 GMT Server: Apache Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Connection: close Content-Length: 173866
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> ...[SNIP]... </div><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username=viatortravel"></script> ...[SNIP]... </div>
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).
The following email address was disclosed in the response:
product-feedback@viator.com
Request
GET /tours/Alice-Springs/3-Day-Alice-Springs-to-Uluru-Ayers-Rock-via-Kings-Canyon-Tour/d358-2230ARK3 HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VIAPERSIST=53481644.0.0000; JSESSIONID=abcQpCDN9DG29-0bqjcUs; viator.cookie.currency=USD; HEADERIMAGECOOKIE=0.jpg; viator.cookie.ipCountry=US;
Response
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 17:19:05 GMT Server: Apache Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Connection: close Content-Length: 173794
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> ...[SNIP]... <a href="mailto:product-feedback@viator.com?subject=Feedback : [2230ARK3] 3-Day Alice Springs to Uluru (Ayers Rock) via Kings Canyon Tour" title="Share your feedback"> ...[SNIP]... <a href="mailto:product-feedback@viator.com?subject=Feedback : [2230ARK3] 3-Day Alice Springs to Uluru (Ayers Rock) via Kings Canyon Tour" title="Share your feedback"> ...[SNIP]...
The following email address was disclosed in the response:
product-feedback@viator.com
Request
GET /tours/Auckland/Auckland-Harbour-Bridge-Climb/d391-2454AKL_CLIMB HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VIAPERSIST=53481644.0.0000; JSESSIONID=abcQpCDN9DG29-0bqjcUs; viator.cookie.currency=USD; HEADERIMAGECOOKIE=0.jpg; viator.cookie.ipCountry=US;
Response
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 17:00:26 GMT Server: Apache Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Connection: close Content-Length: 165410
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> ...[SNIP]... <a href="mailto:product-feedback@viator.com?subject=Feedback : [2454AKL_CLIMB] Auckland Harbour Bridge Climb" title="Share your feedback"> ...[SNIP]... <a href="mailto:product-feedback@viator.com?subject=Feedback : [2454AKL_CLIMB] Auckland Harbour Bridge Climb" title="Share your feedback"> ...[SNIP]...
The following email address was disclosed in the response:
product-feedback@viator.com
Request
GET /tours/Auckland/Waitomo-Caves-and-Rotorua-Day-Trip-from-Auckland/d391-3910GS16 HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VIAPERSIST=53481644.0.0000; JSESSIONID=abcQpCDN9DG29-0bqjcUs; viator.cookie.currency=USD; HEADERIMAGECOOKIE=0.jpg; viator.cookie.ipCountry=US;
Response
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 17:00:09 GMT Server: Apache Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Connection: close Content-Length: 177124
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> ...[SNIP]... <a href="mailto:product-feedback@viator.com?subject=Feedback : [3910GS16] Waitomo Caves and Rotorua Day Trip from Auckland" title="Share your feedback"> ...[SNIP]... <a href="mailto:product-feedback@viator.com?subject=Feedback : [3910GS16] Waitomo Caves and Rotorua Day Trip from Auckland" title="Share your feedback"> ...[SNIP]...
The following email address was disclosed in the response:
product-feedback@viator.com
Request
GET /tours/Cairns-andamp-the-Tropical-North/Great-Barrier-Reef-Diving-and-Snorkeling-Cruise-from-Cairns/d754-3253OSPREY HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VIAPERSIST=53481644.0.0000; JSESSIONID=abcQpCDN9DG29-0bqjcUs; viator.cookie.currency=USD; HEADERIMAGECOOKIE=0.jpg; viator.cookie.ipCountry=US;
Response
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 17:00:09 GMT Server: Apache Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Connection: close Content-Length: 191680
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> ...[SNIP]... <a href="mailto:product-feedback@viator.com?subject=Feedback : [3253OSPREY] Great Barrier Reef Diving and Snorkeling Cruise from Cairns" title="Share your feedback"> ...[SNIP]... <a href="mailto:product-feedback@viator.com?subject=Feedback : [3253OSPREY] Great Barrier Reef Diving and Snorkeling Cruise from Cairns" title="Share your feedback"> ...[SNIP]...
The following email address was disclosed in the response:
product-feedback@viator.com
Request
GET /tours/Christchurch/Explore-Mount-Cook-from-Christchurch/d400-2950CLT05 HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VIAPERSIST=53481644.0.0000; JSESSIONID=abcQpCDN9DG29-0bqjcUs; viator.cookie.currency=USD; HEADERIMAGECOOKIE=0.jpg; viator.cookie.ipCountry=US;
Response
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 17:01:12 GMT Server: Apache Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Connection: close Content-Length: 166775
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> ...[SNIP]... <a href="mailto:product-feedback@viator.com?subject=Feedback : [2950CLT05] Explore Mount Cook from Christchurch" title="Share your feedback"> ...[SNIP]... <a href="mailto:product-feedback@viator.com?subject=Feedback : [2950CLT05] Explore Mount Cook from Christchurch" title="Share your feedback"> ...[SNIP]...
The following email address was disclosed in the response:
product-feedback@viator.com
Request
GET /tours/Christchurch/Kaikoura-Whale-Watch-Day-Tour-from-Christchurch/d400-2950CLT08 HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VIAPERSIST=53481644.0.0000; JSESSIONID=abcQpCDN9DG29-0bqjcUs; viator.cookie.currency=USD; HEADERIMAGECOOKIE=0.jpg; viator.cookie.ipCountry=US;
Response
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 17:07:49 GMT Server: Apache Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Connection: close Content-Length: 170011
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> ...[SNIP]... <a href="mailto:product-feedback@viator.com?subject=Feedback : [2950CLT08] Kaikoura Whale Watch Day Tour from Christchurch" title="Share your feedback"> ...[SNIP]... <a href="mailto:product-feedback@viator.com?subject=Feedback : [2950CLT08] Kaikoura Whale Watch Day Tour from Christchurch" title="Share your feedback"> ...[SNIP]...
The following email address was disclosed in the response:
product-feedback@viator.com
Request
GET /tours/Fiji/Fijian-Islands-and-Snorkel-Full-Day-Whales-Tale-Cruise-including-Beach-BBQ-Lunch/d23-2260FJTR32N HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VIAPERSIST=53481644.0.0000; JSESSIONID=abcQpCDN9DG29-0bqjcUs; viator.cookie.currency=USD; HEADERIMAGECOOKIE=0.jpg; viator.cookie.ipCountry=US;
Response
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 17:08:26 GMT Server: Apache Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Connection: close Content-Length: 190215
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> ...[SNIP]... <a href="mailto:product-feedback@viator.com?subject=Feedback : [2260FJTR32N] Fijian Islands and Snorkel Full-Day Whales Tale Cruise including Beach BBQ Lunch" title="Share your feedback"> ...[SNIP]... <a href="mailto:product-feedback@viator.com?subject=Feedback : [2260FJTR32N] Fijian Islands and Snorkel Full-Day Whales Tale Cruise including Beach BBQ Lunch" title="Share your feedback"> ...[SNIP]...
The following email address was disclosed in the response:
product-feedback@viator.com
Request
GET /tours/Fiji/Navua-River-Rafting-Tour-including-BBQ-Lunch/d23-2260FJTR365N HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VIAPERSIST=53481644.0.0000; JSESSIONID=abcQpCDN9DG29-0bqjcUs; viator.cookie.currency=USD; HEADERIMAGECOOKIE=0.jpg; viator.cookie.ipCountry=US;
Response
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 17:08:45 GMT Server: Apache Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Connection: close Content-Length: 161304
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> ...[SNIP]... <a href="mailto:product-feedback@viator.com?subject=Feedback : [2260FJTR365N] Navua River Rafting Tour including BBQ Lunch" title="Share your feedback"> ...[SNIP]... <a href="mailto:product-feedback@viator.com?subject=Feedback : [2260FJTR365N] Navua River Rafting Tour including BBQ Lunch" title="Share your feedback"> ...[SNIP]...
The following email address was disclosed in the response:
product-feedback@viator.com
Request
GET /tours/Fiji/Navua-River-Village-and-Kava-Ceramony-Tour-including-Lunch/d23-2260FJTR36N HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VIAPERSIST=53481644.0.0000; JSESSIONID=abcQpCDN9DG29-0bqjcUs; viator.cookie.currency=USD; HEADERIMAGECOOKIE=0.jpg; viator.cookie.ipCountry=US;
Response
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 17:09:08 GMT Server: Apache Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Connection: close Content-Length: 166821
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> ...[SNIP]... <a href="mailto:product-feedback@viator.com?subject=Feedback : [2260FJTR36N] Navua River Village and Kava Ceramony Tour including Lunch" title="Share your feedback"> ...[SNIP]... <a href="mailto:product-feedback@viator.com?subject=Feedback : [2260FJTR36N] Navua River Village and Kava Ceramony Tour including Lunch" title="Share your feedback"> ...[SNIP]...
The following email address was disclosed in the response:
product-feedback@viator.com
Request
GET /tours/Fiji/Vuda-Lookout-Sabeto-Valley-and-Garden-of-the-Sleeping-Giant-Tour/d23-2260FJTR45N HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VIAPERSIST=53481644.0.0000; JSESSIONID=abcQpCDN9DG29-0bqjcUs; viator.cookie.currency=USD; HEADERIMAGECOOKIE=0.jpg; viator.cookie.ipCountry=US;
Response
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 17:09:51 GMT Server: Apache Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Connection: close Content-Length: 164459
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> ...[SNIP]... <a href="mailto:product-feedback@viator.com?subject=Feedback : [2260FJTR45N] Vuda Lookout, Sabeto Valley and Garden of the Sleeping Giant Tour" title="Share your feedback"> ...[SNIP]... <a href="mailto:product-feedback@viator.com?subject=Feedback : [2260FJTR45N] Vuda Lookout, Sabeto Valley and Garden of the Sleeping Giant Tour" title="Share your feedback"> ...[SNIP]...
The following email address was disclosed in the response:
product-feedback@viator.com
Request
GET /tours/Franz-Josef-andamp-Fox-Glacier/Heli-Hiking-Franz-Josef/d757-3434WHO_HELIHIKE HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VIAPERSIST=53481644.0.0000; JSESSIONID=abcQpCDN9DG29-0bqjcUs; viator.cookie.currency=USD; HEADERIMAGECOOKIE=0.jpg; viator.cookie.ipCountry=US;
Response
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 17:00:54 GMT Server: Apache Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Connection: close Content-Length: 192200
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> ...[SNIP]... <a href="mailto:product-feedback@viator.com?subject=Feedback : [3434WHO_HELIHIKE] Heli Hiking Franz Josef" title="Share your feedback"> ...[SNIP]... <a href="mailto:product-feedback@viator.com?subject=Feedback : [3434WHO_HELIHIKE] Heli Hiking Franz Josef" title="Share your feedback"> ...[SNIP]...
The following email address was disclosed in the response:
product-feedback@viator.com
Request
GET /tours/Las-Vegas/Grand-Canyon-and-Hoover-Dam-Day-Trip-from-Las-Vegas-with-Optional-Skywalk/d684-3951WESTDLX HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VIAPERSIST=53481644.0.0000; JSESSIONID=abcQpCDN9DG29-0bqjcUs; viator.cookie.currency=USD; HEADERIMAGECOOKIE=0.jpg; viator.cookie.ipCountry=US;
Response
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 16:42:18 GMT Server: Apache Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Connection: close Content-Length: 255015
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> ...[SNIP]... <a href="mailto:product-feedback@viator.com?subject=Feedback : [3951WESTDLX] Grand Canyon and Hoover Dam Day Trip from Las Vegas with Optional Skywalk" title="Share your feedback"> ...[SNIP]... <a href="mailto:product-feedback@viator.com?subject=Feedback : [3951WESTDLX] Grand Canyon and Hoover Dam Day Trip from Las Vegas with Optional Skywalk" title="Share your feedback"> ...[SNIP]...
The following email address was disclosed in the response:
product-feedback@viator.com
Request
GET /tours/Melbourne/Phillip-Island-Penguins-Koalas-and-Kangaroos-Day-Tour-from-Melbourne/d384-2230M10 HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VIAPERSIST=53481644.0.0000; JSESSIONID=abcQpCDN9DG29-0bqjcUs; viator.cookie.currency=USD; HEADERIMAGECOOKIE=0.jpg; viator.cookie.ipCountry=US;
Response
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 16:43:37 GMT Server: Apache Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Connection: close Content-Length: 202255
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> ...[SNIP]... <a href="mailto:product-feedback@viator.com?subject=Feedback : [2230M10] Phillip Island: Penguins, Koalas and Kangaroos Day Tour from Melbourne" title="Share your feedback"> ...[SNIP]... <a href="mailto:product-feedback@viator.com?subject=Feedback : [2230M10] Phillip Island: Penguins, Koalas and Kangaroos Day Tour from Melbourne" title="Share your feedback"> ...[SNIP]...
The following email address was disclosed in the response:
product-feedback@viator.com
Request
GET /tours/Melbourne/Yarra-Valley-Balloon-Flight-at-Sunrise/d384-3127YARRA HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VIAPERSIST=53481644.0.0000; JSESSIONID=abcQpCDN9DG29-0bqjcUs; viator.cookie.currency=USD; HEADERIMAGECOOKIE=0.jpg; viator.cookie.ipCountry=US;
Response
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 16:42:39 GMT Server: Apache Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Connection: close Content-Length: 181662
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> ...[SNIP]... <a href="mailto:product-feedback@viator.com?subject=Feedback : [3127YARRA] Yarra Valley Balloon Flight at Sunrise" title="Share your feedback"> ...[SNIP]... <a href="mailto:product-feedback@viator.com?subject=Feedback : [3127YARRA] Yarra Valley Balloon Flight at Sunrise" title="Share your feedback"> ...[SNIP]...
The following email address was disclosed in the response:
product-feedback@viator.com
Request
GET /tours/New-York-City/2-Day-Niagara-Falls-Tour-from-New-York-by-Bus/d687-3857NYCNIA HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VIAPERSIST=53481644.0.0000; JSESSIONID=abcQpCDN9DG29-0bqjcUs; viator.cookie.currency=USD; HEADERIMAGECOOKIE=0.jpg; viator.cookie.ipCountry=US;
Response
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 16:42:16 GMT Server: Apache Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Connection: close Content-Length: 173694
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> ...[SNIP]... <a href="mailto:product-feedback@viator.com?subject=Feedback : [3857NYCNIA] 2-Day Niagara Falls Tour from New York by Bus" title="Share your feedback"> ...[SNIP]... <a href="mailto:product-feedback@viator.com?subject=Feedback : [3857NYCNIA] 2-Day Niagara Falls Tour from New York by Bus" title="Share your feedback"> ...[SNIP]...
The following email address was disclosed in the response:
product-feedback@viator.com
Request
GET /tours/New-York-City/New-York-CityPass/d687-2640NYC HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VIAPERSIST=53481644.0.0000; JSESSIONID=abcQpCDN9DG29-0bqjcUs; viator.cookie.currency=USD; HEADERIMAGECOOKIE=0.jpg; viator.cookie.ipCountry=US;
Response
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 16:42:14 GMT Server: Apache Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Connection: close Content-Length: 193550
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> ...[SNIP]... <a href="mailto:product-feedback@viator.com?subject=Feedback : [2640NYC] New York CityPass" title="Share your feedback"> ...[SNIP]... <a href="mailto:product-feedback@viator.com?subject=Feedback : [2640NYC] New York CityPass" title="Share your feedback"> ...[SNIP]...
The following email address was disclosed in the response:
product-feedback@viator.com
Request
GET /tours/Paris/Eiffel-Tower-Paris-Moulin-Rouge-Show-and-Seine-River-Cruise/d479-2050TEM HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VIAPERSIST=53481644.0.0000; JSESSIONID=abcQpCDN9DG29-0bqjcUs; viator.cookie.currency=USD; HEADERIMAGECOOKIE=0.jpg; viator.cookie.ipCountry=US;
Response
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 17:30:58 GMT Server: Apache Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Connection: close Content-Length: 203199
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> ...[SNIP]... <a href="mailto:product-feedback@viator.com?subject=Feedback : [2050TEM] Eiffel Tower, Paris Moulin Rouge Show and Seine River Cruise" title="Share your feedback"> ...[SNIP]... <a href="mailto:product-feedback@viator.com?subject=Feedback : [2050TEM] Eiffel Tower, Paris Moulin Rouge Show and Seine River Cruise" title="Share your feedback"> ...[SNIP]...
The following email address was disclosed in the response:
product-feedback@viator.com
Request
GET /tours/Sedona-andamp-Flagstaff/2-Day-Grand-Canyon-Tour/d750-3630FGF2 HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VIAPERSIST=53481644.0.0000; JSESSIONID=abcQpCDN9DG29-0bqjcUs; viator.cookie.currency=USD; HEADERIMAGECOOKIE=0.jpg; viator.cookie.ipCountry=US;
Response
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 17:17:37 GMT Server: Apache Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Connection: close Content-Length: 160474
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> ...[SNIP]... <a href="mailto:product-feedback@viator.com?subject=Feedback : [3630FGF2] 2-Day Grand Canyon Tour" title="Share your feedback"> ...[SNIP]... <a href="mailto:product-feedback@viator.com?subject=Feedback : [3630FGF2] 2-Day Grand Canyon Tour" title="Share your feedback"> ...[SNIP]...
The following email address was disclosed in the response:
product-feedback@viator.com
Request
GET /tours/Sydney/Blue-Mountains-Nature-and-Wildlife-Day-Tour-from-Sydney/d357-2230S15 HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VIAPERSIST=53481644.0.0000; JSESSIONID=abcQpCDN9DG29-0bqjcUs; viator.cookie.currency=USD; HEADERIMAGECOOKIE=0.jpg; viator.cookie.ipCountry=US;
Response
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 16:42:29 GMT Server: Apache Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Connection: close Content-Length: 201380
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> ...[SNIP]... <a href="mailto:product-feedback@viator.com?subject=Feedback : [2230S15] Blue Mountains Nature and Wildlife Day Tour from Sydney" title="Share your feedback"> ...[SNIP]... <a href="mailto:product-feedback@viator.com?subject=Feedback : [2230S15] Blue Mountains Nature and Wildlife Day Tour from Sydney" title="Share your feedback"> ...[SNIP]...
The following email address was disclosed in the response:
product-feedback@viator.com
Request
GET /tours/Sydney/Sydney-Harbour-Lunch-Cruise-by-Catamaran/d357-2278MCLUNCH HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VIAPERSIST=53481644.0.0000; JSESSIONID=abcQpCDN9DG29-0bqjcUs; viator.cookie.currency=USD; HEADERIMAGECOOKIE=0.jpg; viator.cookie.ipCountry=US;
Response
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 16:42:21 GMT Server: Apache Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Connection: close Content-Length: 173229
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> ...[SNIP]... <a href="mailto:product-feedback@viator.com?subject=Feedback : [2278MCLUNCH] Sydney Harbour Lunch Cruise by Catamaran" title="Share your feedback"> ...[SNIP]... <a href="mailto:product-feedback@viator.com?subject=Feedback : [2278MCLUNCH] Sydney Harbour Lunch Cruise by Catamaran" title="Share your feedback"> ...[SNIP]...
The following email address was disclosed in the response:
product-feedback@viator.com
Request
GET /tours/Sydney/Sydney-Harbour-Sunset-Dinner-Cruise/d357-3378SUNSET HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VIAPERSIST=53481644.0.0000; JSESSIONID=abcQpCDN9DG29-0bqjcUs; viator.cookie.currency=USD; HEADERIMAGECOOKIE=0.jpg; viator.cookie.ipCountry=US;
Response
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 16:42:25 GMT Server: Apache Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Connection: close Content-Length: 184574
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> ...[SNIP]... <a href="mailto:product-feedback@viator.com?subject=Feedback : [3378SUNSET] Sydney Harbour Sunset Dinner Cruise" title="Share your feedback"> ...[SNIP]... <a href="mailto:product-feedback@viator.com?subject=Feedback : [3378SUNSET] Sydney Harbour Sunset Dinner Cruise" title="Share your feedback"> ...[SNIP]...
The following email address was disclosed in the response:
product-feedback@viator.com
Request
GET /tours/Tokyo/Tokyo-Night-Tour-with-Japanese-Dinner/d334-2142TYO_A160 HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: VIAPERSIST=53481644.0.0000; JSESSIONID=abcQpCDN9DG29-0bqjcUs; viator.cookie.currency=USD; HEADERIMAGECOOKIE=0.jpg; viator.cookie.ipCountry=US;
Response
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 16:42:10 GMT Server: Apache Content-Type: text/html; charset=UTF-8 Vary: Accept-Encoding Connection: close Content-Length: 173866
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> ...[SNIP]... <a href="mailto:product-feedback@viator.com?subject=Feedback : [2142TYO_A160] Tokyo Night Tour with Japanese Dinner" title="Share your feedback"> ...[SNIP]... <a href="mailto:product-feedback@viator.com?subject=Feedback : [2142TYO_A160] Tokyo Night Tour with Japanese Dinner" title="Share your feedback"> ...[SNIP]...
The file robots.txt is used to give instructions to web robots, such as search engine crawlers, about locations within the web site which robots are allowed, or not allowed, to crawl and index.
The presence of the robots.txt does not in itself present any kind of security vulnerability. However, it is often used to identify restricted or private areas of a site's contents. The information in the file may therefore help an attacker to map out the site's contents, especially if some of the locations identified are not linked from elsewhere in the site. If the application relies on robots.txt to protect access to these areas, and does not enforce proper access control over them, then this presents a serious vulnerability.
Issue remediation
The robots.txt file is not itself a security threat, and its correct use can represent good practice for non-security reasons. You should not assume that all web robots will honour the file's instructions. Rather, assume that attackers will pay close attention to any locations identified in the file. Do not rely on robots.txt to provide any kind of protection over unauthorised access.
Request
GET /robots.txt HTTP/1.0 Host: www.viator.com
Response
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 16:32:12 GMT Server: Apache Last-Modified: Thu, 26 Aug 2010 07:17:02 GMT ETag: "10fc03-319-48eb4c8dc9780" Accept-Ranges: bytes Content-Length: 793 Vary: Accept-Encoding Connection: close Content-Type: text/plain; charset=UTF-8 Set-Cookie: VIAPERSIST=36769964.0.0000; path=/
# robots.txt for http://www.viator.com/ # comments are placed after hash.
The response contains the following Content-type statement:
Content-Type: text/plain
The response states that it contains plain text. However, it actually appears to contain script.
Issue background
If a web response specifies an incorrect content type, then browsers may process the response in unexpected ways. If the specified content type is a renderable text-based format, then the browser will usually attempt to parse and render the response in that format. If the specified type is an image format, then the browser will usually detect the anomaly and will analyse the actual content and attempt to determine its MIME type. Either case can lead to unexpected results, and if the content contains any user-controllable data may lead to cross-site scripting or other client-side vulnerabilities.
In most cases, the presence of an incorrect content type statement does not constitute a security flaw, particularly if the response contains static content. You should review the contents of the response and the context in which it appears to determine whether any vulnerability exists.
Issue remediation
For every response containing a message body, the application should include a single Content-type header which correctly and unambiguously states the MIME type of the content in the response body.
Request
GET /robots.txt HTTP/1.1 Host: www.viator.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response
HTTP/1.1 200 OK Date: Wed, 06 Oct 2010 16:42:08 GMT Server: Apache Last-Modified: Thu, 26 Aug 2010 07:17:02 GMT ETag: "120a1b-319-c8dc9780" Accept-Ranges: bytes Vary: Accept-Encoding Connection: close Content-Type: text/plain X-Pad: avoid browser bug Set-Cookie: VIAPERSIST=52367532.0.0000; path=/ Content-Length: 793
# robots.txt for http://www.viator.com/ # comments are placed after hash.