1
0
mirror of https://github.com/calebstewart/pwncat.git synced 2024-11-27 10:54:14 +01:00

Add installation instructions

'netifaces' requires the python headers to install. I added the Debian
instructions to install them.
This commit is contained in:
Sean 2020-05-10 10:59:19 -04:00
parent 53cf6a855c
commit 1cff5653dd

View File

@ -65,6 +65,31 @@ would like, however that shouldn't be necessary. The default method is to
automatically select the best available. `pwncat` even gives you a nice progress
bar while it uploads!
## Installation
To install pwncat into its own python virtual environment:
``` shell
# get pwncat
git clone https://github.com/calebstewart/pwncat/
cd pwncat
# install dependencies
sudo apt-get install python3-devel
python3 -m venv .venv
.venv/bin/pip install -r requirements.txt
python3 setup.py install
# usage
# activate the virtual environment
. .venv/bin/activate
# pwn
pwncat
# whence you finish pwning, exit the virtual environment
deactivate
```
## More to come!
I wrote this in the last few days, and there's bound to be bugs or edge-cases.