From 886f0bc241e0e0d7f39ad6b7ba767af0946551ba Mon Sep 17 00:00:00 2001 From: j3ssie Date: Sun, 29 Sep 2019 21:30:26 +0700 Subject: [PATCH] Fix some options --- install.sh | 8 ++++++++ osmedeus.py | 4 ++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index e5cdabf..4a959f4 100755 --- a/install.sh +++ b/install.sh @@ -26,6 +26,14 @@ install_banner "git, nmap, masscan, chromium, npm, golang" [ -x "$(command -v ripgrep)" ] || sudo $PACKGE_MANAGER install ripgrep -y 2>/dev/null [ -x "$(command -v unzip)" ] || sudo $PACKGE_MANAGER install unzip -y 2>/dev/null [ -x "$(command -v chromium-browser)" ] || sudo $PACKGE_MANAGER install chromium-browser -y 2>/dev/null +[ -x "$(command -v pip)" ] || sudo $PACKGE_MANAGER install python-pip -y 2>/dev/null +[ -x "$(command -v pip3)" ] || sudo $PACKGE_MANAGER install python3-pip -y 2>/dev/null +[ -x "$(command -v xsltproc)" ] || sudo $PACKGE_MANAGER install xsltproc -y 2>/dev/null + +pip install setuptools 2>/dev/null +pip3 install setuptools 2>/dev/null +pip install wheel 2>/dev/null +pip3 install wheel 2>/dev/null #### Download stuff directly install_banner "wordlists" diff --git a/osmedeus.py b/osmedeus.py index 2f60f17..6f86b7e 100755 --- a/osmedeus.py +++ b/osmedeus.py @@ -130,10 +130,10 @@ def main(): parser.add_argument('--localhost', action='store_true', help='Bind API Server on localhost') - parser.add_argument('--nomonitor', action='store_true', + parser.add_argument('--monitor', action='store_true', help='Turn on monitor mode') - parser.add_argument('--noslack', action='store_true', + parser.add_argument('--slack', action='store_true', help='Turn on slack notification') parser.add_argument('-hh', '--helps', dest='helps',