diff options
-rw-r--r-- | README.md | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/README.md b/README.md index b8b12a2..d178c33 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ # openbsd Python bindings for some OpenBSD-specific APIs. Currently the following are supported: + * `pledge` * `unveil` @@ -35,7 +36,7 @@ openbsd.pledge("stdio rpath") print(open("/etc/resolv.conf")) ``` -Try removing `rpath` permission. +Try removing the`rpath permission. ### unveil @@ -48,6 +49,11 @@ Try opening `/bin/ksh`. Use `openbsd.unveil()` to lock down restrictions. + +## Similar Projects + +* [PyPledge](https://gitlab.com/i80and/pypledge): Python binding for the OpenBSD pledge(2) system call. Uses ctypes. + ## License (c) 2019 Yuce Tekol |