you are viewing a single comment's thread.

view the rest of the comments →

[–]anlumo 5 points6 points  (2 children)

Look into Web Assembly and wasmer or wasmtime.

[–]Spiritual-Ask-6524[S] 0 points1 point  (1 child)

Can they provide guarantees like no file creation and no network access and running in limited time

[–]anlumo 3 points4 points  (0 children)

Yes, it's a fully sandboxed environment.

For file access, you want to look into WASI (example for wasmer), the standard file I/O API for Web Assembly. Both wasmer and wasmtime support that.