Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要对不受信任的用户应用程序进行沙箱处理。我的想法是使用strace来拦截危险的系统调用。
跑步:
strace APPLICATION
我得到了我的应用程序执行的系统调用的列表,但是我怎样才能禁止它们呢?
我建议不要使用 strace ,而是使用chroot jail之类的东西来限制进程。