forked from ainfosec/FISSURE
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall
More file actions
executable file
·200 lines (165 loc) · 5.66 KB
/
install
File metadata and controls
executable file
·200 lines (165 loc) · 5.66 KB
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
#!/bin/bash
########################################
# FISSURE Main Installer #
# (Supports GUI and Headless Modes) #
########################################
# Usage:
# Interactive: ./install
# Headless: ./install --os "Ubuntu 24.04" --mode full
#
# Modes: full | base | HIPRFISR | Dashboard | SensorNode | custom
########################################
# Parse Command-Line Args #
########################################
OS_ARG=""
MODE_ARG=""
while [[ "$#" -gt 0 ]]; do
case $1 in
--os)
OS_ARG="$2"
shift
;;
--mode)
MODE_ARG="$2"
shift
;;
*)
echo "Unknown argument: $1"
echo "Usage: ./install --os \"Ubuntu 24.04\" --mode full"
exit 1
;;
esac
shift
done
########################################
# Skip GUI if Args Provided #
########################################
if [[ -n "$OS_ARG" && -n "$MODE_ARG" ]]; then
echo "[*] Running non-interactive installation for $OS_ARG ($MODE_ARG mode)"
export FISSURE_OS="$OS_ARG"
export FISSURE_MODE="$MODE_ARG"
SKIP_GUI=1
else
SKIP_GUI=0
fi
########################################
# Check Operating System #
########################################
arch_linux=$(cat /etc/os-release 2>&1 | grep "arch") # Arch Linux lacks lsb_release
if [[ -n "$arch_linux" ]]; then
echo "Arch Linux detected"
sudo pacman -S lsb-release
else
ubuntu20_04=$(lsb_release -d 2>&1 | grep "Ubuntu 20.04")
parrot_os=$(lsb_release -d 2>&1 | grep "Parrot")
dragonOS_focal=$(lsb_release -d 2>&1 | grep "DragonOS Focal$")
dragonOS_noble=$(lsb_release -d 2>&1 | grep "DragonOS Noble$")
dragonOS_focalx=$(cat /etc/os-dragonos 2>&1 | grep "DragonOS FocalX")
kde_neon=$(lsb_release -d 2>&1 | grep "KDE neon")
ubuntu18_04=$(lsb_release -d 2>&1 | grep "Ubuntu 18.04")
ubuntu22_04=$(lsb_release -d 2>&1 | grep "Ubuntu 22.04")
kali23_1=$(lsb_release -d 2>&1 | grep "Kali")
backbox=$(cat /etc/issue -d 2>&1 | grep "BackBox")
raspberry_pi_os_bookworm=$(lsb_release -d 2>&1 | grep "bookworm")
raspberry_pi_os_trixie=$(lsb_release -d 2>&1 | grep "trixie")
ubuntu24_04=$(lsb_release -d 2>&1 | grep "Ubuntu 24.04")
fi
########################################
# Print Detected #
########################################
if [[ -n "$ubuntu20_04" ]]; then
echo "Ubuntu 20.04 detected"
fi
if [[ -n "$dragonOS_focal" ]]; then
echo "DragonOS Focal detected. Focal is no longer supported. Update to FocalX."
exit
fi
if [[ -n "$dragonOS_noble" ]]; then
echo "DragonOS Noble detected"
fi
if [[ -n "$kde_neon" ]]; then
kde_version=$(lsb_release -d 2>&1 | grep "5.25")
if [[ -n "$kde_version" ]]; then
echo "KDE neon 5.25 detected"
fi
fi
if [[ -n "$ubuntu22_04" ]]; then
echo "Ubuntu 22.04 detected"
fi
if [[ -n "$kali23_1" ]]; then
echo "Kali detected"
fi
if [[ -n "$dragonOS_focalx" ]]; then
echo "DragonOS FocalX detected"
fi
if [[ -n "$backbox" ]]; then
echo "BackBox detected"
fi
if [[ -n "$raspberry_pi_os_bookworm" ]]; then
echo "Raspberry Pi OS (bookworm) detected"
fi
if [[ -n "$raspberry_pi_os_trixie" ]]
then
echo "Raspberry Pi OS (trixie) detected"
fi
if [[ -n "$parrot_os" ]]; then
echo "Parrot OS detected"
fi
if [[ -n "$ubuntu24_04" ]]; then
echo "Ubuntu 24.04 detected"
fi
if [[ -n "$ubuntu18_04" ]]; then
echo "This branch is not for Ubuntu 18.04. Switch to Python2_maint-3.7 branch and retry."
exit
fi
########################################
# Check for Qt5 #
########################################
qt5_version=$(qmake --version 2>/dev/null | grep "version 5")
if [[ -z "$qt5_version" ]]; then
echo "No Qt5 found."
if [[ "$SKIP_GUI" -eq 1 ]]; then
echo "[*] Headless mode detected — installing Qt5 dependencies automatically..."
AUTO_INSTALL_QT=1
else
read -p "Qt5 is required to open the installer. Install now? [Y/n]: " yn
case $yn in
[Nn]*) exit ;;
*) AUTO_INSTALL_QT=1 ;;
esac
fi
if [[ "$AUTO_INSTALL_QT" -eq 1 ]]; then
if [[ -n "$ubuntu20_04" ]]; then
sudo apt-get update
sudo apt-get install -y build-essential qtcreator qt5-default python3-pyqt5 fonts-ubuntu
fi
if [[ -n "$kde_neon" ]]; then
kde_version=$(lsb_release -d 2>&1 | grep "5.25")
if [[ -n "$kde_version" ]]; then
sudo apt-get update
sudo apt-get install -y build-essential qtcreator qt5-default python3-pyqt5 fonts-ubuntu
fi
fi
if [[ -n "$ubuntu22_04" ]] || [[ -n "$kali23_1" ]] || [[ -n "$backbox" ]] || [[ -n "$raspberry_pi_os_bookworm" ]] \
|| [[ -n "$raspberry_pi_os_trixie" ]] || [[ -n "$parrot_os" ]] || [[ -n "$ubuntu24_04" ]]; then
sudo apt-get update
sudo apt-get install -y build-essential qtcreator qtbase5-dev qtchooser qt5-qmake qtbase5-dev-tools python3-pyqt5 fonts-ubuntu
fi
fi
fi
########################################
# Run the Full Installer #
########################################
DIR=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd)
LOGFILE="$DIR/Installer/fissure_install.log"
# Log both bash and python output
exec > >(tee -a "$LOGFILE") 2>&1
echo "[*] Starting installer at $(date)"
if [[ "$SKIP_GUI" -eq 1 ]]; then
echo "[*] Launching headless Python installer..."
python3 -u "$DIR/Installer/installer" --headless
else
echo "[*] Launching interactive GUI installer..."
python3 -u "$DIR/Installer/installer"
fi
echo "[*] Finished at $(date)"