diff options
author | Yuce Tekol <yucetekol@gmail.com> | 2019-05-05 08:29:51 +0300 |
---|---|---|
committer | Yuce Tekol <yucetekol@gmail.com> | 2019-05-05 08:29:51 +0300 |
commit | f75c37e149a11625bac395117c7c354e364e154a (patch) | |
tree | 60b207f77a129f90b72958fc478ee7d5fbfe0935 /README.md | |
parent | 968d5d7b886f894d4df08eef09d0fc21539f60fc (diff) | |
download | pyopenbsd-f75c37e149a11625bac395117c7c354e364e154a.tar.gz |
updated readme
Diffstat (limited to 'README.md')
-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 |