forked from konstruktoid/hardening
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sshdconfig
195 lines (151 loc) · 6.09 KB
/
sshdconfig
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
# https://wiki.mozilla.org/Security/Guidelines/OpenSSH
function f_sshdconfig {
echo "[$SCRIPT_COUNT] $SSHDFILE"
awk '$5 >= 3071' /etc/ssh/moduli > /etc/ssh/moduli.tmp
mv /etc/ssh/moduli.tmp /etc/ssh/moduli
if grep -q '^Include' /etc/ssh/sshd_config; then
local INCLUDEDIR
# shellcheck disable=SC2046
INCLUDEDIR="$(dirname $(grep '^Include' /etc/ssh/sshd_config | awk '{print $NF}'))"
if [ ! -d "$INCLUDEDIR" ]; then
mkdir -p "$INCLUDEDIR"
fi
SSHDCONF="$INCLUDEDIR/hardening.conf"
cp "$SSHDFILE" "$SSHDCONF"
sed -i '/.*Subsystem.*/d' "$SSHDFILE"
sed -i '/Include.*/d' "$SSHDCONF"
else
SSHDCONF="$SSHDFILE"
fi
if [[ $VERBOSE == "Y" ]]; then
echo "Using $SSHDCONF"
fi
sed -i '/HostKey.*ssh_host_dsa_key.*/d' "$SSHDCONF"
sed -i '/KeyRegenerationInterval.*/d' "$SSHDCONF"
sed -i '/ServerKeyBits.*/d' "$SSHDCONF"
sed -i '/UseLogin.*/d' "$SSHDCONF"
sed -i 's/.*X11Forwarding.*/X11Forwarding no/' "$SSHDCONF"
sed -i 's/.*LoginGraceTime.*/LoginGraceTime 20/' "$SSHDCONF"
sed -i 's/.*PermitRootLogin.*/PermitRootLogin no/' "$SSHDCONF"
sed -i 's/.*UsePrivilegeSeparation.*/UsePrivilegeSeparation sandbox/' "$SSHDCONF"
sed -i 's/.*LogLevel.*/LogLevel VERBOSE/' "$SSHDCONF"
sed -i 's/.*Banner.*/Banner \/etc\/issue.net/' "$SSHDCONF"
sed -i 's/.*Subsystem.*sftp.*/Subsystem sftp internal-sftp/' "$SSHDCONF"
sed -i 's/^#.*Compression.*/Compression no/' "$SSHDCONF"
sed -i "s/.*Port.*/Port $SSH_PORT/" "$SSHDCONF"
echo "" >> "$SSHDCONF"
if ! grep -q "^LogLevel" "$SSHDCONF" 2> /dev/null; then
echo "LogLevel VERBOSE" >> "$SSHDCONF"
fi
if ! grep -q "^PrintLastLog" "$SSHDCONF" 2> /dev/null; then
echo "PrintLastLog yes" >> "$SSHDCONF"
fi
if ! grep -q "^IgnoreUserKnownHosts" "$SSHDCONF" 2> /dev/null; then
echo "IgnoreUserKnownHosts yes" >> "$SSHDCONF"
fi
if ! grep -q "^PermitEmptyPasswords" "$SSHDCONF" 2> /dev/null; then
echo "PermitEmptyPasswords no" >> "$SSHDCONF"
fi
if ! grep -q "^AllowGroups" "$SSHDCONF" 2> /dev/null; then
echo "AllowGroups $SSH_GRPS" >> "$SSHDCONF"
fi
if ! grep -q "^MaxAuthTries" "$SSHDCONF" 2> /dev/null; then
echo "MaxAuthTries 3" >> "$SSHDCONF"
else
sed -i 's/MaxAuthTries.*/MaxAuthTries 3/' "$SSHDCONF"
fi
if ! grep -q "^ClientAliveInterval" "$SSHDCONF" 2> /dev/null; then
echo "ClientAliveInterval 200" >> "$SSHDCONF"
fi
if ! grep -q "^ClientAliveCountMax" "$SSHDCONF" 2> /dev/null; then
echo "ClientAliveCountMax 3" >> "$SSHDCONF"
fi
if ! grep -q "^PermitUserEnvironment" "$SSHDCONF" 2> /dev/null; then
echo "PermitUserEnvironment no" >> "$SSHDCONF"
fi
if ! grep -q "^KexAlgorithms" "$SSHDCONF" 2> /dev/null; then
echo 'KexAlgorithms [email protected],ecdh-sha2-nistp521,ecdh-sha2-nistp384,ecdh-sha2-nistp256,diffie-hellman-group-exchange-sha256' >> "$SSHDCONF"
fi
if ! grep -q "^Ciphers" "$SSHDCONF" 2> /dev/null; then
echo 'Ciphers [email protected],[email protected],aes256-ctr' >> "$SSHDCONF"
fi
if ! grep -q "^Macs" "$SSHDCONF" 2> /dev/null; then
echo 'Macs [email protected],[email protected],hmac-sha2-512,hmac-sha2-256' >> "$SSHDCONF"
fi
if ! grep -q "^MaxSessions" "$SSHDCONF" 2> /dev/null; then
echo "MaxSessions 3" >> "$SSHDCONF"
else
sed -i 's/MaxSessions.*/MaxSessions 3/' "$SSHDCONF"
fi
if ! grep -q "^UseDNS" "$SSHDCONF" 2> /dev/null; then
echo "UseDNS no" >> "$SSHDCONF"
else
sed -i 's/UseDNS.*/UseDNS no/' "$SSHDCONF"
fi
if ! grep -q "^StrictModes" "$SSHDCONF" 2> /dev/null; then
echo "StrictModes yes" >> "$SSHDCONF"
else
sed -i 's/StrictModes.*/StrictModes yes/' "$SSHDCONF"
fi
if ! grep -q "^MaxStartups" "$SSHDCONF" 2> /dev/null; then
echo "MaxStartups 10:30:60" >> "$SSHDCONF"
else
sed -i 's/MaxStartups.*/MaxStartups 10:30:60/' "$SSHDCONF"
fi
if ! grep -q "^HostbasedAuthentication" "$SSHDCONF" 2> /dev/null; then
echo "HostbasedAuthentication no" >> "$SSHDCONF"
else
sed -i 's/HostbasedAuthentication.*/HostbasedAuthentication no/' "$SSHDCONF"
fi
if ! grep -q "^KerberosAuthentication" "$SSHDCONF" 2> /dev/null; then
echo "KerberosAuthentication no" >> "$SSHDCONF"
else
sed -i 's/KerberosAuthentication.*/KerberosAuthentication no/' "$SSHDCONF"
fi
if ! grep -q "^GSSAPIAuthentication" "$SSHDCONF" 2> /dev/null; then
echo "GSSAPIAuthentication no" >> "$SSHDCONF"
else
sed -i 's/GSSAPIAuthentication.*/GSSAPIAuthentication no/' "$SSHDCONF"
fi
if ! grep -q "^RekeyLimit" "$SSHDCONF" 2> /dev/null; then
echo "RekeyLimit 512M 1h" >> "$SSHDCONF"
else
sed -i 's/RekeyLimit.*/RekeyLimit 512M 1h/' "$SSHDCONF"
fi
if ! grep -q "^AllowTcpForwarding" "$SSHDCONF" 2> /dev/null; then
echo "AllowTcpForwarding no" >> "$SSHDCONF"
else
sed -i 's/AllowTcpForwarding.*/AllowTcpForwarding no/' "$SSHDCONF"
fi
if ! grep -q "^AllowAgentForwarding" "$SSHDCONF" 2> /dev/null; then
echo "AllowAgentForwarding no" >> "$SSHDCONF"
else
sed -i 's/AllowAgentForwarding.*/AllowTcpForwarding no/' "$SSHDCONF"
fi
if ! grep -q "^TCPKeepAlive" "$SSHDCONF" 2> /dev/null; then
echo "TCPKeepAlive no" >> "$SSHDCONF"
else
sed -i 's/TCPKeepAlive.*/TCPKeepAlive no/' "$SSHDCONF"
fi
cp "$SSHDCONF" "/etc/ssh/sshd_config.$(date +%y%m%d)"
grep -vE '#|^$' "/etc/ssh/sshd_config.$(date +%y%m%d)" | sort | uniq > "$SSHDCONF"
rm "/etc/ssh/sshd_config.$(date +%y%m%d)"
chown root:root "$SSHDCONF"
chmod 0600 "$SSHDCONF"
systemctl restart sshd.service
if [[ $VERBOSE == "Y" ]]; then
systemctl status sshd.service --no-pager
echo
fi
((SCRIPT_COUNT++))
}
function f_sshconfig {
echo "[$SCRIPT_COUNT] $SSHFILE"
cp "$SSHFILE" "/etc/ssh/ssh_config.$(date +%y%m%d)"
if ! grep -q "^\s.*HashKnownHosts" "$SSHFILE" 2> /dev/null; then
sed -i '/HashKnownHosts/d' "$SSHFILE"
echo " HashKnownHosts yes" >> "$SSHFILE"
fi
sed -i 's/#.*Ciphers .*/ Ciphers [email protected],[email protected],aes256-ctr/g' "$SSHFILE"
sed -i 's/#.*MACs .*/ MACs [email protected],[email protected],hmac-sha2-512,hmac-sha2-256/' "$SSHFILE"
}