...
Nashorn supports 'load' builtin extension function. This can be called from a script to load another script from a URL or a File. When script is loaded with "load" call, Nashorn associates URL/File origin to the script and therefore permissions are granted as per the current security policy. This is another way to grant security permissions to specific scripts. loadWithNewGlobal is another nashorn builtin extension function. This can also be used to load script from a URL or a File. Nashorn will associate script URL/File origin to the script and so permissions are granted as per the current security policy.
Summary of various ways of loading/evaluating scripts and security implications:
- javax.script API. The script code submitted via APIs engine.eval(String) and engine.eval(Reader): These scripts are always treated as sandbox code - except for jdk.nashorn.api.scripting.URLReader. If you pass URLReader, script origin based on that URL associated is used. So, security permissions are based on the script origin URL.
- Calling ECMAScript "eval" builtin function. In this case, script : Script is treated as "sandbox" and hence gets only sandbox permissions.
- Calling "load" nashorn extension builtin function with a file File/URL- this : This method and command line method both associate a URL/File origin for the script and hence script URL/File based fine-grained permission can be used. When you run with security manager on, you can specify permissions for specific script URLs or file: URLs
- Calling "load" from a script object as in load({ name: "foo", script: str}): This is equivalent to "eval" - but it associates a name with script and so stack traces will have nice readable name instead of <eval>. "str" may be computed or a literal. It does not matter. But, script is treated as 'sandbox'.
- Calling loadWithNewGlobal nashorn extension function. : This is similar to load [all options are load available]. The difference is that it creates a new EMCAScript global scope and loads your code into that global. This avoids global namespace pollution. Note that security access permission is based on script origin URL or File if you pass a URL or a File. If you use loadWithNewGlobal as loadWithNewGlobal({ name: "foo", script: str}), the script is treated as a sandbox.
- javax.script API APIs engine.eval(Reader, Bindings) or and engine.eval(String, Bindings). : This is similar to the other engine.eval methods in that these are sandbox script evaluations unless Reader is a URLReader. But, these methods create/associate a fresh ECMAScript global and load code there [similar to loadWithNewGlobal in that sense]
...