Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am about to get a bunch of python scripts from an untrusted source.

I'd like to be sure that no part of the code can hurt my system, meaning:

(1) the code is not allowed to import ANY MODULE

(2) the code is not allowed to read or write any data, connect to the network etc

(the purpose of each script is to loop through a list, compute some data from input given to it and return the computed value)

before I execute such code, I'd like to have a script 'examine' it and make sure that there's nothing dangerous there that could hurt my system.

I thought of using the following approach: check that the word 'import' is not used (so we are guaranteed that no modules are imported)

yet, it would still be possible for the user (if desired) to write code to read/write files etc (say, using open).

Then here comes the question:

(1) where can I get a 'global' list of python methods (like open)?

(2) Is there some code that I could add to each script that is sent to me (at the top) that would make some 'global' methods invalid for that script (for example, any use of the keyword open would lead to an exception)?

I know that there are some solutions of python sandboxing. but please try to answer this question as I feel this is the more relevant approach for my needs.

EDIT: suppose that I make sure that no import is in the file, and that no possible hurtful methods (such as open, eval, etc) are in it. can I conclude that the file is SAFE? (can you think of any other 'dangerous' ways that built-in methods can be run?)

share|improve this question
5  
"(1) where can I get a 'global' list of python methods (like open)?" Did you actually look at the Python documentation yet? That's already well-defined as the list of built-in functions. Why are you asking? – S.Lott Apr 1 '11 at 18:53
9  
use a VM instead of running it on a sensitive system. – DTing Apr 1 '11 at 18:55
4  
1  
@kriegar: Please post your answer as an answer so we can upvote it. Don't post answers as comments. – S.Lott Apr 1 '11 at 19:02
1  
@user540009: Trashing functions with eval() will have false positives. Perfectly safe scripts use eval() perfectly safely. – S.Lott Apr 1 '11 at 19:04
show 9 more comments

8 Answers

up vote 28 down vote accepted

I'd check for eval() first, as you can obfuscate import with it. eval() evaluates code, so you can run this code:

eval('imp{0}rt os'.format('o')) # 'imp{0}rt os'.format('o') -> 'import os'

Which imports the os module without explicitly having the import statement within the script. But as @MK suggested in his comment, use a sandboxed Python installation. If something breaks, it's inside of the "box", not your system.

I'd look into PyPy's sandboxing capabilities here, as I've heard good stuff about it: http://codespeak.net/pypy/dist/pypy/doc/sandbox.html.

But to be completely assured that you're not going to have any troubles whatsoever, run a Virtual Machine within your computer. A Virtual Machine is a completely isolated operating system installation within your normal operating system: for example, you can run Mac OS X from within Ubuntu Linux, and they are completely isolated from one another.

Basically, it's just a miniature screen within a window (man, am I going overkill with this VM thing):

enter image description here

I'd suggest VirtualBox, as it's free and really simple to setup. The only downside to virtualizing an OS is that you actually have to install the operating system into the virtual machine, which takes as much time as installing the operating system onto a normal computer.

Either way, it's up to you, but if you're worried about security, virtualizing is the way to go.

share|improve this answer
6  
@user540009: Stop. Think. Only run them on the VM. If they work. They work. Your job is done. If they crash the VM, then you have a "bad" script which you do not run ever again. You restore the VM from the previous backup and start with the next script. You stop using your regular OS and only use the VM for running these scripts. – S.Lott Apr 1 '11 at 19:26
4  
Note that testing for eval isn't always entirely reliable either, for example: func = getattr(__builtins__, "e" + "val"), so check for __builtins__ too, but wait! globals()["__built" + "ins__"], I think what I am trying to say is, validating that code is safe to run is difficult if not impossible. – F.J Apr 1 '11 at 20:07
2  
Just for the record: eval("import os") would not work, since eval() only evaluates expressions. This does not change anything about the conclusions in this discussion. – Sven Marnach Apr 1 '11 at 20:09
4  
Securing Python is a hard problem, due to the innate introspection capabilities. Here's another fun one: getattr(object, '_'*2 + 'sessalcbus'[::-1] + 2*'_')() – ncoghlan Apr 2 '11 at 3:33
4  
@Svan Marnach: eval( "__import__( 'os' )" ). Happy? – S.Lott Apr 2 '11 at 11:30
show 19 more comments

This point hasn't been made yet, and should be:

You are not going to be able to secure arbitrary Python code.

A VM is the way to go unless you want security issues up the wazoo.

share|improve this answer
2  
+1 from me. Brevity is always nice. – Blender Dec 14 '11 at 2:06
If the code imports nothing except other code within the same codebase, and the code does not make use of any absurd built-in functions/keywords such as eval, it's pretty easy to see that the code does not hurt your system. If the code does do imports, you just have to address them one at a time, same for keywords. You can rewrite those parts to not use them, disable features you don't want, etc. A VM can be broken out of. – Longpoke Mar 31 '12 at 0:36
Hmm I wonder if traversing the object graph of only built in whitelisted objects (anything that isn't insane like eval and is not from an import outside of the code being audited) and your own defined objects can let you reach something that isn't whitelisted. – Longpoke Mar 31 '12 at 1:05

You can still obfuscate import without using eval:

s = '__imp'
s += 'ort__'
f = globals()['__builtins__'].__dict__[s]
** BOOM **
share|improve this answer
In this case, couldn't you just do del __builtins__.__import__ before running the script? – Wallacoloo May 16 '11 at 1:14
I think __import__ is what Python itself uses when it executes an import statement. It is sometimes visible in stack traces. So if you actually manage to remove it, where will be no way to import any module from anywhere. That's kind of radical... – julkiewicz Oct 7 '11 at 18:54
That's not true. You could store it in a local variable, then delete it, and then possibly restore it after you run the user-code. But yeah, still not a good "solution"... – Wallacoloo Oct 8 '11 at 23:27

Built-in functions.

Keywords.

Note that you'll need to do things like look for both "file" and "open", as both can open files.

Also, as others have noted, this isn't 100% certain to stop someone determined to insert malacious code.

share|improve this answer

An approach that should work better than string matching us to use module ast, parse the python code, do your whitelist filtering on the tree (e.g. allow only basic operations), then compile and run the tree.

See this nice example by Andrew Dalke on manipulating ASTs.

share|improve this answer

Use a Virtual Machine instead of running it on a system that you are concerned about.

share|improve this answer
This is not an answer; it's a comment at best. – Longpoke Mar 31 '12 at 0:36
2  
Lol... It was a comment, see comments on the question: " @kriegar: Please post your answer as an answer so we can upvote it. Don't post answers as comments. – S.Lott Apr 1 '11 at 19:02"... – DTing Mar 31 '12 at 2:20
lol @_________@ – Longpoke Mar 31 '12 at 3:24

built in functions/keywords:

  • eval
  • exec
  • __import__
  • open
  • file
  • input
  • execfile
  • print can be dangerous if you have one of those dumb shells that execute code on seeing certain output
  • stdin
  • __builtins__
  • globals() and locals() must be blocked otherwise they can be used to bypass your rules

There's probably tons of others that I didn't think about.

Unfortunately, crap like this is possible...

object().__reduce__()[0].__globals__["__builtins__"]["eval"]("open('/tmp/l0l0l0l0l0l0l','w').write('pwnd')")

So it turns out keywords, import restrictions, and in-scope by default symbols alone are not enough to cover, you need to verify the entire graph...

share|improve this answer

What's great about Python code is how readable it is. It's also probably safe to say you can open the code up in a text editor and read it.

I think the best way to better your understanding of python, and to catch malicious code from being executed, is to read the code and try to understand what it is doing. If there is a strange module you have never heard of check out the python documentation -- it's awesome!

@kriegar also suggested running the code in a VM which is a great idea if you're still wary of it.

TIP: if there is a standard lib module that you don't understand, open up the python interpreter and import it, then type help(nameofmodule):

>>> import csv
>>> help(csv)
Help on module csv:

NAME
    csv - CSV parsing and writing.

FILE
    c:\python27\lib\csv.py

DESCRIPTION
    This module provides classes that assist in the reading and writing
    of Comma Separated Value (CSV) files, and implements the interface
    described by PEP 305.  Although many CSV files are simple to parse,
    the format is not formally defined by a stable specification and
    is subtle enough that parsing lines of a CSV file with something
    like line.split(",") is bound to fail.  The module supports three
    basic APIs: reading, writing, and registration of dialects...
share|improve this answer
Oh really? With the eval() statement, just defenestrate readability. You can ROT13, Base64-encode, and reverse chunks of strings until a dangerous script looks just like a garbled soup. – Blender Apr 1 '11 at 19:14
Tom: I can't read all the code. takes too much time. – user3262424 Apr 1 '11 at 19:17
@user540009: Having problems takes less time than inspecting the scripts. Indeed, to spend the least time, you would simply run them without worrying. Are you saying that it's okay to take a risk, but it's not okay to inspect all the code? – S.Lott Apr 1 '11 at 19:54
@Blender: If part of the code is like that, it's most likely malicious, if not it is still extremely suspicious and thus would go through heavy examination. – Longpoke Mar 31 '12 at 0:56
That differs from the question, though. The OP never intended to read through every script. If you were to read every script, you could pick out the bad ones almost instantly, I agree. – Blender Mar 31 '12 at 1:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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