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:
parent
53cf6a855c
commit
1cff5653dd
25
README.md
25
README.md
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user