You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For the promises and security guarantees of a smart contracting language and platform, we need to ensure that if we promise that network calls or filesystem manipulation calls etc cannot be made by a call within the VM that we actually restrict related syscalls.
The Linux kernel provides “seccomp” for which there are Go bindings https://pkg.go.dev/github.com/seccomp/libseccomp-golang which we can use to restrict such calls and then log such attempts too and then increase security.
Firstly we should figure out what abilities that we want the gnovm to have and exclude everything else and build on what needs to be permitted.
The text was updated successfully, but these errors were encountered:
Description
For the promises and security guarantees of a smart contracting language and platform, we need to ensure that if we promise that network calls or filesystem manipulation calls etc cannot be made by a call within the VM that we actually restrict related syscalls.
The Linux kernel provides “seccomp” for which there are Go bindings https://pkg.go.dev/github.com/seccomp/libseccomp-golang which we can use to restrict such calls and then log such attempts too and then increase security.
Firstly we should figure out what abilities that we want the gnovm to have and exclude everything else and build on what needs to be permitted.
The text was updated successfully, but these errors were encountered: