up vote 10 down vote favorite
3
share [g+] share [fb]

I want to execute a php-script from php that will use different constants and different versions of classes that are already defined.

Is there a sandbox php_module where i could just:

sandbox('script.php'); // run in a new php environment

instead of

include('script.php'); // run in the same environment

Or is proc_open() the only option?

PS: The script isn't accessible through the web, so fopen('http://host/script.php') is not an option.

link|improve this question

feedback

3 Answers

up vote 5 down vote accepted

There is runkit, but you may find it simpler to just call the script over the command line (Use shell_exec), if you don't need any interaction between the master and child processes.

link|improve this answer
About runkit; it does not seem to sandbox well by description, or I maybe should say easy. You can forbid functions, but I would rather like to forbid ALL but those in a provided list. If an user needs a function I can evaluate its safety by hand upon request. It seems like the only way is to write a custom made interpreter. If speed is an issue you can make it convert its AST into PHP or an other language, this is actually what I'm gonna do now as I could not find a ready solution. Cheers! Ps. Yes, I saw that this Q is old. Ds. – Frank Jun 14 '10 at 15:38
Well .. Good luck finding something that can parse PHP into an AST ;) I concur with your point though. – troelskn Jun 14 '10 at 17:27
FYI runkit seems to be abandoned and you'll probably want to compile either the CVS version or one of the patched versions (github.com/tricky/runkit) if you want to run it on a modern version of PHP – Eli Jul 21 '10 at 14:21
feedback

Also, you should look at the backtick operator:

$sOutput = `php script_to_run.php`;

This will allow you to inspect the output from the script you are running. However, note that the script will be run with the privileges you have, but you can circumvent this by using sudo on Linux.

This approach also assumes that you have the PHP CLI installed, which is not always the case.

link|improve this answer
feedback

The is a class on GitHub that may help, early stages but looks promising.

https://github.com/fregster/PHPSandbox

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.