newtek.com, XSS, Cross Site Scripting, CWE-79, CAPEc-86

Cross Site Scripting in newtek.com | Vulnerability Crawler Report

Report generated by XSS.CX at Thu Dec 30 20:39:55 CST 2010.



Contents

Loading

1. Cross-site scripting (reflected)

2. Cleartext submission of password

2.1. http://www.newtek.com/forums/

2.2. http://www.newtek.com/forums/calendar.php

3. Password field with autocomplete enabled

3.1. http://www.newtek.com/forums/

3.2. http://www.newtek.com/forums/calendar.php

4. Cross-domain POST

4.1. http://www.newtek.com/catalog_resellers.php

4.2. http://www.newtek.com/speededit/

4.3. http://www.newtek.com/tricaster/requestInfo.php

4.4. http://www.newtek.com/tricaster/tricaster.php

4.5. http://www.newtek.com/tricaster/tricaster_broadcast.php

4.6. http://www.newtek.com/tricaster/tricaster_pro.php

4.7. http://www.newtek.com/tricaster/tricaster_studio.php

4.8. http://www.newtek.com/tricaster/tricaster_tcxd300.php

4.9. http://www.newtek.com/tricaster/tricaster_tcxd850.php

4.10. http://www.newtek.com/us_resellers.php

5. Cross-domain Referer leakage

6. Cross-domain script include

6.1. http://www.newtek.com/

6.2. http://www.newtek.com/index.php

6.3. http://www.newtek.com/tricaster/tricaster_tcxd850.php

7. Cookie without HttpOnly flag set

7.1. http://www.newtek.com/forums/

7.2. http://www.newtek.com/forums/calendar.php

8. Email addresses disclosed

8.1. http://www.newtek.com/admin/reseller_locator/js/shadowbox-base.js

8.2. http://www.newtek.com/admin/reseller_locator/js/shadowbox.js

8.3. http://www.newtek.com/careers.php

8.4. http://www.newtek.com/customer_care.php

8.5. http://www.newtek.com/forums/calendar.php

8.6. http://www.newtek.com/newtek_events.php

8.7. http://www.newtek.com/newtek_now.php

8.8. http://www.newtek.com/privacy.php

8.9. http://www.newtek.com/sales_contact.php

8.10. http://www.newtek.com/tech_support.php

8.11. http://www.newtek.com/trademarks.php

8.12. http://www.newtek.com/training_centers.php

8.13. http://www.newtek.com/tricaster/js/shadowbox-base.js

8.14. http://www.newtek.com/tricaster/js/shadowbox.js

8.15. http://www.newtek.com/tricaster/knowledgebase.php

8.16. http://www.newtek.com/tricaster/src/lang/shadowbox-en.js

8.17. http://www.newtek.com/tricaster/src/player/shadowbox-flv.js

8.18. http://www.newtek.com/tricaster/src/player/shadowbox-html.js

8.19. http://www.newtek.com/tricaster/src/player/shadowbox-iframe.js

8.20. http://www.newtek.com/tricaster/src/player/shadowbox-img.js

8.21. http://www.newtek.com/tricaster/src/player/shadowbox-qt.js

8.22. http://www.newtek.com/tricaster/src/player/shadowbox-swf.js

8.23. http://www.newtek.com/tricaster/src/player/shadowbox-wmp.js

8.24. http://www.newtek.com/tricaster/src/skin/classic/skin.css

8.25. http://www.newtek.com/tricaster/src/skin/classic/skin.js

8.26. http://www.newtek.com/warranties_returns.php

9. Credit card numbers disclosed

10. HTML does not specify charset

10.1. http://www.newtek.com/admin/news/homepageNews.php

10.2. http://www.newtek.com/admin/reseller_locator/resellerMainNav.php

10.3. http://www.newtek.com/faq/

10.4. http://www.newtek.com/reseller_locator/int_resellers.php

10.5. http://www.newtek.com/resellers/index.php

10.6. http://www.newtek.com/tricaster/tricaster_ajax_news.php

11. Content type incorrectly stated



1. Cross-site scripting (reflected)  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /reseller_locator/int_resellers.php

Issue detail

The value of the regionid request parameter is copied into a JavaScript expression which is not encapsulated in any quotation marks. The payload a29b1%3balert(1)//a62b7156d82 was submitted in the regionid parameter. This input was echoed as a29b1;alert(1)//a62b7156d82 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.

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

Request

GET /reseller_locator/int_resellers.php?regionid=14a29b1%3balert(1)//a62b7156d82 HTTP/1.1
Host: www.newtek.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.2.10.1293654605;

Response

HTTP/1.1 200 OK
Date: Wed, 29 Dec 2010 20:48:48 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
X-Powered-By: PHP/4.3.10-22
Connection: close
Content-Type: text/html
Content-Length: 17664

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>NewTek.com - Locate
...[SNIP]...
   }

   $(document).ready( function(){
       if ($('#region').val() != null) {
           //base the first region form name on the $_REQUEST[]
           $('#RegionNameArea').load('assists/form_regionName.php', {regionid: 14a29b1;alert(1)//a62b7156d82});
           
           populateTerritories();
       }

       $('#region').change(function() {
           //base subsequent new region name for the form on the drop down list value
           $('#RegionNameArea').load('assists/form_region
...[SNIP]...

2. Cleartext submission of password  previous  next
There are 2 instances of this issue:

Issue background

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

Issue remediation

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


2.1. http://www.newtek.com/forums/  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /forums/

Issue detail

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

Request

GET /forums/ HTTP/1.1
Host: www.newtek.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.2.10.1293654605;

Response

HTTP/1.1 200 OK
Date: Wed, 29 Dec 2010 20:48:36 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
X-Powered-By: PHP/4.3.10-22
Set-Cookie: bblastvisit=1293655716; expires=Thu, 29 Dec 2011 20:48:36 GMT; path=/
Set-Cookie: bblastactivity=0; expires=Thu, 29 Dec 2011 20:48:36 GMT; path=/
Expires: 0
Cache-Control: private, post-check=0, pre-check=0, max-age=0
Pragma: no-cache
X-UA-Compatible: IE=7
Connection: close
Content-Type: text/html; charset=ISO-8859-1
Content-Length: 175394

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en">
<head>
   <!-
...[SNIP]...
<!-- login form -->
       <form action="login.php?do=login" method="post" onsubmit="md5hash(vb_login_password, vb_login_md5password, vb_login_md5password_utf, 0)">
       <script type="text/javascript" src="clientscript/vbulletin_md5.js?v=382">
...[SNIP]...
<td><input type="password" class="bginput" style="font-size: 11px" name="vb_login_password" id="navbar_password" size="10" tabindex="102" /></td>
...[SNIP]...

2.2. http://www.newtek.com/forums/calendar.php  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /forums/calendar.php

Issue detail

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

Request

GET /forums/calendar.php HTTP/1.1
Host: www.newtek.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.2.10.1293654605;

Response

HTTP/1.1 200 OK
Date: Wed, 29 Dec 2010 20:48:34 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
X-Powered-By: PHP/4.3.10-22
Set-Cookie: bblastvisit=1293655714; expires=Thu, 29 Dec 2011 20:48:34 GMT; path=/
Set-Cookie: bblastactivity=0; expires=Thu, 29 Dec 2011 20:48:34 GMT; path=/
Expires: 0
Cache-Control: private, post-check=0, pre-check=0, max-age=0
Pragma: no-cache
X-UA-Compatible: IE=7
Set-Cookie: bbcalendar=354261095313275e60a48357b0937cefa727cc0aa-1-%7Bs-7-.calyear._i-2010_%7D; path=/
Set-Cookie: bbcalendar=a7913e332ac94276356f25181dc45e122dc517dea-2-%7Bs-7-.calyear._i-2010_s-8-.calmonth._i-12_%7D; path=/
Set-Cookie: bbcalendar=7a5ccc4e130a11f7694dd14afffaac4a1af048bca-3-%7Bs-7-.calyear._i-2010_s-8-.calmonth._i-12_s-8-.calview1._s-12-.displaymonth._%7D; path=/
Connection: close
Content-Type: text/html; charset=ISO-8859-1
Content-Length: 60076

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en">
<head>
<met
...[SNIP]...
<!-- login form -->
       <form action="login.php?do=login" method="post" onsubmit="md5hash(vb_login_password, vb_login_md5password, vb_login_md5password_utf, 0)">
       <script type="text/javascript" src="clientscript/vbulletin_md5.js?v=382">
...[SNIP]...
<td><input type="password" class="bginput" style="font-size: 11px" name="vb_login_password" id="navbar_password" size="10" tabindex="102" /></td>
...[SNIP]...

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

Issue background

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

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

Issue remediation

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


3.1. http://www.newtek.com/forums/  previous  next

Summary

Severity:   Low
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /forums/

Issue detail

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

Request

GET /forums/ HTTP/1.1
Host: www.newtek.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.2.10.1293654605;

Response

HTTP/1.1 200 OK
Date: Wed, 29 Dec 2010 20:48:36 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
X-Powered-By: PHP/4.3.10-22
Set-Cookie: bblastvisit=1293655716; expires=Thu, 29 Dec 2011 20:48:36 GMT; path=/
Set-Cookie: bblastactivity=0; expires=Thu, 29 Dec 2011 20:48:36 GMT; path=/
Expires: 0
Cache-Control: private, post-check=0, pre-check=0, max-age=0
Pragma: no-cache
X-UA-Compatible: IE=7
Connection: close
Content-Type: text/html; charset=ISO-8859-1
Content-Length: 175394

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en">
<head>
   <!-
...[SNIP]...
<!-- login form -->
       <form action="login.php?do=login" method="post" onsubmit="md5hash(vb_login_password, vb_login_md5password, vb_login_md5password_utf, 0)">
       <script type="text/javascript" src="clientscript/vbulletin_md5.js?v=382">
...[SNIP]...
<td><input type="password" class="bginput" style="font-size: 11px" name="vb_login_password" id="navbar_password" size="10" tabindex="102" /></td>
...[SNIP]...

3.2. http://www.newtek.com/forums/calendar.php  previous  next

Summary

Severity:   Low
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /forums/calendar.php

Issue detail

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

Request

GET /forums/calendar.php HTTP/1.1
Host: www.newtek.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.2.10.1293654605;

Response

HTTP/1.1 200 OK
Date: Wed, 29 Dec 2010 20:48:34 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
X-Powered-By: PHP/4.3.10-22
Set-Cookie: bblastvisit=1293655714; expires=Thu, 29 Dec 2011 20:48:34 GMT; path=/
Set-Cookie: bblastactivity=0; expires=Thu, 29 Dec 2011 20:48:34 GMT; path=/
Expires: 0
Cache-Control: private, post-check=0, pre-check=0, max-age=0
Pragma: no-cache
X-UA-Compatible: IE=7
Set-Cookie: bbcalendar=354261095313275e60a48357b0937cefa727cc0aa-1-%7Bs-7-.calyear._i-2010_%7D; path=/
Set-Cookie: bbcalendar=a7913e332ac94276356f25181dc45e122dc517dea-2-%7Bs-7-.calyear._i-2010_s-8-.calmonth._i-12_%7D; path=/
Set-Cookie: bbcalendar=7a5ccc4e130a11f7694dd14afffaac4a1af048bca-3-%7Bs-7-.calyear._i-2010_s-8-.calmonth._i-12_s-8-.calview1._s-12-.displaymonth._%7D; path=/
Connection: close
Content-Type: text/html; charset=ISO-8859-1
Content-Length: 60076

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en">
<head>
<met
...[SNIP]...
<!-- login form -->
       <form action="login.php?do=login" method="post" onsubmit="md5hash(vb_login_password, vb_login_md5password, vb_login_md5password_utf, 0)">
       <script type="text/javascript" src="clientscript/vbulletin_md5.js?v=382">
...[SNIP]...
<td><input type="password" class="bginput" style="font-size: 11px" name="vb_login_password" id="navbar_password" size="10" tabindex="102" /></td>
...[SNIP]...

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

Issue background

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


4.1. http://www.newtek.com/catalog_resellers.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /catalog_resellers.php

Issue detail

The page contains a form which POSTs data to the domain www.salesforce.com. The form contains the following fields:

Request

GET /catalog_resellers.php HTTP/1.1
Host: www.newtek.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.2.10.1293654605;

Response

HTTP/1.1 200 OK
Date: Wed, 29 Dec 2010 20:48:55 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
X-Powered-By: PHP/4.3.10-22
Connection: close
Content-Type: text/html
Content-Length: 28173

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-T
...[SNIP]...
<br />


<form action="https://www.salesforce.com/servlet/servlet.WebToLead?encoding=UTF-8" method="post">
<input type="hidden" name="oid" value="00D400000009tdn" />
...[SNIP]...

4.2. http://www.newtek.com/speededit/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /speededit/

Issue detail

The page contains a form which POSTs data to the domain www.salesforce.com. The form contains the following fields:

Request

GET /speededit/ HTTP/1.1
Host: www.newtek.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.2.10.1293654605;

Response

HTTP/1.1 200 OK
Date: Wed, 29 Dec 2010 20:48:30 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
X-Powered-By: PHP/4.3.10-22
Connection: close
Content-Type: text/html
Content-Length: 63830

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-T
...[SNIP]...
<br />


<form action="https://www.salesforce.com/servlet/servlet.WebToLead?encoding=UTF-8" method="post" onsubmit="WAValidateAN(document.forms[0].first_name,document.forms[0].first_name.value,'First name required',true,true,false,false,'',document.forms[0].first_name,1,true);WAValidatePN(document.forms[0].phone,'Phone and area code required',true,false,'',document.forms[0].phone,1,true);WAValidateEM(document.forms[0].email,document.forms[0].email.value,'- Invalid email address',document.forms[0].email,1,true);WAValidateRQ(document.forms[0].country,'Country required',document.forms[0].country,1,true,'select');WAAlertErrors('The following errors were found','Correct invalid entries to continue',true,false);return document.MM_returnValue">
<input type="hidden" name="oid" value="00D400000009tdn" />
...[SNIP]...

4.3. http://www.newtek.com/tricaster/requestInfo.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /tricaster/requestInfo.php

Issue detail

The page contains a form which POSTs data to the domain www.salesforce.com. The form contains the following fields:

Request

GET /tricaster/requestInfo.php HTTP/1.1
Host: www.newtek.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.2.10.1293654605;

Response

HTTP/1.1 200 OK
Date: Wed, 29 Dec 2010 20:47:59 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
X-Powered-By: PHP/4.3.10-22
Connection: close
Content-Type: text/html
Content-Length: 31703

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-T
...[SNIP]...
</script>
<form action="https://www.salesforce.com/servlet/servlet.WebToLead?encoding=UTF-8" method="post" onsubmit="WAValidateAN(document.forms[0].first_name,document.forms[0].first_name.value,'First name required',true,true,false,false,'',document.forms[0].first_name,1,true);WAValidatePN(document.forms[0].phone,'Phone and area code required',true,false,'',document.forms[0].phone,1,true);WAValidateEM(document.forms[0].email,document.forms[0].email.value,'- Invalid email address',document.forms[0].email,1,true);WAValidateRQ(document.forms[0].country,'Country required',document.forms[0].country,1,true,'select');WAAlertErrors('The following errors were found','Correct invalid entries to continue',true,false);return document.MM_returnValue">
<input type="hidden" name="oid" value="00D400000009tdn" />
...[SNIP]...

4.4. http://www.newtek.com/tricaster/tricaster.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /tricaster/tricaster.php

Issue detail

The page contains a form which POSTs data to the domain www.salesforce.com. The form contains the following fields:

Request

GET /tricaster/tricaster.php HTTP/1.1
Host: www.newtek.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.2.10.1293654605;

Response

HTTP/1.1 302 Found
Date: Wed, 29 Dec 2010 20:47:42 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
X-Powered-By: PHP/4.3.10-22
Location: http://www.newtek.com/tricaster
Connection: close
Content-Type: text/html
Content-Length: 120514


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content
...[SNIP]...
</script>
<form action="https://www.salesforce.com/servlet/servlet.WebToLead?encoding=UTF-8" method="post" onsubmit="WAValidateAN(document.forms[0].first_name,document.forms[0].first_name.value,'First name required',true,true,false,false,'',document.forms[0].first_name,1,true);WAValidatePN(document.forms[0].phone,'Phone and area code required',true,false,'',document.forms[0].phone,1,true);WAValidateEM(document.forms[0].email,document.forms[0].email.value,'- Invalid email address',document.forms[0].email,1,true);WAValidateRQ(document.forms[0].country,'Country required',document.forms[0].country,1,true,'select');WAAlertErrors('The following errors were found','Correct invalid entries to continue',true,false);return document.MM_returnValue">
<input type="hidden" name="oid" value="00D400000009tdn" />
...[SNIP]...

4.5. http://www.newtek.com/tricaster/tricaster_broadcast.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /tricaster/tricaster_broadcast.php

Issue detail

The page contains a form which POSTs data to the domain www.salesforce.com. The form contains the following fields:

Request

GET /tricaster/tricaster_broadcast.php HTTP/1.1
Host: www.newtek.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.2.10.1293654605;

Response

HTTP/1.1 200 OK
Date: Wed, 29 Dec 2010 20:47:43 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
X-Powered-By: PHP/4.3.10-22
Connection: close
Content-Type: text/html
Content-Length: 119616

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-T
...[SNIP]...
</script>
<form action="https://www.salesforce.com/servlet/servlet.WebToLead?encoding=UTF-8" method="post" onsubmit="WAValidateAN(document.forms[0].first_name,document.forms[0].first_name.value,'First name required',true,true,false,false,'',document.forms[0].first_name,1,true);WAValidatePN(document.forms[0].phone,'Phone and area code required',true,false,'',document.forms[0].phone,1,true);WAValidateEM(document.forms[0].email,document.forms[0].email.value,'- Invalid email address',document.forms[0].email,1,true);WAValidateRQ(document.forms[0].country,'Country required',document.forms[0].country,1,true,'select');WAAlertErrors('The following errors were found','Correct invalid entries to continue',true,false);return document.MM_returnValue">
<input type="hidden" name="oid" value="00D400000009tdn" />
...[SNIP]...

4.6. http://www.newtek.com/tricaster/tricaster_pro.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /tricaster/tricaster_pro.php

Issue detail

The page contains a form which POSTs data to the domain www.salesforce.com. The form contains the following fields:

Request

GET /tricaster/tricaster_pro.php HTTP/1.1
Host: www.newtek.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.2.10.1293654605;

Response

HTTP/1.1 302 Found
Date: Wed, 29 Dec 2010 20:47:42 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
X-Powered-By: PHP/4.3.10-22
Location: http://www.newtek.com/tricaster
Connection: close
Content-Type: text/html
Content-Length: 120411


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-
...[SNIP]...
</script>
<form action="https://www.salesforce.com/servlet/servlet.WebToLead?encoding=UTF-8" method="post" onsubmit="WAValidateAN(document.forms[0].first_name,document.forms[0].first_name.value,'First name required',true,true,false,false,'',document.forms[0].first_name,1,true);WAValidatePN(document.forms[0].phone,'Phone and area code required',true,false,'',document.forms[0].phone,1,true);WAValidateEM(document.forms[0].email,document.forms[0].email.value,'- Invalid email address',document.forms[0].email,1,true);WAValidateRQ(document.forms[0].country,'Country required',document.forms[0].country,1,true,'select');WAAlertErrors('The following errors were found','Correct invalid entries to continue',true,false);return document.MM_returnValue">
<input type="hidden" name="oid" value="00D400000009tdn" />
...[SNIP]...

4.7. http://www.newtek.com/tricaster/tricaster_studio.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /tricaster/tricaster_studio.php

Issue detail

The page contains a form which POSTs data to the domain www.salesforce.com. The form contains the following fields:

Request

GET /tricaster/tricaster_studio.php HTTP/1.1
Host: www.newtek.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.2.10.1293654605;

Response

HTTP/1.1 200 OK
Date: Wed, 29 Dec 2010 20:47:43 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
X-Powered-By: PHP/4.3.10-22
Connection: close
Content-Type: text/html
Content-Length: 120063

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-T
...[SNIP]...
</script>
<form action="https://www.salesforce.com/servlet/servlet.WebToLead?encoding=UTF-8" method="post" onsubmit="WAValidateAN(document.forms[0].first_name,document.forms[0].first_name.value,'First name required',true,true,false,false,'',document.forms[0].first_name,1,true);WAValidatePN(document.forms[0].phone,'Phone and area code required',true,false,'',document.forms[0].phone,1,true);WAValidateEM(document.forms[0].email,document.forms[0].email.value,'- Invalid email address',document.forms[0].email,1,true);WAValidateRQ(document.forms[0].country,'Country required',document.forms[0].country,1,true,'select');WAAlertErrors('The following errors were found','Correct invalid entries to continue',true,false);return document.MM_returnValue">
<input type="hidden" name="oid" value="00D400000009tdn" />
...[SNIP]...

4.8. http://www.newtek.com/tricaster/tricaster_tcxd300.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /tricaster/tricaster_tcxd300.php

Issue detail

The page contains a form which POSTs data to the domain www.salesforce.com. The form contains the following fields:

Request

GET /tricaster/tricaster_tcxd300.php HTTP/1.1
Host: www.newtek.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.2.10.1293654605;

Response

HTTP/1.1 200 OK
Date: Wed, 29 Dec 2010 20:47:44 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
X-Powered-By: PHP/4.3.10-22
Connection: close
Content-Type: text/html
Content-Length: 147187

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-T
...[SNIP]...
</script>
<form action="https://www.salesforce.com/servlet/servlet.WebToLead?encoding=UTF-8" method="post" onsubmit="WAValidateAN(document.forms[0].first_name,document.forms[0].first_name.value,'First name required',true,true,false,false,'',document.forms[0].first_name,1,true);WAValidatePN(document.forms[0].phone,'Phone and area code required',true,false,'',document.forms[0].phone,1,true);WAValidateEM(document.forms[0].email,document.forms[0].email.value,'- Invalid email address',document.forms[0].email,1,true);WAValidateRQ(document.forms[0].country,'Country required',document.forms[0].country,1,true,'select');WAAlertErrors('The following errors were found','Correct invalid entries to continue',true,false);return document.MM_returnValue">
<input type="hidden" name="oid" value="00D400000009tdn" />
...[SNIP]...

4.9. http://www.newtek.com/tricaster/tricaster_tcxd850.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /tricaster/tricaster_tcxd850.php

Issue detail

The page contains a form which POSTs data to the domain www.salesforce.com. The form contains the following fields:

Request

GET /tricaster/tricaster_tcxd850.php HTTP/1.1
Host: www.newtek.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.2.10.1293654605;

Response

HTTP/1.1 200 OK
Date: Wed, 29 Dec 2010 20:47:44 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
X-Powered-By: PHP/4.3.10-22
Connection: close
Content-Type: text/html
Content-Length: 148327

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-T
...[SNIP]...
</script>
<form action="https://www.salesforce.com/servlet/servlet.WebToLead?encoding=UTF-8" method="post" onsubmit="WAValidateAN(document.forms[0].first_name,document.forms[0].first_name.value,'First name required',true,true,false,false,'',document.forms[0].first_name,1,true);WAValidatePN(document.forms[0].phone,'Phone and area code required',true,false,'',document.forms[0].phone,1,true);WAValidateEM(document.forms[0].email,document.forms[0].email.value,'- Invalid email address',document.forms[0].email,1,true);WAValidateRQ(document.forms[0].country,'Country required',document.forms[0].country,1,true,'select');WAAlertErrors('The following errors were found','Correct invalid entries to continue',true,false);return document.MM_returnValue">
<input type="hidden" name="oid" value="00D400000009tdn" />
...[SNIP]...

4.10. http://www.newtek.com/us_resellers.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /us_resellers.php

Issue detail

The page contains a form which POSTs data to the domain www.salesforce.com. The form contains the following fields:

Request

GET /us_resellers.php HTTP/1.1
Host: www.newtek.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.2.10.1293654605;

Response

HTTP/1.1 200 OK
Date: Wed, 29 Dec 2010 20:48:39 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
X-Powered-By: PHP/4.3.10-22
Connection: close
Content-Type: text/html
Content-Length: 28188

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-T
...[SNIP]...
<br />

<form action="https://www.salesforce.com/servlet/servlet.WebToLead?encoding=UTF-8" method="post">
<input type="hidden" name="oid" value="00D400000009tdn" />
...[SNIP]...

5. Cross-domain Referer leakage  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /reseller_locator/int_resellers.php

Issue detail

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

Issue background

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

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

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

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

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

Issue remediation

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

Request

GET /reseller_locator/int_resellers.php?regionid=14 HTTP/1.1
Host: www.newtek.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.2.10.1293654605;

Response

HTTP/1.1 200 OK
Date: Wed, 29 Dec 2010 20:48:39 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
X-Powered-By: PHP/4.3.10-22
Connection: close
Content-Type: text/html
Content-Length: 17656

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>NewTek.com - Locate
...[SNIP]...
<div class="facebook"> <a href="http://www.facebook.com/pages/NewTek/52869223814?ref=ts" target="_blank"><img src="/images/icons/facebook.gif" alt="Visit NewTek on Facebook" width="53" height="66" border="0" />
...[SNIP]...
<div class="twitter"> <a href="http://twitter.com/NewTekInc" target="_blank"><img src="/images/icons/twitter.gif" alt="Follow NewTek on Twitter" width="53" height="66" border="0" />
...[SNIP]...
<div class="facebook"> <a href="http://www.linkedin.com/companies/15419" target="_blank"><img src="/images/icons/linkedin.gif" alt="Visit NewTek on LinkedIn" width="53" height="66" border="0" />
...[SNIP]...
<div class="twitter"> <a href="http://www.youtube.com/user/NewTekInc" target="_blank"><img src="/images/icons/youtube.gif" alt="Visit us at YouTube" width="53" height="66" border="0" />
...[SNIP]...
<div class="facebook"> <a href="http://www.flickr.com/photos/newtekinc/" target="_blank"><img src="/images/icons/flickr.gif" alt="Visit on Flickr" width="53" height="66" border="0" />
...[SNIP]...

6. Cross-domain script include  previous  next
There are 3 instances of this issue:

Issue background

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

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

Issue remediation

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


6.1. http://www.newtek.com/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /

Issue detail

The response dynamically includes the following script from another domain:

Request

GET / HTTP/1.1
Host: www.newtek.com
Proxy-Connection: keep-alive
Referer: http://www.newtek.com/tricaster/
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: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.2.10.1293654605

Response

HTTP/1.1 200 OK
Date: Wed, 29 Dec 2010 20:45:50 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
X-Powered-By: PHP/4.3.10-22
Content-Type: text/html
Content-Length: 25467

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-T
...[SNIP]...
<link rel="stylesheet" href="css/stickyBar.css" type="text/css" media="screen" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript"></script>
...[SNIP]...

6.2. http://www.newtek.com/index.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /index.php

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /index.php HTTP/1.1
Host: www.newtek.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.2.10.1293654605;

Response

HTTP/1.1 200 OK
Date: Wed, 29 Dec 2010 20:48:40 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
X-Powered-By: PHP/4.3.10-22
Connection: close
Content-Type: text/html
Content-Length: 25467

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-T
...[SNIP]...
<link rel="stylesheet" href="css/stickyBar.css" type="text/css" media="screen" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript"></script>
...[SNIP]...

6.3. http://www.newtek.com/tricaster/tricaster_tcxd850.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /tricaster/tricaster_tcxd850.php

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /tricaster/tricaster_tcxd850.php HTTP/1.1
Host: www.newtek.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.2.10.1293654605;

Response

HTTP/1.1 200 OK
Date: Wed, 29 Dec 2010 20:47:44 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
X-Powered-By: PHP/4.3.10-22
Connection: close
Content-Type: text/html
Content-Length: 148327

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-T
...[SNIP]...
</script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js"></script>
...[SNIP]...

7. Cookie without HttpOnly flag set  previous  next
There are 2 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.



7.1. http://www.newtek.com/forums/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /forums/

Issue detail

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

Request

GET /forums/ HTTP/1.1
Host: www.newtek.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.2.10.1293654605;

Response

HTTP/1.1 200 OK
Date: Wed, 29 Dec 2010 20:48:36 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
X-Powered-By: PHP/4.3.10-22
Set-Cookie: bblastvisit=1293655716; expires=Thu, 29 Dec 2011 20:48:36 GMT; path=/
Set-Cookie: bblastactivity=0; expires=Thu, 29 Dec 2011 20:48:36 GMT; path=/
Expires: 0
Cache-Control: private, post-check=0, pre-check=0, max-age=0
Pragma: no-cache
X-UA-Compatible: IE=7
Connection: close
Content-Type: text/html; charset=ISO-8859-1
Content-Length: 175394

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en">
<head>
   <!-
...[SNIP]...

7.2. http://www.newtek.com/forums/calendar.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /forums/calendar.php

Issue detail

The following cookies were issued by the application and do not have the HttpOnly flag set:The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.

Request

GET /forums/calendar.php HTTP/1.1
Host: www.newtek.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.2.10.1293654605;

Response

HTTP/1.1 200 OK
Date: Wed, 29 Dec 2010 20:48:34 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
X-Powered-By: PHP/4.3.10-22
Set-Cookie: bblastvisit=1293655714; expires=Thu, 29 Dec 2011 20:48:34 GMT; path=/
Set-Cookie: bblastactivity=0; expires=Thu, 29 Dec 2011 20:48:34 GMT; path=/
Expires: 0
Cache-Control: private, post-check=0, pre-check=0, max-age=0
Pragma: no-cache
X-UA-Compatible: IE=7
Set-Cookie: bbcalendar=354261095313275e60a48357b0937cefa727cc0aa-1-%7Bs-7-.calyear._i-2010_%7D; path=/
Set-Cookie: bbcalendar=a7913e332ac94276356f25181dc45e122dc517dea-2-%7Bs-7-.calyear._i-2010_s-8-.calmonth._i-12_%7D; path=/
Set-Cookie: bbcalendar=7a5ccc4e130a11f7694dd14afffaac4a1af048bca-3-%7Bs-7-.calyear._i-2010_s-8-.calmonth._i-12_s-8-.calview1._s-12-.displaymonth._%7D; path=/
Connection: close
Content-Type: text/html; charset=ISO-8859-1
Content-Length: 60076

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en">
<head>
<met
...[SNIP]...

8. Email addresses disclosed  previous  next
There are 26 instances of this issue:

Issue background

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

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

Issue remediation

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


8.1. http://www.newtek.com/admin/reseller_locator/js/shadowbox-base.js  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /admin/reseller_locator/js/shadowbox-base.js

Issue detail

The following email address was disclosed in the response:

Request

GET /admin/reseller_locator/js/shadowbox-base.js HTTP/1.1
Host: www.newtek.com
Proxy-Connection: keep-alive
Referer: http://www.newtek.com/reseller_locator/int_resellers.php?regionid=14a29b1%3balert(document.cookie)//a62b7156d82
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: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.2.10.1293654605

Response

HTTP/1.1 200 OK
Date: Wed, 29 Dec 2010 20:50:25 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
Last-Modified: Sun, 16 May 2010 07:32:50 GMT
ETag: "451fe-2aff-486b11d8dac80"
Accept-Ranges: bytes
Content-Length: 11007
Content-Type: application/x-javascript

/**
* A base library for Shadowbox used as a standalone (without another base
* library/adapter combination).
*
* This file is part of Shadowbox.
*
* Shadowbox is an online media viewer ap
...[SNIP]...
<mjijackson@gmail.com>
...[SNIP]...

8.2. http://www.newtek.com/admin/reseller_locator/js/shadowbox.js  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /admin/reseller_locator/js/shadowbox.js

Issue detail

The following email address was disclosed in the response:

Request

GET /admin/reseller_locator/js/shadowbox.js HTTP/1.1
Host: www.newtek.com
Proxy-Connection: keep-alive
Referer: http://www.newtek.com/reseller_locator/int_resellers.php?regionid=14a29b1%3balert(document.cookie)//a62b7156d82
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: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.2.10.1293654605

Response

HTTP/1.1 200 OK
Date: Wed, 29 Dec 2010 20:50:25 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
Last-Modified: Sun, 16 May 2010 07:32:50 GMT
ETag: "451ff-11fb1-486b11d8dac80"
Accept-Ranges: bytes
Content-Length: 73649
Content-Type: application/x-javascript

/**
* The Shadowbox class.
*
* This file is part of Shadowbox.
*
* Shadowbox is an online media viewer application that supports all of the
* web's most popular media publishing formats. S
...[SNIP]...
<mjijackson@gmail.com>
...[SNIP]...
<mjijackson@gmail.com>
...[SNIP]...

8.3. http://www.newtek.com/careers.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /careers.php

Issue detail

The following email addresses were disclosed in the response:

Request

GET /careers.php HTTP/1.1
Host: www.newtek.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.2.10.1293654605;

Response

HTTP/1.1 200 OK
Date: Wed, 29 Dec 2010 20:48:48 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
X-Powered-By: PHP/4.3.10-22
Connection: close
Content-Type: text/html
Content-Length: 36960

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-T
...[SNIP]...
<br />
ATTN: Kevin Rouviere (kevinr@newtek.com)<br />
...[SNIP]...
<br />
or via email (PDF, DOC or TXT format) to: kevinr@NewTek.com<br />
...[SNIP]...
<br />
or via email (PDF, DOC or TXT format) to: Across@NewTek.com<br />
...[SNIP]...
<br />
ATTN: Donetta Colboch (donetta@newtek.com)<br />
...[SNIP]...

8.4. http://www.newtek.com/customer_care.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /customer_care.php

Issue detail

The following email addresses were disclosed in the response:

Request

GET /customer_care.php HTTP/1.1
Host: www.newtek.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.2.10.1293654605;

Response

HTTP/1.1 200 OK
Date: Wed, 29 Dec 2010 20:48:40 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
X-Powered-By: PHP/4.3.10-22
Connection: close
Content-Type: text/html
Content-Length: 17964

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-T
...[SNIP]...
<a href="mailto:cs@newtek.com">cs@newtek.com</a><a href="tech@newtek.com">
...[SNIP]...

8.5. http://www.newtek.com/forums/calendar.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /forums/calendar.php

Issue detail

The following email address was disclosed in the response:

Request

GET /forums/calendar.php HTTP/1.1
Host: www.newtek.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.2.10.1293654605;

Response

HTTP/1.1 200 OK
Date: Wed, 29 Dec 2010 20:48:34 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
X-Powered-By: PHP/4.3.10-22
Set-Cookie: bblastvisit=1293655714; expires=Thu, 29 Dec 2011 20:48:34 GMT; path=/
Set-Cookie: bblastactivity=0; expires=Thu, 29 Dec 2011 20:48:34 GMT; path=/
Expires: 0
Cache-Control: private, post-check=0, pre-check=0, max-age=0
Pragma: no-cache
X-UA-Compatible: IE=7
Set-Cookie: bbcalendar=354261095313275e60a48357b0937cefa727cc0aa-1-%7Bs-7-.calyear._i-2010_%7D; path=/
Set-Cookie: bbcalendar=a7913e332ac94276356f25181dc45e122dc517dea-2-%7Bs-7-.calyear._i-2010_s-8-.calmonth._i-12_%7D; path=/
Set-Cookie: bbcalendar=7a5ccc4e130a11f7694dd14afffaac4a1af048bca-3-%7Bs-7-.calyear._i-2010_s-8-.calmonth._i-12_s-8-.calview1._s-12-.displaymonth._%7D; path=/
Connection: close
Content-Type: text/html; charset=ISO-8859-1
Content-Length: 60076

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en">
<head>
<met
...[SNIP]...
<a href="calendar.php?do=getinfo&amp;e=1817&amp;day=2010-12-5&amp;c=1" title="NewTek TriCaster TCXD850 Presentation
Reseller:http://www.avs-inc.com AV Solutions
Contact: barry@avs-inc.com

See a full demonstration of TriCaster. TCXD850, bringing live production capabilities of a large network studio in one rack mount appliance. See how...">
...[SNIP]...

8.6. http://www.newtek.com/newtek_events.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /newtek_events.php

Issue detail

The following email addresses were disclosed in the response:

Request

GET /newtek_events.php HTTP/1.1
Host: www.newtek.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.2.10.1293654605;

Response

HTTP/1.1 200 OK
Date: Wed, 29 Dec 2010 20:48:49 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
X-Powered-By: PHP/4.3.10-22
Connection: close
Content-Type: text/html
Content-Length: 19492

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-T
...[SNIP]...
<a href="mailto:dominicc@wpsworld.com">dominicc@wpsworld.com </a>
...[SNIP]...
<a href="mailto:mdrabick@mindspring.com">mdrabick@mindspring.com</a>
...[SNIP]...

8.7. http://www.newtek.com/newtek_now.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /newtek_now.php

Issue detail

The following email address was disclosed in the response:

Request

GET /newtek_now.php HTTP/1.1
Host: www.newtek.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.2.10.1293654605;

Response

HTTP/1.1 200 OK
Date: Wed, 29 Dec 2010 20:48:52 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
X-Powered-By: PHP/4.3.10-22
Connection: close
Content-Type: text/html
Content-Length: 28088

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-T
...[SNIP]...
<a href="mailto:jpruett@newtek.com">jpruett@newtek.com</a>
...[SNIP]...

8.8. http://www.newtek.com/privacy.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /privacy.php

Issue detail

The following email address was disclosed in the response:

Request

GET /privacy.php HTTP/1.1
Host: www.newtek.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.2.10.1293654605;

Response

HTTP/1.1 200 OK
Date: Wed, 29 Dec 2010 20:48:40 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
X-Powered-By: PHP/4.3.10-22
Connection: close
Content-Type: text/html
Content-Length: 23166

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-T
...[SNIP]...
<a href="mailto:privacy@newtek.com">privacy@newtek.com</a>
...[SNIP]...

8.9. http://www.newtek.com/sales_contact.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /sales_contact.php

Issue detail

The following email addresses were disclosed in the response:

Request

GET /sales_contact.php HTTP/1.1
Host: www.newtek.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.2.10.1293654605;

Response

HTTP/1.1 200 OK
Date: Wed, 29 Dec 2010 20:48:51 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
X-Powered-By: PHP/4.3.10-22
Connection: close
Content-Type: text/html
Content-Length: 18937

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-T
...[SNIP]...
<a href="mailto:mparkhill@newtek.com">
...[SNIP]...
<a href="mailto:carolinen@newtek.com">
...[SNIP]...
<a href="mailto:rgarcia@newtek.com">
...[SNIP]...
<a href="mailto:jhusson@newtek.com">
...[SNIP]...
<a href="mailto:chines@newtek.com">
...[SNIP]...
<a href="mailto:kbeaumont@newtek.com">
...[SNIP]...
<a href="mailto:nydia@newtek.com">
...[SNIP]...
<a href="mailto:ralph@newtek.com">
...[SNIP]...
<a href="mailto:iking@newtek.com">
...[SNIP]...
<a href="mailto:ferdinand@asiamediaproducts.com">
...[SNIP]...

8.10. http://www.newtek.com/tech_support.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /tech_support.php

Issue detail

The following email addresses were disclosed in the response:

Request

GET /tech_support.php HTTP/1.1
Host: www.newtek.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.2.10.1293654605;

Response

HTTP/1.1 200 OK
Date: Wed, 29 Dec 2010 20:48:52 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
X-Powered-By: PHP/4.3.10-22
Connection: close
Content-Type: text/html
Content-Length: 18258

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-T
...[SNIP]...
<a href="mailto:tech@newtek.com">tech@newtek.com</a>
...[SNIP]...
<a href="mailto:tech.tc@newtek-europe.com">
...[SNIP]...
<a href="mailto:tech.lw@newtek-europe.com">
...[SNIP]...

8.11. http://www.newtek.com/trademarks.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /trademarks.php

Issue detail

The following email address was disclosed in the response:

Request

GET /trademarks.php HTTP/1.1
Host: www.newtek.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.2.10.1293654605;

Response

HTTP/1.1 200 OK
Date: Wed, 29 Dec 2010 20:48:40 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
X-Powered-By: PHP/4.3.10-22
Connection: close
Content-Type: text/html
Content-Length: 33562

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-T
...[SNIP]...
<a href="mailto:trademarks@newtek.com">trademarks@newtek.com</a>
...[SNIP]...
of any graphic symbol, logo, icon or image. The best way to ensure this is to contact NewTek via e-mail at trademarks@newtek.com to inquire and obtain written permission. </p>
...[SNIP]...

8.12. http://www.newtek.com/training_centers.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /training_centers.php

Issue detail

The following email addresses were disclosed in the response:

Request

GET /training_centers.php HTTP/1.1
Host: www.newtek.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.2.10.1293654605;

Response

HTTP/1.1 200 OK
Date: Wed, 29 Dec 2010 20:48:53 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
X-Powered-By: PHP/4.3.10-22
Connection: close
Content-Type: text/html
Content-Length: 24373

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-T
...[SNIP]...
<a href="mailto:AneishL@FMCtraining.com">AneishL@FMCtraining.com</a>
...[SNIP]...
<a href="mailto:keriw@fmctraining.com">keriw@fmctraining.com</a>
...[SNIP]...
<a href="mailto:jennh@fmctraining.com">jennh@fmctraining.com</a>
...[SNIP]...
<a href="mailto:tomw@FMCtraining.com">tomw@FMCtraining.com</a>
...[SNIP]...
<a href="mailto:sarahm@fmctraining.com">sarahm@fmctraining.com</a>
...[SNIP]...
<a href="mailto:whill@ju.edu">whill@ju.edu</a>
...[SNIP]...
<a href="mailto:peterdavis@hibbing.edu">peterdavis@hibbing.edu</a>
...[SNIP]...
<a href="mailto:jgrogan@mail.accd.edu">jgrogan@mail.accd.edu</a>
...[SNIP]...
<a href="mailto:daniel.schmidt@washburn.edu">Daniel.schmidt@washburn.edu</a>
...[SNIP]...
<a href="mailto:karen@3dexchange.com">karen@3dexchange.com</a>
...[SNIP]...
<a href="mailto:lightwave@idesignsol.com">lightwave@idesignsol.com</a>
...[SNIP]...
<a href="mailto:carlos@3Dpuppets.com">carlos@3Dpuppets.com </a>
...[SNIP]...
<a href="mailto:contacto@animationreality.com">contacto@animationreality.com</a>
...[SNIP]...
<a href="mailto:director@studiocreativo.com">director@studiocreativo.com</a>
...[SNIP]...
<a href="mailto:rinnetter@sbcstnt.com">
...[SNIP]...

8.13. http://www.newtek.com/tricaster/js/shadowbox-base.js  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /tricaster/js/shadowbox-base.js

Issue detail

The following email address was disclosed in the response:

Request

GET /tricaster/js/shadowbox-base.js HTTP/1.1
Host: www.newtek.com
Proxy-Connection: keep-alive
Referer: http://www.newtek.com/tricaster/
Cache-Control: max-age=0
If-Modified-Since: Sun, 16 May 2010 05:40:04 GMT
Accept: */*
If-None-Match: "63805-29d5-486af8a44b500"
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: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.1.10.1293654605

Response

HTTP/1.1 200 OK
Date: Wed, 29 Dec 2010 20:47:34 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
Last-Modified: Sun, 16 May 2010 05:40:04 GMT
ETag: "63805-29d5-486af8a44b500"
Accept-Ranges: bytes
Content-Length: 10709
Content-Type: application/x-javascript

/**
* A base library for Shadowbox used as a standalone (without another base
* library/adapter combination).
*
* This file is part of Shadowbox.
*
* Shadowbox is an online media viewer applicat
...[SNIP]...
<mjijackson@gmail.com>
...[SNIP]...

8.14. http://www.newtek.com/tricaster/js/shadowbox.js  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /tricaster/js/shadowbox.js

Issue detail

The following email address was disclosed in the response:

Request

GET /tricaster/js/shadowbox.js HTTP/1.1
Host: www.newtek.com
Proxy-Connection: keep-alive
Referer: http://www.newtek.com/tricaster/
Cache-Control: max-age=0
If-Modified-Since: Sun, 16 May 2010 05:40:04 GMT
Accept: */*
If-None-Match: "63806-11750-486af8a44b500"
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: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.1.10.1293654605

Response

HTTP/1.1 200 OK
Date: Wed, 29 Dec 2010 20:47:35 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
Last-Modified: Sun, 16 May 2010 05:40:04 GMT
ETag: "63806-11750-486af8a44b500"
Accept-Ranges: bytes
Content-Length: 71504
Content-Type: application/x-javascript

/**
* The Shadowbox class.
*
* This file is part of Shadowbox.
*
* Shadowbox is an online media viewer application that supports all of the
* web's most popular media publishing formats. Shadowb
...[SNIP]...
<mjijackson@gmail.com>
...[SNIP]...
<mjijackson@gmail.com>
...[SNIP]...

8.15. http://www.newtek.com/tricaster/knowledgebase.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /tricaster/knowledgebase.php

Issue detail

The following email address was disclosed in the response:

Request

GET /tricaster/knowledgebase.php HTTP/1.1
Host: www.newtek.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.2.10.1293654605;

Response

HTTP/1.1 200 OK
Date: Wed, 29 Dec 2010 20:47:58 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
X-Powered-By: PHP/4.3.10-22
Connection: close
Content-Type: text/html
Content-Length: 28256

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-T
...[SNIP]...
<a href="mailto:tech@newtek.com"><strong>tech@newtek.com</strong>
...[SNIP]...

8.16. http://www.newtek.com/tricaster/src/lang/shadowbox-en.js  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /tricaster/src/lang/shadowbox-en.js

Issue detail

The following email address was disclosed in the response:

Request

GET /tricaster/src/lang/shadowbox-en.js HTTP/1.1
Host: www.newtek.com
Proxy-Connection: keep-alive
Referer: http://www.newtek.com/tricaster/
Cache-Control: max-age=0
If-Modified-Since: Sun, 16 May 2010 05:40:12 GMT
Accept: */*
If-None-Match: "63849-921-486af8abec700"
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: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.1.10.1293654605

Response

HTTP/1.1 200 OK
Date: Wed, 29 Dec 2010 20:48:05 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
Last-Modified: Sun, 16 May 2010 05:40:12 GMT
ETag: "63849-921-486af8abec700"
Accept-Ranges: bytes
Content-Length: 2337
Content-Type: application/x-javascript

/**
* The English language file for Shadowbox.
*
* This file is part of Shadowbox.
*
* Shadowbox is an online media viewer application that supports all of the
* web's most popular media publish
...[SNIP]...
<mjijackson@gmail.com>
...[SNIP]...

8.17. http://www.newtek.com/tricaster/src/player/shadowbox-flv.js  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /tricaster/src/player/shadowbox-flv.js

Issue detail

The following email address was disclosed in the response:

Request

GET /tricaster/src/player/shadowbox-flv.js HTTP/1.1
Host: www.newtek.com
Proxy-Connection: keep-alive
Referer: http://www.newtek.com/tricaster/
Cache-Control: max-age=0
If-Modified-Since: Sun, 16 May 2010 05:40:13 GMT
Accept: */*
If-None-Match: "63864-103f-486af8ace0940"
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: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.1.10.1293654605

Response

HTTP/1.1 200 OK
Date: Wed, 29 Dec 2010 20:48:06 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
Last-Modified: Sun, 16 May 2010 05:40:13 GMT
ETag: "63864-103f-486af8ace0940"
Accept-Ranges: bytes
Content-Length: 4159
Content-Type: application/x-javascript

/**
* The Shadowbox Flash video player class.
*
* This file is part of Shadowbox.
*
* Shadowbox is an online media viewer application that supports all of the
* web's most popular media publishi
...[SNIP]...
<mjijackson@gmail.com>
...[SNIP]...

8.18. http://www.newtek.com/tricaster/src/player/shadowbox-html.js  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /tricaster/src/player/shadowbox-html.js

Issue detail

The following email address was disclosed in the response:

Request

GET /tricaster/src/player/shadowbox-html.js HTTP/1.1
Host: www.newtek.com
Proxy-Connection: keep-alive
Referer: http://www.newtek.com/tricaster/
Cache-Control: max-age=0
If-Modified-Since: Sun, 16 May 2010 05:40:13 GMT
Accept: */*
If-None-Match: "63865-a5f-486af8ace0940"
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: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.1.10.1293654605

Response

HTTP/1.1 200 OK
Date: Wed, 29 Dec 2010 20:48:06 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
Last-Modified: Sun, 16 May 2010 05:40:13 GMT
ETag: "63865-a5f-486af8ace0940"
Accept-Ranges: bytes
Content-Length: 2655
Content-Type: application/x-javascript

/**
* The Shadowbox HTML player class.
*
* This file is part of Shadowbox.
*
* Shadowbox is an online media viewer application that supports all of the
* web's most popular media publishing form
...[SNIP]...
<mjijackson@gmail.com>
...[SNIP]...

8.19. http://www.newtek.com/tricaster/src/player/shadowbox-iframe.js  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /tricaster/src/player/shadowbox-iframe.js

Issue detail

The following email address was disclosed in the response:

Request

GET /tricaster/src/player/shadowbox-iframe.js HTTP/1.1
Host: www.newtek.com
Proxy-Connection: keep-alive
Referer: http://www.newtek.com/tricaster/
Cache-Control: max-age=0
If-Modified-Since: Sun, 16 May 2010 05:40:13 GMT
Accept: */*
If-None-Match: "63866-f7d-486af8ace0940"
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: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.1.10.1293654605

Response

HTTP/1.1 200 OK
Date: Wed, 29 Dec 2010 20:48:09 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
Last-Modified: Sun, 16 May 2010 05:40:13 GMT
ETag: "63866-f7d-486af8ace0940"
Accept-Ranges: bytes
Content-Length: 3965
Content-Type: application/x-javascript

/**
* The Shadowbox iframe player class.
*
* This file is part of Shadowbox.
*
* Shadowbox is an online media viewer application that supports all of the
* web's most popular media publishing fo
...[SNIP]...
<mjijackson@gmail.com>
...[SNIP]...

8.20. http://www.newtek.com/tricaster/src/player/shadowbox-img.js  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /tricaster/src/player/shadowbox-img.js

Issue detail

The following email address was disclosed in the response:

Request

GET /tricaster/src/player/shadowbox-img.js HTTP/1.1
Host: www.newtek.com
Proxy-Connection: keep-alive
Referer: http://www.newtek.com/tricaster/
Cache-Control: max-age=0
If-Modified-Since: Sun, 16 May 2010 05:40:13 GMT
Accept: */*
If-None-Match: "63867-2084-486af8ace0940"
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: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.1.10.1293654605

Response

HTTP/1.1 200 OK
Date: Wed, 29 Dec 2010 20:48:13 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
Last-Modified: Sun, 16 May 2010 05:40:13 GMT
ETag: "63867-2084-486af8ace0940"
Accept-Ranges: bytes
Content-Length: 8324
Content-Type: application/x-javascript

/**
* The Shadowbox image player class.
*
* This file is part of Shadowbox.
*
* Shadowbox is an online media viewer application that supports all of the
* web's most popular media publishing for
...[SNIP]...
<mjijackson@gmail.com>
...[SNIP]...

8.21. http://www.newtek.com/tricaster/src/player/shadowbox-qt.js  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /tricaster/src/player/shadowbox-qt.js

Issue detail

The following email address was disclosed in the response:

Request

GET /tricaster/src/player/shadowbox-qt.js HTTP/1.1
Host: www.newtek.com
Proxy-Connection: keep-alive
Referer: http://www.newtek.com/tricaster/
Cache-Control: max-age=0
If-Modified-Since: Sun, 16 May 2010 05:40:13 GMT
Accept: */*
If-None-Match: "63868-faf-486af8ace0940"
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: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.1.10.1293654605

Response

HTTP/1.1 200 OK
Date: Wed, 29 Dec 2010 20:48:08 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
Last-Modified: Sun, 16 May 2010 05:40:13 GMT
ETag: "63868-faf-486af8ace0940"
Accept-Ranges: bytes
Content-Length: 4015
Content-Type: application/x-javascript

/**
* The Shadowbox QuickTime player class.
*
* This file is part of Shadowbox.
*
* Shadowbox is an online media viewer application that supports all of the
* web's most popular media publishing
...[SNIP]...
<mjijackson@gmail.com>
...[SNIP]...

8.22. http://www.newtek.com/tricaster/src/player/shadowbox-swf.js  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /tricaster/src/player/shadowbox-swf.js

Issue detail

The following email address was disclosed in the response:

Request

GET /tricaster/src/player/shadowbox-swf.js HTTP/1.1
Host: www.newtek.com
Proxy-Connection: keep-alive
Referer: http://www.newtek.com/tricaster/
Cache-Control: max-age=0
If-Modified-Since: Sun, 16 May 2010 05:40:13 GMT
Accept: */*
If-None-Match: "63869-c3d-486af8ace0940"
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: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.1.10.1293654605

Response

HTTP/1.1 200 OK
Date: Wed, 29 Dec 2010 20:48:10 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
Last-Modified: Sun, 16 May 2010 05:40:13 GMT
ETag: "63869-c3d-486af8ace0940"
Accept-Ranges: bytes
Content-Length: 3133
Content-Type: application/x-javascript

/**
* The Shadowbox SWF movie player class.
*
* This file is part of Shadowbox.
*
* Shadowbox is an online media viewer application that supports all of the
* web's most popular media publishing
...[SNIP]...
<mjijackson@gmail.com>
...[SNIP]...

8.23. http://www.newtek.com/tricaster/src/player/shadowbox-wmp.js  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /tricaster/src/player/shadowbox-wmp.js

Issue detail

The following email address was disclosed in the response:

Request

GET /tricaster/src/player/shadowbox-wmp.js HTTP/1.1
Host: www.newtek.com
Proxy-Connection: keep-alive
Referer: http://www.newtek.com/tricaster/
Cache-Control: max-age=0
If-Modified-Since: Sun, 16 May 2010 05:40:13 GMT
Accept: */*
If-None-Match: "6386a-115d-486af8ace0940"
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: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.1.10.1293654605

Response

HTTP/1.1 200 OK
Date: Wed, 29 Dec 2010 20:48:11 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
Last-Modified: Sun, 16 May 2010 05:40:13 GMT
ETag: "6386a-115d-486af8ace0940"
Accept-Ranges: bytes
Content-Length: 4445
Content-Type: application/x-javascript

/**
* The Shadowbox Windows Media player class.
*
* This file is part of Shadowbox.
*
* Shadowbox is an online media viewer application that supports all of the
* web's most popular media publis
...[SNIP]...
<mjijackson@gmail.com>
...[SNIP]...

8.24. http://www.newtek.com/tricaster/src/skin/classic/skin.css  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /tricaster/src/skin/classic/skin.css

Issue detail

The following email address was disclosed in the response:

Request

GET /tricaster/src/skin/classic/skin.css HTTP/1.1
Host: www.newtek.com
Proxy-Connection: keep-alive
Referer: http://www.newtek.com/tricaster/
Cache-Control: max-age=0
If-Modified-Since: Sun, 16 May 2010 05:40:13 GMT
Accept: text/css,*/*;q=0.1
If-None-Match: "6386e-1401-486af8ace0940"
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: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.1.10.1293654605

Response

HTTP/1.1 200 OK
Date: Wed, 29 Dec 2010 20:48:05 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
Last-Modified: Sun, 16 May 2010 05:40:13 GMT
ETag: "6386e-1401-486af8ace0940"
Accept-Ranges: bytes
Content-Length: 5121
Content-Type: text/css

/**
* The "classic" theme CSS for Shadowbox.
*
* This file is part of Shadowbox.
*
* Shadowbox is an online media viewer application that supports all of the
* web's most popular media publishin
...[SNIP]...
<mjijackson@gmail.com>
...[SNIP]...

8.25. http://www.newtek.com/tricaster/src/skin/classic/skin.js  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /tricaster/src/skin/classic/skin.js

Issue detail

The following email address was disclosed in the response:

Request

GET /tricaster/src/skin/classic/skin.js HTTP/1.1
Host: www.newtek.com
Proxy-Connection: keep-alive
Referer: http://www.newtek.com/tricaster/
Cache-Control: max-age=0
If-Modified-Since: Sun, 16 May 2010 05:40:13 GMT
Accept: */*
If-None-Match: "6386f-da7-486af8ace0940"
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: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.1.10.1293654605

Response

HTTP/1.1 200 OK
Date: Wed, 29 Dec 2010 20:48:05 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
Last-Modified: Sun, 16 May 2010 05:40:13 GMT
ETag: "6386f-da7-486af8ace0940"
Accept-Ranges: bytes
Content-Length: 3495
Content-Type: application/x-javascript

/**
* The "classic" theme markup for Shadowbox.
*
* This file is part of Shadowbox.
*
* Shadowbox is an online media viewer application that supports all of the
* web's most popular media publis
...[SNIP]...
<mjijackson@gmail.com>
...[SNIP]...

8.26. http://www.newtek.com/warranties_returns.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /warranties_returns.php

Issue detail

The following email address was disclosed in the response:

Request

GET /warranties_returns.php HTTP/1.1
Host: www.newtek.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.2.10.1293654605;

Response

HTTP/1.1 200 OK
Date: Wed, 29 Dec 2010 20:48:52 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
X-Powered-By: PHP/4.3.10-22
Connection: close
Content-Type: text/html
Content-Length: 26014

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-T
...[SNIP]...
for Software, and One (1) year for Hardware, as set forth in the respective Warranties above. If you believe the product is defective, contact NewTek Technical Support at 210-341-8444 or by e-mail at tech@newtek.com for confirmation. When you contact us by phone, if appropriate and the product is defective and the warranty applies, we will issue a Return Material Authorization (RMA) number for you to include with
...[SNIP]...

9. Credit card numbers disclosed  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /tricaster/TriCasterBrochure.pdf

Issue detail

The following credit card numbers were disclosed in the response:

Issue background

Responses containing credit card numbers may not represent any security vulnerability - for example, a number may belong to the logged-in user to whom it is displayed. You should verify whether the numbers identified are actually valid credit card numbers and whether their disclosure within the application is appropriate.

Request

GET /tricaster/TriCasterBrochure.pdf HTTP/1.1
Host: www.newtek.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.2.10.1293654605;

Response

HTTP/1.1 200 OK
Date: Wed, 29 Dec 2010 20:47:59 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
Last-Modified: Thu, 23 Sep 2010 19:01:34 GMT
ETag: "4b336-14e5603-490f1e4069f80"
Accept-Ranges: bytes
Content-Length: 21911043
Connection: close
Content-Type: application/pdf

%PDF-1.4%....
1970 0 obj<</Linearized 1/L 21911043/O 1972/E 1182790/N 11/T 21871521/H [ 1356 1371]>>endobj
xref
1970 53
0000000016 00000 n
0000002727 00000 n
0000002832 00000 n
000000329
...[SNIP]...
scriptor 1846 0 R/LastChar 173/Subtype/Type1/ToUnicode 1845 0 R/Type/Font/Widths[463 462 240 463 352 444 648 556 537 406 463 426 463 463 463 406 204 463 444 240 722 204 407 463 444 463 259 240 296 444 444 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 463 407 204 407 241 241 480 480 463
...[SNIP]...
scriptor 1939 0 R/LastChar 173/Subtype/Type1/ToUnicode 1636 0 R/Type/Font/Widths[481 481 426 722 222 481 463 426 444 537 481 500 222 537 240 519 556 519 556 537 537 240 240 463 278 426 463 519 222 315 463 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 481 481 740 741 480 481 463 426 574
...[SNIP]...

10. HTML does not specify charset  previous  next
There are 6 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.


10.1. http://www.newtek.com/admin/news/homepageNews.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /admin/news/homepageNews.php

Request

GET /admin/news/homepageNews.php HTTP/1.1
Host: www.newtek.com
Proxy-Connection: keep-alive
Referer: http://www.newtek.com/
X-Requested-With: XMLHttpRequest
Accept: text/html, */*
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: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.2.10.1293654605

Response

HTTP/1.1 200 OK
Date: Wed, 29 Dec 2010 20:45:54 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
X-Powered-By: PHP/4.3.10-22
Content-Length: 3266
Content-Type: text/html

<div class="whitebox"><div class="whitebox_thumb"><img src="/images/icons/news.jpg" alt=""></div><div class="whitebox_container"><div class="whitebox_date">December 27, 2010</div><div class="whitebox
...[SNIP]...

10.2. http://www.newtek.com/admin/reseller_locator/resellerMainNav.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /admin/reseller_locator/resellerMainNav.php

Request

GET /admin/reseller_locator/resellerMainNav.php HTTP/1.1
Host: www.newtek.com
Proxy-Connection: keep-alive
Referer: http://www.newtek.com/
X-Requested-With: XMLHttpRequest
Accept: text/html, */*
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: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.2.10.1293654605

Response

HTTP/1.1 200 OK
Date: Wed, 29 Dec 2010 20:45:55 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
X-Powered-By: PHP/4.3.10-22
Content-Length: 872
Content-Type: text/html


   <p>
       <!-- <a href="/admin/reseller_locator/public/public_find_us_resellers.php">US Resellers</a> -->
       <a href="/us_resellers.php">US Resellers</a></p>

   <p><a href="/reseller_locator/int_resellers
...[SNIP]...

10.3. http://www.newtek.com/faq/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /faq/

Request

GET /faq/ HTTP/1.1
Host: www.newtek.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.2.10.1293654605;

Response

HTTP/1.1 200 OK
Date: Wed, 29 Dec 2010 20:48:36 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
X-Powered-By: PHP/4.3.10-22
Connection: close
Content-Type: text/html
Content-Length: 30945

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

<title>NewTek.com - NewTek
...[SNIP]...

10.4. http://www.newtek.com/reseller_locator/int_resellers.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /reseller_locator/int_resellers.php

Request

GET /reseller_locator/int_resellers.php HTTP/1.1
Host: www.newtek.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.2.10.1293654605;

Response

HTTP/1.1 200 OK
Date: Wed, 29 Dec 2010 20:48:38 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
X-Powered-By: PHP/4.3.10-22
Connection: close
Content-Type: text/html
Content-Length: 17621

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>NewTek.com - Locate
...[SNIP]...

10.5. http://www.newtek.com/resellers/index.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /resellers/index.php

Request

GET /resellers/index.php HTTP/1.1
Host: www.newtek.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.2.10.1293654605;

Response

HTTP/1.1 401 Unauthorized
Date: Wed, 29 Dec 2010 20:48:37 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
X-Powered-By: PHP/4.3.10-22
WWW-Authenticate: Basic realm="Admin Area"
Content-Length: 23
Connection: close
Content-Type: text/html

Authorization Required!

10.6. http://www.newtek.com/tricaster/tricaster_ajax_news.php  previous

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.newtek.com
Path:   /tricaster/tricaster_ajax_news.php

Request

GET /tricaster/tricaster_ajax_news.php HTTP/1.1
Host: www.newtek.com
Proxy-Connection: keep-alive
Referer: http://www.newtek.com/tricaster/
X-Requested-With: XMLHttpRequest
Accept: text/html, */*
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: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.2.10.1293654605

Response

HTTP/1.1 200 OK
Date: Wed, 29 Dec 2010 20:45:45 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
X-Powered-By: PHP/4.3.10-22
Content-Length: 1293
Content-Type: text/html


   <div class="news"><span class="news_date">12/27/2010</span>&nbsp;&nbsp;<a href="http://www.videography.com/article/101566"> Streamin' Garage Makes Impact Online </a><br />
                                <span class="new
...[SNIP]...

11. Content type incorrectly stated  previous

Summary

Severity:   Information
Confidence:   Firm
Host:   http://www.newtek.com
Path:   /resellers/index.php

Issue detail

The response contains the following Content-type statement:The response states that it contains HTML. However, it actually appears to contain plain text.

Issue background

If a web response specifies an incorrect content type, then browsers may process the response in unexpected ways. If the specified content type is a renderable text-based format, then the browser will usually attempt to parse and render the response in that format. If the specified type is an image format, then the browser will usually detect the anomaly and will analyse the actual content and attempt to determine its MIME type. Either case can lead to unexpected results, and if the content contains any user-controllable data may lead to cross-site scripting or other client-side vulnerabilities.

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

Issue remediation

For every response containing a message body, the application should include a single Content-type header which correctly and unambiguously states the MIME type of the content in the response body.

Request

GET /resellers/index.php HTTP/1.1
Host: www.newtek.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=176671418.1293654605.1.1.utmcsr=techcrunch.tv|utmccn=(referral)|utmcmd=referral|utmcct=/; __utma=176671418.1484406188.1293654605.1293654605.1293654605.1; __utmc=176671418; __utmb=176671418.2.10.1293654605;

Response

HTTP/1.1 401 Unauthorized
Date: Wed, 29 Dec 2010 20:48:37 GMT
Server: Apache/2.0.54 (Debian GNU/Linux) mod_python/3.1.3 Python/2.3.5 PHP/4.3.10-22 mod_perl/1.999.21 Perl/v5.8.4
X-Powered-By: PHP/4.3.10-22
WWW-Authenticate: Basic realm="Admin Area"
Content-Length: 23
Connection: close
Content-Type: text/html

Authorization Required!

Report generated by XSS.CX at Thu Dec 30 20:39:55 CST 2010.