-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathssh_crypto.rb
276 lines (257 loc) · 6.88 KB
/
ssh_crypto.rb
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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
# Copyright 2015, Dominik Richter
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# author: Christoph Hartmann
# author: Dominik Richter
# author: Patrick Muench
class SshCrypto < Inspec.resource(1) # rubocop:disable Metrics/ClassLength
name 'ssh_crypto'
def ssh_version
inspec.command('ssh -V 2>&1 | cut -f1 -d" " | cut -f2 -d"_"').stdout.to_f
end
def valid_ciphers # rubocop:disable Metrics/CyclomaticComplexity, Metrics/MethodLength
# define a set of default ciphers
ciphers53 = 'aes256-ctr,aes192-ctr,aes128-ctr'
ciphers66 = 'chacha20-poly1305@openssh.com,aes256-gcm@openssh.com,aes128-gcm@openssh.com,aes256-ctr,aes192-ctr,aes128-ctr'
ciphers = ciphers53
# adjust ciphers based on OS + release
case inspec.os[:name]
when 'ubuntu'
case inspec.os[:release]
when '12.04'
ciphers = ciphers53
when '14.04', '15.10', '16.04', '18.04'
ciphers = ciphers66
end
when 'debian'
case inspec.os[:release]
when /^6\./, /^7\./
ciphers = ciphers53
when /^8\./, /^9\./
ciphers = ciphers66
end
when 'redhat', 'centos', 'oracle'
case inspec.os[:release]
when /^6\./
ciphers = ciphers53
when /^7\./
ciphers = ciphers66
end
when 'amazon', 'fedora', 'alpine'
ciphers = ciphers66
when 'opensuse'
case inspec.os[:release]
when /^13\.2/
ciphers = ciphers66
when /^42\./
ciphers = ciphers66
end
when 'mac_os_x'
case inspec.os[:release]
when /^10.9\./
ciphers = ciphers53
when /^10.10\./, /^10.11\./, /^10.12\./
ciphers = ciphers66
end
end
ciphers
end
def valid_kexs # rubocop:disable Metrics/CyclomaticComplexity, Metrics/MethodLength
# define a set of default KEXs
kex66 = 'curve25519-sha256@libssh.org,diffie-hellman-group-exchange-sha256'
kex59 = 'diffie-hellman-group-exchange-sha256'
kex = kex59
# adjust KEXs based on OS + release
case inspec.os[:name]
when 'ubuntu'
case inspec.os[:release]
when '12.04'
kex = kex59
when '14.04', '15.10', '16.04', '18.04'
kex = kex66
end
when 'debian'
case inspec.os[:release]
when /^6\./
kex = nil
when /^7\./
kex = kex59
when /^8\./, /^9\./
kex = kex66
end
when 'redhat', 'centos', 'oracle'
case inspec.os[:release]
when /^6\./
kex = nil
when /^7\./
kex = kex66
end
when 'amazon', 'fedora', 'alpine'
kex = kex66
when 'opensuse'
case inspec.os[:release]
when /^13\.2/
kex = kex66
when /^42\./
kex = kex66
end
when 'mac_os_x'
case inspec.os[:release]
when /^10.9\./
kex = kex59
when /^10.10\./, /^10.11\./, /^10.12\./
kex = kex66
end
end
kex
end
def valid_macs # rubocop:disable Metrics/CyclomaticComplexity, Metrics/MethodLength
# define a set of default MACs
macs66 = 'hmac-sha2-512-etm@openssh.com,hmac-sha2-256-etm@openssh.com,umac-128-etm@openssh.com,hmac-sha2-512,hmac-sha2-256'
macs59 = 'hmac-sha2-512,hmac-sha2-256,hmac-ripemd160'
macs53 = 'hmac-ripemd160,hmac-sha1'
macs = macs59
# adjust MACs based on OS + release
case inspec.os[:name]
when 'ubuntu'
case inspec.os[:release]
when '12.04'
macs = macs59
when '14.04', '15.10', '16.04', '18.04'
macs = macs66
end
when 'debian'
case inspec.os[:release]
when /^6\./
macs = macs53
when /^7\./
macs = macs59
when /^8\./, /^9\./
macs = macs66
end
when 'redhat', 'centos', 'oracle'
case inspec.os[:release]
when /^6\./
macs = macs53
when /^7\./
macs = macs66
end
when 'amazon', 'fedora', 'alpine'
macs = macs66
when 'opensuse'
case inspec.os[:release]
when /^13\.2/
macs = macs66
when /^42\./
macs = macs66
end
when 'mac_os_x'
case inspec.os[:release]
when /^10.9\./
macs = macs59
when /^10.10\./, /^10.11\./, /^10.12\./
macs = macs66
end
end
macs
end
def valid_privseparation
# define privilege separation set
ps53 = 'yes'
ps59 = 'sandbox'
ps75 = nil
ps = ps59
# debian 7.x and newer has ssh 5.9+
# ubuntu 12.04 and newer has ssh 5.9+
case inspec.os[:name]
when 'debian'
case inspec.os[:release]
when /^6\./
ps = ps53
end
when 'redhat', 'centos', 'oracle'
case inspec.os[:release]
# redhat/centos/oracle 6.x has ssh 5.3
when /^6\./
ps = ps53
when /^7\./
ps = ps59
end
when 'ubuntu'
case inspec.os[:release]
when /^18\./
ps = ps75
end
when 'fedora', 'alpine'
ps = ps75
end
ps
end
# return a list of valid algoriths for a current platform
def valid_algorithms # rubocop:disable Metrics/CyclomaticComplexity, Metrics/MethodLength
alg53 = %w[rsa]
alg60 = %w[rsa ecdsa]
alg66 = %w[rsa ecdsa ed25519]
alg = alg66 # probably its a best suitable set for everything unknown
case inspec.os[:name]
when 'ubuntu'
case inspec.os[:release]
when '12.04'
alg = alg53
when '14.04', '15.10', '16.04', '18.04'
alg = alg66
end
when 'debian'
case inspec.os[:release]
when /^7\./
alg = alg60
when /^8\./, /^9\./
alg = alg66
end
when 'redhat', 'centos', 'oracle'
case inspec.os[:release]
when /^6\./
alg = alg53
when /^7\./
alg = alg66
end
when 'amazon', 'fedora', 'alpine'
alg = alg66
when 'opensuse'
case inspec.os[:release]
when /^13\.2/
alg = alg66
when /^42\./
alg = alg66
end
when 'mac_os_x'
case inspec.os[:release]
when /^10.9\./
alg53
when /^10.10\./, /^10.11\./, /^10.12\./
alg66
end
end
alg
end
# returns the hostkeys value based on valid_algorithms
def valid_hostkeys
hostkeys = valid_algorithms.map { |alg| "/etc/ssh/ssh_host_#{alg}_key" }
# its('HostKey') provides a string for a single-element value.
# we have to return a string if we have a single-element
# https://github.com/chef/inspec/issues/1434
return hostkeys[0] if hostkeys.length == 1
hostkeys
end
end