mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-06-27 23:08:31 +00:00
Add seccomp bpf sandboxing to redbean
It's now possible to pass the `-S` or `-SS` flags to sandbox redbean worker proecsses after they've been forked. The first `-S` flag is intended to be a permissive builtin policy that limits system calls to only that which the various parts of redbean serving need. The second `-SS` flag is intended to be more restrictive, preventing things like the Lua extensions you download off the web from using the HTTP client or sockets APIs. In upcoming changes you'll be able to implement your own Berkeley Packet Filter sandbox programs and load them via Lua.
This commit is contained in:
parent
7166679620
commit
5a132f9652
79 changed files with 2271 additions and 651 deletions
|
@ -3308,42 +3308,4 @@ syscon misc ETH_P_RARP 0x8035 0 0 0 0 0
|
|||
syscon misc ETH_P_SCA 0x6007 0 0 0 0 0
|
||||
syscon misc ETH_P_WAN_PPP 7 0 0 0 0 0
|
||||
|
||||
syscon log LOG_EMERG 0 0 0 0 0 0 # consensus
|
||||
syscon log LOG_KERN 0 0 0 0 0 0 # consensus
|
||||
syscon log LOG_ALERT 1 1 1 1 1 1 # unix consensus
|
||||
syscon log LOG_PID 1 1 1 1 1 1 # unix consensus
|
||||
syscon log LOG_CONS 2 2 2 2 2 2 # unix consensus
|
||||
syscon log LOG_CRIT 2 2 2 2 2 2 # unix consensus
|
||||
syscon log LOG_ERR 3 3 3 3 3 3 # unix consensus
|
||||
syscon log LOG_ODELAY 4 4 4 4 4 4 # unix consensus
|
||||
syscon log LOG_WARNING 4 4 4 4 4 4 # unix consensus
|
||||
syscon log LOG_NOTICE 5 5 5 5 5 5 # unix consensus
|
||||
syscon log LOG_INFO 6 6 6 6 6 6 # unix consensus
|
||||
syscon log LOG_DEBUG 7 7 7 7 7 7 # unix consensus
|
||||
syscon log LOG_PRIMASK 7 7 7 7 7 7 # unix consensus
|
||||
syscon log LOG_NDELAY 8 8 8 8 8 8 # unix consensus
|
||||
syscon log LOG_USER 8 8 8 8 8 8 # unix consensus
|
||||
syscon log LOG_MAIL 0x10 0x10 0x10 0x10 0x10 0x10 # unix consensus
|
||||
syscon log LOG_NOWAIT 0x10 0x10 0x10 0x10 0x10 0x10 # unix consensus
|
||||
syscon log LOG_DAEMON 24 24 24 24 24 24 # unix consensus
|
||||
syscon log LOG_NFACILITIES 24 25 24 24 24 24
|
||||
syscon log LOG_AUTH 0x20 0x20 0x20 0x20 0x20 0x20 # unix consensus
|
||||
syscon log LOG_PERROR 0x20 0x20 0x20 0x20 0x20 0x20 # unix consensus
|
||||
syscon log LOG_SYSLOG 40 40 40 40 40 40 # unix consensus
|
||||
syscon log LOG_LPR 48 48 48 48 48 48 # unix consensus
|
||||
syscon log LOG_NEWS 56 56 56 56 56 56 # unix consensus
|
||||
syscon log LOG_UUCP 0x40 0x40 0x40 0x40 0x40 40 # unix consensus
|
||||
syscon log LOG_CRON 72 72 72 72 72 72 # unix consensus
|
||||
syscon log LOG_SELECT 76 0 0 0 0 0
|
||||
syscon log LOG_SENSE 77 0 0 0 0 0
|
||||
syscon log LOG_LOCAL0 0x80 0x80 0x80 0x80 0x80 0x80 # unix consensus
|
||||
syscon log LOG_LOCAL1 136 136 136 136 136 136 # unix consensus
|
||||
syscon log LOG_LOCAL2 144 144 144 144 144 144 # unix consensus
|
||||
syscon log LOG_LOCAL3 152 152 152 152 152 152 # unix consensus
|
||||
syscon log LOG_LOCAL4 160 160 160 160 160 160 # unix consensus
|
||||
syscon log LOG_LOCAL5 168 168 168 168 168 168 # unix consensus
|
||||
syscon log LOG_LOCAL6 176 176 176 176 176 176 # unix consensus
|
||||
syscon log LOG_LOCAL7 184 184 184 184 184 184 # unix consensus
|
||||
syscon log LOG_FACMASK 0x03f8 0x03f8 0x03f8 0x03f8 0x03f8 0x03f8 # unix consensus
|
||||
|
||||
# https://youtu.be/GUQUD3IMbb4?t=85
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue