From 951cb6be15f666f7935e5b639985bbd4feee73fa Mon Sep 17 00:00:00 2001 From: benpturner Date: Sun, 2 Dec 2018 01:15:02 +0000 Subject: [PATCH] Updated INSTALL notes --- INSTALL.txt | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/INSTALL.txt b/INSTALL.txt index 07187af..cb59d91 100644 --- a/INSTALL.txt +++ b/INSTALL.txt @@ -16,4 +16,22 @@ sudo python /opt/PoshC2_Python/ImplantHandler.py # Optional for mutli user sudo python /opt/PoshC2_Python/C2Viewer.py -# RUNNING as SystemCTL Service, see poshc2.service file for more information \ No newline at end of file +# RUNNING as SystemCTL Service, see poshc2.service file for more information +systemctl start poshc2.service + +# Each user have their own ImplantHandler.py +sudo python /opt/PoshC2_Python/ImplantHandler.py + +# Each user can view output from JournalCTL +journalctl -n 80000 -u poshc2.service -f --output cat + +# OPTIONAL - INSTALL PoshC2_Python on Linux using Python VirtualENV +======================================================================= +cd /opt/ +git clone https://github.com/nettitude/PoshC2_Python.git +pip install virtualenv +virtualenv /opt/PoshC2_Python/ +cd /opt/PoshC2_Python/ +source /opt/PoshC2_Python/bin/activate +pip install -r requirements.txt +