www1.peanutlabs.com, SQL Injection, SQLi, CWE-86, CAPEC-66

SQL Injection Report for www1.peanutlabs.com | Vulnerability Crawler Report

Report generated by Unforgivable Vulnerabilities, DORK Search, Exploit Research at Sun Jan 09 07:57:42 CST 2011.



DORK CWE-79 XSS Report

Loading

1. SQL injection

1.1. http://www1.peanutlabs.com/peanut-labs-acquired-by-online-research-company-e-rewards-2/ [PHPSESSID cookie]

1.2. http://www1.peanutlabs.com/wp-content/plugins/contact-form-7/scripts.js [REST URL parameter 3]

1.3. http://www1.peanutlabs.com/xmlrpc.php [User-Agent HTTP header]

2. Cross-domain script include

2.1. http://www1.peanutlabs.com/

2.2. http://www1.peanutlabs.com/4-tips-to-better-monetize-social-games-with-offers/

2.3. http://www1.peanutlabs.com/author/admin/

2.4. http://www1.peanutlabs.com/author/alex-dempsey/

2.5. http://www1.peanutlabs.com/become-a-publisher/

2.6. http://www1.peanutlabs.com/peanut-labs-acquired-by-e-rewards-silo-breaker/

2.7. http://www1.peanutlabs.com/peanut-labs-acquired-by-online-research-company-e-rewards-2/

2.8. http://www1.peanutlabs.com/peanut-labs-inc-announces-acquisition-by-e-rrewards-inc/

2.9. http://www1.peanutlabs.com/social-networking-survey-startup-peanut-labs-sold-to-e-rewards-paidcontent/

2.10. http://www1.peanutlabs.com/social-networking-survey-startup-peanut-labs-sold-to-e-rewards/

2.11. http://www1.peanutlabs.com/wp-content/themes/showtime/sliders/scripts/slider_static3.js

2.12. http://www1.peanutlabs.com/wp-content/themes/showtime/sliders/scripts/slider_static3.js/page/10/

2.13. http://www1.peanutlabs.com/wp-content/themes/showtime/sliders/scripts/slider_static3.js/page/11/

2.14. http://www1.peanutlabs.com/wp-content/themes/showtime/sliders/scripts/slider_static3.js/page/2/

2.15. http://www1.peanutlabs.com/wp-content/themes/showtime/sliders/scripts/slider_static3.js/page/3/

2.16. http://www1.peanutlabs.com/wp-content/themes/showtime/sliders/scripts/slider_static3.js/page/4/

2.17. http://www1.peanutlabs.com/wp-content/themes/showtime/sliders/scripts/slider_static3.js/page/5/

3. Directory listing

4. HTML does not specify charset

5. Content type incorrectly stated



1. SQL injection  next
There are 3 instances of this issue:

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.

Remediation background

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:



1.1. http://www1.peanutlabs.com/peanut-labs-acquired-by-online-research-company-e-rewards-2/ [PHPSESSID cookie]  next

Summary

Severity:   High
Confidence:   Tentative
Host:   http://www1.peanutlabs.com
Path:   /peanut-labs-acquired-by-online-research-company-e-rewards-2/

Issue detail

The PHPSESSID cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the PHPSESSID cookie, and a general error message was returned. Two single quotes were then submitted and the error message disappeared. You should review the contents of the error message, and the application's handling of other input, to confirm whether a vulnerability is present.

The application attempts to block SQL injection attacks but this can be circumvented by double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.

Remediation detail

There is probably no need to perform a second URL-decode of the value of the PHPSESSID cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.

Request 1

GET /peanut-labs-acquired-by-online-research-company-e-rewards-2/ HTTP/1.1
Host: www1.peanutlabs.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: pl_user_id=d41d8cd98f-285ee847b9a2bf89ede3fbb81de1ea0f; SESSef469ce213eb8a405bbf25673950acca=0obr3bvubl5fq0qq2jj04d7pp6; pl_email=test4%40fastdial.net; __utmz=28928570.1294536852.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); PHPSESSID=3jamnj3v5les4euhv3rnmsdb04%2527; __utma=28928570.961439791.1294536852.1294536852.1294536852.1; __utmc=28928570; pl_lang=en_US; __utmb=28928570.3.10.1294536852;

Response 1

HTTP/1.1 500 Internal Server Error
Date: Sun, 09 Jan 2011 07:24:43 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.5
Expires: Wed, 11 Jan 1984 05:00:00 GMT
Last-Modified: Sun, 09 Jan 2011 07:24:43 GMT
Cache-Control: no-cache, must-revalidate, max-age=0
Pragma: no-cache
Vary: Accept-Encoding
Content-Length: 369
Connection: close
Content-Type: text/html; charset=utf-8

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

Request 2

GET /peanut-labs-acquired-by-online-research-company-e-rewards-2/ HTTP/1.1
Host: www1.peanutlabs.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: pl_user_id=d41d8cd98f-285ee847b9a2bf89ede3fbb81de1ea0f; SESSef469ce213eb8a405bbf25673950acca=0obr3bvubl5fq0qq2jj04d7pp6; pl_email=test4%40fastdial.net; __utmz=28928570.1294536852.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); PHPSESSID=3jamnj3v5les4euhv3rnmsdb04%2527%2527; __utma=28928570.961439791.1294536852.1294536852.1294536852.1; __utmc=28928570; pl_lang=en_US; __utmb=28928570.3.10.1294536852;

Response 2

HTTP/1.1 200 OK
Date: Sun, 09 Jan 2011 07:24:43 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.5
X-Pingback: http://www1.peanutlabs.com/xmlrpc.php
Link: <http://www1.peanutlabs.com/?p=568>; rel=shortlink
Vary: Accept-Encoding
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 29570


<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Peanut Labs | Peanut Labs Acquired By E-Rewards
...[SNIP]...

1.2. http://www1.peanutlabs.com/wp-content/plugins/contact-form-7/scripts.js [REST URL parameter 3]  previous  next

Summary

Severity:   High
Confidence:   Tentative
Host:   http://www1.peanutlabs.com
Path:   /wp-content/plugins/contact-form-7/scripts.js

Issue detail

The REST URL parameter 3 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 3, and a general error message was returned. Two single quotes were then submitted and the error message disappeared. You should review the contents of the error message, and the application's handling of other input, to confirm whether a vulnerability is present.

The application attempts to block SQL injection attacks but this can be circumvented by double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.

Remediation detail

There is probably no need to perform a second URL-decode of the value of REST URL parameter 3 as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.

Request 1

GET /wp-content/plugins/contact-form-7%2527/scripts.js HTTP/1.1
Host: www1.peanutlabs.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: pl_user_id=d41d8cd98f-285ee847b9a2bf89ede3fbb81de1ea0f; SESSef469ce213eb8a405bbf25673950acca=0obr3bvubl5fq0qq2jj04d7pp6; pl_email=test4%40fastdial.net; __utmz=28928570.1294536852.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); PHPSESSID=3jamnj3v5les4euhv3rnmsdb04; __utma=28928570.961439791.1294536852.1294536852.1294536852.1; __utmc=28928570; pl_lang=en_US; __utmb=28928570.3.10.1294536852;

Response 1

HTTP/1.1 500 Internal Server Error
Date: Sun, 09 Jan 2011 07:24:33 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.5
Expires: Wed, 11 Jan 1984 05:00:00 GMT
Last-Modified: Sun, 09 Jan 2011 07:24:33 GMT
Cache-Control: no-cache, must-revalidate, max-age=0
Pragma: no-cache
Vary: Accept-Encoding
Content-Length: 369
Connection: close
Content-Type: text/html; charset=utf-8

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

Request 2

GET /wp-content/plugins/contact-form-7%2527%2527/scripts.js HTTP/1.1
Host: www1.peanutlabs.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: pl_user_id=d41d8cd98f-285ee847b9a2bf89ede3fbb81de1ea0f; SESSef469ce213eb8a405bbf25673950acca=0obr3bvubl5fq0qq2jj04d7pp6; pl_email=test4%40fastdial.net; __utmz=28928570.1294536852.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); PHPSESSID=3jamnj3v5les4euhv3rnmsdb04; __utma=28928570.961439791.1294536852.1294536852.1294536852.1; __utmc=28928570; pl_lang=en_US; __utmb=28928570.3.10.1294536852;

Response 2

HTTP/1.1 404 Not Found
Date: Sun, 09 Jan 2011 07:24:33 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.5
X-Pingback: http://www1.peanutlabs.com/xmlrpc.php
Expires: Wed, 11 Jan 1984 05:00:00 GMT
Last-Modified: Sun, 09 Jan 2011 07:24:34 GMT
Cache-Control: no-cache, must-revalidate, max-age=0
Pragma: no-cache
Vary: Accept-Encoding
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 40811


<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Peanut Labs | Page not found</title>

<!-- ST
...[SNIP]...

1.3. http://www1.peanutlabs.com/xmlrpc.php [User-Agent HTTP header]  previous  next

Summary

Severity:   High
Confidence:   Tentative
Host:   http://www1.peanutlabs.com
Path:   /xmlrpc.php

Issue detail

The User-Agent HTTP header appears to be vulnerable to SQL injection attacks. A single quote was submitted in the User-Agent HTTP header, and a general error message was returned. Two single quotes were then submitted and the error message disappeared. You should review the contents of the error message, and the application's handling of other input, to confirm whether a vulnerability is present.

The application attempts to block SQL injection attacks but this can be circumvented by double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.

Remediation detail

There is probably no need to perform a second URL-decode of the value of the User-Agent HTTP header as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.

Request 1

GET /xmlrpc.php HTTP/1.1
Host: www1.peanutlabs.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)%2527
Connection: close
Cookie: pl_user_id=d41d8cd98f-285ee847b9a2bf89ede3fbb81de1ea0f; SESSef469ce213eb8a405bbf25673950acca=0obr3bvubl5fq0qq2jj04d7pp6; pl_email=test4%40fastdial.net; __utmz=28928570.1294536852.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); PHPSESSID=3jamnj3v5les4euhv3rnmsdb04; __utma=28928570.961439791.1294536852.1294536852.1294536852.1; __utmc=28928570; pl_lang=en_US; __utmb=28928570.3.10.1294536852;

Response 1

HTTP/1.1 500 Internal Server Error
Date: Sun, 09 Jan 2011 07:24:40 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.5
Expires: Wed, 11 Jan 1984 05:00:00 GMT
Last-Modified: Sun, 09 Jan 2011 07:24:40 GMT
Cache-Control: no-cache, must-revalidate, max-age=0
Pragma: no-cache
Vary: Accept-Encoding
Content-Length: 369
Connection: close
Content-Type: text/html; charset=utf-8

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

Request 2

GET /xmlrpc.php HTTP/1.1
Host: www1.peanutlabs.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)%2527%2527
Connection: close
Cookie: pl_user_id=d41d8cd98f-285ee847b9a2bf89ede3fbb81de1ea0f; SESSef469ce213eb8a405bbf25673950acca=0obr3bvubl5fq0qq2jj04d7pp6; pl_email=test4%40fastdial.net; __utmz=28928570.1294536852.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); PHPSESSID=3jamnj3v5les4euhv3rnmsdb04; __utma=28928570.961439791.1294536852.1294536852.1294536852.1; __utmc=28928570; pl_lang=en_US; __utmb=28928570.3.10.1294536852;

Response 2

HTTP/1.1 200 OK
Date: Sun, 09 Jan 2011 07:24:40 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.5
Vary: Accept-Encoding
Content-Length: 42
Connection: close
Content-Type: text/plain

XML-RPC server accepts POST requests only.

2. Cross-domain script include  previous  next
There are 17 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.


2.1. http://www1.peanutlabs.com/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www1.peanutlabs.com
Path:   /

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET / HTTP/1.1
Host: www1.peanutlabs.com
Proxy-Connection: keep-alive
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: PHPSESSID=3jamnj3v5les4euhv3rnmsdb04; pl_lang=en_US; __utmz=184043431.1294536629.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); pl_email=test4%40fastdial.net; pl_user_id=d41d8cd98f-285ee847b9a2bf89ede3fbb81de1ea0f; __utma=184043431.2085445617.1294536629.1294536629.1294536629.1; __utmc=184043431; __utmb=184043431.2.10.1294536629; SESSef469ce213eb8a405bbf25673950acca=0obr3bvubl5fq0qq2jj04d7pp6

Response

HTTP/1.1 200 OK
Date: Sun, 09 Jan 2011 01:33:56 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.5
X-Pingback: http://www1.peanutlabs.com/xmlrpc.php
Vary: Accept-Encoding
Content-Type: text/html; charset=UTF-8
Content-Length: 21857


<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Peanut Labs </title>

<!-- STYLESHEET -->
<link
...[SNIP]...
<link rel='stylesheet' id='wp-pagenavi-css' href='http://www1.peanutlabs.com/wp-content/themes/showtime/pagenavi-css.css?ver=2.70' type='text/css' media='all' />
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js?ver=3.0.1'></script>
...[SNIP]...
<div class="widget_footer_content"><script src="http://widgets.twimg.com/j/2/widget.js"></script>
...[SNIP]...

2.2. http://www1.peanutlabs.com/4-tips-to-better-monetize-social-games-with-offers/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www1.peanutlabs.com
Path:   /4-tips-to-better-monetize-social-games-with-offers/

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /4-tips-to-better-monetize-social-games-with-offers/ HTTP/1.1
Host: www1.peanutlabs.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: pl_user_id=d41d8cd98f-285ee847b9a2bf89ede3fbb81de1ea0f; SESSef469ce213eb8a405bbf25673950acca=0obr3bvubl5fq0qq2jj04d7pp6; pl_email=test4%40fastdial.net; __utmz=28928570.1294536852.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); PHPSESSID=3jamnj3v5les4euhv3rnmsdb04; __utma=28928570.961439791.1294536852.1294536852.1294536852.1; __utmc=28928570; pl_lang=en_US; __utmb=28928570.3.10.1294536852;

Response

HTTP/1.1 200 OK
Date: Sun, 09 Jan 2011 05:06:57 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.5
X-Pingback: http://www1.peanutlabs.com/xmlrpc.php
Link: <http://www1.peanutlabs.com/?p=508>; rel=shortlink
Vary: Accept-Encoding
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 29752


<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Peanut Labs | 4 Tips to Better Monetize Social
...[SNIP]...
<link rel='stylesheet' id='wp-pagenavi-css' href='http://www1.peanutlabs.com/wp-content/themes/showtime/pagenavi-css.css?ver=2.70' type='text/css' media='all' />
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js?ver=3.0.1'></script>
...[SNIP]...
<div class="widget_footer_content"><script src="http://widgets.twimg.com/j/2/widget.js"></script>
...[SNIP]...

2.3. http://www1.peanutlabs.com/author/admin/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www1.peanutlabs.com
Path:   /author/admin/

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /author/admin/ HTTP/1.1
Host: www1.peanutlabs.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: pl_user_id=d41d8cd98f-285ee847b9a2bf89ede3fbb81de1ea0f; SESSef469ce213eb8a405bbf25673950acca=0obr3bvubl5fq0qq2jj04d7pp6; pl_email=test4%40fastdial.net; __utmz=28928570.1294536852.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); PHPSESSID=3jamnj3v5les4euhv3rnmsdb04; __utma=28928570.961439791.1294536852.1294536852.1294536852.1; __utmc=28928570; pl_lang=en_US; __utmb=28928570.3.10.1294536852;

Response

HTTP/1.1 200 OK
Date: Sun, 09 Jan 2011 05:06:57 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.5
X-Pingback: http://www1.peanutlabs.com/xmlrpc.php
Vary: Accept-Encoding
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 36954


<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Peanut Labs | Peanut Labs</title>

<!-- STY
...[SNIP]...
<link rel='stylesheet' id='wp-pagenavi-css' href='http://www1.peanutlabs.com/wp-content/themes/showtime/pagenavi-css.css?ver=2.70' type='text/css' media='all' />
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js?ver=3.0.1'></script>
...[SNIP]...
<div class="widget_footer_content"><script src="http://widgets.twimg.com/j/2/widget.js"></script>
...[SNIP]...

2.4. http://www1.peanutlabs.com/author/alex-dempsey/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www1.peanutlabs.com
Path:   /author/alex-dempsey/

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /author/alex-dempsey/ HTTP/1.1
Host: www1.peanutlabs.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: pl_user_id=d41d8cd98f-285ee847b9a2bf89ede3fbb81de1ea0f; SESSef469ce213eb8a405bbf25673950acca=0obr3bvubl5fq0qq2jj04d7pp6; pl_email=test4%40fastdial.net; __utmz=28928570.1294536852.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); PHPSESSID=3jamnj3v5les4euhv3rnmsdb04; __utma=28928570.961439791.1294536852.1294536852.1294536852.1; __utmc=28928570; pl_lang=en_US; __utmb=28928570.3.10.1294536852;

Response

HTTP/1.1 200 OK
Date: Sun, 09 Jan 2011 05:10:35 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.5
X-Pingback: http://www1.peanutlabs.com/xmlrpc.php
Vary: Accept-Encoding
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 22571


<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Peanut Labs | Alex</title>

<!-- STYLESHEET
...[SNIP]...
<link rel='stylesheet' id='wp-pagenavi-css' href='http://www1.peanutlabs.com/wp-content/themes/showtime/pagenavi-css.css?ver=2.70' type='text/css' media='all' />
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js?ver=3.0.1'></script>
...[SNIP]...
<div class="widget_footer_content"><script src="http://widgets.twimg.com/j/2/widget.js"></script>
...[SNIP]...

2.5. http://www1.peanutlabs.com/become-a-publisher/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www1.peanutlabs.com
Path:   /become-a-publisher/

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /become-a-publisher/ HTTP/1.1
Host: www1.peanutlabs.com
Proxy-Connection: keep-alive
Referer: http://www1.peanutlabs.com/
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: PHPSESSID=3jamnj3v5les4euhv3rnmsdb04; pl_lang=en_US; __utmz=184043431.1294536629.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); pl_email=test4%40fastdial.net; pl_user_id=d41d8cd98f-285ee847b9a2bf89ede3fbb81de1ea0f; __utma=184043431.2085445617.1294536629.1294536629.1294536629.1; __utmc=184043431; __utmb=184043431.2.10.1294536629; SESSef469ce213eb8a405bbf25673950acca=0obr3bvubl5fq0qq2jj04d7pp6; __utmz=28928570.1294536852.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=28928570.961439791.1294536852.1294536852.1294536852.1; __utmc=28928570; __utmb=28928570.2.10.1294536852

Response

HTTP/1.1 200 OK
Date: Sun, 09 Jan 2011 01:35:26 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.5
X-Pingback: http://www1.peanutlabs.com/xmlrpc.php
Vary: Accept-Encoding
Content-Type: text/html; charset=UTF-8
Content-Length: 18906


<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Peanut Labs | Become a Publisher</title>

<
...[SNIP]...
<link rel='stylesheet' id='wp-pagenavi-css' href='http://www1.peanutlabs.com/wp-content/themes/showtime/pagenavi-css.css?ver=2.70' type='text/css' media='all' />
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js?ver=3.0.1'></script>
...[SNIP]...
<div class="widget_footer_content"><script src="http://widgets.twimg.com/j/2/widget.js"></script>
...[SNIP]...

2.6. http://www1.peanutlabs.com/peanut-labs-acquired-by-e-rewards-silo-breaker/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www1.peanutlabs.com
Path:   /peanut-labs-acquired-by-e-rewards-silo-breaker/

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /peanut-labs-acquired-by-e-rewards-silo-breaker/ HTTP/1.1
Host: www1.peanutlabs.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: pl_user_id=d41d8cd98f-285ee847b9a2bf89ede3fbb81de1ea0f; SESSef469ce213eb8a405bbf25673950acca=0obr3bvubl5fq0qq2jj04d7pp6; pl_email=test4%40fastdial.net; __utmz=28928570.1294536852.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); PHPSESSID=3jamnj3v5les4euhv3rnmsdb04; __utma=28928570.961439791.1294536852.1294536852.1294536852.1; __utmc=28928570; pl_lang=en_US; __utmb=28928570.3.10.1294536852;

Response

HTTP/1.1 200 OK
Date: Sun, 09 Jan 2011 05:13:33 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.5
X-Pingback: http://www1.peanutlabs.com/xmlrpc.php
Link: <http://www1.peanutlabs.com/?p=574>; rel=shortlink
Vary: Accept-Encoding
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 27493


<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Peanut Labs | Peanut Labs Acquired by e-Rewards
...[SNIP]...
<link rel='stylesheet' id='wp-pagenavi-css' href='http://www1.peanutlabs.com/wp-content/themes/showtime/pagenavi-css.css?ver=2.70' type='text/css' media='all' />
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js?ver=3.0.1'></script>
...[SNIP]...
<div class="widget_footer_content"><script src="http://widgets.twimg.com/j/2/widget.js"></script>
...[SNIP]...

2.7. http://www1.peanutlabs.com/peanut-labs-acquired-by-online-research-company-e-rewards-2/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www1.peanutlabs.com
Path:   /peanut-labs-acquired-by-online-research-company-e-rewards-2/

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /peanut-labs-acquired-by-online-research-company-e-rewards-2/ HTTP/1.1
Host: www1.peanutlabs.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: pl_user_id=d41d8cd98f-285ee847b9a2bf89ede3fbb81de1ea0f; SESSef469ce213eb8a405bbf25673950acca=0obr3bvubl5fq0qq2jj04d7pp6; pl_email=test4%40fastdial.net; __utmz=28928570.1294536852.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); PHPSESSID=3jamnj3v5les4euhv3rnmsdb04; __utma=28928570.961439791.1294536852.1294536852.1294536852.1; __utmc=28928570; pl_lang=en_US; __utmb=28928570.3.10.1294536852;

Response

HTTP/1.1 200 OK
Date: Sun, 09 Jan 2011 05:06:57 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.5
X-Pingback: http://www1.peanutlabs.com/xmlrpc.php
Link: <http://www1.peanutlabs.com/?p=568>; rel=shortlink
Vary: Accept-Encoding
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 29570


<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Peanut Labs | Peanut Labs Acquired By E-Rewards
...[SNIP]...
<link rel='stylesheet' id='wp-pagenavi-css' href='http://www1.peanutlabs.com/wp-content/themes/showtime/pagenavi-css.css?ver=2.70' type='text/css' media='all' />
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js?ver=3.0.1'></script>
...[SNIP]...
<div class="widget_footer_content"><script src="http://widgets.twimg.com/j/2/widget.js"></script>
...[SNIP]...

2.8. http://www1.peanutlabs.com/peanut-labs-inc-announces-acquisition-by-e-rrewards-inc/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www1.peanutlabs.com
Path:   /peanut-labs-inc-announces-acquisition-by-e-rrewards-inc/

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /peanut-labs-inc-announces-acquisition-by-e-rrewards-inc/ HTTP/1.1
Host: www1.peanutlabs.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: pl_user_id=d41d8cd98f-285ee847b9a2bf89ede3fbb81de1ea0f; SESSef469ce213eb8a405bbf25673950acca=0obr3bvubl5fq0qq2jj04d7pp6; pl_email=test4%40fastdial.net; __utmz=28928570.1294536852.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); PHPSESSID=3jamnj3v5les4euhv3rnmsdb04; __utma=28928570.961439791.1294536852.1294536852.1294536852.1; __utmc=28928570; pl_lang=en_US; __utmb=28928570.3.10.1294536852;

Response

HTTP/1.1 200 OK
Date: Sun, 09 Jan 2011 05:06:57 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.5
X-Pingback: http://www1.peanutlabs.com/xmlrpc.php
Link: <http://www1.peanutlabs.com/?p=588>; rel=shortlink
Vary: Accept-Encoding
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 28243


<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Peanut Labs | Peanut Labs, Inc. Announces Acqui
...[SNIP]...
<link rel='stylesheet' id='wp-pagenavi-css' href='http://www1.peanutlabs.com/wp-content/themes/showtime/pagenavi-css.css?ver=2.70' type='text/css' media='all' />
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js?ver=3.0.1'></script>
...[SNIP]...
<div class="widget_footer_content"><script src="http://widgets.twimg.com/j/2/widget.js"></script>
...[SNIP]...

2.9. http://www1.peanutlabs.com/social-networking-survey-startup-peanut-labs-sold-to-e-rewards-paidcontent/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www1.peanutlabs.com
Path:   /social-networking-survey-startup-peanut-labs-sold-to-e-rewards-paidcontent/

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /social-networking-survey-startup-peanut-labs-sold-to-e-rewards-paidcontent/ HTTP/1.1
Host: www1.peanutlabs.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: pl_user_id=d41d8cd98f-285ee847b9a2bf89ede3fbb81de1ea0f; SESSef469ce213eb8a405bbf25673950acca=0obr3bvubl5fq0qq2jj04d7pp6; pl_email=test4%40fastdial.net; __utmz=28928570.1294536852.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); PHPSESSID=3jamnj3v5les4euhv3rnmsdb04; __utma=28928570.961439791.1294536852.1294536852.1294536852.1; __utmc=28928570; pl_lang=en_US; __utmb=28928570.3.10.1294536852;

Response

HTTP/1.1 200 OK
Date: Sun, 09 Jan 2011 05:13:34 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.5
X-Pingback: http://www1.peanutlabs.com/xmlrpc.php
Link: <http://www1.peanutlabs.com/?p=576>; rel=shortlink
Vary: Accept-Encoding
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 28472


<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Peanut Labs | Social Networking Survey Startup
...[SNIP]...
<link rel='stylesheet' id='wp-pagenavi-css' href='http://www1.peanutlabs.com/wp-content/themes/showtime/pagenavi-css.css?ver=2.70' type='text/css' media='all' />
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js?ver=3.0.1'></script>
...[SNIP]...
<div class="widget_footer_content"><script src="http://widgets.twimg.com/j/2/widget.js"></script>
...[SNIP]...

2.10. http://www1.peanutlabs.com/social-networking-survey-startup-peanut-labs-sold-to-e-rewards/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www1.peanutlabs.com
Path:   /social-networking-survey-startup-peanut-labs-sold-to-e-rewards/

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /social-networking-survey-startup-peanut-labs-sold-to-e-rewards/ HTTP/1.1
Host: www1.peanutlabs.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: pl_user_id=d41d8cd98f-285ee847b9a2bf89ede3fbb81de1ea0f; SESSef469ce213eb8a405bbf25673950acca=0obr3bvubl5fq0qq2jj04d7pp6; pl_email=test4%40fastdial.net; __utmz=28928570.1294536852.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); PHPSESSID=3jamnj3v5les4euhv3rnmsdb04; __utma=28928570.961439791.1294536852.1294536852.1294536852.1; __utmc=28928570; pl_lang=en_US; __utmb=28928570.3.10.1294536852;

Response

HTTP/1.1 200 OK
Date: Sun, 09 Jan 2011 05:13:33 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.5
X-Pingback: http://www1.peanutlabs.com/xmlrpc.php
Link: <http://www1.peanutlabs.com/?p=570>; rel=shortlink
Vary: Accept-Encoding
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 28775


<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Peanut Labs | Social Networking Survey Startup
...[SNIP]...
<link rel='stylesheet' id='wp-pagenavi-css' href='http://www1.peanutlabs.com/wp-content/themes/showtime/pagenavi-css.css?ver=2.70' type='text/css' media='all' />
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js?ver=3.0.1'></script>
...[SNIP]...
<div class="widget_footer_content"><script src="http://widgets.twimg.com/j/2/widget.js"></script>
...[SNIP]...

2.11. http://www1.peanutlabs.com/wp-content/themes/showtime/sliders/scripts/slider_static3.js  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www1.peanutlabs.com
Path:   /wp-content/themes/showtime/sliders/scripts/slider_static3.js

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /wp-content/themes/showtime/sliders/scripts/slider_static3.js HTTP/1.1
Host: www1.peanutlabs.com
Proxy-Connection: keep-alive
Referer: http://www1.peanutlabs.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.224 Safari/534.10
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: PHPSESSID=3jamnj3v5les4euhv3rnmsdb04; pl_lang=en_US; __utmz=184043431.1294536629.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); pl_email=test4%40fastdial.net; pl_user_id=d41d8cd98f-285ee847b9a2bf89ede3fbb81de1ea0f; __utma=184043431.2085445617.1294536629.1294536629.1294536629.1; __utmc=184043431; __utmb=184043431.2.10.1294536629; SESSef469ce213eb8a405bbf25673950acca=0obr3bvubl5fq0qq2jj04d7pp6

Response

HTTP/1.1 404 Not Found
Date: Sun, 09 Jan 2011 01:34:01 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.5
X-Pingback: http://www1.peanutlabs.com/xmlrpc.php
Expires: Wed, 11 Jan 1984 05:00:00 GMT
Last-Modified: Sun, 09 Jan 2011 01:34:01 GMT
Cache-Control: no-cache, must-revalidate, max-age=0
Pragma: no-cache
Vary: Accept-Encoding
Content-Type: text/html; charset=UTF-8
Content-Length: 40853


<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Peanut Labs | Page not found</title>

<!-- ST
...[SNIP]...
<link rel='stylesheet' id='wp-pagenavi-css' href='http://www1.peanutlabs.com/wp-content/themes/showtime/pagenavi-css.css?ver=2.70' type='text/css' media='all' />
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js?ver=3.0.1'></script>
...[SNIP]...
<div class="widget_footer_content"><script src="http://widgets.twimg.com/j/2/widget.js"></script>
...[SNIP]...

2.12. http://www1.peanutlabs.com/wp-content/themes/showtime/sliders/scripts/slider_static3.js/page/10/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www1.peanutlabs.com
Path:   /wp-content/themes/showtime/sliders/scripts/slider_static3.js/page/10/

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /wp-content/themes/showtime/sliders/scripts/slider_static3.js/page/10/ HTTP/1.1
Host: www1.peanutlabs.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: pl_user_id=d41d8cd98f-285ee847b9a2bf89ede3fbb81de1ea0f; SESSef469ce213eb8a405bbf25673950acca=0obr3bvubl5fq0qq2jj04d7pp6; pl_email=test4%40fastdial.net; __utmz=28928570.1294536852.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); PHPSESSID=3jamnj3v5les4euhv3rnmsdb04; __utma=28928570.961439791.1294536852.1294536852.1294536852.1; __utmc=28928570; pl_lang=en_US; __utmb=28928570.3.10.1294536852;

Response

HTTP/1.1 404 Not Found
Date: Sun, 09 Jan 2011 03:09:56 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.5
X-Pingback: http://www1.peanutlabs.com/xmlrpc.php
Expires: Wed, 11 Jan 1984 05:00:00 GMT
Last-Modified: Sun, 09 Jan 2011 03:09:56 GMT
Cache-Control: no-cache, must-revalidate, max-age=0
Pragma: no-cache
Vary: Accept-Encoding
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 40853


<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Peanut Labs | Page not found</title>

<!-- ST
...[SNIP]...
<link rel='stylesheet' id='wp-pagenavi-css' href='http://www1.peanutlabs.com/wp-content/themes/showtime/pagenavi-css.css?ver=2.70' type='text/css' media='all' />
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js?ver=3.0.1'></script>
...[SNIP]...
<div class="widget_footer_content"><script src="http://widgets.twimg.com/j/2/widget.js"></script>
...[SNIP]...

2.13. http://www1.peanutlabs.com/wp-content/themes/showtime/sliders/scripts/slider_static3.js/page/11/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www1.peanutlabs.com
Path:   /wp-content/themes/showtime/sliders/scripts/slider_static3.js/page/11/

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /wp-content/themes/showtime/sliders/scripts/slider_static3.js/page/11/ HTTP/1.1
Host: www1.peanutlabs.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: pl_user_id=d41d8cd98f-285ee847b9a2bf89ede3fbb81de1ea0f; SESSef469ce213eb8a405bbf25673950acca=0obr3bvubl5fq0qq2jj04d7pp6; pl_email=test4%40fastdial.net; __utmz=28928570.1294536852.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); PHPSESSID=3jamnj3v5les4euhv3rnmsdb04; __utma=28928570.961439791.1294536852.1294536852.1294536852.1; __utmc=28928570; pl_lang=en_US; __utmb=28928570.3.10.1294536852;

Response

HTTP/1.1 404 Not Found
Date: Sun, 09 Jan 2011 03:09:59 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.5
X-Pingback: http://www1.peanutlabs.com/xmlrpc.php
Expires: Wed, 11 Jan 1984 05:00:00 GMT
Last-Modified: Sun, 09 Jan 2011 03:10:01 GMT
Cache-Control: no-cache, must-revalidate, max-age=0
Pragma: no-cache
Vary: Accept-Encoding
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 40853


<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Peanut Labs | Page not found</title>

<!-- ST
...[SNIP]...
<link rel='stylesheet' id='wp-pagenavi-css' href='http://www1.peanutlabs.com/wp-content/themes/showtime/pagenavi-css.css?ver=2.70' type='text/css' media='all' />
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js?ver=3.0.1'></script>
...[SNIP]...
<div class="widget_footer_content"><script src="http://widgets.twimg.com/j/2/widget.js"></script>
...[SNIP]...

2.14. http://www1.peanutlabs.com/wp-content/themes/showtime/sliders/scripts/slider_static3.js/page/2/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www1.peanutlabs.com
Path:   /wp-content/themes/showtime/sliders/scripts/slider_static3.js/page/2/

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /wp-content/themes/showtime/sliders/scripts/slider_static3.js/page/2/ HTTP/1.1
Host: www1.peanutlabs.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: pl_user_id=d41d8cd98f-285ee847b9a2bf89ede3fbb81de1ea0f; SESSef469ce213eb8a405bbf25673950acca=0obr3bvubl5fq0qq2jj04d7pp6; pl_email=test4%40fastdial.net; __utmz=28928570.1294536852.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); PHPSESSID=3jamnj3v5les4euhv3rnmsdb04; __utma=28928570.961439791.1294536852.1294536852.1294536852.1; __utmc=28928570; pl_lang=en_US; __utmb=28928570.3.10.1294536852;

Response

HTTP/1.1 404 Not Found
Date: Sun, 09 Jan 2011 03:08:33 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.5
X-Pingback: http://www1.peanutlabs.com/xmlrpc.php
Expires: Wed, 11 Jan 1984 05:00:00 GMT
Last-Modified: Sun, 09 Jan 2011 03:09:20 GMT
Cache-Control: no-cache, must-revalidate, max-age=0
Pragma: no-cache
Vary: Accept-Encoding
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 40853


<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Peanut Labs | Page not found</title>

<!-- ST
...[SNIP]...
<link rel='stylesheet' id='wp-pagenavi-css' href='http://www1.peanutlabs.com/wp-content/themes/showtime/pagenavi-css.css?ver=2.70' type='text/css' media='all' />
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js?ver=3.0.1'></script>
...[SNIP]...
<div class="widget_footer_content"><script src="http://widgets.twimg.com/j/2/widget.js"></script>
...[SNIP]...

2.15. http://www1.peanutlabs.com/wp-content/themes/showtime/sliders/scripts/slider_static3.js/page/3/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www1.peanutlabs.com
Path:   /wp-content/themes/showtime/sliders/scripts/slider_static3.js/page/3/

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /wp-content/themes/showtime/sliders/scripts/slider_static3.js/page/3/ HTTP/1.1
Host: www1.peanutlabs.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: pl_user_id=d41d8cd98f-285ee847b9a2bf89ede3fbb81de1ea0f; SESSef469ce213eb8a405bbf25673950acca=0obr3bvubl5fq0qq2jj04d7pp6; pl_email=test4%40fastdial.net; __utmz=28928570.1294536852.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); PHPSESSID=3jamnj3v5les4euhv3rnmsdb04; __utma=28928570.961439791.1294536852.1294536852.1294536852.1; __utmc=28928570; pl_lang=en_US; __utmb=28928570.3.10.1294536852;

Response

HTTP/1.1 404 Not Found
Date: Sun, 09 Jan 2011 03:08:54 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.5
X-Pingback: http://www1.peanutlabs.com/xmlrpc.php
Expires: Wed, 11 Jan 1984 05:00:00 GMT
Last-Modified: Sun, 09 Jan 2011 03:09:50 GMT
Cache-Control: no-cache, must-revalidate, max-age=0
Pragma: no-cache
Vary: Accept-Encoding
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 40853


<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Peanut Labs | Page not found</title>

<!-- ST
...[SNIP]...
<link rel='stylesheet' id='wp-pagenavi-css' href='http://www1.peanutlabs.com/wp-content/themes/showtime/pagenavi-css.css?ver=2.70' type='text/css' media='all' />
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js?ver=3.0.1'></script>
...[SNIP]...
<div class="widget_footer_content"><script src="http://widgets.twimg.com/j/2/widget.js"></script>
...[SNIP]...

2.16. http://www1.peanutlabs.com/wp-content/themes/showtime/sliders/scripts/slider_static3.js/page/4/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www1.peanutlabs.com
Path:   /wp-content/themes/showtime/sliders/scripts/slider_static3.js/page/4/

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /wp-content/themes/showtime/sliders/scripts/slider_static3.js/page/4/ HTTP/1.1
Host: www1.peanutlabs.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: pl_user_id=d41d8cd98f-285ee847b9a2bf89ede3fbb81de1ea0f; SESSef469ce213eb8a405bbf25673950acca=0obr3bvubl5fq0qq2jj04d7pp6; pl_email=test4%40fastdial.net; __utmz=28928570.1294536852.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); PHPSESSID=3jamnj3v5les4euhv3rnmsdb04; __utma=28928570.961439791.1294536852.1294536852.1294536852.1; __utmc=28928570; pl_lang=en_US; __utmb=28928570.3.10.1294536852;

Response

HTTP/1.1 404 Not Found
Date: Sun, 09 Jan 2011 03:09:29 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.5
X-Pingback: http://www1.peanutlabs.com/xmlrpc.php
Expires: Wed, 11 Jan 1984 05:00:00 GMT
Last-Modified: Sun, 09 Jan 2011 03:09:58 GMT
Cache-Control: no-cache, must-revalidate, max-age=0
Pragma: no-cache
Vary: Accept-Encoding
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 40853


<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Peanut Labs | Page not found</title>

<!-- ST
...[SNIP]...
<link rel='stylesheet' id='wp-pagenavi-css' href='http://www1.peanutlabs.com/wp-content/themes/showtime/pagenavi-css.css?ver=2.70' type='text/css' media='all' />
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js?ver=3.0.1'></script>
...[SNIP]...
<div class="widget_footer_content"><script src="http://widgets.twimg.com/j/2/widget.js"></script>
...[SNIP]...

2.17. http://www1.peanutlabs.com/wp-content/themes/showtime/sliders/scripts/slider_static3.js/page/5/  previous

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www1.peanutlabs.com
Path:   /wp-content/themes/showtime/sliders/scripts/slider_static3.js/page/5/

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /wp-content/themes/showtime/sliders/scripts/slider_static3.js/page/5/ HTTP/1.1
Host: www1.peanutlabs.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: pl_user_id=d41d8cd98f-285ee847b9a2bf89ede3fbb81de1ea0f; SESSef469ce213eb8a405bbf25673950acca=0obr3bvubl5fq0qq2jj04d7pp6; pl_email=test4%40fastdial.net; __utmz=28928570.1294536852.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); PHPSESSID=3jamnj3v5les4euhv3rnmsdb04; __utma=28928570.961439791.1294536852.1294536852.1294536852.1; __utmc=28928570; pl_lang=en_US; __utmb=28928570.3.10.1294536852;

Response

HTTP/1.1 404 Not Found
Date: Sun, 09 Jan 2011 03:09:56 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.5
X-Pingback: http://www1.peanutlabs.com/xmlrpc.php
Expires: Wed, 11 Jan 1984 05:00:00 GMT
Last-Modified: Sun, 09 Jan 2011 03:09:56 GMT
Cache-Control: no-cache, must-revalidate, max-age=0
Pragma: no-cache
Vary: Accept-Encoding
Connection: close
Content-Type: text/html; charset=UTF-8
Content-Length: 40853


<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Peanut Labs | Page not found</title>

<!-- ST
...[SNIP]...
<link rel='stylesheet' id='wp-pagenavi-css' href='http://www1.peanutlabs.com/wp-content/themes/showtime/pagenavi-css.css?ver=2.70' type='text/css' media='all' />
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js?ver=3.0.1'></script>
...[SNIP]...
<div class="widget_footer_content"><script src="http://widgets.twimg.com/j/2/widget.js"></script>
...[SNIP]...

3. Directory listing  previous  next

Summary

Severity:   Information
Confidence:   Firm
Host:   http://www1.peanutlabs.com
Path:   /wp-content/plugins/uBillboard/

Issue description

Directory listings do not necessarily constitute a security vulnerability. Any sensitive resources within your web root should be properly access-controlled in any case, and should not be accessible by an unauthorised party who happens to know the URL. Nevertheless, directory listings can aid an attacker by enabling them to quickly identify the resources at a given path, and proceed directly to analysing and attacking them.

Issue remediation

There is not usually any good reason to provide directory listings, and disabling them may place additional hurdles in the path of an attacker. This can normally be achieved in two ways:

Request

GET /wp-content/plugins/uBillboard/ HTTP/1.1
Host: www1.peanutlabs.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: pl_user_id=d41d8cd98f-285ee847b9a2bf89ede3fbb81de1ea0f; SESSef469ce213eb8a405bbf25673950acca=0obr3bvubl5fq0qq2jj04d7pp6; pl_email=test4%40fastdial.net; __utmz=28928570.1294536852.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); PHPSESSID=3jamnj3v5les4euhv3rnmsdb04; __utma=28928570.961439791.1294536852.1294536852.1294536852.1; __utmc=28928570; pl_lang=en_US; __utmb=28928570.3.10.1294536852;

Response

HTTP/1.1 200 OK
Date: Sun, 09 Jan 2011 03:10:38 GMT
Server: Apache/2.2.14 (Ubuntu)
Vary: Accept-Encoding
Content-Length: 2631
Connection: close
Content-Type: text/html;charset=UTF-8

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<html>
<head>
<title>Index of /wp-content/plugins/uBillboard</title>
</head>
<body>
<h1>Index of /wp-content/plugins/uBillboard</h1>
<table
...[SNIP]...
<th><a href="?C=N;O=D">Name</a></th><th><a href="?C=M;O=A">Last modified</a></th><th><a href="?C=S;O=A">Size</a></th><th><a href="?C=D;O=A">Description</a>
...[SNIP]...
<td><a href="/wp-content/plugins/">Parent Directory</a>
...[SNIP]...

4. HTML does not specify charset  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www1.peanutlabs.com
Path:   /wp-content/themes/showtime/scripts/timthumb.php

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.

Request

GET /wp-content/themes/showtime/scripts/timthumb.php HTTP/1.1
Host: www1.peanutlabs.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: pl_user_id=d41d8cd98f-285ee847b9a2bf89ede3fbb81de1ea0f; SESSef469ce213eb8a405bbf25673950acca=0obr3bvubl5fq0qq2jj04d7pp6; pl_email=test4%40fastdial.net; __utmz=28928570.1294536852.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); PHPSESSID=3jamnj3v5les4euhv3rnmsdb04; __utma=28928570.961439791.1294536852.1294536852.1294536852.1; __utmc=28928570; pl_lang=en_US; __utmb=28928570.3.10.1294536852;

Response

HTTP/1.1 400 Bad Request
Date: Sun, 09 Jan 2011 03:10:01 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.5
Vary: Accept-Encoding
Content-Length: 58
Connection: close
Content-Type: text/html

<pre>no image specified<br />TimThumb version : 1.14</pre>

5. Content type incorrectly stated  previous

Summary

Severity:   Information
Confidence:   Firm
Host:   http://www1.peanutlabs.com
Path:   /wp-content/themes/showtime/scripts/timthumb.php

Issue detail

The response contains the following Content-type statement:The response states that it contains a JPEG image. However, it actually appears to contain unrecognised content.

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 /wp-content/themes/showtime/scripts/timthumb.php?src=http://www1.peanutlabs.com/wp-content/uploads/2010/12/peanuts.jpeg&w=60&h=60&zc=1 HTTP/1.1
Host: www1.peanutlabs.com
Proxy-Connection: keep-alive
Referer: http://www1.peanutlabs.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.224 Safari/534.10
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: PHPSESSID=3jamnj3v5les4euhv3rnmsdb04; pl_lang=en_US; __utmz=184043431.1294536629.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); pl_email=test4%40fastdial.net; pl_user_id=d41d8cd98f-285ee847b9a2bf89ede3fbb81de1ea0f; __utma=184043431.2085445617.1294536629.1294536629.1294536629.1; __utmc=184043431; __utmb=184043431.2.10.1294536629; SESSef469ce213eb8a405bbf25673950acca=0obr3bvubl5fq0qq2jj04d7pp6

Response

HTTP/1.1 400 Bad Request
Date: Sun, 09 Jan 2011 01:34:08 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: PHP/5.3.2-1ubuntu4.5
Content-Length: 2208
Connection: close
Content-Type: image/jpeg

......JFIF.............;CREATOR: gd-jpeg v1.0 (using IJG JPEG v62), quality = 80
...C...............
.

       
...............%...#... , #&')*)..-0-(0%()(...C....
.
.

.(...(((((((((((((((((((((((((((((((
...[SNIP]...

Report generated by Unforgivable Vulnerabilities, DORK Search, Exploit Research at Sun Jan 09 07:57:42 CST 2011.