Find Related products on Amazon

Shop on Amazon

Landrun: Sandbox any Linux process using Landlock, no root or containers

Published on: 2025-06-03 11:56:59

landrun A lightweight, secure sandbox for running Linux processes using Landlock LSM. Think firejail, but with kernel-level security and minimal overhead. Features ๐Ÿ”’ Kernel-level security using Landlock LSM ๐Ÿš€ Lightweight and fast execution ๐Ÿ›ก๏ธ Fine-grained access control for directories ๐Ÿ”„ Support for read and write paths โšก Optional execution permissions for allowed paths ๐ŸŒ TCP network access control (binding and connecting) Demo Requirements Linux kernel 5.13 or later with Landlock LSM enabled Linux kernel 6.8 or later for network restrictions (TCP bind/connect) Go 1.18 or later (for building from source) Installation Quick Install go install github.com/zouuup/landrun/cmd/landrun@latest From Source git clone https://github.com/zouuup/landrun.git cd landrun go build -o landrun cmd/landrun/main.go sudo cp landrun /usr/local/bin/ Usage Basic syntax: landrun [options] < command > [args...] Options --ro : Allow read-only access to specified path (can be specifie ... Read full article.