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
This conversation called out a potential need for the project to intercept syscall__execve functionality at runtime such that Aurae can instrument any new processes that might be created by a user's workload.
While the original discussion was intended to serve as a potential path to ensure there aren't rogue processes on an Aurae deployment, this begs a set of critical questions for the project.
Should Aurae authenticate all new spawned process to ensure they are anticipated by the runtime?
If it is possible to authenticate every process on a host at runtime, what are the security and supply chain implications of this feature?
I assumed I should kick off the discussion two fold.
How exactly would we pull this off? What can we learn from packet level authentication in other parts of the kernel?
Do we actually care about this? If so... why? Specifically? What specific security features does this unlock?
The text was updated successfully, but these errors were encountered:
Signature verification using binfmt-misc mechanism
Monitoring processes using netlink connector
To make life easier: prevent fork/fork like clone using seccomp for everything that should not create subprocesses
The combination of those 2 factors should give high confidence, that what is actually being executed is the expected and signed binary. But for things with a "container" semantic, I probably still prefer having container images secured by dm-verity.
Recently we discussed eBPF architecture in #394.
This conversation called out a potential need for the project to intercept syscall__execve functionality at runtime such that Aurae can instrument any new processes that might be created by a user's workload.
While the original discussion was intended to serve as a potential path to ensure there aren't rogue processes on an Aurae deployment, this begs a set of critical questions for the project.
Should Aurae authenticate all new spawned process to ensure they are anticipated by the runtime?
If it is possible to authenticate every process on a host at runtime, what are the security and supply chain implications of this feature?
I assumed I should kick off the discussion two fold.
The text was updated successfully, but these errors were encountered: