I'm writing an application where users can enter a python script and execute it in a sandbox. I need a way to prevent the exec'ed code from importing certain modules, so malicious code won't be as much of a problem. Is there a way to do this in Python?
|
|
If you put None in sys.modules for a module name, in won't be importable...
|
||
|
|
|
|
Google App Engine's open source SDK has a detailed and solid implementation of mechanics to stop the importing of unwanted modules (to help detect code trying to import modules that aren't made available in the production instances of App Engine), though even that could be subverted if the user code was evil rather than just mistaken (production instances obviously have more layers of defense, such as simply not having those modules around at all;-). So it all depends on how in-depth your defense needs to be. At one extreme you just stash the builtin So, how deep do you want to go, or rather, how deep can you AFFORD to go...? |
||||
|
|
|
Have you checked the python.org article on SandboxedPython, and the linked article? Both of those pages have links to other resources. Specifically, PyPi's RestrictedPython lets you define exactly what is available, and has a few 'safe' defaults to choose from. |
|||
|
|
|
Unfortunately, I think that what you're trying to do is fundamentally impossible. If users can execute arbitrary code in your application then they can do whatever they want. Even if you were able to prevent them from importing certain modules there would be nothing stopping them from writing equivalent functionality themselves (from scratch or using some of the modules that are available). I don't really know the specifics of implementing a sandbox in Python, but I would imagine it's something that needs to be done at the interpreter level and is far from easy! |
||
|
|
|
|
You can overload the import mechanism. We used this to have a licensing system for plugins, you can easily have a whitelist / blacklist of module names. |
||
|
|
