Hacker News new | ask | show | jobs
by chc4 1883 days ago
It doesn't, nor does it use seccomp to mitigate against language VM security issues.
1 comments

seccomp should not be needed for a Wasm VM unless the host calls are unsafe, which is not the case by default (since no host functions are provided) or for WASI (since is alreay designed to be sandboxed).

Also, seccomp only works in the Linux kernel (not in Windows, or macOS)... so it's a no-go for a universal sandboxed VM :)