Fix some options

This commit is contained in:
j3ssie
2019-09-29 21:30:26 +07:00
parent 1b67899da6
commit 886f0bc241
2 changed files with 10 additions and 2 deletions
+8
View File
@@ -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"
+2 -2
View File
@@ -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',