The name of an arbitrarily supplied request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload a2043"><script>alert(1)</script>ef066f87cc2 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Issue background
Reflected cross-site scripting vulnerabilities arise when data is copied from a request and echoed into the application's immediate response in an unsafe way. An attacker can use the vulnerability to construct a request which, if issued by another application user, will cause JavaScript code supplied by the attacker to execute within the user's browser in the context of that user's session with the application.
The attacker-supplied code can perform a wide variety of actions, such as stealing the victim's session token or login credentials, performing arbitrary actions on the victim's behalf, and logging their keystrokes.
Users can be induced to issue the attacker's crafted request in various ways. For example, the attacker can send a victim a link containing a malicious URL in an email or instant message. They can submit the link to popular web sites that allow content authoring, for example in blog comments. And they can create an innocuous looking web site which causes anyone viewing it to make arbitrary cross-domain requests to the vulnerable application (using either the GET or the POST method).
The security impact of cross-site scripting vulnerabilities is dependent upon the nature of the vulnerable application, the kinds of data and functionality which it contains, and the other applications which belong to the same domain and organisation. If the application is used only to display non-sensitive public content, with no authentication or access control functionality, then a cross-site scripting flaw may be considered low risk. However, if the same application resides on a domain which can access cookies for other more security-critical applications, then the vulnerability could be used to attack those other applications, and so may be considered high risk. Similarly, if the organisation which owns the application is a likely target for phishing attacks, then the vulnerability could be leveraged to lend credibility to such attacks, by injecting Trojan functionality into the vulnerable application, and exploiting users' trust in the organisation in order to capture credentials for other applications which it owns. In many kinds of application, such as those providing online banking functionality, cross-site scripting should always be considered high risk.
Issue remediation
In most situations where user-controllable data is copied into application responses, cross-site scripting attacks can be prevented using two layers of defenses:
Input should be validated as strictly as possible on arrival, given the kind of content which it is expected to contain. For example, personal names should consist of alphabetical and a small range of typographical characters, and be relatively short; a year of birth should consist of exactly four numerals; email addresses should match a well-defined regular expression. Input which fails the validation should be rejected, not sanitised.
User input should be HTML-encoded at any point where it is copied into application responses. All HTML metacharacters, including < > " ' and =, should be replaced with the corresponding HTML entities (< > etc).
In cases where the application's functionality allows users to author content using a restricted subset of HTML tags and attributes (for example, blog comments which allow limited formatting and linking), it is necessary to parse the supplied HTML to validate that it does not use any dangerous syntax; this is a non-trivial task.
Request
GET /company/news_room/release.asp?r=398&a2043"><script>alert(1)</script>ef066f87cc2=1 HTTP/1.1 Host: www.protus.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: __utmz=125412171.1294058375.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ASPSESSIONIDSQBDDDBS=CCBGBEMBMDHCEPLAHCNPNIGL; __utma=125412171.1664809640.1294058375.1294058375.1294058375.1; __utmc=125412171; __utmb=125412171.2.10.1294058375;
Response
HTTP/1.1 200 OK Connection: close Date: Mon, 03 Jan 2011 12:43:01 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 19316 Content-Type: text/html Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
The cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookie to determine its function.
Issue background
If the HttpOnly attribute is set on a cookie, then the cookie's value cannot be read or set by client-side JavaScript. This measure can prevent certain client-side attacks, such as cross-site scripting, from trivially capturing the cookie's value via an injected script.
Issue remediation
There is usually no good reason not to set the HttpOnly flag on all cookies. Unless you specifically require legitimate client-side scripts within your application to read or set a cookie's value, you should set the HttpOnly flag by including this attribute within the relevant Set-cookie directive.
You should be aware that the restrictions imposed by the HttpOnly flag can potentially be circumvented in some circumstances, and that numerous other serious attacks can be delivered by client-side script injection, aside from simple cookie stealing.
Request
GET / HTTP/1.1 Host: www.protus.com Proxy-Connection: keep-alive Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: __utmz=125412171.1294058375.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=125412171.1664809640.1294058375.1294058375.1294058375.1; __utmc=125412171; __utmb=125412171.1.10.1294058375
Response
HTTP/1.1 200 OK Date: Mon, 03 Jan 2011 12:40:26 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 16507 Content-Type: text/html Set-Cookie: ASPSESSIONIDSQBDDDBS=CCBGBEMBMDHCEPLAHCNPNIGL; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html> <head>
<title>Internet fax, virtual PBX, fax broadcast and voice broadcast services from Protus.</title> <meta na ...[SNIP]...
3. Cross-domain Referer leakagepreviousnext There are 3 instances of this issue:
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.
GET /company/news_room/release.asp?r=403 HTTP/1.1 Host: www.protus.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: __utmz=125412171.1294058375.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ASPSESSIONIDSQBDDDBS=CCBGBEMBMDHCEPLAHCNPNIGL; __utma=125412171.1664809640.1294058375.1294058375.1294058375.1; __utmc=125412171; __utmb=125412171.2.10.1294058375;
Response
HTTP/1.1 200 OK Connection: close Date: Mon, 03 Jan 2011 12:41:40 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 20153 Content-Type: text/html Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<style type="text/css"> a {font-family: Arial, Helvetica, sans-serif; font-size: 12px; font-weight: normal; color: #053969; text-dec ...[SNIP]... 39;https://www.protusfax.com/protus/general/nextfax.asp'" style="cursor:hand" onMouseover="tab6.style.backgroundColor='#efb51d';" onMouseout="tab6.style.backgroundColor='#0060b6';"><a href="https://www.protusfax.com/protus/general/nextfax.asp" class="linkTopNav">Login</a> ...[SNIP]... <p> OTTAWA - (Marketwire – December 1, 2010) - <a href="http://www.campaigner.com/"><u>Campaigner</u></a>, a leading <a href="http://www.campaigner.com/">email marketing service</a> provider, today announced it has added powerful new features that offer small businesses a deeper level of analysis for their <a href="http://www.campaigner.com/overview.aspx"><u> ...[SNIP]... <div>These features are available immediately at Campaigner.com for current Campaigner customers. For small businesses interested in trying out these features, Campaigner offers a free 30-day <a href="http://www.campaigner.com/email-marketing-trial.aspx"><u> ...[SNIP]... </a> blog, and follow Campaigner on <a href="http://www.facebook.com/campaigneremail"><u>Facebook</u></a> and <a href="http://www.twitter.com/campaigneremail"><u> ...[SNIP]... <p><a href="http://www.campaigner.com/"><u> ...[SNIP]... bles small, medium and large businesses to strengthen customer relationships and drive sales by connecting to their customers quickly, simply and affordably. Features include professional-looking <a href="http://www.campaigner.com/overview.aspx"><u> ...[SNIP]... </a> that also includes <a href="http://www.myfax.com/"><u> ...[SNIP]... </u> the fastest-growing Internet fax service; and <a href="http://my1voice.com/"><u> ...[SNIP]... </span><a href="http://www.campaigner.com/"><u> ...[SNIP]... </font> <a target="_new" href="http://digg.com/submit?url=http://www.protus.com/company/news_room/release.asp?r=403" class="linkSocial"><img src="http://www.protus.com/images/icon_digg.gif" width="16" height="16" alt="Digg this!" border="0"> ...[SNIP]... </a> <a target="_new" href="http://del.icio.us/post?url=http://www.protus.com/company/news_room/release.asp?r=403" class="linkSocial"><img src="http://www.protus.com/images/icon_delicious.gif" width="16" height="16" alt="Save with Del.icio.us" border="0"/> ...[SNIP]... </a> <a target="_new" href="http://reddit.com/submit?url=http://www.protus.com/company/news_room/release.asp?r=403" class="linkSocial"><img src="http://www.protus.com/images/icon_reddit.gif" width="18" height="18' alt='Share with Reddit" border="0"/> ...[SNIP]... </script><a href="http://www.addthis.com/bookmark.php" onMouseOver="return addthis_open(this, '', '[URL]', '[TITLE]')" onMouseOut="addthis_close()" onClick="return addthis_to()" class="linkSocial"><img src="http://s9.addthis.com/button0-bm.gif" border="0" alt="" /></a> <script type="text/javascript" src="http://s7.addthis.com/js/15/addthis_widget.js"></script> ...[SNIP]... <!-- AddThis Feed Button BEGIN --> <a href="http://www.addthis.com/feed.php?pub=myfax08&h1=http%3A%2F%2Fwww.protus.com%2Frss%2Findex.asp&t1=" title="Subscribe using any feed reader!" target="_blank"><img src="http://s9.addthis.com/button0-rss.gif" width="83" height="16" border="0" alt="AddThis Feed Button" /></a> ...[SNIP]...
GET /company/news_room/release.asp?r=404 HTTP/1.1 Host: www.protus.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: __utmz=125412171.1294058375.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ASPSESSIONIDSQBDDDBS=CCBGBEMBMDHCEPLAHCNPNIGL; __utma=125412171.1664809640.1294058375.1294058375.1294058375.1; __utmc=125412171; __utmb=125412171.2.10.1294058375;
Response
HTTP/1.1 200 OK Connection: close Date: Mon, 03 Jan 2011 12:41:40 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 20127 Content-Type: text/html Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
GET /company/news_room/release.asp?r=398 HTTP/1.1 Host: www.protus.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: __utmz=125412171.1294058375.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ASPSESSIONIDSQBDDDBS=CCBGBEMBMDHCEPLAHCNPNIGL; __utma=125412171.1664809640.1294058375.1294058375.1294058375.1; __utmc=125412171; __utmb=125412171.2.10.1294058375;
Response
HTTP/1.1 200 OK Connection: close Date: Mon, 03 Jan 2011 12:41:40 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 19178 Content-Type: text/html Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<style type="text/css"> a {font-family: Arial, Helvetica, sans-serif; font-size: 12px; font-weight: normal; color: #053969; text-dec ...[SNIP]... 39;https://www.protusfax.com/protus/general/nextfax.asp'" style="cursor:hand" onMouseover="tab6.style.backgroundColor='#efb51d';" onMouseout="tab6.style.backgroundColor='#0060b6';"><a href="https://www.protusfax.com/protus/general/nextfax.asp" class="linkTopNav">Login</a> ...[SNIP]... clean technology companies in North America. Rankings are based on percentage of fiscal year growth during the five year period from 2005-2009. Protus, whose product offerings include MyFax, a leading <a href="http://www.myfax.com/overview.aspx" target="_blank" class="link">Internet fax service</a>, my1voice, a <a href="http://www.my1voice.com/" target="_blank" class="link">virtual phone service</a> for small business, and Campaigner, a leading <a href="http://www.campaigner.com/" target="_blank" class="link">email marketing service</a> ...[SNIP]... <p>For additional details on the Technology Fast 500™ including qualifying criteria, visit <a href="http://www.fast500.com/" target="_blank" class="link">www.fast500.com</a> ...[SNIP]... <br /> Protus® provides the highest quality software as a service (SaaS) communications tools for small-to-medium-businesses (SMB) and enterprise organizations, including award-winning <a href="http://www.myfax.com/" target="_blank" class="link">MyFax</a>, the fastest growing Internet fax service; <a href="http://www.my1voice.com/" target="_blank" class="link">my1voice</a>, the cost-effective, feature-rich virtual business phone service that travels with the user from phone to web; and <a href="http://www.campaigner.com/" target="_blank" class="link">Campaigner</a> ...[SNIP]... </font> <a target="_new" href="http://digg.com/submit?url=http://www.protus.com/company/news_room/release.asp?r=398" class="linkSocial"><img src="http://www.protus.com/images/icon_digg.gif" width="16" height="16" alt="Digg this!" border="0"> ...[SNIP]... </a> <a target="_new" href="http://del.icio.us/post?url=http://www.protus.com/company/news_room/release.asp?r=398" class="linkSocial"><img src="http://www.protus.com/images/icon_delicious.gif" width="16" height="16" alt="Save with Del.icio.us" border="0"/> ...[SNIP]... </a> <a target="_new" href="http://reddit.com/submit?url=http://www.protus.com/company/news_room/release.asp?r=398" class="linkSocial"><img src="http://www.protus.com/images/icon_reddit.gif" width="18" height="18' alt='Share with Reddit" border="0"/> ...[SNIP]... </script><a href="http://www.addthis.com/bookmark.php" onMouseOver="return addthis_open(this, '', '[URL]', '[TITLE]')" onMouseOut="addthis_close()" onClick="return addthis_to()" class="linkSocial"><img src="http://s9.addthis.com/button0-bm.gif" border="0" alt="" /></a> <script type="text/javascript" src="http://s7.addthis.com/js/15/addthis_widget.js"></script> ...[SNIP]... <!-- AddThis Feed Button BEGIN --> <a href="http://www.addthis.com/feed.php?pub=myfax08&h1=http%3A%2F%2Fwww.protus.com%2Frss%2Findex.asp&t1=" title="Subscribe using any feed reader!" target="_blank"><img src="http://s9.addthis.com/button0-rss.gif" width="83" height="16" border="0" alt="AddThis Feed Button" /></a> ...[SNIP]...
4. Cross-domain script includepreviousnext There are 2 instances of this issue:
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.
The response dynamically includes the following script from another domain:
http://s7.addthis.com/js/15/addthis_widget.js
Request
GET /company/news_room/ HTTP/1.1 Host: www.protus.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: __utmz=125412171.1294058375.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ASPSESSIONIDSQBDDDBS=CCBGBEMBMDHCEPLAHCNPNIGL; __utma=125412171.1664809640.1294058375.1294058375.1294058375.1; __utmc=125412171; __utmb=125412171.2.10.1294058375;
Response
HTTP/1.1 200 OK Connection: close Date: Mon, 03 Jan 2011 12:41:41 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 47944 Content-Type: text/html Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html> <head>
<title>Protus | News Room</title> <meta name="Keywords" content="fax, e fax, internet fax, fax service, ...[SNIP]... </a> <script type="text/javascript" src="http://s7.addthis.com/js/15/addthis_widget.js"></script> ...[SNIP]...
The response dynamically includes the following script from another domain:
http://s7.addthis.com/js/15/addthis_widget.js
Request
GET /company/news_room/release.asp?r=404 HTTP/1.1 Host: www.protus.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: __utmz=125412171.1294058375.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ASPSESSIONIDSQBDDDBS=CCBGBEMBMDHCEPLAHCNPNIGL; __utma=125412171.1664809640.1294058375.1294058375.1294058375.1; __utmc=125412171; __utmb=125412171.2.10.1294058375;
Response
HTTP/1.1 200 OK Connection: close Date: Mon, 03 Jan 2011 12:41:40 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 20127 Content-Type: text/html Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
The presence of email addresses within application responses does not necessarily constitute a security vulnerability. Email addresses may appear intentionally within contact information, and many applications (such as web mail) include arbitrary third-party email addresses within their core content.
However, email addresses of developers and other individuals (whether appearing on-screen or hidden within page source) may disclose information that is useful to an attacker; for example, they may represent usernames that can be used at the application's login, and they may be used in social engineering attacks against the organisation's personnel. Unnecessary or excessive disclosure of email addresses may also lead to an increase in the volume of spam email received.
Issue remediation
You should review the email addresses being disclosed by the application, and consider removing any that are unnecessary, or replacing personal addresses with anonymous mailbox addresses (such as helpdesk@example.com).
The following email address was disclosed in the response:
PR@protus.com
Request
GET /company/awards/ HTTP/1.1 Host: www.protus.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: __utmz=125412171.1294058375.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ASPSESSIONIDSQBDDDBS=CCBGBEMBMDHCEPLAHCNPNIGL; __utma=125412171.1664809640.1294058375.1294058375.1294058375.1; __utmc=125412171; __utmb=125412171.2.10.1294058375;
Response
HTTP/1.1 200 OK Connection: close Date: Mon, 03 Jan 2011 12:41:41 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41322 Content-Type: text/html Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html> <head>
<title>Protus | Awards</title> <meta name="Keywords" content="fax, e fax, internet fax, fax service, onlin ...[SNIP]... <a href="mailto:PR@protus.com" class="link">PR@protus.com</a> ...[SNIP]...
The following email address was disclosed in the response:
PR@protus.com
Request
GET /company/news_room/ HTTP/1.1 Host: www.protus.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: __utmz=125412171.1294058375.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ASPSESSIONIDSQBDDDBS=CCBGBEMBMDHCEPLAHCNPNIGL; __utma=125412171.1664809640.1294058375.1294058375.1294058375.1; __utmc=125412171; __utmb=125412171.2.10.1294058375;
Response
HTTP/1.1 200 OK Connection: close Date: Mon, 03 Jan 2011 12:41:41 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 47944 Content-Type: text/html Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html> <head>
<title>Protus | News Room</title> <meta name="Keywords" content="fax, e fax, internet fax, fax service, ...[SNIP]... <a href="mailto:PR@protus.com" class="link">PR@protus.com</a> ...[SNIP]...
The following email addresses were disclosed in the response:
Partners@protus.com
affiliates@protus.com
Request
GET /company/partners/ HTTP/1.1 Host: www.protus.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: __utmz=125412171.1294058375.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ASPSESSIONIDSQBDDDBS=CCBGBEMBMDHCEPLAHCNPNIGL; __utma=125412171.1664809640.1294058375.1294058375.1294058375.1; __utmc=125412171; __utmb=125412171.2.10.1294058375;
Response
HTTP/1.1 200 OK Connection: close Date: Mon, 03 Jan 2011 12:41:40 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 13985 Content-Type: text/html Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
The following email address was disclosed in the response:
contact@company.com
Request
GET /components_js/functions.js HTTP/1.1 Host: www.protus.com Proxy-Connection: keep-alive Referer: http://www.protus.com/contact.asp 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=125412171.1294058375.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=125412171.1664809640.1294058375.1294058375.1294058375.1; __utmc=125412171; __utmb=125412171.1.10.1294058375; ASPSESSIONIDSQBDDDBS=CCBGBEMBMDHCEPLAHCNPNIGL
Response
HTTP/1.1 200 OK Content-Length: 53320 Content-Type: application/x-javascript Last-Modified: Wed, 30 Jun 2010 18:25:15 GMT Accept-Ranges: bytes ETag: "65cfb2958118cb1:322" Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Date: Mon, 03 Jan 2011 12:40:27 GMT
function MM_swapImage() { var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3) if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oS ...[SNIP]... Za-z0-9]+\-+)|([A-Za-z0-9]+\.+)|([A-Za-z0-9]+\++))*[A-Za-z0-9]+@((\w+\-+)|(\w+\.))*\w{1,63}\.[A-Za-z0-9]{1,50}$/
if (!emailRegExp.test(src)){ alert('Please enter a valid email address. Format: contact@company.com'); form.elements[i].focus(); return false; } return true; }
function vPhoneNumber(form, i) { var val = form.elements[i].value; var total = val.length; var format ...[SNIP]... hone number.\n\n(i.e.: No spaces, hyphens or brackets.)", "The phone extension must be numerical.\n\n(i.e.: No spaces, hyphens or brackets.)", "Please enter a valid email address. Format: contact@company.com");
The following email address was disclosed in the response:
support@Protus.com
Request
GET /legal/privacy.asp HTTP/1.1 Host: www.protus.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: __utmz=125412171.1294058375.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ASPSESSIONIDSQBDDDBS=CCBGBEMBMDHCEPLAHCNPNIGL; __utma=125412171.1664809640.1294058375.1294058375.1294058375.1; __utmc=125412171; __utmb=125412171.2.10.1294058375;
Response
HTTP/1.1 200 OK Connection: close Date: Mon, 03 Jan 2011 12:41:40 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 31382 Content-Type: text/html Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html> <head>
<title>Protus | Privacy</title> <meta name="Keywords" content="fax, e fax, internet fax, fax service, onli ...[SNIP]... <a class="link" href="mailto:support@Protus.com">support@Protus.com</a> ...[SNIP]... <br>If you have any questions or suggestions regarding our privacy policy, please email support@Protus.com or contact <center> ...[SNIP]...
The following email addresses were disclosed in the response:
billing@protus.com
support@protus.com
Request
GET /support.asp HTTP/1.1 Host: www.protus.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: __utmz=125412171.1294058375.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ASPSESSIONIDSQBDDDBS=CCBGBEMBMDHCEPLAHCNPNIGL; __utma=125412171.1664809640.1294058375.1294058375.1294058375.1; __utmc=125412171; __utmb=125412171.2.10.1294058375;
Response
HTTP/1.1 200 OK Connection: close Date: Mon, 03 Jan 2011 12:41:40 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 15322 Content-Type: text/html Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">