-
Notifications
You must be signed in to change notification settings - Fork 67
/
install-standalone.sh
executable file
·39 lines (30 loc) · 1.17 KB
/
install-standalone.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
echo "--------------------------------"
echo "Installing FruityC2 dependencies"
echo "--------------------------------"
apt-get -y install python-pip python-requests python-configobj python-flask git python-pyasn1 python-pyasn1-modules python-netaddr
pip install Flask-CORS
pip install flask-login
echo
echo "--------------------------------"
echo "Downloading FruityC2 "
echo "--------------------------------"
git clone https://github.com/xtr4nge/FruityC2
# SSL
echo
echo "--------------------------------"
echo "Create SSL certificate (FruityC2)"
echo "--------------------------------"
openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout FruityC2/certs/fruityc2.key -out FruityC2/certs/fruityc2.crt
cat FruityC2/certs/fruityc2.key FruityC2/certs/fruityc2.crt > FruityC2/certs/fruityc2.pem
echo
echo "--------------------------------"
echo "Downloading FruityC2-Client "
echo "--------------------------------"
git clone https://github.com/xtr4nge/FruityC2-Client
echo
echo "FruityC2: https://github.com/xtr4nge/FruityC2"
echo "FruityC2-Client: https://github.com/xtr4nge/FruityC2-Client"
echo "Twitter: @xtr4nge, @FruityWifi"
echo "ENJOY!"
echo