|
|
|
|
|
by phleet
4818 days ago
|
|
The first thing I always try on sites like these is stuff like this: __import__('commands').getstatusoutput('ls /') or __import__('subprocess').call(["ls", "-l"]) which gets blocked by the interpreter somehow with exceptions.OSError - [Errno 11] Resource temporarily unavailable I'm curious as to how you managed to do this - I've always been interested in how to sandbox something like this. |
|
http://repl.it/languages/Python
They compiled CPython with Emscripten, and it gets run on your browser.