summary refs log tree commit diff stats
path: root/README.org
blob: 27d440e8fafa8b8a24675cbb7027a5689e3a06a7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#+HTML_HEAD: <link rel="stylesheet" href="../static/style.css">
#+HTML_HEAD: <link rel="icon" href="../static/pavo.png" type="image/png">
#+EXPORT_FILE_NAME: index
#+TITLE: Pavo

Pavo wraps other programs with /unveil/ & /pledge/.

| Project Home    | [[https://andinus.nand.sh/pavo/][Pavo]]           |
| Source Code     | [[https://tildegit.org/andinus/pavo][Andinus / Pavo]] |
| GitHub (Mirror) | [[https://github.com/andinus/pavo][Pavo - GitHub]]  |

*Tested on*:
- OpenBSD 6.6 amd64

* Working
- Pavo parses the config file
- Directories & commands are unveiled
- Execpromises are added
- Unveil calls are blocked
- Command is executed
* How is it useful?
Let's take =echo= as an example. =echo='s job is to echo what you pass to
it. It should never touch your =$HOME/.ssh=, let's say the next =echo=
update is malicious & it tries to send your =$HOME/.ssh= to the attacker's
servers. It will be able to do that but not if you wrap it around pavo.

=pavo echo= will parse the config & force /unveil/ & /pledge/ on the malicious
=echo=, it won't be able to read your =$HOME/.ssh= directory if it isn't
present in pavo's config. Also uploading the file to the internet will
kill the program immediately.

This assumes that pavo's config file is secure in the first place, if it
isn't then the attacker could simply change it. Also, =echo= is a bad
example for this.

Let's take another example. Let's say you want to run a binary
downloaded from the internet, you kinda trust that person (you don't) &
they say that the binary is a simple ascii game & will just print to
terminal, do nothing else. You could wrap this binary around pavo before
running it & give it limited permissions, like don't unveil anything &
put only =stdio= in execpromises.

If that binary tries to do anything apart from =stdio= the program will be
killed.

- Pavo's config file should be unwriteable at rest
- The config file should only be writeable by the user
* Installation
** Pre-built binaries
Pre-built binaries are available for OpenBSD (386, amd64, arm, arm64).
*** v0.1.0
Download the binaries from [[https://archive.org/details/pavo-v0.1.0][archive.org]]

*Example URL*: =https://archive.org/download/pavo-v0.1.0/pavo-v0.1.0-openbsd-386=
| Arch  | SHA256                                                           |
|-------+------------------------------------------------------------------|
| 386   | 926d6009567fec6c270eea16d380b58f396be6f1d51d513ff0e43286760f4fa9 |
| amd64 | b0fadad9e0328377b31eb70d369a0e2b91f851310e579abab4023496776798ca |
| arm   | 0033409f32569c2f59879bb256854b7c6f1043ebf3fe548c7ee4d9b7132839ea |
| arm64 | b75648c5a3b76d51cad63172ec164eff4974a6a4cca453fe41441d556fa04a07 |