-
Notifications
You must be signed in to change notification settings - Fork 30
/
install_fitcrack.sh
executable file
·239 lines (210 loc) · 8.33 KB
/
install_fitcrack.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
#!/bin/bash
# Fitcrack server installer (main script)
# Author: see installer/AUTHORS
# License: MIT, see installer/LICENSE
echo " "
echo "███████╗██╗████████╗ ██████╗██████╗ █████╗ ██████╗██╗ ██╗"
echo "██╔════╝██║╚══██╔══╝██╔════╝██╔══██╗██╔══██╗██╔════╝██║ ██╔╝"
echo "█████╗ ██║ ██║ ██║ ██████╔╝███████║██║ █████╔╝ "
echo "██╔══╝ ██║ ██║ ██║ ██╔══██╗██╔══██║██║ ██╔═██╗ "
echo "██║ ██║ ██║ ╚██████╗██║ ██║██║ ██║╚██████╗██║ ██╗"
echo "╚═╝ ╚═╝ ╚═╝ ╚═════╝╚═╝ ╚═╝╚═╝ ╚═╝ ╚═════╝╚═╝ ╚═╝"
echo " Distributed password cracking system "
echo " * powered by hashcat * "
echo " "
echo " (C) 2022 Fitcrack team - www.fitcrack.cz "
echo "============================================================"
# Root check
if [ "$EUID" -ne 0 ]
then echo "Please run the installer as root."
exit
fi
# Detect Linux distro and set distro-specific defaults
source installer/detect_distro.sh
# Get functions for sysvinit/systemd
source installer/services.sh
if [[ $1 == "-s" ]]; then
# Set user variables (default values)
source installer/set_default_vars.sh
if [[ $2 == "-2" ]]; then
source installer/update_daemons.sh
exit
elif [[ $2 == "-3" ]]; then
source installer/update_webadmin.sh
exit
elif [[ $2 == "-4" ]]; then
source installer/uninstall.sh
cleanup_project
cleanup_db
cleanup_webadmin
cleanup_collections
exit
fi
else
# Read and set user variables
source installer/set_vars.sh
fi
# Installer menu
finished=false
while ! $finished; do
echo "=============================================================="
echo "Choose what to do:"
echo "[1] Install Fitcrack (default)"
echo "[2] Update Fitcrack server daemons (requires project restart)"
echo "[3] Update Fitcrack WebAdmin (requires Apache restart)"
echo "[4] Remove previous installation"
echo "[5] Exit"
echo "=============================================================="
read -e -p ": " OPERATION
if [ "$OPERATION" -eq "$OPERATION" ] 2>/dev/null; then
if [ $OPERATION -eq 1 ]; then
finished=true
elif [ $OPERATION -eq 2 ]; then
source installer/update_daemons.sh
exit
elif [ $OPERATION -eq 3 ]; then
source installer/update_webadmin.sh
exit
elif [ $OPERATION -eq 4 ]; then
source installer/uninstall.sh
cleanup_project
cleanup_db
cleanup_webadmin
cleanup_collections
exit
elif [ $OPERATION -eq 5 ]; then
echo "Bye."
exit
fi
fi
done
echo "=============================================================="
echo "The installation proceeds as follows (all steps are optional):"
echo "1) Configure and build Fitcrack server"
echo "2) Install BOINC libraries"
echo "3) Install Fitcrack project"
echo "4) Install WebAdmin"
echo "5) Create directories for common collections (eg. dictionaries)"
echo "=============================================================="
########################################
# Configure and build server
########################################
# Apply fitcrack specific changes to boinc
if [ ! -f "tmp/fc_boinc_patched" ]; then
patch -p0 < installer/fitcrack_changes_in_boinc.patch > /dev/null
touch tmp/fc_boinc_patched
fi
if [ -f "tmp/built" ]; then
read -e -p "1) Server seems to be built already. Rebuild? [y/N] (default: N): " BUILD_SERVER
BUILD_SERVER=${BUILD_SERVER:-N}
else
read -e -p "1) Configure and build server? [y/N] (default: y): " BUILD_SERVER
BUILD_SERVER=${BUILD_SERVER:-y}
fi
if [ $BUILD_SERVER = "y" ]; then
source installer/build_server.sh
fi
########################################
# Install libs
########################################
if [ -f "tmp/libs" ]; then
read -e -p "2) BOINC libraries seem to be installed. Reinstall? [y/N] (default: N): " INSTALL_LIBS
INSTALL_LIBS=${INSTALL_LIBS:-N}
else
read -e -p "2) Install BOINC libraries [y/N] (default: y): " INSTALL_LIBS
INSTALL_LIBS=${INSTALL_LIBS:-y}
fi
if [ $INSTALL_LIBS = "y" ]; then
source installer/install_libs.sh
fi
########################################
# Install project
########################################
if [ -d "$BOINC_PROJECT_DIR" ]; then
read -e -p "3) Fitcrack project seems to be installed already. Reinstall? [y/N] (default: N): " INSTALL_PROJECT
INSTALL_PROJECT=${INSTALL_PROJECT:-N}
if [ $INSTALL_PROJECT = "y" ]; then
source installer/uninstall.sh
cleanup_project
cleanup_db
fi
else
read -e -p "3) Install Fitcrack project? [y/N] (default: y): " INSTALL_PROJECT
INSTALL_PROJECT=${INSTALL_PROJECT:-y}
fi
if [ $INSTALL_PROJECT = "y" ]; then
source installer/install_project.sh
fi
########################################
# Install WebAdmin
########################################
if [ -d "$APACHE_DOCUMENT_ROOT/fitcrackFE" ]; then
read -e -p "3) WebAdmin seems to be installed already. Reinstall? [y/N] (default: N): " INSTALL_WEBADMIN
INSTALL_WEBADMIN=${INSTALL_WEBADMIN:-N}
if [ $INSTALL_WEBADMIN = "y" ]; then
source installer/uninstall.sh
cleanup_webadmin
fi
else
read -e -p "3) Install WebAdmin? [y/N] (default: y): " INSTALL_WEBADMIN
INSTALL_WEBADMIN=${INSTALL_WEBADMIN:-y}
fi
if [ $INSTALL_WEBADMIN = "y" ]; then
source installer/install_webadmin.sh
fi
########################################
# Install common collections
########################################
if [ -d "/usr/share/collections/dictionaries" ]; then
read -e -p "3) Common collections directories seem to exist already. Reinstall? [y/N] (default: N): " INSTALL_COLLECTIONS
INSTALL_COLLECTIONS=${INSTALL_COLLECTIONS:-N}
if [ $INSTALL_COLLECTIONS = "y" ]; then
source installer/uninstall.sh
cleanup_collections
fi
else
read -e -p "3) Create directories for common collections? [y/N] (default: y): " INSTALL_COLLECTIONS
INSTALL_COLLECTIONS=${INSTALL_COLLECTIONS:-y}
fi
if [ $INSTALL_COLLECTIONS = "y" ]; then
source installer/install_collections.sh
fi
########################################
read -e -p "Enter the number of workunits per hosts (default: 2): " MAX_WUS_IN_PROGRESS
MAX_WUS_IN_PROGRESS=${MAX_WUS_IN_PROGRESS:-2}
sed -i "s|<max_wus_in_progress>1</max_wus_in_progress>|<max_wus_in_progress>$MAX_WUS_IN_PROGRESS</max_wus_in_progress>|g" $BOINC_PROJECT_DIR/config.xml
########################################
echo "+----------------------------------------------------------+"
echo "| INSTALLATION COMPLETED |"
echo "| Have fun and a lot of cracked hashes... |"
echo "+----------------------------------------------------------+"
echo "| The default WebAdmin credentials are: |"
echo "| * user: fitcrack |"
echo "| * password: FITCRACK |"
echo "+----------------------------------------------------------+"
read -e -p "Do you with to START the Fitcrack server? [y/N] (default: y)" START_SERVER
START_SERVER=${START_SERVER:-y}
if [ $START_SERVER = "y" ]; then
MYDIR=$(pwd)
cd $BOINC_PROJECT_DIR
sudo -u $BOINC_USER ./bin/stop
sudo -u $BOINC_USER ./bin/start
cd $MYDIR
else
echo "You can start the project later as $BOINC_USER by typing:"
echo " cd $BOINC_PROJECT_DIR"
echo " ./bin/start"
fi
if [ -x "$(command -v boinccmd)" ]; then
read -e -p "Attach this host to Fitcrack BOINC project? [y/N] (default: N)" FITCRACK_BOINC_ATTACH
FITCRACK_BOINC_ATTACH=${FITCRACK_BOINC_ATTACH:-N}
if [ $FITCRACK_BOINC_ATTACH = "y" ]; then
python3 installer/boinc_connect.py --url ${BOINC_URL}/${BOINC_PROJECT}
if [[ $? == 0 ]]; then
echo "Successfully attached."
else
echo "Unable to attach."
fi
fi
fi
echo " *** All done *** "