Oxsomi / core3

Oxsomi Core3 is a combination of standalone C libraries useful for building applications, such as types, platform, graphics abstraction and file formats
GNU General Public License v3.0
0 stars 1 forks source link

Possible support for SECCOMP #88

Open Nielsbishere opened 1 year ago

Nielsbishere commented 1 year ago

DisallowWin32kSystemCalls (Windows) or SECCOMP (Linux) allows for tighter management around avoiding unwanted syscalls. This could for example allow running only functions that don't have a major impact on the underlying system. This could allow us to for example queue up commands and wait for the application to yield and return to us so we can execute commands without interfering user code.