Skip to content

Commit 29772f4

Browse files
committed
DOC: Minor readme updates
1 parent 32369a3 commit 29772f4

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ sandbox-run: run command in a secure OS sandbox
1111

1212
#### Problem statement
1313

14-
Running other people's programs is insecure.
14+
Running other people's programs is inherently insecure.
1515
[Rogue dependencies](https://www.google.com/search?q=malicious+python+packages&tbm=nws)\*
1616
🎯 or [hacked library code](https://www.google.com/search?q=(hacked+OR+hijacked+OR+backdoored+OR+"supply+chain+attack")+(npm+OR+pypi)&tbm=nws&num=100)
1717
:pirate_flag: ([et cet.](https://slsa.dev/spec/draft/threats-overview) :warning:)
18-
can wreak havoc, including access all your private parts** :bangbang:—think
18+
**can wreak havoc, including access all your private parts** :bangbang:—think
1919
all current user's credentials and more personal bits like:
2020
* `~/.ssh`,
2121
* `~/.pki/nssdb/`,
@@ -30,12 +30,12 @@ relies on impeccability of hundreds or thousands of dependencies, NodeJS and Chr
3030

3131
Run scary software in separate secure containers:
3232
```shell
33-
podman run -it -v .:/src -e PATH=/src debian:stable-slim scary-binary
33+
podman run --rm -it -v "$PWD:$PWD" --net=host --workdir="$PWD" debian:stable-slim ./scary-binary
3434
```
3535
or you can simply
3636
`sandbox-run scary-binary`
37-
which uses [bubblewrap](https://github.com/containers/bubblewrap)** (of
38-
[Flatpak](https://en.wikipedia.org/wiki/Flatpak) fame) under the hood.
37+
which uses [**bubblewrap**](https://github.com/containers/bubblewrap) (of
38+
[Flatpak](https://en.wikipedia.org/wiki/Flatpak) fame) to spawn your native OS container under the hood.
3939

4040

4141
Installation
@@ -166,5 +166,5 @@ You see a mistake—you fix it. Thanks!
166166

167167
Viable alternatives
168168
-------------------
169-
See a few alternatives discussed over at
169+
See a few alternatives discussed over at sister project
170170
[`sandbox-venv`](https://github.com/sandbox-utils/sandbox-venv/#Viable-alternatives).

0 commit comments

Comments
 (0)