This site is the archived OWASP Foundation Wiki and is no longer accepting Account Requests.
To view the new OWASP Foundation website, please visit https://owasp.org
Test Web Messaging (OTG-CLIENT-011)
This article is part of the new OWASP Testing Guide v4.
Back to the OWASP Testing Guide v4 ToC: https://www.owasp.org/index.php/OWASP_Testing_Guide_v4_Table_of_Contents Back to the OWASP Testing Guide Project: https://www.owasp.org/index.php/OWASP_Testing_Project
Brief Summary
Web Messaging also known as Cross Document Mesaging allow applications running in different domains to comunicate in a secure manner. Before the introduction of web messaging the communication of different origins (between iframes, tabs and windows) was restricted by the same origin policy enforced by the browser, however developers used multiple hacks in order to accomplish this tasks that were mainly insecure.
This restriction within the browser is in place to restrict a malicious website to read confidential data from other iframes, tabs, etc, however there are some legitimate cases where two trusted websites need to exchange data between each other. To meet this need Cross Document Messaging was introduced withint he WHATWG HTML5 draft specification and implemented in all major browsers. It enables secure communication between multiple origins across iframes, tabs and windows.
The Messaging API introduced thepostMessage()method, with which plain-text messages can be sent cross-origin. It consists of two parameters, message and domain. There are some security concerns when using '*' as the domain that we discuss below. Then, in order to receive messages the receiving website needs to add a new event handler, and has the following attributes:
data: The content of the incoming message origin: The origin of the sender document. source: source window
Let's see an example:
Send message: iframe1.contentWindow.postMessage(“Hello world”,”http://www.example.com”); Receive message: window.addEventListener(“message”, handler, true); function handler(event) { if(event.origin === 'chat.example.com') { /* process message (event.data) */ } else { /* ignore messages from untrusted domains */ } }
Description of the Issue
Origin Security Concept
The origin is made up of a scheme, hostname and port and identifies uniquely the domain sending or receiving the message, it does not include the path or the fragment part of the url. For instance, https://example.com/ will be considered different from http://example.com because the schema in the first case is https and in the second http, same applies to webservers running in the same domain but different port. From a security perspective we should check whether the code is filtering and processing messages from trusted domains only, normally the best way to accomplish that is using a whitelist. Also within the sending domain, we also want to make sure they are explicity stating the receiving domain and not '*' as the second argument of postMessage() as this practise could introduce security concerns too, and could lead to, in the case of a redirection or the origin changes by other means, the website sending data to unknown hosts, and therefore, leaking confidential data to malicious servers.
In the case a developer failed to add security controls to restrict the domains or origins that can send messages to a website most likely will introduce a security risks so it is very interesting part of the code from a penetration testing point of view. We should scan the code for message listeners, and get the callback function from theaddEventListenermethod to further analysis as domains must be always verified prior data manipulation.
event.data input validation
eval()or inserted into the DOM via the
innerHTMLproperty as that would create a DOM-based XSS vulnerability.
Black Box testing and example
Vulnerable code example:
Access needed for every subdomain (www, chat, forums, ...) window.addEventListener(“message”, callback, true); function callback(e) { </b>if(e.origin.indexOf(".owasp.org")!=-1) {<b> /* process message (e.data) */ } }
The intention is to allow subdomains in this form:
www.owasp.org chat.owasp.org forums.owasp.org ...
Insecure code. An attacker can easily bypass the filter as www.owasp.org.attacker.com will match
Example of lack of origin check, very insecure as will accept input from any domain:
window.addEventListener(“message”, callback, true); function callback(e) { /* process message (e.data) */ }
Input validation example: XSS
window.addEventListener(“message”, callback, true); function callback(e) { if(e.origin === "trusted.domain.com") { <b>element.innerHTML= e.data;</b> } }
This code will lead to Cross-Site Scripting (XSS) vulnerabiltiies as data is not being trated properly, a more secure approach would be to use the property textContent instead of innetHTML.
References
Whitepapers
http://www.whatwg.org/specs/web-apps/current-work/multipage/web-messaging.html
...
Tools
...