mirror of
https://github.com/langgenius/dify-sandbox.git
synced 2026-07-25 13:35:42 -04:00
main
* fix(seccomp): extend default python syscall whitelist * fix(seccomp): merge ALLOWED_SYSCALLS with defaults * test(seccomp): add syscall merge regression tests * docs(seccomp): document ALLOWED_SYSCALLS append semantics in FAQ * test(seccomp): keep default syscalls when extending whitelist --------- Co-authored-by: Harsh Kashyap <harshkashyap@Harshs-MacBook-Pro.local>
Dify-Sandbox
Introduction
Dify-Sandbox offers a simple way to run untrusted code in a secure environment. It is designed to be used in a multi-tenant environment, where multiple users can submit code to be executed. The code is executed in a sandboxed environment, which restricts the resources and system calls that the code can access.
Use
Requirements
DifySandbox currently only supports Linux, as it's designed for docker containers. It requires the following dependencies:
- libseccomp
- pkg-config
- gcc
- golang 1.20.6
Steps
- Clone the repository using
git clone https://github.com/langgenius/dify-sandboxand navigate to the project directory. - Run ./install.sh to install the necessary dependencies.
- Run ./build/build_[amd64|arm64].sh to build the sandbox binary.
- Run ./main to start the server.
If you want to debug the server, firstly use build script to build the sandbox library binaries, then debug as you want with your IDE.
FAQ
Refer to the FAQ document
Workflow
Description
A lightweight, fast, and secure code execution environment that supports multiple programming languages
Releases
10
Languages
Go
86.7%
Shell
4.5%
Dockerfile
3.9%
C++
2.4%
Python
2.2%
Other
0.3%
