├── .github └── workflows │ ├── lint.yml │ └── semgrep.yml ├── .markdownlint.yml ├── LICENSE ├── Makefile ├── README.md ├── libsandbox.version ├── preload.c ├── sandbox.c ├── sandbox.h └── sandboxify.c /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/sandbox/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/semgrep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/sandbox/HEAD/.github/workflows/semgrep.yml -------------------------------------------------------------------------------- /.markdownlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/sandbox/HEAD/.markdownlint.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/sandbox/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/sandbox/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/sandbox/HEAD/README.md -------------------------------------------------------------------------------- /libsandbox.version: -------------------------------------------------------------------------------- 1 | LIBSANDBOX_1.0 { 2 | local: seccomp_*; 3 | }; 4 | -------------------------------------------------------------------------------- /preload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/sandbox/HEAD/preload.c -------------------------------------------------------------------------------- /sandbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/sandbox/HEAD/sandbox.c -------------------------------------------------------------------------------- /sandbox.h: -------------------------------------------------------------------------------- 1 | void setup_seccomp_filter(void); 2 | -------------------------------------------------------------------------------- /sandboxify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudflare/sandbox/HEAD/sandboxify.c --------------------------------------------------------------------------------