I want to use Rhino as a sandbox to run user supplied scripts on a server. I want to do that from PHP, which doesn't have Java bindings any more, so I have to use the command line interface (Rhino shell).

Unfortunately the Rhino shell adds some intrinsic functions to the environment that ruin the sandbox character, like file access and runCommand() which allows runnning arbitrary commands on the system.

Is there a way to disable them?

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

I found that I can just overwrite them with null or delete them:

runCommand = null;
delete runCommand;

I can find out which global functions and objects there are by getting all properties of the Global, which is stored in this:

Object.getOwnPropertyNames(this);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.