Is it possible to disallow file/network access for sandboxing purposes? :)
The only way to interface with the outside world should be through the FFI that the host provides.
(Related to my use case #936)
Bonus question:
How can I capture stdout/stderr output so that I can send it over the network?
(E.g. as two std channels that receive each line as it gets printed, or (if that's not possible) two Strings that contain the accumulated output at the end.)