XSS, Reflected Cross Site Scripting, CWE-79, CAPEC-86, DORK, GHDB, beeg.com

Report generated by XSS.CX at Mon May 16 09:02:36 CDT 2011.

Public Domain Vulnerability Information, Security Articles, Vulnerability Reports, GHDB, DORK Search


Loading

1. SQL injection

1.1. http://beeg.com/ [beeg cookie]

1.2. http://beeg.com/ [name of an arbitrarily supplied request parameter]

1.3. http://beeg.com/contacts/ [REST URL parameter 1]

1.4. http://beeg.com/contacts/ [beeg cookie]

1.5. http://beeg.com/favicon.ico [REST URL parameter 1]

1.6. http://beeg.com/my-wifes-hot-friend/my-wifes-blonde-big-titted-friend/beeg [REST URL parameter 1]

1.7. http://beeg.com/my-wifes-hot-friend/my-wifes-blonde-big-titted-friend/beeg [REST URL parameter 2]

1.8. http://beeg.com/my-wifes-hot-friend/my-wifes-blonde-big-titted-friend/beeg [REST URL parameter 3]

1.9. http://beeg.com/my-wifes-hot-friend/my-wifes-blonde-big-titted-friend/beeg [name of an arbitrarily supplied request parameter]

1.10. http://beeg.com/section/stylish/ [REST URL parameter 1]

1.11. http://beeg.com/section/stylish/ [REST URL parameter 2]

1.12. http://beeg.com/section/stylish/ [name of an arbitrarily supplied request parameter]

1.13. http://beeg.com/section/teen-sex/2/ [REST URL parameter 1]

1.14. http://beeg.com/section/teen-sex/2/ [REST URL parameter 2]

1.15. http://beeg.com/section/teen-sex/2/ [REST URL parameter 3]

1.16. http://beeg.com/section/teen-sex/2/ [beeg cookie]

1.17. http://beeg.com/section/teen-sex/3/ [REST URL parameter 1]

1.18. http://beeg.com/section/teen-sex/3/ [REST URL parameter 2]

1.19. http://beeg.com/section/teen-sex/3/ [REST URL parameter 3]

1.20. http://beeg.com/section/teen-sex/3/ [beeg cookie]

1.21. http://beeg.com/section/uniform/ [REST URL parameter 1]

1.22. http://beeg.com/section/uniform/ [REST URL parameter 2]

1.23. http://beeg.com/section/uniform/ [beeg cookie]

1.24. http://beeg.com/section/uniform/ [name of an arbitrarily supplied request parameter]

2. Cross-site scripting (reflected)

2.1. http://beeg.com/section/teen-sex/2/ [name of an arbitrarily supplied request parameter]

2.2. http://beeg.com/section/teen-sex/3/ [name of an arbitrarily supplied request parameter]

3. Referer-dependent response

3.1. http://beeg.com/

3.2. http://beeg.com/section/stylish/

3.3. http://beeg.com/section/teen-sex/2/

3.4. http://beeg.com/section/teen-sex/3/

3.5. http://beeg.com/section/uniform/

4. Cross-domain script include

4.1. http://beeg.com/

4.2. http://beeg.com/my-wifes-hot-friend/my-wifes-blonde-big-titted-friend/beeg

4.3. http://beeg.com/section/stylish/

4.4. http://beeg.com/section/teen-sex/2/

4.5. http://beeg.com/section/teen-sex/3/

4.6. http://beeg.com/section/uniform/



1. SQL injection  next
There are 24 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://beeg.com/ [beeg cookie]  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://beeg.com
Path:   /

Issue detail

The beeg cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the beeg cookie, and a database 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 database appears to be MySQL.

Remediation detail

The application should handle errors gracefully and prevent SQL error messages from being returned in responses.

Request 1

GET / HTTP/1.1
Host: beeg.com
Proxy-Connection: keep-alive
Referer: http://beeg.com/section/stylish/
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.68 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: __utmz=228746511.1305553974.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=228746511.1390051493.1305553974.1305553974.1305553974.1; __utmc=228746511; __utmb=228746511.2.10.1305553974; beeg=s2'

Response 1

HTTP/1.1 200 OK
Server: nginx/0.7.65
Date: Mon, 16 May 2011 13:55:12 GMT
Content-Type: text/html
Connection: keep-alive
X-Powered-By: PHP/5.2.5
Content-Length: 244

DB Error: syntax errorSELECT * FROM `cookie` WHERE `cookie` LIKE 's2'' [nativecode=1064 ** You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''s2''' at line 1]

Request 2

GET / HTTP/1.1
Host: beeg.com
Proxy-Connection: keep-alive
Referer: http://beeg.com/section/stylish/
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.68 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: __utmz=228746511.1305553974.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=228746511.1390051493.1305553974.1305553974.1305553974.1; __utmc=228746511; __utmb=228746511.2.10.1305553974; beeg=s2''

Response 2

HTTP/1.1 200 OK
Server: nginx/0.7.65
Date: Mon, 16 May 2011 13:55:13 GMT
Content-Type: text/html
Connection: keep-alive
X-Powered-By: PHP/5.2.5
Expires: Mon, 26 Jul 1997 05:00:00 GMT
Last-Modified: Mon, 27 Jul 2009 20:32:14 GMT GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-Length: 95728

<!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="Conten
...[SNIP]...

1.2. http://beeg.com/ [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://beeg.com
Path:   /

Issue detail

The name of an arbitrarily supplied request parameter appears to be vulnerable to SQL injection attacks. The payload ' was submitted in the name of an arbitrarily supplied request parameter, and a database error message was returned. 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 database appears to be MySQL.

Remediation detail

The application should handle errors gracefully and prevent SQL error messages from being returned in responses.

Request

GET /?1'=1 HTTP/1.1
Host: beeg.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.68 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3

Response

HTTP/1.1 200 OK
Server: nginx/0.7.65
Date: Mon, 16 May 2011 13:52:51 GMT
Content-Type: text/html
Connection: keep-alive
X-Powered-By: PHP/5.2.5
Content-Length: 283

DB Error: syntax errorSELECT * FROM `sellers_paysites` WHERE `Ps_Code` = '?1'=1' AND `Name` = '' [nativecode=1064 ** You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' AND `Name` = ''' at line 1]

1.3. http://beeg.com/contacts/ [REST URL parameter 1]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://beeg.com
Path:   /contacts/

Issue detail

The REST URL parameter 1 appears to be vulnerable to SQL injection attacks. The payload ' was submitted in the REST URL parameter 1, and a database error message was returned. 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 database appears to be MySQL.

Remediation detail

The application should handle errors gracefully and prevent SQL error messages from being returned in responses.

Request

GET /contacts'/ HTTP/1.1
Host: beeg.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Referer: http://beeg.com/
Cookie: __utmz=228746511.1305553974.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); beeg=s2; __utma=228746511.1390051493.1305553974.1305553974.1305553974.1; __utmc=228746511; __utmb=228746511.2.10.1305553974;

Response

HTTP/1.1 200 OK
Server: nginx/0.7.65
Date: Mon, 16 May 2011 14:00:50 GMT
Content-Type: text/html
Connection: close
X-Powered-By: PHP/5.2.5
Content-Length: 279

DB Error: syntax errorSELECT * FROM `sellers_paysites` WHERE `Ps_Code` = 'contacts'' AND `Name` = 'beeg' [nativecode=1064 ** You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'beeg'' at line 1]

1.4. http://beeg.com/contacts/ [beeg cookie]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://beeg.com
Path:   /contacts/

Issue detail

The beeg cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the beeg cookie, and a database 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 database appears to be MySQL.

Remediation detail

The application should handle errors gracefully and prevent SQL error messages from being returned in responses.

Request 1

GET /contacts/ HTTP/1.1
Host: beeg.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Referer: http://beeg.com/
Cookie: __utmz=228746511.1305553974.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); beeg=s2'; __utma=228746511.1390051493.1305553974.1305553974.1305553974.1; __utmc=228746511; __utmb=228746511.2.10.1305553974;

Response 1

HTTP/1.1 200 OK
Server: nginx/0.7.65
Date: Mon, 16 May 2011 14:00:44 GMT
Content-Type: text/html
Connection: close
X-Powered-By: PHP/5.2.5
Content-Length: 244

DB Error: syntax errorSELECT * FROM `cookie` WHERE `cookie` LIKE 's2'' [nativecode=1064 ** You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''s2''' at line 1]

Request 2

GET /contacts/ HTTP/1.1
Host: beeg.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Referer: http://beeg.com/
Cookie: __utmz=228746511.1305553974.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); beeg=s2''; __utma=228746511.1390051493.1305553974.1305553974.1305553974.1; __utmc=228746511; __utmb=228746511.2.10.1305553974;

Response 2

HTTP/1.1 200 OK
Server: nginx/0.7.65
Date: Mon, 16 May 2011 14:00:44 GMT
Content-Type: text/html
Connection: close
X-Powered-By: PHP/5.2.5
Expires: Mon, 26 Jul 1997 05:00:00 GMT
Last-Modified: Mon, 27 Jul 2009 20:32:14 GMT GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-Length: 5777

...<!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="Con
...[SNIP]...

1.5. http://beeg.com/favicon.ico [REST URL parameter 1]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://beeg.com
Path:   /favicon.ico

Issue detail

The REST URL parameter 1 appears to be vulnerable to SQL injection attacks. The payload ' was submitted in the REST URL parameter 1, and a database error message was returned. 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 database appears to be MySQL.

Remediation detail

The application should handle errors gracefully and prevent SQL error messages from being returned in responses.

Request

GET /favicon.ico' HTTP/1.1
Host: beeg.com
Proxy-Connection: keep-alive
Accept: */*
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.68 Safari/534.24
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: __utmz=228746511.1305553974.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=228746511.1390051493.1305553974.1305553974.1305553974.1; __utmc=228746511; __utmb=228746511.1.10.1305553974

Response

HTTP/1.1 200 OK
Server: nginx/0.7.65
Date: Mon, 16 May 2011 13:57:55 GMT
Content-Type: text/html
Connection: keep-alive
X-Powered-By: PHP/5.2.5
Content-Length: 303

DB Error: syntax errorSELECT * FROM `sellers_paysites` WHERE `Ps_Code` = 'favicon.ico'' AND `Name` = '' [nativecode=1064 ** You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''favicon.ico'' AND `Name` = ''' at line 1]

1.6. http://beeg.com/my-wifes-hot-friend/my-wifes-blonde-big-titted-friend/beeg [REST URL parameter 1]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://beeg.com
Path:   /my-wifes-hot-friend/my-wifes-blonde-big-titted-friend/beeg

Issue detail

The REST URL parameter 1 appears to be vulnerable to SQL injection attacks. The payload ' was submitted in the REST URL parameter 1, and a database error message was returned. 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 database appears to be MySQL.

Remediation detail

The application should handle errors gracefully and prevent SQL error messages from being returned in responses.

Request

GET /my-wifes-hot-friend'/my-wifes-blonde-big-titted-friend/beeg HTTP/1.1
Host: beeg.com
Proxy-Connection: keep-alive
Referer: http://beeg.com/section/stylish/
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.68 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: __utmz=228746511.1305553974.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=228746511.1390051493.1305553974.1305553974.1305553974.1; __utmc=228746511; __utmb=228746511.2.10.1305553974

Response

HTTP/1.1 200 OK
Server: nginx/0.7.65
Date: Mon, 16 May 2011 13:55:15 GMT
Content-Type: text/html
Connection: keep-alive
X-Powered-By: PHP/5.2.5
Content-Length: 290

DB Error: syntax errorSELECT * FROM `sellers_paysites` WHERE `Ps_Code` = 'my-wifes-hot-friend'' AND `Name` = 'beeg' [nativecode=1064 ** You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'beeg'' at line 1]

1.7. http://beeg.com/my-wifes-hot-friend/my-wifes-blonde-big-titted-friend/beeg [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://beeg.com
Path:   /my-wifes-hot-friend/my-wifes-blonde-big-titted-friend/beeg

Issue detail

The REST URL parameter 2 appears to be vulnerable to SQL injection attacks. The payload ' was submitted in the REST URL parameter 2, and a database error message was returned. 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 database appears to be MySQL.

Remediation detail

The application should handle errors gracefully and prevent SQL error messages from being returned in responses.

Request

GET /my-wifes-hot-friend/my-wifes-blonde-big-titted-friend'/beeg HTTP/1.1
Host: beeg.com
Proxy-Connection: keep-alive
Referer: http://beeg.com/section/stylish/
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.68 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: __utmz=228746511.1305553974.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=228746511.1390051493.1305553974.1305553974.1305553974.1; __utmc=228746511; __utmb=228746511.2.10.1305553974

Response

HTTP/1.1 200 OK
Server: nginx/0.7.65
Date: Mon, 16 May 2011 13:55:21 GMT
Content-Type: text/html
Connection: keep-alive
X-Powered-By: PHP/5.2.5
Content-Length: 356

DB Error: syntax errorSELECT * FROM `content` WHERE `Ps_Code` LIKE 'my-wifes-hot-friend'
           AND `Content_Code` = 'my-wifes-blonde-big-titted-friend'' [nativecode=1064 ** You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''my-wifes-blonde-big-titted-friend''' at line 2]

1.8. http://beeg.com/my-wifes-hot-friend/my-wifes-blonde-big-titted-friend/beeg [REST URL parameter 3]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://beeg.com
Path:   /my-wifes-hot-friend/my-wifes-blonde-big-titted-friend/beeg

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 database 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 database appears to be MySQL.

Remediation detail

The application should handle errors gracefully and prevent SQL error messages from being returned in responses.

Request 1

GET /my-wifes-hot-friend/my-wifes-blonde-big-titted-friend/beeg' HTTP/1.1
Host: beeg.com
Proxy-Connection: keep-alive
Referer: http://beeg.com/section/stylish/
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.68 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: __utmz=228746511.1305553974.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=228746511.1390051493.1305553974.1305553974.1305553974.1; __utmc=228746511; __utmb=228746511.2.10.1305553974

Response 1

HTTP/1.1 200 OK
Server: nginx/0.7.65
Date: Mon, 16 May 2011 13:55:28 GMT
Content-Type: text/html
Connection: keep-alive
X-Powered-By: PHP/5.2.5
Content-Length: 248

DB Error: syntax errorSELECT * FROM `sellers` WHERE `Label` LIKE 'beeg'' [nativecode=1064 ** You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''beeg''' at line 1]

Request 2

GET /my-wifes-hot-friend/my-wifes-blonde-big-titted-friend/beeg'' HTTP/1.1
Host: beeg.com
Proxy-Connection: keep-alive
Referer: http://beeg.com/section/stylish/
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.68 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: __utmz=228746511.1305553974.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=228746511.1390051493.1305553974.1305553974.1305553974.1; __utmc=228746511; __utmb=228746511.2.10.1305553974

Response 2

HTTP/1.1 301 Moved Permanently
Server: nginx/0.7.65
Date: Mon, 16 May 2011 13:55:29 GMT
Content-Type: text/html; charset=iso-8859-1
Connection: keep-alive
X-Powered-By: PHP/5.2.5
Last-Modified: Mon, 16 May 2011 13:55:29 GMT
Location: http://beeg.com/my-wifes-hot-friend/my-wifes-blonde-big-titted-friend/
Content-Length: 0


1.9. http://beeg.com/my-wifes-hot-friend/my-wifes-blonde-big-titted-friend/beeg [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://beeg.com
Path:   /my-wifes-hot-friend/my-wifes-blonde-big-titted-friend/beeg

Issue detail

The name of an arbitrarily supplied request parameter appears to be vulnerable to SQL injection attacks. A single quote was submitted in the name of an arbitrarily supplied request parameter, and a database 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 database appears to be MySQL.

Remediation detail

The application should handle errors gracefully and prevent SQL error messages from being returned in responses.

Request 1

GET /my-wifes-hot-friend/my-wifes-blonde-big-titted-friend/beeg?1'=1 HTTP/1.1
Host: beeg.com
Proxy-Connection: keep-alive
Referer: http://beeg.com/section/stylish/
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.68 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: __utmz=228746511.1305553974.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=228746511.1390051493.1305553974.1305553974.1305553974.1; __utmc=228746511; __utmb=228746511.2.10.1305553974

Response 1

HTTP/1.1 200 OK
Server: nginx/0.7.65
Date: Mon, 16 May 2011 13:55:11 GMT
Content-Type: text/html
Connection: keep-alive
X-Powered-By: PHP/5.2.5
Content-Length: 246

DB Error: syntax errorSELECT * FROM `sellers` WHERE `Label` LIKE 'beeg?1'=1' [nativecode=1064 ** You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''' at line 1]

Request 2

GET /my-wifes-hot-friend/my-wifes-blonde-big-titted-friend/beeg?1''=1 HTTP/1.1
Host: beeg.com
Proxy-Connection: keep-alive
Referer: http://beeg.com/section/stylish/
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.68 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: __utmz=228746511.1305553974.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=228746511.1390051493.1305553974.1305553974.1305553974.1; __utmc=228746511; __utmb=228746511.2.10.1305553974

Response 2

HTTP/1.1 301 Moved Permanently
Server: nginx/0.7.65
Date: Mon, 16 May 2011 13:55:12 GMT
Content-Type: text/html; charset=iso-8859-1
Connection: keep-alive
X-Powered-By: PHP/5.2.5
Last-Modified: Mon, 16 May 2011 13:55:12 GMT
Location: http://beeg.com/my-wifes-hot-friend/my-wifes-blonde-big-titted-friend/
Content-Length: 0


1.10. http://beeg.com/section/stylish/ [REST URL parameter 1]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://beeg.com
Path:   /section/stylish/

Issue detail

The REST URL parameter 1 appears to be vulnerable to SQL injection attacks. The payload ' was submitted in the REST URL parameter 1, and a database error message was returned. 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 database appears to be MySQL.

Remediation detail

The application should handle errors gracefully and prevent SQL error messages from being returned in responses.

Request

GET /section'/stylish/ HTTP/1.1
Host: beeg.com
Proxy-Connection: keep-alive
Referer: http://beeg.com/
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.68 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: __utmz=228746511.1305553974.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=228746511.1390051493.1305553974.1305553974.1305553974.1; __utmc=228746511; __utmb=228746511.1.10.1305553974

Response

HTTP/1.1 200 OK
Server: nginx/0.7.65
Date: Mon, 16 May 2011 13:55:27 GMT
Content-Type: text/html
Connection: keep-alive
X-Powered-By: PHP/5.2.5
Content-Length: 278

DB Error: syntax errorSELECT * FROM `sellers_paysites` WHERE `Ps_Code` = 'section'' AND `Name` = 'beeg' [nativecode=1064 ** You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'beeg'' at line 1]

1.11. http://beeg.com/section/stylish/ [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://beeg.com
Path:   /section/stylish/

Issue detail

The REST URL parameter 2 appears to be vulnerable to SQL injection attacks. The payload ' was submitted in the REST URL parameter 2, and a database error message was returned. 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 database appears to be MySQL.

Remediation detail

The application should handle errors gracefully and prevent SQL error messages from being returned in responses.

Request

GET /section/stylish'/ HTTP/1.1
Host: beeg.com
Proxy-Connection: keep-alive
Referer: http://beeg.com/
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.68 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: __utmz=228746511.1305553974.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=228746511.1390051493.1305553974.1305553974.1305553974.1; __utmc=228746511; __utmb=228746511.1.10.1305553974

Response

HTTP/1.1 200 OK
Server: nginx/0.7.65
Date: Mon, 16 May 2011 13:55:34 GMT
Content-Type: text/html
Connection: keep-alive
X-Powered-By: PHP/5.2.5
Content-Length: 255

DB Error: syntax errorSELECT * FROM sections WHERE Name_Code LIKE 'stylish'' [nativecode=1064 ** You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''stylish''' at line 1]

1.12. http://beeg.com/section/stylish/ [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://beeg.com
Path:   /section/stylish/

Issue detail

The name of an arbitrarily supplied request parameter appears to be vulnerable to SQL injection attacks. The payload ' was submitted in the name of an arbitrarily supplied request parameter, and a database error message was returned. 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 database appears to be MySQL.

Remediation detail

The application should handle errors gracefully and prevent SQL error messages from being returned in responses.

Request

GET /section/stylish/?1'=1 HTTP/1.1
Host: beeg.com
Proxy-Connection: keep-alive
Referer: http://beeg.com/
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.68 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: __utmz=228746511.1305553974.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=228746511.1390051493.1305553974.1305553974.1305553974.1; __utmc=228746511; __utmb=228746511.1.10.1305553974

Response

HTTP/1.1 200 OK
Server: nginx/0.7.65
Date: Mon, 16 May 2011 13:55:11 GMT
Content-Type: text/html
Connection: keep-alive
X-Powered-By: PHP/5.2.5
Content-Length: 242

DB Error: syntax errorSELECT * FROM `sellers` WHERE `Label` LIKE '?1'=1' [nativecode=1064 ** You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''' at line 1]

1.13. http://beeg.com/section/teen-sex/2/ [REST URL parameter 1]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://beeg.com
Path:   /section/teen-sex/2/

Issue detail

The REST URL parameter 1 appears to be vulnerable to SQL injection attacks. The payload ' was submitted in the REST URL parameter 1, and a database error message was returned. 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 database appears to be MySQL.

Remediation detail

The application should handle errors gracefully and prevent SQL error messages from being returned in responses.

Request

GET /section'/teen-sex/2/ HTTP/1.1
Host: beeg.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Referer: http://beeg.com/section/teen-sex/
Cookie: __utmz=228746511.1305553974.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); beeg=m6; __utma=228746511.1390051493.1305553974.1305553974.1305553974.1; __utmc=228746511; __utmb=228746511.2.10.1305553974;

Response

HTTP/1.1 200 OK
Server: nginx/0.7.65
Date: Mon, 16 May 2011 14:01:18 GMT
Content-Type: text/html
Connection: close
X-Powered-By: PHP/5.2.5
Content-Length: 278

DB Error: syntax errorSELECT * FROM `sellers_paysites` WHERE `Ps_Code` = 'section'' AND `Name` = 'beeg' [nativecode=1064 ** You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'beeg'' at line 1]

1.14. http://beeg.com/section/teen-sex/2/ [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://beeg.com
Path:   /section/teen-sex/2/

Issue detail

The REST URL parameter 2 appears to be vulnerable to SQL injection attacks. The payload ' was submitted in the REST URL parameter 2, and a database error message was returned. 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 database appears to be MySQL.

Remediation detail

The application should handle errors gracefully and prevent SQL error messages from being returned in responses.

Request

GET /section/teen-sex'/2/ HTTP/1.1
Host: beeg.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Referer: http://beeg.com/section/teen-sex/
Cookie: __utmz=228746511.1305553974.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); beeg=m6; __utma=228746511.1390051493.1305553974.1305553974.1305553974.1; __utmc=228746511; __utmb=228746511.2.10.1305553974;

Response

HTTP/1.1 200 OK
Server: nginx/0.7.65
Date: Mon, 16 May 2011 14:01:19 GMT
Content-Type: text/html
Connection: close
X-Powered-By: PHP/5.2.5
Content-Length: 257

DB Error: syntax errorSELECT * FROM sections WHERE Name_Code LIKE 'teen-sex'' [nativecode=1064 ** You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''teen-sex''' at line 1]

1.15. http://beeg.com/section/teen-sex/2/ [REST URL parameter 3]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://beeg.com
Path:   /section/teen-sex/2/

Issue detail

The REST URL parameter 3 appears to be vulnerable to SQL injection attacks. The payload ' was submitted in the REST URL parameter 3, and a database error message was returned. 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 database appears to be MySQL.

Remediation detail

The application should handle errors gracefully and prevent SQL error messages from being returned in responses.

Request

GET /section/teen-sex/2'/ HTTP/1.1
Host: beeg.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Referer: http://beeg.com/section/teen-sex/
Cookie: __utmz=228746511.1305553974.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); beeg=m6; __utma=228746511.1390051493.1305553974.1305553974.1305553974.1; __utmc=228746511; __utmb=228746511.2.10.1305553974;

Response

HTTP/1.1 200 OK
Server: nginx/0.7.65
Date: Mon, 16 May 2011 14:01:20 GMT
Content-Type: text/html
Connection: close
X-Powered-By: PHP/5.2.5
Content-Length: 242

DB Error: syntax errorSELECT * FROM `sellers` WHERE `Label` LIKE '2'' [nativecode=1064 ** You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''2''' at line 1]

1.16. http://beeg.com/section/teen-sex/2/ [beeg cookie]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://beeg.com
Path:   /section/teen-sex/2/

Issue detail

The beeg cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the beeg cookie, and a database 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 database appears to be MySQL.

Remediation detail

The application should handle errors gracefully and prevent SQL error messages from being returned in responses.

Request 1

GET /section/teen-sex/2/ HTTP/1.1
Host: beeg.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Referer: http://beeg.com/section/teen-sex/
Cookie: __utmz=228746511.1305553974.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); beeg=m6'; __utma=228746511.1390051493.1305553974.1305553974.1305553974.1; __utmc=228746511; __utmb=228746511.2.10.1305553974;

Response 1

HTTP/1.1 200 OK
Server: nginx/0.7.65
Date: Mon, 16 May 2011 14:00:51 GMT
Content-Type: text/html
Connection: close
X-Powered-By: PHP/5.2.5
Content-Length: 244

DB Error: syntax errorSELECT * FROM `cookie` WHERE `cookie` LIKE 'm6'' [nativecode=1064 ** You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''m6''' at line 1]

Request 2

GET /section/teen-sex/2/ HTTP/1.1
Host: beeg.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Referer: http://beeg.com/section/teen-sex/
Cookie: __utmz=228746511.1305553974.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); beeg=m6''; __utma=228746511.1390051493.1305553974.1305553974.1305553974.1; __utmc=228746511; __utmb=228746511.2.10.1305553974;

Response 2

HTTP/1.1 200 OK
Server: nginx/0.7.65
Date: Mon, 16 May 2011 14:00:51 GMT
Content-Type: text/html
Connection: close
X-Powered-By: PHP/5.2.5
Expires: Mon, 26 Jul 1997 05:00:00 GMT
Last-Modified: Mon, 27 Jul 2009 20:32:14 GMT GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-Length: 91571

<!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="Conten
...[SNIP]...

1.17. http://beeg.com/section/teen-sex/3/ [REST URL parameter 1]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://beeg.com
Path:   /section/teen-sex/3/

Issue detail

The REST URL parameter 1 appears to be vulnerable to SQL injection attacks. The payload ' was submitted in the REST URL parameter 1, and a database error message was returned. 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 database appears to be MySQL.

Remediation detail

The application should handle errors gracefully and prevent SQL error messages from being returned in responses.

Request

GET /section'/teen-sex/3/ HTTP/1.1
Host: beeg.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Referer: http://beeg.com/section/teen-sex/
Cookie: __utmz=228746511.1305553974.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); beeg=m6; __utma=228746511.1390051493.1305553974.1305553974.1305553974.1; __utmc=228746511; __utmb=228746511.2.10.1305553974;

Response

HTTP/1.1 200 OK
Server: nginx/0.7.65
Date: Mon, 16 May 2011 14:00:59 GMT
Content-Type: text/html
Connection: close
X-Powered-By: PHP/5.2.5
Content-Length: 278

DB Error: syntax errorSELECT * FROM `sellers_paysites` WHERE `Ps_Code` = 'section'' AND `Name` = 'beeg' [nativecode=1064 ** You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'beeg'' at line 1]

1.18. http://beeg.com/section/teen-sex/3/ [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://beeg.com
Path:   /section/teen-sex/3/

Issue detail

The REST URL parameter 2 appears to be vulnerable to SQL injection attacks. The payload ' was submitted in the REST URL parameter 2, and a database error message was returned. 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 database appears to be MySQL.

Remediation detail

The application should handle errors gracefully and prevent SQL error messages from being returned in responses.

Request

GET /section/teen-sex'/3/ HTTP/1.1
Host: beeg.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Referer: http://beeg.com/section/teen-sex/
Cookie: __utmz=228746511.1305553974.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); beeg=m6; __utma=228746511.1390051493.1305553974.1305553974.1305553974.1; __utmc=228746511; __utmb=228746511.2.10.1305553974;

Response

HTTP/1.1 200 OK
Server: nginx/0.7.65
Date: Mon, 16 May 2011 14:01:00 GMT
Content-Type: text/html
Connection: close
X-Powered-By: PHP/5.2.5
Content-Length: 257

DB Error: syntax errorSELECT * FROM sections WHERE Name_Code LIKE 'teen-sex'' [nativecode=1064 ** You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''teen-sex''' at line 1]

1.19. http://beeg.com/section/teen-sex/3/ [REST URL parameter 3]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://beeg.com
Path:   /section/teen-sex/3/

Issue detail

The REST URL parameter 3 appears to be vulnerable to SQL injection attacks. The payload ' was submitted in the REST URL parameter 3, and a database error message was returned. 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 database appears to be MySQL.

Remediation detail

The application should handle errors gracefully and prevent SQL error messages from being returned in responses.

Request

GET /section/teen-sex/3'/ HTTP/1.1
Host: beeg.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Referer: http://beeg.com/section/teen-sex/
Cookie: __utmz=228746511.1305553974.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); beeg=m6; __utma=228746511.1390051493.1305553974.1305553974.1305553974.1; __utmc=228746511; __utmb=228746511.2.10.1305553974;

Response

HTTP/1.1 200 OK
Server: nginx/0.7.65
Date: Mon, 16 May 2011 14:01:00 GMT
Content-Type: text/html
Connection: close
X-Powered-By: PHP/5.2.5
Content-Length: 242

DB Error: syntax errorSELECT * FROM `sellers` WHERE `Label` LIKE '3'' [nativecode=1064 ** You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''3''' at line 1]

1.20. http://beeg.com/section/teen-sex/3/ [beeg cookie]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://beeg.com
Path:   /section/teen-sex/3/

Issue detail

The beeg cookie appears to be vulnerable to SQL injection attacks. The payload ' was submitted in the beeg cookie, and a database error message was returned. 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 database appears to be MySQL.

Remediation detail

The application should handle errors gracefully and prevent SQL error messages from being returned in responses.

Request

GET /section/teen-sex/3/ HTTP/1.1
Host: beeg.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Referer: http://beeg.com/section/teen-sex/
Cookie: __utmz=228746511.1305553974.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); beeg=m6'; __utma=228746511.1390051493.1305553974.1305553974.1305553974.1; __utmc=228746511; __utmb=228746511.2.10.1305553974;

Response

HTTP/1.1 200 OK
Server: nginx/0.7.65
Date: Mon, 16 May 2011 14:00:46 GMT
Content-Type: text/html
Connection: close
X-Powered-By: PHP/5.2.5
Content-Length: 244

DB Error: syntax errorSELECT * FROM `cookie` WHERE `cookie` LIKE 'm6'' [nativecode=1064 ** You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''m6''' at line 1]

1.21. http://beeg.com/section/uniform/ [REST URL parameter 1]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://beeg.com
Path:   /section/uniform/

Issue detail

The REST URL parameter 1 appears to be vulnerable to SQL injection attacks. The payload ' was submitted in the REST URL parameter 1, and a database error message was returned. 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 database appears to be MySQL.

Remediation detail

The application should handle errors gracefully and prevent SQL error messages from being returned in responses.

Request

GET /section'/uniform/ HTTP/1.1
Host: beeg.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Referer: http://beeg.com/
Cookie: __utmz=228746511.1305553974.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); beeg=s2; __utma=228746511.1390051493.1305553974.1305553974.1305553974.1; __utmc=228746511; __utmb=228746511.2.10.1305553974;

Response

HTTP/1.1 200 OK
Server: nginx/0.7.65
Date: Mon, 16 May 2011 14:01:02 GMT
Content-Type: text/html
Connection: close
X-Powered-By: PHP/5.2.5
Content-Length: 278

DB Error: syntax errorSELECT * FROM `sellers_paysites` WHERE `Ps_Code` = 'section'' AND `Name` = 'beeg' [nativecode=1064 ** You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'beeg'' at line 1]

1.22. http://beeg.com/section/uniform/ [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://beeg.com
Path:   /section/uniform/

Issue detail

The REST URL parameter 2 appears to be vulnerable to SQL injection attacks. The payload ' was submitted in the REST URL parameter 2, and a database error message was returned. 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 database appears to be MySQL.

Remediation detail

The application should handle errors gracefully and prevent SQL error messages from being returned in responses.

Request

GET /section/uniform'/ HTTP/1.1
Host: beeg.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Referer: http://beeg.com/
Cookie: __utmz=228746511.1305553974.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); beeg=s2; __utma=228746511.1390051493.1305553974.1305553974.1305553974.1; __utmc=228746511; __utmb=228746511.2.10.1305553974;

Response

HTTP/1.1 200 OK
Server: nginx/0.7.65
Date: Mon, 16 May 2011 14:01:03 GMT
Content-Type: text/html
Connection: close
X-Powered-By: PHP/5.2.5
Content-Length: 255

DB Error: syntax errorSELECT * FROM sections WHERE Name_Code LIKE 'uniform'' [nativecode=1064 ** You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''uniform''' at line 1]

1.23. http://beeg.com/section/uniform/ [beeg cookie]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://beeg.com
Path:   /section/uniform/

Issue detail

The beeg cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the beeg cookie, and a database 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 database appears to be MySQL.

Remediation detail

The application should handle errors gracefully and prevent SQL error messages from being returned in responses.

Request 1

GET /section/uniform/ HTTP/1.1
Host: beeg.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Referer: http://beeg.com/
Cookie: __utmz=228746511.1305553974.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); beeg=s2'; __utma=228746511.1390051493.1305553974.1305553974.1305553974.1; __utmc=228746511; __utmb=228746511.2.10.1305553974;

Response 1

HTTP/1.1 200 OK
Server: nginx/0.7.65
Date: Mon, 16 May 2011 14:00:47 GMT
Content-Type: text/html
Connection: close
X-Powered-By: PHP/5.2.5
Content-Length: 244

DB Error: syntax errorSELECT * FROM `cookie` WHERE `cookie` LIKE 's2'' [nativecode=1064 ** You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''s2''' at line 1]

Request 2

GET /section/uniform/ HTTP/1.1
Host: beeg.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Referer: http://beeg.com/
Cookie: __utmz=228746511.1305553974.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); beeg=s2''; __utma=228746511.1390051493.1305553974.1305553974.1305553974.1; __utmc=228746511; __utmb=228746511.2.10.1305553974;

Response 2

HTTP/1.1 200 OK
Server: nginx/0.7.65
Date: Mon, 16 May 2011 14:00:47 GMT
Content-Type: text/html
Connection: close
X-Powered-By: PHP/5.2.5
Expires: Mon, 26 Jul 1997 05:00:00 GMT
Last-Modified: Mon, 27 Jul 2009 20:32:14 GMT GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-Length: 44539

<!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="Conten
...[SNIP]...

1.24. http://beeg.com/section/uniform/ [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://beeg.com
Path:   /section/uniform/

Issue detail

The name of an arbitrarily supplied request parameter appears to be vulnerable to SQL injection attacks. The payload ' was submitted in the name of an arbitrarily supplied request parameter, and a database error message was returned. 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 database appears to be MySQL.

Remediation detail

The application should handle errors gracefully and prevent SQL error messages from being returned in responses.

Request

GET /section/uniform/?1'=1 HTTP/1.1
Host: beeg.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Referer: http://beeg.com/
Cookie: __utmz=228746511.1305553974.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); beeg=s2; __utma=228746511.1390051493.1305553974.1305553974.1305553974.1; __utmc=228746511; __utmb=228746511.2.10.1305553974;

Response

HTTP/1.1 200 OK
Server: nginx/0.7.65
Date: Mon, 16 May 2011 14:00:59 GMT
Content-Type: text/html
Connection: close
X-Powered-By: PHP/5.2.5
Content-Length: 242

DB Error: syntax errorSELECT * FROM `sellers` WHERE `Label` LIKE '?1'=1' [nativecode=1064 ** You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''' at line 1]

2. Cross-site scripting (reflected)  previous  next
There are 2 instances of this issue:

Issue background

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

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

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

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

Issue remediation

In most situations where user-controllable data is copied into application responses, cross-site scripting attacks can be prevented using two layers of defences: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.


2.1. http://beeg.com/section/teen-sex/2/ [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://beeg.com
Path:   /section/teen-sex/2/

Issue detail

The name of an arbitrarily supplied request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload fd7cf"><a>58289dd92f0 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.

This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.

Request

GET /section/teen-sex/2/?fd7cf"><a>58289dd92f0=1 HTTP/1.1
Host: beeg.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Referer: http://beeg.com/section/teen-sex/
Cookie: __utmz=228746511.1305553974.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); beeg=m6; __utma=228746511.1390051493.1305553974.1305553974.1305553974.1; __utmc=228746511; __utmb=228746511.2.10.1305553974;

Response

HTTP/1.1 200 OK
Server: nginx/0.7.65
Date: Mon, 16 May 2011 14:01:08 GMT
Content-Type: text/html
Connection: close
X-Powered-By: PHP/5.2.5
Expires: Mon, 26 Jul 1997 05:00:00 GMT
Last-Modified: Mon, 27 Jul 2009 20:32:14 GMT GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-Length: 92615

<!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="Conten
...[SNIP]...
<a href="http://beeg.com/section/teen-sex/1/?fd7cf"><a>58289dd92f0=1" target="_self">
...[SNIP]...

2.2. http://beeg.com/section/teen-sex/3/ [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Firm
Host:   http://beeg.com
Path:   /section/teen-sex/3/

Issue detail

The name of an arbitrarily supplied request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 6ff98"><a>1ce00e1ed61 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response.

This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.

Request

GET /section/teen-sex/3/?6ff98"><a>1ce00e1ed61=1 HTTP/1.1
Host: beeg.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Referer: http://beeg.com/section/teen-sex/
Cookie: __utmz=228746511.1305553974.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); beeg=m6; __utma=228746511.1390051493.1305553974.1305553974.1305553974.1; __utmc=228746511; __utmb=228746511.2.10.1305553974;

Response

HTTP/1.1 200 OK
Server: nginx/0.7.65
Date: Mon, 16 May 2011 14:00:53 GMT
Content-Type: text/html
Connection: close
X-Powered-By: PHP/5.2.5
Expires: Mon, 26 Jul 1997 05:00:00 GMT
Last-Modified: Mon, 27 Jul 2009 20:32:14 GMT GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-Length: 16638

<!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="Conten
...[SNIP]...
<a href="http://beeg.com/section/teen-sex/1/?6ff98"><a>1ce00e1ed61=1" target="_self">
...[SNIP]...

3. Referer-dependent response  previous  next
There are 5 instances of this issue:

Issue description

The application's responses appear to depend systematically on the presence or absence of the Referer header in requests. This behaviour does not necessarily constitute a security vulnerability, and you should investigate the nature of and reason for the differential responses to determine whether a vulnerability is present.

Common explanations for Referer-dependent responses include:

Issue remediation

The Referer header is not a robust foundation on which to build any security measures, such as access controls or defences against cross-site request forgery. Any such measures should be replaced with more secure alternatives that are not vulnerable to Referer spoofing.

If the contents of responses is updated based on Referer data, then the same defences against malicious input should be employed here as for any other kinds of user-supplied data.



3.1. http://beeg.com/  previous  next

Summary

Severity:   Information
Confidence:   Firm
Host:   http://beeg.com
Path:   /

Request 1

GET / HTTP/1.1
Host: beeg.com
Proxy-Connection: keep-alive
Referer: http://beeg.com/section/stylish/
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.68 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: __utmz=228746511.1305553974.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=228746511.1390051493.1305553974.1305553974.1305553974.1; __utmc=228746511; __utmb=228746511.2.10.1305553974; beeg=s2

Response 1

HTTP/1.1 200 OK
Server: nginx/0.7.65
Date: Mon, 16 May 2011 13:55:00 GMT
Content-Type: text/html
Connection: keep-alive
X-Powered-By: PHP/5.2.5
Expires: Mon, 26 Jul 1997 05:00:00 GMT
Last-Modified: Mon, 27 Jul 2009 20:32:14 GMT GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-Length: 41903

<!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="Conten
...[SNIP]...
<a href="http://beeg.com/my-first-sex-teacher/my-spanish-teacher/beeg">
           <img src="http://01.anythumb.com/184x138-my-first-sex-teacher--my-spanish-teacher.jpg" alt="My Spanish teacher" /></a>
           <a href="http://beeg.com/exploited-college-girls/ashton-a-friend-of-maggie/beeg">
           <img src="http://01.anythumb.com/184x138-exploited-college-girls--ashton-a-friend-of-maggie.jpg" alt="Ashton, a friend of Maggie" /></a>
           <a href="http://beeg.com/college-rules/these-students-built-their-own-wheel-of-fun/beeg">
           <img src="http://01.anythumb.com/184x138-college-rules--these-students-built-their-own-wheel-of-fun.jpg" alt="These students built their own wheel of fun" /></a>
           <a href="http://beeg.com/can-he-score/pornstar-capri-cavalli-and-asian-guy/beeg">
           <img src="http://01.anythumb.com/184x138-can-he-score--pornstar-capri-cavalli-and-asian-guy.jpg" alt="Pornstar Capri Cavalli and asian guy" /></a>
           <a href="http://beeg.com/my-friends-hot-mom/i-dont-follow-you-mrs-lauren/beeg">
           <img src="http://01.anythumb.com/184x138-my-friends-hot-mom--i-dont-follow-you-mrs-lauren.jpg" alt="I don't follow you, Mrs. Lauren" /></a>
           <a href="http://beeg.com/dare-dorm/in-a-room-with-five-horny-college-chicks/beeg">
           <img src="http://01.anythumb.com/184x138-dare-dorm--in-a-room-with-five-horny-college-chicks.jpg" alt="In a room with five horny college chicks" /></a>
           <a href="http://beeg.com/college-rules/teens-with-amazing-tits-having-fun/beeg">
           <img src="http://01.anythumb.com/184x138-college-rules--teens-with-amazing-tits-having-fun.jpg" alt="Teens with amazing Tits having fun" /></a>
           <a href="http://beeg.com/brandi-belle/brandi-belle-wants-to-watch/beeg">
           <img src="http://01.anythumb.com/184x138-brandi-belle--brandi-belle-wants-to-watch.jpg" alt="Brandi Belle wants to watch" /></a>
           <a href="http://beeg.com/big-tits-in-uniform/captain-and-his-two-flight-attendants/beeg">
           <img src="http://01.anythumb.com/184x138-big-tits-in-uniform--captain-and-his-two-flight-attendants.jpg" alt="Captain and his
...[SNIP]...

Request 2

GET / HTTP/1.1
Host: beeg.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.68 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: __utmz=228746511.1305553974.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=228746511.1390051493.1305553974.1305553974.1305553974.1; __utmc=228746511; __utmb=228746511.2.10.1305553974; beeg=s2

Response 2

HTTP/1.1 200 OK
Server: nginx/0.7.65
Date: Mon, 16 May 2011 13:55:01 GMT
Content-Type: text/html
Connection: keep-alive
X-Powered-By: PHP/5.2.5
Expires: Mon, 26 Jul 1997 05:00:00 GMT
Last-Modified: Mon, 27 Jul 2009 20:32:14 GMT GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-Length: 41263

<!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="Conten
...[SNIP]...
<a href="http://beeg.com/my-first-sex-teacher/my-spanish-teacher/">
           <img src="http://01.anythumb.com/184x138-my-first-sex-teacher--my-spanish-teacher.jpg" alt="My Spanish teacher" /></a>
           <a href="http://beeg.com/exploited-college-girls/ashton-a-friend-of-maggie/">
           <img src="http://01.anythumb.com/184x138-exploited-college-girls--ashton-a-friend-of-maggie.jpg" alt="Ashton, a friend of Maggie" /></a>
           <a href="http://beeg.com/college-rules/these-students-built-their-own-wheel-of-fun/">
           <img src="http://01.anythumb.com/184x138-college-rules--these-students-built-their-own-wheel-of-fun.jpg" alt="These students built their own wheel of fun" /></a>
           <a href="http://beeg.com/can-he-score/pornstar-capri-cavalli-and-asian-guy/">
           <img src="http://01.anythumb.com/184x138-can-he-score--pornstar-capri-cavalli-and-asian-guy.jpg" alt="Pornstar Capri Cavalli and asian guy" /></a>
           <a href="http://beeg.com/my-friends-hot-mom/i-dont-follow-you-mrs-lauren/">
           <img src="http://01.anythumb.com/184x138-my-friends-hot-mom--i-dont-follow-you-mrs-lauren.jpg" alt="I don't follow you, Mrs. Lauren" /></a>
           <a href="http://beeg.com/dare-dorm/in-a-room-with-five-horny-college-chicks/">
           <img src="http://01.anythumb.com/184x138-dare-dorm--in-a-room-with-five-horny-college-chicks.jpg" alt="In a room with five horny college chicks" /></a>
           <a href="http://beeg.com/college-rules/teens-with-amazing-tits-having-fun/">
           <img src="http://01.anythumb.com/184x138-college-rules--teens-with-amazing-tits-having-fun.jpg" alt="Teens with amazing Tits having fun" /></a>
           <a href="http://beeg.com/brandi-belle/brandi-belle-wants-to-watch/">
           <img src="http://01.anythumb.com/184x138-brandi-belle--brandi-belle-wants-to-watch.jpg" alt="Brandi Belle wants to watch" /></a>
           <a href="http://beeg.com/big-tits-in-uniform/captain-and-his-two-flight-attendants/">
           <img src="http://01.anythumb.com/184x138-big-tits-in-uniform--captain-and-his-two-flight-attendants.jpg" alt="Captain and his two flight attendants" /></a>
           <
...[SNIP]...

3.2. http://beeg.com/section/stylish/  previous  next

Summary

Severity:   Information
Confidence:   Firm
Host:   http://beeg.com
Path:   /section/stylish/

Request 1

GET /section/stylish/ HTTP/1.1
Host: beeg.com
Proxy-Connection: keep-alive
Referer: http://beeg.com/
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.68 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: __utmz=228746511.1305553974.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=228746511.1390051493.1305553974.1305553974.1305553974.1; __utmc=228746511; __utmb=228746511.1.10.1305553974

Response 1

HTTP/1.1 200 OK
Server: nginx/0.7.65
Date: Mon, 16 May 2011 13:54:51 GMT
Content-Type: text/html
Connection: keep-alive
X-Powered-By: PHP/5.2.5
Expires: Mon, 26 Jul 1997 05:00:00 GMT
Last-Modified: Mon, 27 Jul 2009 20:32:14 GMT GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-Length: 95271

<!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="Conten
...[SNIP]...
<a href="http://beeg.com/my-first-sex-teacher/my-spanish-teacher/beeg">
           <img src="http://01.anythumb.com/184x138-my-first-sex-teacher--my-spanish-teacher.jpg" alt="My Spanish teacher" /></a>
           <a href="http://beeg.com/exploited-college-girls/ashton-a-friend-of-maggie/beeg">
           <img src="http://01.anythumb.com/184x138-exploited-college-girls--ashton-a-friend-of-maggie.jpg" alt="Ashton, a friend of Maggie" /></a>
           <a href="http://beeg.com/my-friends-hot-mom/i-dont-follow-you-mrs-lauren/beeg">
           <img src="http://01.anythumb.com/184x138-my-friends-hot-mom--i-dont-follow-you-mrs-lauren.jpg" alt="I don't follow you, Mrs. Lauren" /></a>
           <a href="http://beeg.com/dare-dorm/4-college-girls-having-fun-no-sex/beeg">
           <img src="http://01.anythumb.com/184x138-dare-dorm--4-college-girls-having-fun-no-sex.jpg" alt="4 college girls having fun. No sex" /></a>
           <a href="http://beeg.com/my-wifes-hot-friend/my-wifes-blonde-big-titted-friend/beeg">
           <img src="http://01.anythumb.com/184x138-my-wifes-hot-friend--my-wifes-blonde-big-titted-friend.jpg" alt="My wife's blonde big titted friend" /></a>
           <a href="http://beeg.com/dare-dorm/dorm-room-no-sex/beeg">
           <img src="http://01.anythumb.com/184x138-dare-dorm--dorm-room-no-sex.jpg" alt="Dorm room. No Sex" /></a>
           <a href="http://beeg.com/real-wife-stories/material-girl-gets-fucked-from-behind/beeg">
           <img src="http://01.anythumb.com/184x138-real-wife-stories--material-girl-gets-fucked-from-behind.jpg" alt="Material Girl gets fucked from behind" /></a>
           <a href="http://beeg.com/my-first-sex-teacher/smokin-hot-spanish-teacher/beeg">
           <img src="http://01.anythumb.com/184x138-my-first-sex-teacher--smokin-hot-spanish-teacher.jpg" alt="Smokin' hot Spanish teacher" /></a>
           <a href="http://beeg.com/pornstars-punishment/we-need-to-talk/beeg">
           <img src="http://01.anythumb.com/184x138-pornstars-punishment--we-need-to-talk.jpg" alt="We need to talk" /></a>
           <a href="http://beeg.com/can-he-score/amateur-asian-guy-screwing-capri/beeg">
           <img src="http://0
...[SNIP]...

Request 2

GET /section/stylish/ HTTP/1.1
Host: beeg.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.68 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: __utmz=228746511.1305553974.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=228746511.1390051493.1305553974.1305553974.1305553974.1; __utmc=228746511; __utmb=228746511.1.10.1305553974

Response 2

HTTP/1.1 200 OK
Server: nginx/0.7.65
Date: Mon, 16 May 2011 13:54:56 GMT
Content-Type: text/html
Connection: keep-alive
X-Powered-By: PHP/5.2.5
Expires: Mon, 26 Jul 1997 05:00:00 GMT
Last-Modified: Mon, 27 Jul 2009 20:32:14 GMT GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-Length: 93671

<!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="Conten
...[SNIP]...
<a href="http://beeg.com/my-first-sex-teacher/my-spanish-teacher/">
           <img src="http://01.anythumb.com/184x138-my-first-sex-teacher--my-spanish-teacher.jpg" alt="My Spanish teacher" /></a>
           <a href="http://beeg.com/exploited-college-girls/ashton-a-friend-of-maggie/">
           <img src="http://01.anythumb.com/184x138-exploited-college-girls--ashton-a-friend-of-maggie.jpg" alt="Ashton, a friend of Maggie" /></a>
           <a href="http://beeg.com/my-friends-hot-mom/i-dont-follow-you-mrs-lauren/">
           <img src="http://01.anythumb.com/184x138-my-friends-hot-mom--i-dont-follow-you-mrs-lauren.jpg" alt="I don't follow you, Mrs. Lauren" /></a>
           <a href="http://beeg.com/dare-dorm/4-college-girls-having-fun-no-sex/">
           <img src="http://01.anythumb.com/184x138-dare-dorm--4-college-girls-having-fun-no-sex.jpg" alt="4 college girls having fun. No sex" /></a>
           <a href="http://beeg.com/my-wifes-hot-friend/my-wifes-blonde-big-titted-friend/">
           <img src="http://01.anythumb.com/184x138-my-wifes-hot-friend--my-wifes-blonde-big-titted-friend.jpg" alt="My wife's blonde big titted friend" /></a>
           <a href="http://beeg.com/dare-dorm/dorm-room-no-sex/">
           <img src="http://01.anythumb.com/184x138-dare-dorm--dorm-room-no-sex.jpg" alt="Dorm room. No Sex" /></a>
           <a href="http://beeg.com/real-wife-stories/material-girl-gets-fucked-from-behind/">
           <img src="http://01.anythumb.com/184x138-real-wife-stories--material-girl-gets-fucked-from-behind.jpg" alt="Material Girl gets fucked from behind" /></a>
           <a href="http://beeg.com/my-first-sex-teacher/smokin-hot-spanish-teacher/">
           <img src="http://01.anythumb.com/184x138-my-first-sex-teacher--smokin-hot-spanish-teacher.jpg" alt="Smokin' hot Spanish teacher" /></a>
           <a href="http://beeg.com/pornstars-punishment/we-need-to-talk/">
           <img src="http://01.anythumb.com/184x138-pornstars-punishment--we-need-to-talk.jpg" alt="We need to talk" /></a>
           <a href="http://beeg.com/can-he-score/amateur-asian-guy-screwing-capri/">
           <img src="http://01.anythumb.com/184x138-can-he-score--ama
...[SNIP]...

3.3. http://beeg.com/section/teen-sex/2/  previous  next

Summary

Severity:   Information
Confidence:   Firm
Host:   http://beeg.com
Path:   /section/teen-sex/2/

Request 1

GET /section/teen-sex/2/ HTTP/1.1
Host: beeg.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Referer: http://beeg.com/section/teen-sex/
Cookie: __utmz=228746511.1305553974.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); beeg=m6; __utma=228746511.1390051493.1305553974.1305553974.1305553974.1; __utmc=228746511; __utmb=228746511.2.10.1305553974;

Response 1

HTTP/1.1 200 OK
Server: nginx/0.7.65
Date: Mon, 16 May 2011 14:00:43 GMT
Content-Type: text/html
Connection: close
X-Powered-By: PHP/5.2.5
Expires: Mon, 26 Jul 1997 05:00:00 GMT
Last-Modified: Mon, 27 Jul 2009 20:32:14 GMT GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-Length: 92567

<!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="Conten
...[SNIP]...
<a href="http://beeg.com/mikes-apartment/amazingly-beautiful-russian-guest/beeg">
           <img src="http://01.anythumb.com/240x180-mikes-apartment--amazingly-beautiful-russian-guest.jpg" alt="Amazingly beautiful Russian guest" /></a>
           <a href="http://beeg.com/dare-dorm/smoking-hot-babe-and-her-buff-boyfriend/beeg">
           <img src="http://01.anythumb.com/240x180-dare-dorm--smoking-hot-babe-and-her-buff-boyfriend.jpg" alt="Smoking hot babe and her buff boyfriend" /></a>
           <a href="http://beeg.com/fucked-hard-18/stephanie-by-her-massagist/beeg">
           <img src="http://01.anythumb.com/240x180-fucked-hard-18--stephanie-by-her-massagist.jpg" alt="Stephanie by her Massagist" /></a>
           <a href="http://beeg.com/cum-fiesta/cute-victoria-teasing-and-fucking/beeg">
           <img src="http://01.anythumb.com/240x180-cum-fiesta--cute-victoria-teasing-and-fucking.jpg" alt="Cute Victoria teasing and fucking" /></a>
           <a href="http://beeg.com/free/small-titted-petite-european-teen-gets-her-ass-fucked/beeg">
           <img src="http://01.anythumb.com/240x180-free--small-titted-petite-european-teen-gets-her-ass-fucked.jpg" alt="Small titted petite European teen gets her ass fucked." /></a>
           <a href="http://beeg.com/twistys/cute-dani-having-oral-sex/beeg">
           <img src="http://01.anythumb.com/240x180-twistys--cute-dani-having-oral-sex.jpg" alt="Cute Dani having oral sex" /></a>
           <a href="http://beeg.com/my-sisters-hot-friend/sexy-blonde-in-my-backyard/beeg">
           <img src="http://01.anythumb.com/240x180-my-sisters-hot-friend--sexy-blonde-in-my-backyard.jpg" alt="Sexy blonde in my backyard" /></a>
           <a href="http://beeg.com/money-talks/eat-this-we-pay/beeg">
           <img src="http://01.anythumb.com/240x180-money-talks--eat-this-we-pay.jpg" alt="Eat this, we PAY!" /></a>
           <a href="http://beeg.com/fucked-hard-18/hard-thrusting-after-massage-good-ass/beeg">
           <img src="http://01.anythumb.com/240x180-fucked-hard-18--hard-thrusting-after-massage-good-ass.jpg" alt="Hard thrusting after massage. Good ass" /></a>
           <a href="http://beeg.com/free/two-shy-teens-on
...[SNIP]...

Request 2

GET /section/teen-sex/2/ HTTP/1.1
Host: beeg.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=228746511.1305553974.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); beeg=m6; __utma=228746511.1390051493.1305553974.1305553974.1305553974.1; __utmc=228746511; __utmb=228746511.2.10.1305553974;

Response 2

HTTP/1.1 200 OK
Server: nginx/0.7.65
Date: Mon, 16 May 2011 14:00:45 GMT
Content-Type: text/html
Connection: close
X-Powered-By: PHP/5.2.5
Expires: Mon, 26 Jul 1997 05:00:00 GMT
Last-Modified: Mon, 27 Jul 2009 20:32:14 GMT GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-Length: 91127

<!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="Conten
...[SNIP]...
<a href="http://beeg.com/mikes-apartment/amazingly-beautiful-russian-guest/">
           <img src="http://01.anythumb.com/240x180-mikes-apartment--amazingly-beautiful-russian-guest.jpg" alt="Amazingly beautiful Russian guest" /></a>
           <a href="http://beeg.com/dare-dorm/smoking-hot-babe-and-her-buff-boyfriend/">
           <img src="http://01.anythumb.com/240x180-dare-dorm--smoking-hot-babe-and-her-buff-boyfriend.jpg" alt="Smoking hot babe and her buff boyfriend" /></a>
           <a href="http://beeg.com/fucked-hard-18/stephanie-by-her-massagist/">
           <img src="http://01.anythumb.com/240x180-fucked-hard-18--stephanie-by-her-massagist.jpg" alt="Stephanie by her Massagist" /></a>
           <a href="http://beeg.com/cum-fiesta/cute-victoria-teasing-and-fucking/">
           <img src="http://01.anythumb.com/240x180-cum-fiesta--cute-victoria-teasing-and-fucking.jpg" alt="Cute Victoria teasing and fucking" /></a>
           <a href="http://beeg.com/free/small-titted-petite-european-teen-gets-her-ass-fucked/">
           <img src="http://01.anythumb.com/240x180-free--small-titted-petite-european-teen-gets-her-ass-fucked.jpg" alt="Small titted petite European teen gets her ass fucked." /></a>
           <a href="http://beeg.com/twistys/cute-dani-having-oral-sex/">
           <img src="http://01.anythumb.com/240x180-twistys--cute-dani-having-oral-sex.jpg" alt="Cute Dani having oral sex" /></a>
           <a href="http://beeg.com/my-sisters-hot-friend/sexy-blonde-in-my-backyard/">
           <img src="http://01.anythumb.com/240x180-my-sisters-hot-friend--sexy-blonde-in-my-backyard.jpg" alt="Sexy blonde in my backyard" /></a>
           <a href="http://beeg.com/money-talks/eat-this-we-pay/">
           <img src="http://01.anythumb.com/240x180-money-talks--eat-this-we-pay.jpg" alt="Eat this, we PAY!" /></a>
           <a href="http://beeg.com/fucked-hard-18/hard-thrusting-after-massage-good-ass/">
           <img src="http://01.anythumb.com/240x180-fucked-hard-18--hard-thrusting-after-massage-good-ass.jpg" alt="Hard thrusting after massage. Good ass" /></a>
           <a href="http://beeg.com/free/two-shy-teens-one-fucks-second-supports/">
           <img
...[SNIP]...

3.4. http://beeg.com/section/teen-sex/3/  previous  next

Summary

Severity:   Information
Confidence:   Firm
Host:   http://beeg.com
Path:   /section/teen-sex/3/

Request 1

GET /section/teen-sex/3/ HTTP/1.1
Host: beeg.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Referer: http://beeg.com/section/teen-sex/
Cookie: __utmz=228746511.1305553974.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); beeg=m6; __utma=228746511.1390051493.1305553974.1305553974.1305553974.1; __utmc=228746511; __utmb=228746511.2.10.1305553974;

Response 1

HTTP/1.1 200 OK
Server: nginx/0.7.65
Date: Mon, 16 May 2011 14:00:43 GMT
Content-Type: text/html
Connection: close
X-Powered-By: PHP/5.2.5
Expires: Mon, 26 Jul 1997 05:00:00 GMT
Last-Modified: Mon, 27 Jul 2009 20:32:14 GMT GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-Length: 16590

<!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="Conten
...[SNIP]...
<a href="http://beeg.com/mikes-apartment/super-cute-czech-teen-gets-slowly-fucked/beeg">
           <img src="http://01.anythumb.com/240x180-mikes-apartment--super-cute-czech-teen-gets-slowly-fucked.jpg" alt="Super cute Czech teen gets slowly fucked" /></a>
           <a href="http://beeg.com/pure-18/no-gas-no-money-just-3-teen-pussies/beeg">
           <img src="http://01.anythumb.com/240x180-pure-18--no-gas-no-money-just-3-teen-pussies.jpg" alt="No gas... no money... just 3 teen pussies!" /></a>
           <a href="http://beeg.com/pure-18/no-gas-no-money-but-3-pussies/beeg">
           <img src="http://01.anythumb.com/240x180-pure-18--no-gas-no-money-but-3-pussies.jpg" alt="No gas... no money... but 3 pussies!" /></a>
           <a href="http://beeg.com/free/lela-star-gets-her-pierced-teen-pussy-fucked/beeg">
           <img src="http://01.anythumb.com/240x180-free--lela-star-gets-her-pierced-teen-pussy-fucked.jpg" alt="Lela Star gets her pierced teen pussy fucked" /></a>
           <a href="http://beeg.com/free/super-sweet-shy-european-teen-having-anal-sex/beeg">
           <img src="http://01.anythumb.com/240x180-free--super-sweet-shy-european-teen-having-anal-sex.jpg" alt="Super sweet shy european teen having anal sex" /></a>
           <a href="http://beeg.com/free/green-eyed-european-sweet-teen-brought-home-and-fucked/beeg">
           <img src="http://01.anythumb.com/240x180-free--green-eyed-european-sweet-teen-brought-home-and-fucked.jpg" alt="Green eyed European sweet teen brought home & fucked" /></a>
           <a href="http://beeg.com/free/a-cute-sexy-brunette-schoolgirl-having-sex/beeg">
           <img src="http://01.anythumb.com/240x180-free--a-cute-sexy-brunette-schoolgirl-having-sex.jpg" alt="A cute sexy brunette schoolgirl having sex" /></a>
           <a href="http://beeg.com/mikes-apartment/super-cute-czech-bathing-and-fucking-her-boyfriend/beeg">
           <img src="http://01.anythumb.com/240x180-mikes-apartment--super-cute-czech-bathing-and-fucking-her-boyfriend.jpg" alt="Super cute Czech bathing & fucking her boyfriend" /></a>
           <a href="http://beeg.com/free/addison-rose-gets-fucked-and-spermed-on-camera/beeg">
       
...[SNIP]...

Request 2

GET /section/teen-sex/3/ HTTP/1.1
Host: beeg.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=228746511.1305553974.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); beeg=m6; __utma=228746511.1390051493.1305553974.1305553974.1305553974.1; __utmc=228746511; __utmb=228746511.2.10.1305553974;

Response 2

HTTP/1.1 200 OK
Server: nginx/0.7.65
Date: Mon, 16 May 2011 14:00:44 GMT
Content-Type: text/html
Connection: close
X-Powered-By: PHP/5.2.5
Expires: Mon, 26 Jul 1997 05:00:00 GMT
Last-Modified: Mon, 27 Jul 2009 20:32:14 GMT GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-Length: 16466

<!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="Conten
...[SNIP]...
<a href="http://beeg.com/mikes-apartment/super-cute-czech-teen-gets-slowly-fucked/">
           <img src="http://01.anythumb.com/240x180-mikes-apartment--super-cute-czech-teen-gets-slowly-fucked.jpg" alt="Super cute Czech teen gets slowly fucked" /></a>
           <a href="http://beeg.com/pure-18/no-gas-no-money-just-3-teen-pussies/">
           <img src="http://01.anythumb.com/240x180-pure-18--no-gas-no-money-just-3-teen-pussies.jpg" alt="No gas... no money... just 3 teen pussies!" /></a>
           <a href="http://beeg.com/pure-18/no-gas-no-money-but-3-pussies/">
           <img src="http://01.anythumb.com/240x180-pure-18--no-gas-no-money-but-3-pussies.jpg" alt="No gas... no money... but 3 pussies!" /></a>
           <a href="http://beeg.com/free/lela-star-gets-her-pierced-teen-pussy-fucked/">
           <img src="http://01.anythumb.com/240x180-free--lela-star-gets-her-pierced-teen-pussy-fucked.jpg" alt="Lela Star gets her pierced teen pussy fucked" /></a>
           <a href="http://beeg.com/free/super-sweet-shy-european-teen-having-anal-sex/">
           <img src="http://01.anythumb.com/240x180-free--super-sweet-shy-european-teen-having-anal-sex.jpg" alt="Super sweet shy european teen having anal sex" /></a>
           <a href="http://beeg.com/free/green-eyed-european-sweet-teen-brought-home-and-fucked/">
           <img src="http://01.anythumb.com/240x180-free--green-eyed-european-sweet-teen-brought-home-and-fucked.jpg" alt="Green eyed European sweet teen brought home & fucked" /></a>
           <a href="http://beeg.com/free/a-cute-sexy-brunette-schoolgirl-having-sex/">
           <img src="http://01.anythumb.com/240x180-free--a-cute-sexy-brunette-schoolgirl-having-sex.jpg" alt="A cute sexy brunette schoolgirl having sex" /></a>
           <a href="http://beeg.com/mikes-apartment/super-cute-czech-bathing-and-fucking-her-boyfriend/">
           <img src="http://01.anythumb.com/240x180-mikes-apartment--super-cute-czech-bathing-and-fucking-her-boyfriend.jpg" alt="Super cute Czech bathing & fucking her boyfriend" /></a>
           <a href="http://beeg.com/free/addison-rose-gets-fucked-and-spermed-on-camera/">
           <img src="http://01.anythumb.com/24
...[SNIP]...

3.5. http://beeg.com/section/uniform/  previous  next

Summary

Severity:   Information
Confidence:   Firm
Host:   http://beeg.com
Path:   /section/uniform/

Request 1

GET /section/uniform/ HTTP/1.1
Host: beeg.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Referer: http://beeg.com/
Cookie: __utmz=228746511.1305553974.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); beeg=s2; __utma=228746511.1390051493.1305553974.1305553974.1305553974.1; __utmc=228746511; __utmb=228746511.2.10.1305553974;

Response 1

HTTP/1.1 200 OK
Server: nginx/0.7.65
Date: Mon, 16 May 2011 14:00:43 GMT
Content-Type: text/html
Connection: close
X-Powered-By: PHP/5.2.5
Expires: Mon, 26 Jul 1997 05:00:00 GMT
Last-Modified: Mon, 27 Jul 2009 20:32:14 GMT GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-Length: 41105

<!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="Conten
...[SNIP]...
<a href="http://beeg.com/big-tits-in-uniform/captain-and-his-two-flight-attendants/beeg">
           <img src="http://01.anythumb.com/184x138-big-tits-in-uniform--captain-and-his-two-flight-attendants.jpg" alt="Captain and his two flight attendants" /></a>
           <a href="http://beeg.com/big-tits-in-uniform/take-it-off/beeg">
           <img src="http://01.anythumb.com/184x138-big-tits-in-uniform--take-it-off.jpg" alt="Take it off!" /></a>
           <a href="http://beeg.com/naughty-office/ann-marie-is-solving-the-troubles/beeg">
           <img src="http://01.anythumb.com/184x138-naughty-office--ann-marie-is-solving-the-troubles.jpg" alt="Ann Marie is solving the troubles" /></a>
           <a href="http://beeg.com/big-tits-in-uniform/a-security-guard-gets-fucked/beeg">
           <img src="http://01.anythumb.com/184x138-big-tits-in-uniform--a-security-guard-gets-fucked.jpg" alt="A security guard gets fucked" /></a>
           <a href="http://beeg.com/doctor-adventures/im-a-doctor-now/beeg">
           <img src="http://01.anythumb.com/184x138-doctor-adventures--im-a-doctor-now.jpg" alt="I'm a doctor now!" /></a>
           <a href="http://beeg.com/big-tits-in-uniform/busty-delivery-girl-aletta/beeg">
           <img src="http://01.anythumb.com/184x138-big-tits-in-uniform--busty-delivery-girl-aletta.jpg" alt="Busty Delivery girl Aletta" /></a>
           <a href="http://beeg.com/naughty-office/theres-nothing-to-do-but-to-get-on-her-knees/beeg">
           <img src="http://01.anythumb.com/184x138-naughty-office--theres-nothing-to-do-but-to-get-on-her-knees.jpg" alt="There's nothing to do but to get on her knees" /></a>
           <a href="http://beeg.com/big-tits-in-uniform/sexy-security-guard/beeg">
           <img src="http://01.anythumb.com/184x138-big-tits-in-uniform--sexy-security-guard.jpg" alt="Sexy security guard" /></a>
           <a href="http://beeg.com/doctor-adventures/doctor-taylor-and-a-new-intern/beeg">
           <img src="http://01.anythumb.com/184x138-doctor-adventures--doctor-taylor-and-a-new-intern.jpg" alt="Doctor Taylor and a new intern" /></a>
           <a href="http://beeg.com/doctor-adventures/hardcored-nurse/beeg">
           <img src="ht
...[SNIP]...

Request 2

GET /section/uniform/ HTTP/1.1
Host: beeg.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Cookie: __utmz=228746511.1305553974.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); beeg=s2; __utma=228746511.1390051493.1305553974.1305553974.1305553974.1; __utmc=228746511; __utmb=228746511.2.10.1305553974;

Response 2

HTTP/1.1 200 OK
Server: nginx/0.7.65
Date: Mon, 16 May 2011 14:00:44 GMT
Content-Type: text/html
Connection: close
X-Powered-By: PHP/5.2.5
Expires: Mon, 26 Jul 1997 05:00:00 GMT
Last-Modified: Mon, 27 Jul 2009 20:32:14 GMT GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-Length: 40485

<!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="Conten
...[SNIP]...
<a href="http://beeg.com/big-tits-in-uniform/captain-and-his-two-flight-attendants/">
           <img src="http://01.anythumb.com/184x138-big-tits-in-uniform--captain-and-his-two-flight-attendants.jpg" alt="Captain and his two flight attendants" /></a>
           <a href="http://beeg.com/big-tits-in-uniform/take-it-off/">
           <img src="http://01.anythumb.com/184x138-big-tits-in-uniform--take-it-off.jpg" alt="Take it off!" /></a>
           <a href="http://beeg.com/naughty-office/ann-marie-is-solving-the-troubles/">
           <img src="http://01.anythumb.com/184x138-naughty-office--ann-marie-is-solving-the-troubles.jpg" alt="Ann Marie is solving the troubles" /></a>
           <a href="http://beeg.com/big-tits-in-uniform/a-security-guard-gets-fucked/">
           <img src="http://01.anythumb.com/184x138-big-tits-in-uniform--a-security-guard-gets-fucked.jpg" alt="A security guard gets fucked" /></a>
           <a href="http://beeg.com/doctor-adventures/im-a-doctor-now/">
           <img src="http://01.anythumb.com/184x138-doctor-adventures--im-a-doctor-now.jpg" alt="I'm a doctor now!" /></a>
           <a href="http://beeg.com/big-tits-in-uniform/busty-delivery-girl-aletta/">
           <img src="http://01.anythumb.com/184x138-big-tits-in-uniform--busty-delivery-girl-aletta.jpg" alt="Busty Delivery girl Aletta" /></a>
           <a href="http://beeg.com/naughty-office/theres-nothing-to-do-but-to-get-on-her-knees/">
           <img src="http://01.anythumb.com/184x138-naughty-office--theres-nothing-to-do-but-to-get-on-her-knees.jpg" alt="There's nothing to do but to get on her knees" /></a>
           <a href="http://beeg.com/big-tits-in-uniform/sexy-security-guard/">
           <img src="http://01.anythumb.com/184x138-big-tits-in-uniform--sexy-security-guard.jpg" alt="Sexy security guard" /></a>
           <a href="http://beeg.com/doctor-adventures/doctor-taylor-and-a-new-intern/">
           <img src="http://01.anythumb.com/184x138-doctor-adventures--doctor-taylor-and-a-new-intern.jpg" alt="Doctor Taylor and a new intern" /></a>
           <a href="http://beeg.com/doctor-adventures/hardcored-nurse/">
           <img src="http://01.anythumb.com/184x138-doctor-adve
...[SNIP]...

4. Cross-domain script include  previous
There are 6 instances of this issue:

Issue background

When an application includes a script from an external domain, this script is executed by the browser within the security context of the invoking application. The script can therefore do anything that the application's own scripts can do, such as accessing application data and performing actions within the context of the current user.

If you include a script from an external domain, then you are trusting that domain with the data and functionality of your application, and you are trusting the domain's own security to prevent an attacker from modifying the script to perform malicious actions within your application.

Issue remediation

Scripts should not be included from untrusted domains. If you have a requirement which a third-party script appears to fulfil, then you should ideally copy the contents of that script onto your own domain and include it from there. If that is not possible (e.g. for licensing reasons) then you should consider reimplementing the script's functionality within your own code.


4.1. http://beeg.com/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://beeg.com
Path:   /

Issue detail

The response dynamically includes the following script from another domain:

Request

GET / HTTP/1.1
Host: beeg.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.68 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3

Response

HTTP/1.1 200 OK
Server: nginx/0.7.65
Date: Mon, 16 May 2011 13:52:50 GMT
Content-Type: text/html
Connection: keep-alive
X-Powered-By: PHP/5.2.5
Expires: Mon, 26 Jul 1997 05:00:00 GMT
Last-Modified: Mon, 27 Jul 2009 20:32:14 GMT GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-Length: 94128

<!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="Conten
...[SNIP]...
</script> -->
<script type="text/javascript" src="http://staticloads.com/scripts/toggle.js"></script>
...[SNIP]...

4.2. http://beeg.com/my-wifes-hot-friend/my-wifes-blonde-big-titted-friend/beeg  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://beeg.com
Path:   /my-wifes-hot-friend/my-wifes-blonde-big-titted-friend/beeg

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /my-wifes-hot-friend/my-wifes-blonde-big-titted-friend/beeg HTTP/1.1
Host: beeg.com
Proxy-Connection: keep-alive
Referer: http://beeg.com/section/stylish/
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.68 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: __utmz=228746511.1305553974.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=228746511.1390051493.1305553974.1305553974.1305553974.1; __utmc=228746511; __utmb=228746511.2.10.1305553974

Response

HTTP/1.1 200 OK
Server: nginx/0.7.65
Date: Mon, 16 May 2011 13:55:00 GMT
Content-Type: text/html
Connection: keep-alive
X-Powered-By: PHP/5.2.5
Expires: Mon, 26 Jul 1997 05:00:00 GMT
Last-Modified: Mon, 27 Jul 2009 20:32:14 GMT GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-Length: 12026

<!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="Conten
...[SNIP]...
<!-- MYSTREAMSERVICE.COM EMBED PLAYER START -->

<script type='text/javascript' src='http://staticloads.com/player-jw.5.1.897.xzxzxz/swfobject.js'></script>
...[SNIP]...

4.3. http://beeg.com/section/stylish/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://beeg.com
Path:   /section/stylish/

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /section/stylish/ HTTP/1.1
Host: beeg.com
Proxy-Connection: keep-alive
Referer: http://beeg.com/
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.68 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: __utmz=228746511.1305553974.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=228746511.1390051493.1305553974.1305553974.1305553974.1; __utmc=228746511; __utmb=228746511.1.10.1305553974

Response

HTTP/1.1 200 OK
Server: nginx/0.7.65
Date: Mon, 16 May 2011 13:54:51 GMT
Content-Type: text/html
Connection: keep-alive
X-Powered-By: PHP/5.2.5
Expires: Mon, 26 Jul 1997 05:00:00 GMT
Last-Modified: Mon, 27 Jul 2009 20:32:14 GMT GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-Length: 95271

<!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="Conten
...[SNIP]...
</script> -->
<script type="text/javascript" src="http://staticloads.com/scripts/toggle.js"></script>
...[SNIP]...

4.4. http://beeg.com/section/teen-sex/2/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://beeg.com
Path:   /section/teen-sex/2/

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /section/teen-sex/2/ HTTP/1.1
Host: beeg.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Referer: http://beeg.com/section/teen-sex/
Cookie: __utmz=228746511.1305553974.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); beeg=m6; __utma=228746511.1390051493.1305553974.1305553974.1305553974.1; __utmc=228746511; __utmb=228746511.2.10.1305553974;

Response

HTTP/1.1 200 OK
Server: nginx/0.7.65
Date: Mon, 16 May 2011 14:00:43 GMT
Content-Type: text/html
Connection: close
X-Powered-By: PHP/5.2.5
Expires: Mon, 26 Jul 1997 05:00:00 GMT
Last-Modified: Mon, 27 Jul 2009 20:32:14 GMT GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-Length: 92567

<!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="Conten
...[SNIP]...
</script> -->
<script type="text/javascript" src="http://staticloads.com/scripts/toggle.js"></script>
...[SNIP]...

4.5. http://beeg.com/section/teen-sex/3/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://beeg.com
Path:   /section/teen-sex/3/

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /section/teen-sex/3/ HTTP/1.1
Host: beeg.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Referer: http://beeg.com/section/teen-sex/
Cookie: __utmz=228746511.1305553974.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); beeg=m6; __utma=228746511.1390051493.1305553974.1305553974.1305553974.1; __utmc=228746511; __utmb=228746511.2.10.1305553974;

Response

HTTP/1.1 200 OK
Server: nginx/0.7.65
Date: Mon, 16 May 2011 14:00:43 GMT
Content-Type: text/html
Connection: close
X-Powered-By: PHP/5.2.5
Expires: Mon, 26 Jul 1997 05:00:00 GMT
Last-Modified: Mon, 27 Jul 2009 20:32:14 GMT GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-Length: 16590

<!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="Conten
...[SNIP]...
</script> -->
<script type="text/javascript" src="http://staticloads.com/scripts/toggle.js"></script>
...[SNIP]...

4.6. http://beeg.com/section/uniform/  previous

Summary

Severity:   Information
Confidence:   Certain
Host:   http://beeg.com
Path:   /section/uniform/

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /section/uniform/ HTTP/1.1
Host: beeg.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close
Referer: http://beeg.com/
Cookie: __utmz=228746511.1305553974.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); beeg=s2; __utma=228746511.1390051493.1305553974.1305553974.1305553974.1; __utmc=228746511; __utmb=228746511.2.10.1305553974;

Response

HTTP/1.1 200 OK
Server: nginx/0.7.65
Date: Mon, 16 May 2011 14:00:43 GMT
Content-Type: text/html
Connection: close
X-Powered-By: PHP/5.2.5
Expires: Mon, 26 Jul 1997 05:00:00 GMT
Last-Modified: Mon, 27 Jul 2009 20:32:14 GMT GMT
Cache-Control: no-store, no-cache, must-revalidate
Cache-Control: post-check=0, pre-check=0
Pragma: no-cache
Content-Length: 41105

<!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="Conten
...[SNIP]...
</script> -->
<script type="text/javascript" src="http://staticloads.com/scripts/toggle.js"></script>
...[SNIP]...

Report generated by XSS.CX at Mon May 16 09:02:36 CDT 2011.