-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathssh_crypto.rb
More file actions
229 lines (215 loc) · 6.64 KB
/
ssh_crypto.rb
File metadata and controls
229 lines (215 loc) · 6.64 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
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
# 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
# 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'
ciphers = ciphers66 if inspec.os[:release][0, 2] > '12'
when 'debian'
case inspec.os[:release]
when /^6\./, /^7\./
ciphers = ciphers53
when /^8\./, /^9\./, /^10\./
ciphers = ciphers66
end
when 'redhat', 'centos', 'oracle'
case inspec.os[:release]
when /^6\./
ciphers = ciphers53
when /^7\./, /^8\./
ciphers = ciphers66
end
when 'amazon', 'fedora', 'alpine', 'arch'
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/AbcSize, Metrics/MethodLength, Metrics/PerceivedComplexity
# define a set of default KEXs
kex80 = 'sntrup4591761x25519-sha512@tinyssh.org,curve25519-sha256@libssh.org,diffie-hellman-group-exchange-sha256'
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]
# https://packages.ubuntu.com/search?keywords=openssh-server
when 'ubuntu'
kex = inspec.os[:release][0, 2] >= '19' ? kex80 : kex66
# https://packages.debian.org/search?keywords=openssh-server
when 'debian'
case inspec.os[:release]
when /^6\./
kex = nil
when /^7\./
kex = kex59
when /^8\./, /^9\./, /^10\./
kex = kex66
when /^11\./
kex = kex80
end
when 'redhat', 'centos', 'oracle'
case inspec.os[:release]
when /^6\./
kex = nil
when /^7\./
kex = kex66
when /^8\./
kex = kex80
end
# https://pkgs.alpinelinux.org/packages?name=openssh
when 'arch'
kex = kex80
when 'alpine'
kex = inspec.os[:release].split('.')[1] >= '10' ? kex80 : kex66
when 'amazon'
kex = kex66
# https://src.fedoraproject.org/rpms/openssh
when 'fedora'
kex = inspec.os[:release] >= '30' ? kex80 : kex66
# https://software.opensuse.org/package/openssh
when 'opensuse'
kex = inspec.os[:release] >= '15.2' ? kex80 : kex66
when 'mac_os_x'
case inspec.os[:release]
when /^10.9\./
kex = kex59
when /^10.10\./, /^10.11\./, /^10.12\./
kex = kex66
when /^10.15\./
kex = kex80
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'
macs53_el65 = 'hmac-sha2-512,hmac-sha2-256'
macs = macs59
# adjust MACs based on OS + release
case inspec.os[:name]
when 'ubuntu'
macs = macs66 if inspec.os[:release][0, 2] > '12'
when 'debian'
case inspec.os[:release]
when /^6\./
macs = macs53
when /^7\./
macs = macs59
when /^8\./, /^9\./, /^10\./
macs = macs66
end
when 'redhat', 'centos', 'oracle'
case inspec.os[:release]
when /^6\./
# RedHat Enterprise Linux (and family) backported SHA2 support to their fork of OpenSSH 5.3 in RHEL 6.5.
# See BZ#969565 at:
# https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/6/html-single/6.5_technical_notes/index#openssh
# Because extended support (EUS) updates for 6.x minor releases is no longer available,
# only the settings available for the supported (latest) 6.x release are recommended.
macs = macs53_el65
when /^7\./, /^8\./
macs = macs66
end
when 'amazon', 'fedora', 'alpine', 'arch'
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
# return a list of valid algoriths for a current platform
def valid_algorithms # rubocop:disable Metrics/CyclomaticComplexity
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'
alg = alg53 if inspec.os[:release][0, 2] < '14'
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', 'arch'
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
end