forked from infobyte/faraday
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.sh
executable file
·39 lines (32 loc) · 953 Bytes
/
install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/bin/bash
###
## Faraday Penetration Test IDE
## Copyright (C) 2018 Infobyte LLC (http://www.infobytesec.com/)
## See the file 'doc/LICENSE' for the license information
###
if [ $EUID -ne 0 ]; then
echo "You must be root."
exit 1
fi
case `uname` in
Linux )
LINUX=1
type apt-get >/dev/null 2>&1 && { package_manager='apt-get'; }
type apt >/dev/null 2>&1 && { package_manager='apt'; }
;;
Darwin )
DARWIN=1
type brew >/dev/null 2>&1 && { package_manager='brew'; }
;;
esac
if [ "$package_manager" == "apt-get" ]
then
apt-get update
#Install community dependencies
for pkg in build-essential python-setuptools python-pip python-dev libpq-dev libffi-dev gir1.2-gtk-3.0 gir1.2-vte-2.91 python-gobject zsh curl python-psycopg2 postgresql; do
apt-get install -y $pkg
done
fi
pip2 install -r requirements_server.txt
pip2 install -r requirements.txt
echo "You can now run Faraday, enjoy!"