XSS, Reflected Cross Site Scripting, CWE-79, CAPEC-86, DORK, GHDB, idt911.com Hoyt LLC Research investigates and reports on security vulnerabilities embedded in Web Applications and Products used in wide-scale deployment. Report generated by XSS.CX at Tue Aug 23 15:46:46 GMT-06:00 2011.
Public Domain Vulnerability Information, Security Articles, Vulnerability Reports, GHDB, DORK Search
XSS Home | XSS Crawler | SQLi Crawler | HTTPi Crawler | FI Crawler |
Loading
1. Cross-site scripting (reflected)
2. Cross-domain Referer leakage
3. Cross-domain script include
3.1. http://www.idt911.com/
3.2. http://www.idt911.com/SearchResults.aspx
3.3. http://www.idt911.com/en/AboutUs.aspx
3.4. http://www.idt911.com/en/AboutUs/ContactUs/RequestInformation.aspx
3.5. http://www.idt911.com/en/KnowledgeCenter.aspx
3.6. http://www.idt911.com/en/LifeStagesIdentityManagement.aspx
3.7. http://www.idt911.com/en/OurAdvantage.aspx
4. Email addresses disclosed
4.1. http://www.idt911.com/
4.2. http://www.idt911.com/SearchResults.aspx
4.3. http://www.idt911.com/en/AboutUs.aspx
4.4. http://www.idt911.com/en/AboutUs/ContactUs/RequestInformation.aspx
4.5. http://www.idt911.com/en/KnowledgeCenter.aspx
4.6. http://www.idt911.com/en/LifeStagesIdentityManagement.aspx
4.7. http://www.idt911.com/en/OurAdvantage.aspx
5. Content type incorrectly stated
1. Cross-site scripting (reflected)
next
Summary
Severity:
High
Confidence:
Certain
Host:
http://www.idt911.com
Path:
/SearchResults.aspx
Issue detail
The value of the q request parameter is copied into the HTML document as plain text between tags. The payload ce950<script>alert(1)</script>0f9b364bc54 was submitted in the q 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 defences: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 /SearchResults.aspx?q=xssce950<script>alert(1)</script>0f9b364bc54 HTTP/1.1 Host: www.idt911.com Proxy-Connection: keep-alive Referer: http://www.idt911.com/en/LifeStagesIdentityManagement.aspx Cache-Control: max-age=0 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: ASP.NET_SessionId=con3adzn2q0aw145gmmobf45; _jsuid=5932915368283863310; no_tracky=1; __utma=136418536.1393614878.1314135671.1314135671.1314135671.1; __utmb=136418536.6.10.1314135671; __utmc=136418536; __utmz=136418536.1314135671.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); website#lang=en
Response
HTTP/1.1 200 OK Cache-Control: no-cache, no-store Pragma: no-cache Content-Type: text/html; charset=utf-8 Expires: -1 Server: Microsoft-IIS/7.0 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET Date: Tue, 23 Aug 2011 21:51:05 GMT Content-Length: 19057 <!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><link id="lnkFavIco...[SNIP]... <span style="color:#5796AB; font-weight:bold;">xssce950<script>alert(1)</script>0f9b364bc54 </span>...[SNIP]...
2. Cross-domain Referer leakage
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.idt911.com
Path:
/SearchResults.aspx
Issue detail
The page was loaded from a URL containing a query string:http://www.idt911.com/SearchResults.aspx?q=xss The response contains the following links to other domains:http://in.getclicky.com/66413581ns.gif http://static.getclicky.com/js http://www.facebook.com/ http://www.idt911blog.com/ http://www.twitter.com/idt911
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 /SearchResults.aspx?q=xss HTTP/1.1 Host: www.idt911.com Proxy-Connection: keep-alive Referer: http://www.idt911.com/en/LifeStagesIdentityManagement.aspx Cache-Control: max-age=0 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: ASP.NET_SessionId=con3adzn2q0aw145gmmobf45; _jsuid=5932915368283863310; no_tracky=1; __utma=136418536.1393614878.1314135671.1314135671.1314135671.1; __utmb=136418536.6.10.1314135671; __utmc=136418536; __utmz=136418536.1314135671.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); website#lang=en
Response
HTTP/1.1 200 OK Cache-Control: no-cache, no-store Pragma: no-cache Content-Type: text/html; charset=utf-8 Expires: -1 Server: Microsoft-IIS/7.0 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET Date: Tue, 23 Aug 2011 21:49:07 GMT Content-Length: 18913 <!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><link id="lnkFavIco...[SNIP]... </a> --> <script src="//static.getclicky.com/js" type="text/javascript"> </script>...[SNIP]... <div class="left" style="margin-right: 10px;"> <a id="webcontent_0_header_0_hlBlog" href="http://www.idt911blog.com/" target="_blank"> <img id="webcontent_0_header_0_imgBlog" src="/~/media/Images/Navigation/UtilityNavigation/blogIcon_FINAL_0511_V2.ashx" style="border-width:0px;" />...[SNIP]... <div class="socialMedia"> <a id="webcontent_0_footer_0_rptSocialMedia_ctl00_hlSocial" href="http://www.facebook.com/#!/pages/Identity-Theft-911-IDT911/180366818661996"> <img id="webcontent_0_footer_0_rptSocialMedia_ctl00_imgSocial" src="/~/media/Images/Logos/logoFacebook.ashx" style="border-width:0px;" /></a> <a id="webcontent_0_footer_0_rptSocialMedia_ctl01_hlSocial" href="http://www.twitter.com/idt911"> <img id="webcontent_0_footer_0_rptSocialMedia_ctl01_imgSocial" src="/~/media/Images/Logos/logoTwitter.ashx" style="border-width:0px;" />...[SNIP]... <p><img alt="Clicky" width="1" height="1" src="//in.getclicky.com/66413581ns.gif" /> </p>...[SNIP]...
3. Cross-domain script include
previous
next
There are 7 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.
3.1. http://www.idt911.com/
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.idt911.com
Path:
/
Issue detail
The response dynamically includes the following script from another domain:http://static.getclicky.com/js
Request
GET / HTTP/1.1 Host: www.idt911.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Response
HTTP/1.1 200 OK Cache-Control: no-cache, no-store Pragma: no-cache Content-Type: text/html; charset=utf-8 Expires: -1 Server: Microsoft-IIS/7.0 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET Date: Tue, 23 Aug 2011 21:48:36 GMT Content-Length: 22518 <!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><link id="lnkFavIco...[SNIP]... </a> --> <script src="//static.getclicky.com/js" type="text/javascript"> </script>...[SNIP]...
3.2. http://www.idt911.com/SearchResults.aspx
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.idt911.com
Path:
/SearchResults.aspx
Issue detail
The response dynamically includes the following script from another domain:http://static.getclicky.com/js
Request
GET /SearchResults.aspx?q=xss HTTP/1.1 Host: www.idt911.com Proxy-Connection: keep-alive Referer: http://www.idt911.com/en/LifeStagesIdentityManagement.aspx Cache-Control: max-age=0 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: ASP.NET_SessionId=con3adzn2q0aw145gmmobf45; _jsuid=5932915368283863310; no_tracky=1; __utma=136418536.1393614878.1314135671.1314135671.1314135671.1; __utmb=136418536.6.10.1314135671; __utmc=136418536; __utmz=136418536.1314135671.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); website#lang=en
Response
HTTP/1.1 200 OK Cache-Control: no-cache, no-store Pragma: no-cache Content-Type: text/html; charset=utf-8 Expires: -1 Server: Microsoft-IIS/7.0 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET Date: Tue, 23 Aug 2011 21:49:07 GMT Content-Length: 18913 <!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><link id="lnkFavIco...[SNIP]... </a> --> <script src="//static.getclicky.com/js" type="text/javascript"> </script>...[SNIP]...
3.3. http://www.idt911.com/en/AboutUs.aspx
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.idt911.com
Path:
/en/AboutUs.aspx
Issue detail
The response dynamically includes the following script from another domain:http://static.getclicky.com/js
Request
GET /en/AboutUs.aspx HTTP/1.1 Host: www.idt911.com Proxy-Connection: keep-alive Referer: http://www.idt911.com/en/LifeStagesIdentityManagement.aspx User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: ASP.NET_SessionId=con3adzn2q0aw145gmmobf45; _jsuid=5932915368283863310; no_tracky=1; website#lang=en; __utma=136418536.1393614878.1314135671.1314135671.1314135671.1; __utmb=136418536.2.10.1314135671; __utmc=136418536; __utmz=136418536.1314135671.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
Response
HTTP/1.1 200 OK Cache-Control: no-cache, no-store Pragma: no-cache Content-Type: text/html; charset=utf-8 Expires: -1 Server: Microsoft-IIS/7.0 Set-Cookie: website#lang=en; path=/ X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET Date: Tue, 23 Aug 2011 21:48:54 GMT Content-Length: 22491 <!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><link id="lnkFavIco...[SNIP]... </a> --> <script src="//static.getclicky.com/js" type="text/javascript"> </script>...[SNIP]...
3.4. http://www.idt911.com/en/AboutUs/ContactUs/RequestInformation.aspx
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.idt911.com
Path:
/en/AboutUs/ContactUs/RequestInformation.aspx
Issue detail
The response dynamically includes the following script from another domain:http://static.getclicky.com/js
Request
GET /en/AboutUs/ContactUs/RequestInformation.aspx HTTP/1.1 Host: www.idt911.com Proxy-Connection: keep-alive Referer: http://www.idt911.com/en/LifeStagesIdentityManagement.aspx User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: ASP.NET_SessionId=con3adzn2q0aw145gmmobf45; _jsuid=5932915368283863310; no_tracky=1; website#lang=en; __utma=136418536.1393614878.1314135671.1314135671.1314135671.1; __utmb=136418536.3.10.1314135671; __utmc=136418536; __utmz=136418536.1314135671.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
Response
HTTP/1.1 200 OK Cache-Control: no-cache, no-store Pragma: no-cache Content-Type: text/html; charset=utf-8 Expires: -1 Server: Microsoft-IIS/7.0 Set-Cookie: website#lang=en; path=/ X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET Date: Tue, 23 Aug 2011 21:48:57 GMT Content-Length: 40832 <!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><link id="lnkFavIco...[SNIP]... </a> --> <script src="//static.getclicky.com/js" type="text/javascript"> </script>...[SNIP]...
3.5. http://www.idt911.com/en/KnowledgeCenter.aspx
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.idt911.com
Path:
/en/KnowledgeCenter.aspx
Issue detail
The response dynamically includes the following scripts from other domains:http://static.getclicky.com/js http://static.polldaddy.com/p/5397071.js
Request
GET /en/KnowledgeCenter.aspx HTTP/1.1 Host: www.idt911.com Proxy-Connection: keep-alive Referer: http://www.idt911.com/en/LifeStagesIdentityManagement.aspx User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: ASP.NET_SessionId=con3adzn2q0aw145gmmobf45; _jsuid=5932915368283863310; no_tracky=1; website#lang=en; __utma=136418536.1393614878.1314135671.1314135671.1314135671.1; __utmb=136418536.4.10.1314135671; __utmc=136418536; __utmz=136418536.1314135671.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
Response
HTTP/1.1 200 OK Cache-Control: no-cache, no-store Pragma: no-cache Content-Type: text/html; charset=utf-8 Expires: -1 Server: Microsoft-IIS/7.0 Set-Cookie: website#lang=en; path=/ X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET Date: Tue, 23 Aug 2011 21:49:03 GMT Content-Length: 44478 <!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><link id="lnkFavIco...[SNIP]... </a> --> <script src="//static.getclicky.com/js" type="text/javascript"> </script>...[SNIP]... </h2> <script type="text/javascript" charset="utf-8" src="http://static.polldaddy.com/p/5397071.js"> </script>...[SNIP]...
3.6. http://www.idt911.com/en/LifeStagesIdentityManagement.aspx
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.idt911.com
Path:
/en/LifeStagesIdentityManagement.aspx
Issue detail
The response dynamically includes the following script from another domain:http://static.getclicky.com/js
Request
GET /en/LifeStagesIdentityManagement.aspx HTTP/1.1 Host: www.idt911.com Proxy-Connection: keep-alive Referer: http://www.idt911.com/ User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: ASP.NET_SessionId=con3adzn2q0aw145gmmobf45; _jsuid=5932915368283863310; no_tracky=1; __utma=136418536.1393614878.1314135671.1314135671.1314135671.1; __utmb=136418536.1.10.1314135671; __utmc=136418536; __utmz=136418536.1314135671.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
Response
HTTP/1.1 200 OK Cache-Control: no-cache, no-store Pragma: no-cache Content-Type: text/html; charset=utf-8 Expires: -1 Server: Microsoft-IIS/7.0 Set-Cookie: website#lang=en; path=/ X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET Date: Tue, 23 Aug 2011 21:48:49 GMT Content-Length: 24321 <!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><link id="lnkFavIco...[SNIP]... </a> --> <script src="//static.getclicky.com/js" type="text/javascript"> </script>...[SNIP]...
3.7. http://www.idt911.com/en/OurAdvantage.aspx
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.idt911.com
Path:
/en/OurAdvantage.aspx
Issue detail
The response dynamically includes the following script from another domain:http://static.getclicky.com/js
Request
GET /en/OurAdvantage.aspx HTTP/1.1 Host: www.idt911.com Proxy-Connection: keep-alive Referer: http://www.idt911.com/en/LifeStagesIdentityManagement.aspx User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: ASP.NET_SessionId=con3adzn2q0aw145gmmobf45; _jsuid=5932915368283863310; no_tracky=1; __utma=136418536.1393614878.1314135671.1314135671.1314135671.1; __utmb=136418536.4.10.1314135671; __utmc=136418536; __utmz=136418536.1314135671.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); website#lang=en
Response
HTTP/1.1 200 OK Cache-Control: no-cache, no-store Pragma: no-cache Content-Type: text/html; charset=utf-8 Expires: -1 Server: Microsoft-IIS/7.0 Set-Cookie: website#lang=en; path=/ X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET Date: Tue, 23 Aug 2011 21:49:04 GMT Content-Length: 23365 <!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><link id="lnkFavIco...[SNIP]... </a> --> <script src="//static.getclicky.com/js" type="text/javascript"> </script>...[SNIP]...
4. Email addresses disclosed
previous
next
There are 7 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).
4.1. http://www.idt911.com/
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.idt911.com
Path:
/
Issue detail
The following email address was disclosed in the response:
Request
GET / HTTP/1.1 Host: www.idt911.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Response
HTTP/1.1 200 OK Cache-Control: no-cache, no-store Pragma: no-cache Content-Type: text/html; charset=utf-8 Expires: -1 Server: Microsoft-IIS/7.0 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET Date: Tue, 23 Aug 2011 21:48:36 GMT Content-Length: 22518 <!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><link id="lnkFavIco...[SNIP]... <a href="mailto:info@idt911.com "> info@idt911.com </a>...[SNIP]...
4.2. http://www.idt911.com/SearchResults.aspx
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.idt911.com
Path:
/SearchResults.aspx
Issue detail
The following email address was disclosed in the response:
Request
GET /SearchResults.aspx?q=xss HTTP/1.1 Host: www.idt911.com Proxy-Connection: keep-alive Referer: http://www.idt911.com/en/LifeStagesIdentityManagement.aspx Cache-Control: max-age=0 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: ASP.NET_SessionId=con3adzn2q0aw145gmmobf45; _jsuid=5932915368283863310; no_tracky=1; __utma=136418536.1393614878.1314135671.1314135671.1314135671.1; __utmb=136418536.6.10.1314135671; __utmc=136418536; __utmz=136418536.1314135671.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); website#lang=en
Response
HTTP/1.1 200 OK Cache-Control: no-cache, no-store Pragma: no-cache Content-Type: text/html; charset=utf-8 Expires: -1 Server: Microsoft-IIS/7.0 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET Date: Tue, 23 Aug 2011 21:49:07 GMT Content-Length: 18913 <!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><link id="lnkFavIco...[SNIP]... <a href="mailto:info@idt911.com "> info@idt911.com </a>...[SNIP]...
4.3. http://www.idt911.com/en/AboutUs.aspx
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.idt911.com
Path:
/en/AboutUs.aspx
Issue detail
The following email address was disclosed in the response:
Request
GET /en/AboutUs.aspx HTTP/1.1 Host: www.idt911.com Proxy-Connection: keep-alive Referer: http://www.idt911.com/en/LifeStagesIdentityManagement.aspx User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: ASP.NET_SessionId=con3adzn2q0aw145gmmobf45; _jsuid=5932915368283863310; no_tracky=1; website#lang=en; __utma=136418536.1393614878.1314135671.1314135671.1314135671.1; __utmb=136418536.2.10.1314135671; __utmc=136418536; __utmz=136418536.1314135671.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
Response
HTTP/1.1 200 OK Cache-Control: no-cache, no-store Pragma: no-cache Content-Type: text/html; charset=utf-8 Expires: -1 Server: Microsoft-IIS/7.0 Set-Cookie: website#lang=en; path=/ X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET Date: Tue, 23 Aug 2011 21:48:54 GMT Content-Length: 22491 <!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><link id="lnkFavIco...[SNIP]... <a href="mailto:info@idt911.com "> info@idt911.com </a>...[SNIP]...
4.4. http://www.idt911.com/en/AboutUs/ContactUs/RequestInformation.aspx
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.idt911.com
Path:
/en/AboutUs/ContactUs/RequestInformation.aspx
Issue detail
The following email address was disclosed in the response:
Request
GET /en/AboutUs/ContactUs/RequestInformation.aspx HTTP/1.1 Host: www.idt911.com Proxy-Connection: keep-alive Referer: http://www.idt911.com/en/LifeStagesIdentityManagement.aspx User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: ASP.NET_SessionId=con3adzn2q0aw145gmmobf45; _jsuid=5932915368283863310; no_tracky=1; website#lang=en; __utma=136418536.1393614878.1314135671.1314135671.1314135671.1; __utmb=136418536.3.10.1314135671; __utmc=136418536; __utmz=136418536.1314135671.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
Response
HTTP/1.1 200 OK Cache-Control: no-cache, no-store Pragma: no-cache Content-Type: text/html; charset=utf-8 Expires: -1 Server: Microsoft-IIS/7.0 Set-Cookie: website#lang=en; path=/ X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET Date: Tue, 23 Aug 2011 21:48:57 GMT Content-Length: 40832 <!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><link id="lnkFavIco...[SNIP]... <a href="mailto:info@idt911.com "> info@idt911.com </a>...[SNIP]...
4.5. http://www.idt911.com/en/KnowledgeCenter.aspx
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.idt911.com
Path:
/en/KnowledgeCenter.aspx
Issue detail
The following email address was disclosed in the response:
Request
GET /en/KnowledgeCenter.aspx HTTP/1.1 Host: www.idt911.com Proxy-Connection: keep-alive Referer: http://www.idt911.com/en/LifeStagesIdentityManagement.aspx User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: ASP.NET_SessionId=con3adzn2q0aw145gmmobf45; _jsuid=5932915368283863310; no_tracky=1; website#lang=en; __utma=136418536.1393614878.1314135671.1314135671.1314135671.1; __utmb=136418536.4.10.1314135671; __utmc=136418536; __utmz=136418536.1314135671.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
Response
HTTP/1.1 200 OK Cache-Control: no-cache, no-store Pragma: no-cache Content-Type: text/html; charset=utf-8 Expires: -1 Server: Microsoft-IIS/7.0 Set-Cookie: website#lang=en; path=/ X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET Date: Tue, 23 Aug 2011 21:49:03 GMT Content-Length: 44478 <!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><link id="lnkFavIco...[SNIP]... <a href="mailto:info@idt911.com "> info@idt911.com </a>...[SNIP]...
4.6. http://www.idt911.com/en/LifeStagesIdentityManagement.aspx
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.idt911.com
Path:
/en/LifeStagesIdentityManagement.aspx
Issue detail
The following email address was disclosed in the response:
Request
GET /en/LifeStagesIdentityManagement.aspx HTTP/1.1 Host: www.idt911.com Proxy-Connection: keep-alive Referer: http://www.idt911.com/ User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: ASP.NET_SessionId=con3adzn2q0aw145gmmobf45; _jsuid=5932915368283863310; no_tracky=1; __utma=136418536.1393614878.1314135671.1314135671.1314135671.1; __utmb=136418536.1.10.1314135671; __utmc=136418536; __utmz=136418536.1314135671.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
Response
HTTP/1.1 200 OK Cache-Control: no-cache, no-store Pragma: no-cache Content-Type: text/html; charset=utf-8 Expires: -1 Server: Microsoft-IIS/7.0 Set-Cookie: website#lang=en; path=/ X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET Date: Tue, 23 Aug 2011 21:48:49 GMT Content-Length: 24321 <!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><link id="lnkFavIco...[SNIP]... <a href="mailto:info@idt911.com "> info@idt911.com </a>...[SNIP]...
4.7. http://www.idt911.com/en/OurAdvantage.aspx
previous
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.idt911.com
Path:
/en/OurAdvantage.aspx
Issue detail
The following email address was disclosed in the response:
Request
GET /en/OurAdvantage.aspx HTTP/1.1 Host: www.idt911.com Proxy-Connection: keep-alive Referer: http://www.idt911.com/en/LifeStagesIdentityManagement.aspx User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: ASP.NET_SessionId=con3adzn2q0aw145gmmobf45; _jsuid=5932915368283863310; no_tracky=1; __utma=136418536.1393614878.1314135671.1314135671.1314135671.1; __utmb=136418536.4.10.1314135671; __utmc=136418536; __utmz=136418536.1314135671.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); website#lang=en
Response
HTTP/1.1 200 OK Cache-Control: no-cache, no-store Pragma: no-cache Content-Type: text/html; charset=utf-8 Expires: -1 Server: Microsoft-IIS/7.0 Set-Cookie: website#lang=en; path=/ X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET Date: Tue, 23 Aug 2011 21:49:04 GMT Content-Length: 23365 <!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><link id="lnkFavIco...[SNIP]... <a href="mailto:info@idt911.com "> info@idt911.com </a>...[SNIP]...
5. Content type incorrectly stated
previous
Summary
Severity:
Information
Confidence:
Firm
Host:
http://www.idt911.com
Path:
/~/media/Images/Newsletters/Aug2011/HardLesson_thumb.ashx
Issue detail
The response contains the following Content-type statement:The response states that it contains a JPEG image . However, it actually appears to contain a GIF image .
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 /~/media/Images/Newsletters/Aug2011/HardLesson_thumb.ashx HTTP/1.1 Host: www.idt911.com Proxy-Connection: keep-alive Referer: http://www.idt911.com/en/KnowledgeCenter.aspx User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1 Accept: */* 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: ASP.NET_SessionId=con3adzn2q0aw145gmmobf45; _jsuid=5932915368283863310; no_tracky=1; __utma=136418536.1393614878.1314135671.1314135671.1314135671.1; __utmb=136418536.4.10.1314135671; __utmc=136418536; __utmz=136418536.1314135671.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); website#lang=en
Response
HTTP/1.1 200 OK Cache-Control: publicContent-Type: image/jpeg Expires: Tue, 30 Aug 2011 19:51:47 GMT Last-Modified: Tue, 09 Aug 2011 22:11:23 GMT ETag: 5c0b1f361f174f2bb133dee1db6c528f Server: Microsoft-IIS/7.0 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET Date: Tue, 23 Aug 2011 21:49:04 GMT Content-Length: 5220 GIF89ad.C.................l0............I...X....2......v.mV2...e7.qY.yb..n...n.u..f.fP....P7..............Q.......................mm.5....~S..M..p1.d5...wkLJ'x.....m......RH4.V..kP.......^,....xE.......[SNIP]...
Report generated by XSS.CX at Tue Aug 23 15:46:46 GMT-06:00 2011.