summaryrefslogtreecommitdiff
path: root/python_server.py
diff options
context:
space:
mode:
Diffstat (limited to 'python_server.py')
-rwxr-xr-xpython_server.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/python_server.py b/python_server.py
index debd73d..1670f90 100755
--- a/python_server.py
+++ b/python_server.py
@@ -4,13 +4,16 @@ and returns the output. It *should* be run as root and will run as the user
'nobody' so as to minimize any damange by errant code.
"""
import sys
+import traceback
from SimpleXMLRPCServer import SimpleXMLRPCServer
import pwd
import os
+from os.path import isdir
# Set the effective uid
nobody = pwd.getpwnam('nobody')
+os.setegid(nobody.pw_gid)
os.seteuid(nobody.pw_uid)
@@ -26,7 +29,7 @@ def run_code(answer, test_code, in_dir=None):
A tuple: (success, error message).
"""
- if in_dir is not None:
+ if in_dir is not None and isdir(in_dir):
os.chdir(in_dir)
success = False