forked from konstruktoid/ansible-role-hardening
-
Notifications
You must be signed in to change notification settings - Fork 0
/
postChecks.sh
72 lines (58 loc) · 1.94 KB
/
postChecks.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
#!/bin/sh
if command -v apt-get; then
PKG="apt-get"
elif command -v dnf; then
PKG="dnf"
elif command -v yum; then
PKG="yum"
else
exit 1
fi
if lsb_release -a 2>/dev/null | grep -qi debian; then
if grep -qiRE '^deb.*redir' /etc/apt/*; then
echo "deb http://ftp.debian.org/debian buster main
deb http://ftp.debian.org/debian buster-updates main
deb http://security.debian.org/debian-security buster/updates main
deb-src http://ftp.debian.org/debian buster main
deb-src http://ftp.debian.org/debian buster-updates main
deb-src http://security.debian.org/debian-security buster/updates main" | sudo tee /etc/apt/sources.list
fi
sudo "${PKG}" -y update
fi
cd ~ || exit 1
echo "Generating SUID list."
curl -sSL 'https://raw.githubusercontent.com/konstruktoid/hardening/master/misc/suid.list' > /tmp/suid.list
grep -vE '^#|^$' /tmp/suid.list | while read -r suid; do
echo " - ${suid}" >> "suid.list"
done
grep -vE '^#|^$' /etc/shells | while read -r S; do
echo " - $(basename "${S}")" >> "suid.list"
done
cd ~ || exit 1
sudo "${PKG}" -y install git
git clone https://github.com/CISOFy/lynis
git clone https://github.com/konstruktoid/hardening.git
sudo "${PKG}" -y remove git
if lsb_release -a 2>/dev/null | grep -qi ubuntu; then
echo "Running bats tests."
sudo "${PKG}" -y install bats
cd ~/hardening/tests || exit 1
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin sudo bats . | tee ~/bats.log
sudo chown vagrant:vagrant ~/bats.log
else
echo "not ok: not ubuntu" > ~/bats.log
fi
if [ -f ~/hardening/misc/genOSCAPreport.sh ]; then
echo "Running OpenSCAP."
cd ~/hardening/misc || exit 1
bash ./genOSCAPreport.sh
fi
echo "Running Lynis."
cd ~ || exit 1
sudo chown -R root:root lynis
sudo chmod a+rx lynis
cd lynis || exit 1
LANG=C sudo ./lynis audit system
sudo cp '/var/log/lynis-report.dat' ~/
sudo chown vagrant:vagrant ~/lynis-report.dat
echo "ansible_version=$(ansible --version | grep '^ansible')" >> ~/lynis-report.dat