UnsafeWindow: Difference between revisions

From GreaseSpot Wiki
Jump to navigationJump to search
(→‎Description: Reworded, clarified, expanded)
(New section: Alternatives to unsafeWindow)
Line 20: Line 20:


  unsafeWindow.document.TestFunction("Test")
  unsafeWindow.document.TestFunction("Test")
= Alternatives to unsafeWindow =
If a user script must execute a page function, it can use the '''location hack''' to call it safely. This involves setting location.href to a <code>javascript:</code> URL, which is like using a bookmarklet. For example:
location.href = 'javascript:void(pageFunc(123));';
Larger blocks of code can also be executed this way:
location.href = 'javascript:(' + encodeURI(uneval(function() {
  // some code
})) + ')();';
This code will run in the page context without leaking the [[sandbox]]. This code is completely separate from the rest of the script scope, sometimes limiting its usefulness. For example, data cannot be returned by the function.
Another drawback is that this technique is rather ugly. Still, it is preferred over unsafeWindow.

Revision as of 02:22, 7 November 2006

Template:Lowercase

This command can open certain security holes in your user script, and it is recommended to use this command sparingly.

Please be sure to read the entire article and understand it before using it in a script.


Syntax

unsafeWindow

Description

User scripts can use this object to access "custom" properties--variable and functions defined in the page--set by the web page. This is done by bypassing Greasemonkey's XPCNativeWrapper-based security model. unsafeWindow is shorthand for window.wrappedJSObject; it is the raw window object inside the XPCNativeWrapper provided by the Greasemonkey sandbox.

unsafeWindow is insecure, and should be avoided when possible. User scripts absolutely should not use unsafeWindow if they are executed for arbitrary web pages, such as those with @include *.

Examples

unsafeWindow.document.title="Testing"
unsafeWindow.TestVarCreatedByDocument="Testing"
unsafeWindow.document.TestFunction("Test")

Alternatives to unsafeWindow

If a user script must execute a page function, it can use the location hack to call it safely. This involves setting location.href to a javascript: URL, which is like using a bookmarklet. For example:

location.href = 'javascript:void(pageFunc(123));';

Larger blocks of code can also be executed this way:

location.href = 'javascript:(' + encodeURI(uneval(function() {
  // some code
})) + ')();';

This code will run in the page context without leaking the sandbox. This code is completely separate from the rest of the script scope, sometimes limiting its usefulness. For example, data cannot be returned by the function.

Another drawback is that this technique is rather ugly. Still, it is preferred over unsafeWindow.