1
0
mirror of https://github.com/calebstewart/pwncat.git synced 2024-11-24 01:25:37 +01:00

Merge pull request #7 from spwx/master

Installation instructions
This commit is contained in:
John Hammond 2020-05-10 15:05:14 -04:00 committed by GitHub
commit f715bbd9a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 28 additions and 1 deletions

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
.venv/bin/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.

View File

@ -1,3 +1,5 @@
colorama==0.4.3
prompt-toolkit==3.0.5
wcwidth==0.1.9
netifaces==0.10.9
pygments==2.6.1