doc: converting org mode to markdown

This commit is contained in:
Andrew Rioux
2023-05-10 21:54:19 -04:00
parent d5e78b5746
commit 4123175eda
8 changed files with 41 additions and 44 deletions

View File

@@ -1,13 +1,13 @@
#+TITLE: Example bind shell proof of concept
# Example bind shell proof of concept
This bind shell works through local host firewalls on Linux systems using UDP to receive messages, verify them against a public key, run the commands specified, and return the results and display it over the network.
* Running the code
## Running the code
In a dev containers terminal, run:
#+BEGIN_SRC shell
```sh
cargo make examples-bindshell-run
#+END_SRC
```
This will build the code, generate the keys, create the environment, and run the service and the client in parallel.
To verify the execution of the environment, try running ~iptables -nL~ and see that the firweall tries to block all packets.
To verify the execution of the environment, try running `iptables -nL` and see that the firweall tries to block all packets.