1
0
Fork 0
mirror of https://gitlab.com/niansa/execontrol.git synced 2025-03-06 20:48:26 +01:00
Ptrace-based program to control execution of userspace programs
Find a file
2023-02-11 16:44:54 +00:00
.gitignore Initial commit 2022-05-16 23:57:38 +02:00
CMakeLists.txt Update CMake file to reflect rename 2023-02-11 16:34:07 +00:00
common.h Added whitelist example 2022-05-21 00:06:55 +02:00
main.c Added whitelist example 2022-05-21 00:06:55 +02:00
README.md Add README.md 2023-02-11 16:44:54 +00:00
whitelist.c Renamed test_whitelist.c to whitelist.c 2023-02-11 16:31:42 +00:00

execontrol

Build and install

Building this project is extremely easy as there are no external dependencies and each executable is just a single C source file. You can easily compile both using CMake.

You can then simply copy the resulting executables to /usr/local/bin or wherever!

Usage

The main execontrol executable is the application that will run the sandboxed environment. You just pass it a pipe file path (if the given pipe file doesn't exist, it will create one) and an application with its arguments to run. It will then wait for a "client" to connect to that file before it starts executing that command.

The execontrol_whitelist application is a client that accepts the path of the pipe file and the path of your whitelist (one executable per line).