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
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
|
local ipOps = require "ipOps"
local packet = require "packet"
local stdnse = require "stdnse"
local string = require "string"
local stringaux = require "stringaux"
local tab = require "tab"
local table = require "table"
local target = require "target"
--- The following file contains a list of decoders used by the
-- broadcast-listener script. A decoder can be either "ethernet" based or IP
-- based. As we're only monitoring broadcast traffic (ie. traffic not
-- explicitly addressed to us) we're mainly dealing with:
-- o UDP broadcast or multicast traffic
-- o ethernet broadcast traffic
--
-- Hence, the Decoder table defines two sub tables ether and udp.
-- In order to match an incoming UDP packet the destination port number is
-- used, therefore each function is indexed based on their destination port
-- for the udp based decoders. For the ether table each decoder function is
-- indexed according to a pattern that the decoding engine attempts to match.
--
-- Each decoder defines three functions:
-- o <code>new</code> - creates a new instance of the decoder
-- o <code>process</code> - process a packet passed through the
-- <code>data</code> argument.
-- o <code>getResults</code> - retrieve any discovered results
--
-- The discovery engine creates an instance of each decoder once it's needed.
-- Then discovery engine stores this instance in a decoder table for reference
-- once the next packet of the same type comes in. This allows the engine to
-- discard duplicate packets and to request the collected results at the end
-- of the session.
--
-- Currently, the packet decoder decodes the following protocols:
-- o Ether
-- x ARP requests (IPv4)
-- x CDP - Cisco Discovery Protocol
-- x EIGRP - Cisco Enhanced Interior Gateway Routing Protocol
-- x OSPF - Open Shortest Path First
--
-- o UDP
-- x DHCP
-- x Netbios
-- x SSDP
-- x HSRP
-- x DropBox
-- x Logitech SqueezeBox Discovery
-- x Multicast DNS/Bonjour/ZeroConf
-- x Spotify
--
--
-- @author Patrik Karlsson <patrik@cqure.net>
-- @copyright Same as Nmap--See https://nmap.org/book/man-legal.html
-- Version 0.2
-- Created 07/25/2011 - v0.1 - created by Patrik Karlsson
-- 02/12/2012 - v0.2 - added support for EIGRP - Tom Sellers
-- 07/13/2012 - v0.3 - added support for OSPF - Hani Benhabiles
Decoders = {
ether = {
-- ARP IPv4
['^00..08000604'] = {
new = function(self)
local o = { dups = {} }
setmetatable(o, self)
self.__index = self
return o
end,
process = function(self, data)
stdnse.debug1("Process ARP")
local hw, proto, hwsize, protosize, opcode, pos = string.unpack(">I2 I2 BB I2", data)
stdnse.debug1("hwsize = %d; opcode = %d", hwsize, opcode)
-- this shouldn't ever happen, given our filter
if ( hwsize ~= 6 ) then return end
-- if this isn't an ARP request, abort
if ( opcode ~= 1 ) then return end
local src_mac, src_ip, dst_mac, dst_ip, pos = string.unpack(">c6 c4 c6 c4", data, pos)
stdnse.debug1("unpacked addresses")
if ( not(self.results) ) then
self.results = tab.new(3)
tab.addrow(self.results, 'sender ip', 'sender mac', 'target ip')
end
src_mac = stdnse.format_mac(src_mac)
--dst_mac = stdnse.format_mac(dst_mac)
src_ip = ipOps.str_to_ip(src_ip)
dst_ip = ipOps.str_to_ip(dst_ip)
stdnse.debug1("Decoded ARP: %s, %s, %s", src_ip, src_mac, dst_ip)
if not self.dups[src_ip .. src_mac] then
if target.ALLOW_NEW_TARGETS then target.add(src_ip) end
self.dups[src_ip .. src_mac] = true
tab.addrow(self.results, src_ip, src_mac, dst_ip)
end
end,
getResults = function(self) return { name = "ARP Request", (self.results and tab.dump(self.results)) } end,
},
-- CDP
['^AAAA..00000C2000'] = {
new = function(self)
local o = { dups = {} }
setmetatable(o, self)
self.__index = self
return o
end,
getAddresses = function(data)
local addr_list = {}
local count, pos = string.unpack(">I4", data)
for i=1, count do
local proto_type, addr_proto
proto_type, addr_proto, pos = string.unpack(">B s1", data, pos)
if ( addr_proto == '\xCC' -- IPv4
or addr_proto == '\xaa\xaa\x03\x00\x00\x00\x08\x00' -- IPv6
) then
local dev_addr
dev_addr, pos = string.unpack(">s2", data, pos)
addr_list[#addr_list+1] = ipOps.str_to_ip(dev_addr)
end
-- Add code here for other address types
end
return table.concat(addr_list, ' ')
end,
process = function(self, data)
local ver, ttl, chk, pos = string.unpack(">BB I2", data, 9)
if ( ver ~= 2 ) then return end
if ( not(self.results) ) then
self.results = tab.new(5)
tab.addrow( self.results, 'ip', 'id', 'platform', 'version', 'notes' )
end
local result_part = {}
result_part.notes = ''
while ( pos < #data ) do
local typ, len, typdata
typ, len, pos = string.unpack(">I2 I2", data, pos)
typdata, pos = string.unpack("c" .. len - 4, data, pos)
-- Device ID
if ( typ == 1 ) then
result_part.id = typdata
-- Version
elseif ( typ == 5 ) then
result_part.version = typdata:match(", Version (.-),")
-- Platform
elseif ( typ == 6 ) then
result_part.platform = typdata
-- Address
elseif ( typ == 2 ) then
result_part.ip = self.getAddresses(typdata)
elseif ( typ == 10) then
local mgmt_vlan = string.unpack(">I2", data,pos - 2)
result_part.notes = result_part.notes .. 'native vlan:' .. mgmt_vlan .. ' '
-- Management Address
elseif ( typ == 22 ) then
result_part.notes = result_part.notes .. 'mgmt ip:' .. self.getAddresses(typdata) .. ' '
-- TODO: add more decoding of types here ...
end
end
-- TODO: add code for dups check
if ( not(self.dups[result_part.ip]) ) then
self.dups[result_part.ip] = true
tab.addrow( self.results, result_part.ip, result_part.id, result_part.platform, result_part.version, result_part.notes )
end
end,
getResults = function(self) return { name = "CDP", (self.results and tab.dump(self.results) or "") } end,
},
-- EIGRP Update
['0201....0000'] = {
new = function(self)
local o = { dups = {} }
setmetatable(o, self)
self.__index = self
return o
end,
process = function(self, layer3)
local p = packet.Packet:new( layer3, #layer3 )
-- EIGRP is IP protocol 88 (0x58), so verify this
if ( p.ip_p ~= 88 ) then return end
local data = layer3:sub(p.ip_data_offset + 1)
local eigrp = require("eigrp")
local route_type, proto_name
-- Extract the EIGRP header
local response = eigrp.EIGRP.parse(data)
if response then
-- Iterate over tlv tables
for _, tlv in pairs(response.tlvs) do
if eigrp.EIGRP.isRoutingTLV(tlv.type) then
if ( not(self.results) ) then
self.results = tab.new(7)
tab.addrow(self.results, 'Sender IP', 'AS#', 'Route Type', 'Destination', 'Next hop', 'Ext Protocol', 'Orig Router ID')
end
if tlv.type == 0x102 then
route_type = "Internal"
elseif tlv.type == 0x103 then
route_type = "External"
for name, value in pairs(eigrp.EXT_PROTO) do
if value == tlv.eproto then
proto_name = name
break
end
end
end
if ( not(self.dups[("%s:%s:s:%s"):format(p.ip_src, response.as, tlv.type, tlv.dst)]) ) then
if ( target.ALLOW_NEW_TARGETS ) then target.add(p.ip_src) end
self.dups[("%s:%s:%s:%s"):format(p.ip_src, response.as, tlv.type, tlv.dst)] = true
tab.addrow( self.results, p.ip_src, response.as, route_type, tlv.dst, tlv.nexth, proto_name or 'X', tlv.orouterid or 'X')
end
end
end
end
end,
getResults = function(self) return { name = "EIGRP Update", (self.results and tab.dump(self.results) or "") } end,
},
['0205....0000'] = {
new = function(self)
local o = { dups = {} }
setmetatable(o, self)
self.__index = self
return o
end,
process = function(self, layer3)
local p = packet.Packet:new( layer3, #layer3 )
-- EIGRP is IP protocol 88 (0x58), so verify this
if ( p.ip_p ~= 88 ) then return end
local data = layer3:sub(p.ip_data_offset + 1)
local eigrp = require("eigrp")
-- Extract the EIGRP header
local response = eigrp.EIGRP.parse(data)
-- See if Software version TLV is included
local swvertlv
for num, tlv in pairs(response.tlvs) do
if tlv.type == eigrp.TLV.SWVER then
swvertlv = num
end
end
if swvertlv then
if ( not(self.results) ) then
self.results = tab.new(5)
tab.addrow(self.results, 'Sender IP', 'AS number', 'EIGRP version', 'IOS version')
end
if ( not(self.dups[("%s:%s"):format(p.ip_src,response.as)]) ) then
if ( target.ALLOW_NEW_TARGETS ) then target.add(p.ip_src) end
self.dups[("%s:%s"):format(p.ip_src,response.as)] = true
tab.addrow( self.results, p.ip_src, response.as, response.tlvs[swvertlv].majv .. '.' .. response.tlvs[swvertlv].minv, response.tlvs[swvertlv].majtlv .. '.' .. response.tlvs[swvertlv].mintlv)
end
end
end,
getResults = function(self) return { name = "EIGRP Hello", (self.results and tab.dump(self.results) or "") } end,
},
-- OSPF
['02010'] = { -- OSPFv2 Hello packet
new = function(self)
local o = { dups = {} }
setmetatable(o, self)
self.__index = self
return o
end,
process = function(self, layer3)
local p = packet.Packet:new( layer3, #layer3 )
-- IP Protocol is 89 for OSPF
if p.ip_p ~= 89 then return end
local ospf = require("ospf")
local data = layer3:sub(p.ip_data_offset + 1)
local header = ospf.OSPF.Header.parse(data)
if header then
if not(self.results) then
self.results = tab.new(5)
tab.addrow(self.results, 'Source IP', 'Router ID', 'Area ID', 'Auth Type', 'Password')
end
local srcip = p.ip_src
local areaid = header.area_id
local routerid = header.router_id
local authtype = header.auth_type
local authdata
-- Format authentication type and data
if header.auth_type == 0 then
authtype = "None"
authdata = ''
elseif header.auth_type == 1 then
authtype = "Password"
authdata = header.auth_data.password
elseif header.auth_type == 2 then
authtype = "OSPF MD5"
authdata = "" -- Not really helpful, as the MD5
-- is applied to the whole packet+password
else
-- Error
stdnse.debug1("Unknown OSPF auth type %d", header.auth_type)
return
end
if ( not(self.dups[("%s:%s"):format(routerid,areaid)]) ) then
if ( target.ALLOW_NEW_TARGETS ) then target.add(routerid) end
self.dups[("%s:%s"):format(routerid,areaid)] = true
tab.addrow( self.results, srcip, routerid, areaid, authtype, authdata)
end
else
return nil
end
end,
getResults = function(self) return { name = "OSPF Hello", (self.results and tab.dump(self.results)) } end,
},
},
udp = {
-- DHCP
[68] = {
new = function(self)
local o = { dups = {} }
setmetatable(o, self)
self.__index = self
return o
end,
getOption = function(options, name)
for _, v in ipairs(options) do
if ( v.name == name ) then
if ( type(v.value) == "table" ) then
return table.concat(v.value, ", ")
else
return v.value
end
end
end
end,
process = function(self, layer3)
local dhcp = require("dhcp")
local p = packet.Packet:new( layer3, #layer3 )
local data = layer3:sub(p.udp_offset + 9)
-- the dhcp.parse function isn't optimal for doing
-- this, but it will do for now. First, we need to
-- extract the xid as the parse function checks that it
-- was the same as in the request, which we didn't do.
local msgtype, xid = string.unpack("<B xxx c4", data)
-- attempt to parse the data
local status, result = dhcp.dhcp_parse(data, xid)
if ( status ) then
if ( not(self.results) ) then
self.results = tab.new(6)
tab.addrow(self.results, "srv ip", "cli ip", "mask", "gw", "dns", "vendor" )
end
local uniq_key = ("%s:%s"):format(p.ip_src, result.yiaddr_str)
if ( not(self.dups[uniq_key]) ) then
if ( target.ALLOW_NEW_TARGETS ) then target.add(p.ip_src) end
local mask = self.getOption(result.options, "Subnet Mask") or "-"
local gw = self.getOption(result.options, "Router") or "-"
local dns = self.getOption(result.options, "Domain Name Server") or "-"
local vendor = self.getOption(result.options, "Class Identifier") or "-"
stdnse.debug1("Decoded DHCP: %s, %s, %s, %s, %s, %s", p.ip_src, result.yiaddr_str, mask, gw, dns, vendor)
tab.addrow(self.results, p.ip_src, result.yiaddr_str, mask, gw, dns, vendor )
end
end
end,
getResults = function(self) return { name = "DHCP", (self.results and tab.dump(self.results) or "") } end,
},
-- Netbios
[137] = {
new = function(self)
local o = {
reg_dups = {},
query_dups = {},
reg_result = tab.new(2),
query_result = tab.new(2)
}
setmetatable(o, self)
self.__index = self
return o
end,
process = function(self, layer3)
local dns = require('dns')
local netbios = require('netbios')
local tab = require('tab')
local p = packet.Packet:new( layer3, #layer3 )
local data = layer3:sub(p.udp_offset + 9)
local dresp = dns.decode(data)
if ( not(dresp.questions) or #dresp.questions < 1 ) then return end
local name = netbios.name_decode("\32" .. dresp.questions[1].dname)
local function add_record(isreg, ip, name)
local res = (isreg and self.reg_result or self.query_result)
local dup = (isreg and self.reg_dups or self.query_dups)
if ( #res == 0 ) then
tab.addrow(res, 'ip', 'query')
end
stdnse.debug1('Decoded Netbios(%s): %s, %s', (isreg and "Registration" or "Query"), ip, name)
if ( not(dup[ip]) or not(dup[ip][name]) ) then
if ( target.ALLOW_NEW_TARGETS ) then target.add(p.ip_src) end
tab.addrow(res, ip, name)
dup[ip] = dup[ip] or {}
dup[ip][name] = true
end
end
add_record( ( dresp.flags.OC2 and dresp.flags.OC4 ), p.ip_src, name )
end,
getResults = function(self)
local result = { name = "Netbios" }
if ( #self.reg_result > 1) then
table.insert(result, { name = "Registrations", tab.dump(self.reg_result) })
end
if ( #self.query_result > 1 ) then
table.insert(result, { name = "Query", tab.dump(self.query_result) })
end
return result
end,
},
-- BROWSER
[138] = {
new = function(self)
local o = { dups = {} }
setmetatable(o, self)
self.__index = self
return o
end,
process = function(self, layer3)
local netbios = require('netbios')
local p = packet.Packet:new( layer3, #layer3 )
local data = layer3:sub(p.udp_offset + 9)
local ip, src, dst = string.unpack(">c4 xxxxxx c34 c34", data, 5)
ip = ipOps.str_to_ip(ip)
src = netbios.name_decode(src)
dst = netbios.name_decode(dst)
stdnse.debug1("Decoded BROWSER: %s, %s, %s", ip, src, dst)
local dup_rec = ("%s:%s:%s"):format(ip, src, dst)
if ( not(self.dups[dup_rec]) ) then
self.dups[dup_rec] = true
if ( not(self.results) ) then
self.results = tab.new(3)
tab.addrow(self.results, 'ip', 'src', 'dst')
end
tab.addrow(self.results, ip, src, dst)
end
end,
getResults = function(self) return { name = "Browser", (self.results and tab.dump(self.results)) } end,
},
-- DHCPv6
[547] = {
new = function(self)
local o = { dups = {} }
setmetatable(o, self)
self.__index = self
return o
end,
process = function(self, layer3)
local tab = require('tab')
local p = packet.Packet:new( layer3, #layer3 )
local data = layer3:sub(p.udp_offset + 9)
local dhcp6 = require("dhcp6")
local resp = dhcp6.DHCP6.Response.parse(data)
for _, v in ipairs(resp.opts or {}) do
if v.resp and v.resp.fqdn then
if ( not(self.results) ) then
self.results = tab.new(2)
tab.addrow(self.results, 'ip', 'fqdn')
end
if ( not(self.dups[p.ip_src]) or not(self.dups[p.ip_src][v.resp.fqdn]) ) then
tab.addrow(self.results, p.ip_src, v.resp.fqdn )
self.dups[p.ip_src] = self.dups[p.ip_src] or {}
self.dups[p.ip_src][v.resp.fqdn] = true
end
end
end
end,
getResults = function(self) return { name = "DHCP6", (self.results and tab.dump(self.results)) } end,
},
-- CUPS
[631] = {
new = function(self)
local o = { dups = {} }
setmetatable(o, self)
self.__index = self
return o
end,
process = function(self, layer3)
local tab = require('tab')
local p = packet.Packet:new( layer3, #layer3 )
local data = layer3:sub(p.udp_offset + 9)
local function split(str)
local start, pos, stop = 1, 1
local pattern = ""
local result = {}
while(pos) do
start = pos + #pattern
pos, stop = str:find("\"", start)
pattern = (pos == start and "\" " or " ")
pos, stop = str:find(pattern, start + 1)
table.insert(result, str:sub(start, (stop and stop - (#pattern))))
end
return ( #result > 0 and result or nil )
end
local results = split(data)
local uri = ( #results > 3 and results[3]:match('[^%"]+') )
local loc = ( #results > 4 and results[4]:match('[^%"]+') or "")
local info = ( #results > 5 and results[5]:match('[^%"]+') or "")
local model = ( #results > 6 and results[6]:match('[^%"]+') or "")
if ( not(self.results) ) then
self.results = tab.new(4)
tab.addrow(self.results, 'ip', 'uri', 'loc', 'model')
end
stdnse.debug1("Decoded CUPS: %s, %s, %s, %s", p.ip_src, uri, loc, model)
if ( not(self.dups[p.ip_src]) or not(self.dups[p.ip_src][uri]) ) then
tab.addrow(self.results, p.ip_src, uri, loc, model)
self.dups[p.ip_src] = self.dups[p.ip_src] or {}
self.dups[p.ip_src][uri] = self.dups[p.ip_src][uri] or true
end
end,
getResults = function(self) return { name = "CUPS", (self.results and tab.dump(self.results)) } end,
},
-- SSDP
[1900] = {
new = function(self)
local o = { dups = {} }
setmetatable(o, self)
self.__index = self
return o
end,
process = function(self, layer3)
local p = packet.Packet:new( layer3, #layer3 )
local data = layer3:sub(p.udp_offset + 9)
local headers = stringaux.strsplit("\r\n", data)
for _, h in ipairs(headers) do
local st = ""
if ( h:match("^ST:.*") ) then
st = h:match("^ST:(.*)")
if ( not(self.results) ) then
self.results = tab.new(1)
tab.addrow( self.results, 'ip', 'uri' )
end
if ( not(self.dups[("%s:%s"):format(p.ip_src,st)]) ) then
if ( target.ALLOW_NEW_TARGETS ) then target.add(p.ip_src) end
tab.addrow( self.results, p.ip_src, st )
self.dups[("%s:%s"):format(p.ip_src,st)] = true
end
end
end
end,
getResults = function(self) return { name = "SSDP", (self.results and tab.dump(self.results)) } end,
},
--- HSRP
[1985] = {
new = function(self)
local o = { dups = {} }
setmetatable(o, self)
self.__index = self
return o
end,
process = function(self, layer3)
local p = packet.Packet:new( layer3, #layer3 )
local data = layer3:sub(p.udp_offset + 9)
local State = {
[0] = "Initial",
[1] = "Learn",
[2] = "Listen",
[4] = "Speak",
[8] = "Standby",
[16] = "Active"
}
local Op = {
[0] = "Hello",
[1] = "Coup",
[2] = "Resign",
}
local version, op, state, prio, group, secret, pos = string.unpack("BBBxxBBxz", data)
if ( version ~= 0 ) then return end
pos = pos + ( 7 - #secret )
local virtip
virtip, pos = string.unpack(">I4", data, pos)
if ( not(self.dups[p.ip_src]) ) then
if ( not(self.results) ) then
self.results = tab.new(7)
tab.addrow(self.results, 'ip', 'version', 'op', 'state', 'prio', 'group', 'secret', 'virtual ip')
end
if ( target.ALLOW_NEW_TARGETS ) then target.add(p.ip_src) end
self.dups[p.ip_src] = true
tab.addrow(self.results, p.ip_src, version, Op[op], State[state], prio, group, secret, ipOps.fromdword(virtip))
end
end,
getResults = function(self) return { name = "HSRP", (self.results and tab.dump(self.results) or "") } end,
},
-- Dropbox
[17500] = {
new = function(self)
local o = { dups = {} }
setmetatable(o, self)
self.__index = self
return o
end,
process = function(self, layer3)
local json = require("json")
local p = packet.Packet:new( layer3, #layer3 )
local data = layer3:sub(p.udp_offset + 9)
local status, info = json.parse(data)
if ( not(status) ) then
return false, "Failed to parse JSON data"
end
-- Add host to list.
for _, key1 in pairs({"namespaces", "version"}) do
for key2, val in pairs(info[key1]) do
info[key1][key2] = tostring(info[key1][key2])
end
end
if ( not(self.results) ) then
self.results = tab.new(6)
tab.addrow(
self.results,
'displayname',
'ip',
'port',
'version',
'host_int',
'namespaces'
)
end
if ( not(self.dups[p.ip_src]) ) then
tab.addrow(
self.results,
info.displayname,
p.ip_src,
info.port,
table.concat(info.version, "."),
info.host_int,
table.concat(info.namespaces, ", ")
)
self.dups[p.ip_src] = true
if ( target.ALLOW_NEW_TARGETS ) then target.add(p.ip_src) end
end
end,
getResults = function(self) return { name = "DropBox", (self.results and tab.dump(self.results) or "") } end,
},
--- Squeezebox Discovery
[3483] = {
new = function(self)
local o = { dups = {} }
setmetatable(o, self)
self.__index = self
return o
end,
process = function(self, layer3)
local p = packet.Packet:new( layer3, #layer3 )
local data = layer3:sub(p.udp_offset + 9)
if ( data:match("^eIPAD") ) then
if ( not(self.results) ) then
self.results = tab.new(1)
tab.addrow( self.results, 'ip' )
end
if ( not(self.dups[p.ip_src]) ) then
tab.addrow( self.results, p.ip_src )
self.dups[p.ip_src] = true
if ( target.ALLOW_NEW_TARGETS ) then target.add(p.ip_src) end
end
end
end,
getResults = function(self) return { name = "Squeezebox Discovery", (self.results and tab.dump(self.results) or "") } end,
},
-- Multicast DNS/BonJour/ZeroConf
[5353] = {
new = function(self)
local o = {
dups = {},
macbooks = {},
generic = {}
}
setmetatable(o, self)
self.__index = self
return o
end,
process = function(self, layer3)
local dns = require('dns')
local p = packet.Packet:new( layer3, #layer3 )
local data = layer3:sub(p.udp_offset + 9)
local dresp = dns.decode(data)
local name
if ( dresp.questions and #dresp.questions > 0 ) then
name = dresp.questions[1].dname
elseif ( dresp.answers and #dresp.answers > 0 ) then
-- Identify MacBooks
local macbook, model, ip, ipv6
if ( p.ip_src:match(":") ) then
ipv6 = p.ip_src
else
ip = p.ip_src
end
for i in ipairs(dresp.answers) do
if ( dresp.answers[i]['data'] ) then
local data = string.unpack("s1", dresp.answers[i]['data'])
if ( data ) then
model = data:match("^model=(.*)")
if ( model ) then
macbook = dresp.answers[i]['dname']:match("^(.-)%._")
end
end
elseif ( dresp.answers[i]['ip'] ) then
ip = dresp.answers[i]['ip']
elseif ( dresp.answers[i]['ipv6'] ) then
ipv6 = dresp.answers[i]['ipv6']
elseif ( not(macbook) and dresp.answers[i]['domain'] ) then
macbook = dresp.answers[i]['domain']
end
end
if ( macbook and model ) then
self.macbooks[macbook] = self.macbooks[macbook] or {}
self.macbooks[macbook]['macbook'] = self.macbooks[macbook]['macbook'] or macbook
self.macbooks[macbook]['model'] = self.macbooks[macbook]['model'] or model
self.macbooks[macbook]['ip'] = self.macbooks[macbook]['ip'] or ip
self.macbooks[macbook]['ipv6'] = self.macbooks[macbook]['ipv6'] or ipv6
stdnse.debug1("Decoded MDNS(MacBook): %s, %s, %s, %s",
(self.macbooks[macbook]['ip'] or ""), (self.macbooks[macbook]['ipv6'] or ""),
self.macbooks[macbook]['model'], self.macbooks[macbook]['macbook'])
else
name = dresp.answers[1].dname
if ( not(name) ) then return end
self.generic[name] = self.generic[name] or {}
self.generic[name]['name'] = self.generic[name]['name'] or name
if ( p.ip_src:match(":") ) then
self.generic[name]['ipv6'] = p.ip_src
else
self.generic[name]['ip'] = p.ip_src
end
stdnse.debug1("Decoded MDNS(Generic): %s, %s", name, p.ip_src)
end
end
end,
getResults = function(self)
local tab = require('tab')
local result = { name = "MDNS" }
-- build a macbooks table
local macbooks, generic
if ( next(self.generic) ) then
table.sort(self.generic)
generic = tab.new(3)
tab.addrow(generic, 'ip', 'ipv6', 'name')
for name, v in pairs(self.generic) do
tab.addrow(generic, (v.ip or ""), (v.ipv6 or ""), name)
end
table.insert(result, { name = 'Generic', tab.dump(generic) } )
end
if ( next(self.macbooks) ) then
table.sort(self.macbooks)
macbooks = tab.new(4)
tab.addrow(macbooks, 'ip', 'ipv6', 'name', 'model')
for _, v in pairs(self.macbooks) do
tab.addrow(macbooks, (v.ip or ""), (v.ipv6 or ""), v.macbook, v.model)
end
table.insert(result, { name = 'Macbooks', tab.dump(macbooks) } )
end
return result
end,
},
[5355] = { -- LLMNR
new = function(self)
local o = { dups = {} }
setmetatable(o, self)
self.__index = self
return o
end,
process = function(self, layer3)
local tab = require('tab')
local dns = require('dns')
local p = packet.Packet:new( layer3, #layer3 )
local data = layer3:sub(p.udp_offset + 9)
local resp = dns.decode(data)
if ( not(self.results) ) then
self.results = tab.new(2)
tab.addrow(self.results, 'ip', 'query')
end
local name = (( resp.questions and #resp.questions > 0 ) and resp.questions[1].dname )
if ( not(name) ) then return end
stdnse.debug1("Decoded LLMNR: %s, %s", p.ip_src, name)
if ( not(self.dups[("%s:%s"):format(p.ip_src, name)]) ) then
self.dups[("%s:%s"):format(p.ip_src, name)] = true
tab.addrow(self.results, p.ip_src, name)
end
end,
getResults = function(self) return { name = "LLMNR", (self.results and tab.dump(self.results)) } end,
},
--- Spotify
[57621] = {
new = function(self)
local o = { dups = {} }
setmetatable(o, self)
self.__index = self
return o
end,
process = function(self, layer3)
local p = packet.Packet:new( layer3, #layer3 )
local data = layer3:sub(p.udp_offset + 9)
if ( data:match("^SpotUdp") ) then
if ( not(self.results) ) then
self.results = tab.new(1)
tab.addrow( self.results, 'ip' )
end
if ( not(self.dups[p.ip_src]) ) then
tab.addrow( self.results, p.ip_src )
self.dups[p.ip_src] = true
if ( target.ALLOW_NEW_TARGETS ) then target.add(p.ip_src) end
end
end
end,
getResults = function(self) return { name = "Spotify", (self.results and tab.dump(self.results)) } end,
}
}
}
|