recog 2.3.22 → 3.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (128) hide show
  1. checksums.yaml +4 -4
  2. checksums.yaml.gz.sig +2 -0
  3. data/LICENSE +1 -1
  4. data/README.md +25 -16
  5. data/Rakefile +2 -9
  6. data/lib/recog/db_manager.rb +1 -1
  7. data/lib/recog/fingerprint.rb +21 -7
  8. data/lib/recog/fingerprint_parse_error.rb +10 -0
  9. data/lib/recog/match_reporter.rb +37 -3
  10. data/lib/recog/matcher.rb +5 -10
  11. data/lib/recog/verifier.rb +4 -4
  12. data/lib/recog/verify_reporter.rb +7 -6
  13. data/lib/recog/version.rb +1 -1
  14. data/{bin → recog/bin}/recog_match +20 -7
  15. data/{xml → recog/xml}/apache_modules.xml +0 -0
  16. data/{xml → recog/xml}/apache_os.xml +61 -19
  17. data/{xml → recog/xml}/architecture.xml +15 -1
  18. data/{xml → recog/xml}/dhcp_vendor_class.xml +10 -10
  19. data/{xml → recog/xml}/dns_versionbind.xml +16 -13
  20. data/{xml → recog/xml}/favicons.xml +167 -9
  21. data/{xml → recog/xml}/fingerprints.xsd +9 -1
  22. data/{xml → recog/xml}/ftp_banners.xml +131 -141
  23. data/{xml → recog/xml}/h323_callresp.xml +2 -2
  24. data/{xml → recog/xml}/hp_pjl_id.xml +81 -81
  25. data/{xml → recog/xml}/html_title.xml +250 -9
  26. data/{xml → recog/xml}/http_cookies.xml +111 -34
  27. data/{xml → recog/xml}/http_servers.xml +483 -270
  28. data/{xml → recog/xml}/http_wwwauth.xml +83 -37
  29. data/{xml → recog/xml}/imap_banners.xml +10 -10
  30. data/{xml → recog/xml}/ldap_searchresult.xml +0 -0
  31. data/{xml → recog/xml}/mdns_device-info_txt.xml +0 -0
  32. data/{xml → recog/xml}/mdns_workstation_txt.xml +0 -0
  33. data/{xml → recog/xml}/mysql_banners.xml +0 -0
  34. data/{xml → recog/xml}/mysql_error.xml +0 -0
  35. data/{xml → recog/xml}/nntp_banners.xml +8 -5
  36. data/{xml → recog/xml}/ntp_banners.xml +33 -33
  37. data/{xml → recog/xml}/operating_system.xml +92 -77
  38. data/{xml → recog/xml}/pop_banners.xml +25 -25
  39. data/{xml → recog/xml}/rsh_resp.xml +0 -0
  40. data/{xml → recog/xml}/rtsp_servers.xml +0 -0
  41. data/{xml → recog/xml}/sip_banners.xml +16 -5
  42. data/{xml → recog/xml}/sip_user_agents.xml +122 -27
  43. data/{xml → recog/xml}/smb_native_lm.xml +5 -5
  44. data/{xml → recog/xml}/smb_native_os.xml +25 -25
  45. data/{xml → recog/xml}/smtp_banners.xml +132 -131
  46. data/{xml → recog/xml}/smtp_debug.xml +0 -0
  47. data/{xml → recog/xml}/smtp_ehlo.xml +0 -0
  48. data/{xml → recog/xml}/smtp_expn.xml +0 -0
  49. data/{xml → recog/xml}/smtp_help.xml +1 -1
  50. data/{xml → recog/xml}/smtp_mailfrom.xml +0 -0
  51. data/{xml → recog/xml}/smtp_noop.xml +0 -0
  52. data/{xml → recog/xml}/smtp_quit.xml +0 -0
  53. data/{xml → recog/xml}/smtp_rcptto.xml +0 -0
  54. data/{xml → recog/xml}/smtp_rset.xml +0 -0
  55. data/{xml → recog/xml}/smtp_turn.xml +0 -0
  56. data/{xml → recog/xml}/smtp_vrfy.xml +0 -0
  57. data/{xml → recog/xml}/snmp_sysdescr.xml +1248 -1233
  58. data/{xml → recog/xml}/snmp_sysobjid.xml +13 -2
  59. data/{xml → recog/xml}/ssh_banners.xml +9 -5
  60. data/{xml → recog/xml}/telnet_banners.xml +83 -1
  61. data/{xml → recog/xml}/tls_jarm.xml +30 -2
  62. data/{xml → recog/xml}/x11_banners.xml +3 -3
  63. data/{xml → recog/xml}/x509_issuers.xml +24 -4
  64. data/{xml → recog/xml}/x509_subjects.xml +32 -3
  65. data/recog.gemspec +9 -5
  66. data/spec/data/external_example_fingerprint/hp_printer_ex_01.txt +1 -0
  67. data/spec/data/external_example_fingerprint/hp_printer_ex_02.txt +1 -0
  68. data/spec/data/external_example_fingerprint.xml +8 -0
  69. data/spec/data/external_example_illegal_path_fingerprint.xml +7 -0
  70. data/spec/lib/recog/db_spec.rb +84 -61
  71. data/spec/lib/recog/fingerprint_spec.rb +4 -4
  72. data/spec/lib/recog/match_reporter_spec.rb +22 -8
  73. data/spec/lib/recog/verify_reporter_spec.rb +8 -8
  74. data/spec/spec_helper.rb +4 -0
  75. data.tar.gz.sig +0 -0
  76. metadata +154 -142
  77. metadata.gz.sig +0 -0
  78. data/.github/ISSUE_TEMPLATE/bug_report.md +0 -37
  79. data/.github/ISSUE_TEMPLATE/feature_request.md +0 -17
  80. data/.github/ISSUE_TEMPLATE/fingerprint_request.md +0 -27
  81. data/.github/PULL_REQUEST_TEMPLATE +0 -24
  82. data/.github/SECURITY.md +0 -35
  83. data/.github/dependabot.yml +0 -8
  84. data/.github/workflows/ci.yml +0 -26
  85. data/.github/workflows/verify.yml +0 -89
  86. data/.gitignore +0 -23
  87. data/.rspec +0 -3
  88. data/.ruby-gemset +0 -1
  89. data/.ruby-version +0 -1
  90. data/.snyk +0 -10
  91. data/.travis.yml +0 -25
  92. data/CONTRIBUTING.md +0 -276
  93. data/bin/recog_cleanup +0 -16
  94. data/bin/recog_export +0 -81
  95. data/bin/recog_standardize +0 -163
  96. data/bin/recog_verify +0 -63
  97. data/cpe-remap.yaml +0 -356
  98. data/features/data/failing_banners_fingerprints.xml +0 -20
  99. data/features/data/matching_banners_fingerprints.xml +0 -23
  100. data/features/data/multiple_banners_fingerprints.xml +0 -32
  101. data/features/data/no_tests.xml +0 -3
  102. data/features/data/sample_banner.txt +0 -2
  103. data/features/data/successful_tests.xml +0 -18
  104. data/features/data/tests_with_failures.xml +0 -20
  105. data/features/data/tests_with_warnings.xml +0 -17
  106. data/features/match.feature +0 -36
  107. data/features/support/aruba.rb +0 -3
  108. data/features/support/env.rb +0 -6
  109. data/features/verify.feature +0 -48
  110. data/identifiers/README.md +0 -70
  111. data/identifiers/fields.txt +0 -105
  112. data/identifiers/hw_device.txt +0 -84
  113. data/identifiers/hw_family.txt +0 -121
  114. data/identifiers/hw_product.txt +0 -461
  115. data/identifiers/os_architecture.txt +0 -10
  116. data/identifiers/os_device.txt +0 -75
  117. data/identifiers/os_family.txt +0 -234
  118. data/identifiers/os_product.txt +0 -350
  119. data/identifiers/service_family.txt +0 -249
  120. data/identifiers/service_product.txt +0 -764
  121. data/identifiers/vendor.txt +0 -847
  122. data/lib/recog/verifier_factory.rb +0 -13
  123. data/misc/convert_mysql_err +0 -61
  124. data/misc/order.xsl +0 -17
  125. data/requirements.txt +0 -2
  126. data/spec/lib/fingerprint_self_test_spec.rb +0 -175
  127. data/tools/dev/hooks/pre-commit +0 -21
  128. data/update_cpes.py +0 -250
@@ -1,461 +0,0 @@
1
- 33220A Waveform Generator
2
- 33521A Waveform Generator
3
- 34972A Data Logger
4
- 3PAR
5
- 53230A Frequency Counter
6
- 883 VoIP
7
- ADB-4820CD
8
- APIC
9
- AV Receiver
10
- AVC787
11
- Access Control
12
- Access Gateway
13
- Access Point
14
- Adaptive Security Appliance
15
- AirPort Express
16
- AirPort Extreme
17
- Alarm Panel
18
- AmpliFi
19
- AppDynamics
20
- Apple TV (2nd generation)
21
- Apple TV (3rd generation)
22
- Apple TV (4th generation)
23
- Apple TV 4K
24
- Apple TV 4K (2nd generation)
25
- Appliance
26
- ArchiveTeam Warrior
27
- Asset Management
28
- AutoDome
29
- AutoVu SharpV
30
- BlackBox
31
- BladeSystem Onboard Administrator
32
- Border GW
33
- Bridge
34
- CC EtherNet/IP
35
- CP
36
- CU360
37
- Camera
38
- Captive Portal
39
- CarDetector
40
- Catalyst
41
- Catalyst 1900
42
- Celerra
43
- Chromecast
44
- ClearPass Policy Manager
45
- ClickShare
46
- CloudKey
47
- Color Bulb
48
- CommServer
49
- CommandPost
50
- ConnectUPS Web Card
51
- Crosswork SON Appliance
52
- D Series
53
- DCS-825L
54
- DCS-932
55
- DD OS
56
- DNA Center
57
- DSL Router
58
- DX800A
59
- Data ONTAP
60
- Digital Signage Player
61
- Discover
62
- Discovery
63
- DocCam
64
- Document Centre
65
- Drone Detector
66
- DuraFon
67
- E5810 Gateway Device
68
- ECOM100
69
- EDR-G902
70
- EDR-G903
71
- EM7
72
- EP-series
73
- EXA Signal Analyzer
74
- Eagle Eye Director II
75
- EchoLife Home Gateway
76
- EdgeRouter X
77
- EdgeSwitch
78
- Elevation
79
- Email Security Gateway
80
- EqualLogic
81
- Eternus
82
- Ethernet Relay Controller
83
- Ethernet Relay Module
84
- Excella
85
- Fastmark M5
86
- Fiber Network Box
87
- Firepower
88
- Firewall
89
- Firewall-1
90
- FlexiPacket Hub
91
- FortiMail
92
- FortiManager
93
- GXP1610
94
- GXP1615
95
- GXP1625
96
- GXP1628
97
- GXP2200
98
- GigaVUE
99
- HDHomeRun
100
- HDIPCam
101
- HT801
102
- HT802
103
- HT812
104
- HT813
105
- HT814
106
- HT818
107
- Helium Miner
108
- HiPer Access Router Card
109
- Home Controller
110
- Home Gateway
111
- HomePod
112
- HomePod mini
113
- Hue
114
- HyperFlex Connect
115
- IA Appliance
116
- IAM
117
- IBHLink S7++
118
- ILOM
119
- IMC
120
- IP Camera
121
- IP Link Control Processor
122
- IP2IR
123
- IPMI
124
- IVR
125
- Infinity Controler
126
- Instreamer
127
- IntelliSlot Web Card
128
- Internet Payment Gateway
129
- Internet Phone Adapter
130
- Isilon InsightIQ
131
- Isilon OneFS
132
- J-Link Pro
133
- J9155A
134
- JetDirect
135
- K1000
136
- KWS-1043N
137
- KX-NS1000
138
- Key Management
139
- Key Management Server
140
- LORIX ONE
141
- Lantick Ethernet Relay Controller
142
- Lencore Sound Manager 2
143
- MDS 9000
144
- MXA Signal Analyzer
145
- Mac Pro (Early 2008)
146
- Mac Pro (Early 2009)
147
- Mac Pro (Late 2013)
148
- Mac Pro (Late 2019)
149
- Mac Pro (Mid 2006)
150
- Mac Pro (Mid 2007)
151
- Mac Pro (Mid 2012)
152
- Mac mini (Late 2009)
153
- Mac mini (Late 2012)
154
- Mac mini (Late 2014)
155
- Mac mini (Late 2018)
156
- Mac mini (M1, 2020)
157
- Mac mini (Mid 2007)
158
- Mac mini (Mid 2010)
159
- Mac mini (Mid 2011)
160
- MacBook (13-inch, Mid 2010)
161
- MacBook (Retina, 12-inch, 2017)
162
- MacBook (Retina, 12-inch, Early 2015)
163
- MacBook (Retina, 12-inch, Early 2016)
164
- MacBook Air (11-inch, Early 2014)
165
- MacBook Air (11-inch, Early 2015)
166
- MacBook Air (11-inch, Late 2010)
167
- MacBook Air (11-inch, Mid 2011)
168
- MacBook Air (11-inch, Mid 2012)
169
- MacBook Air (13-inch, 2017)
170
- MacBook Air (13-inch, Early 2014)
171
- MacBook Air (13-inch, Late 2010)
172
- MacBook Air (13-inch, Mid 2011)
173
- MacBook Air (13-inch, Mid 2012)
174
- MacBook Air (M1, 2020)
175
- MacBook Air (Mid 2009)
176
- MacBook Air (Retina, 13-inch, 2018)
177
- MacBook Air (Retina, 13-inch, 2019)
178
- MacBook Air (Retina, 13-inch, 2020)
179
- MacBook Pro (13-inch, 2016, Four Thunderbolt 3 ports)
180
- MacBook Pro (13-inch, 2016, Two Thunderbolt 3 ports)
181
- MacBook Pro (13-inch, 2017, Four Thunderbolt 3 ports)
182
- MacBook Pro (13-inch, 2017, Two Thunderbolt 3 ports)
183
- MacBook Pro (13-inch, 2018, Four Thunderbolt 3 ports)
184
- MacBook Pro (13-inch, 2019, Two Thunderbolt 3 ports)
185
- MacBook Pro (13-inch, 2020)
186
- MacBook Pro (13-inch, Late 2011)
187
- MacBook Pro (13-inch, M1, 2020)
188
- MacBook Pro (13-inch, Mid 2009)
189
- MacBook Pro (13-inch, Mid 2010)
190
- MacBook Pro (13-inch, Mid 2012)
191
- MacBook Pro (15-inch, 2016)
192
- MacBook Pro (15-inch, 2017)
193
- MacBook Pro (15-inch, 2018)
194
- MacBook Pro (15-inch, 2019)
195
- MacBook Pro (15-inch, Late 2008)
196
- MacBook Pro (15-inch, Late 2011)
197
- MacBook Pro (15-inch, Mid 2009)
198
- MacBook Pro (15-inch, Mid 2010)
199
- MacBook Pro (15-inch, Mid 2012)
200
- MacBook Pro (16-inch, 2019)
201
- MacBook Pro (17-inch, Early 2008)
202
- MacBook Pro (17-inch, Late 2011)
203
- MacBook Pro (17-inch, Mid 2009)
204
- MacBook Pro (17-inch, Mid 2010)
205
- MacBook Pro (Retina, 13-inch, Early 2013)
206
- MacBook Pro (Retina, 13-inch, Early 2015)
207
- MacBook Pro (Retina, 13-inch, Late 2013)
208
- MacBook Pro (Retina, 15-inch, Early 2013)
209
- MacBook Pro (Retina, 15-inch, Late 2013)
210
- MacBook Pro (Retina, 15-inch, Mid 2015)
211
- Makito X Decoder
212
- Media Gateway
213
- MediaLink Controller
214
- MediaSense
215
- Meeting Management
216
- Meeting Server
217
- MegaRAC
218
- Meraki Device
219
- Mercury
220
- Mergepoint
221
- Miniserver
222
- My Book Live
223
- N1913A Power Meter
224
- N5172B Signal Generator
225
- NAM
226
- NAS4Free
227
- NFVIS
228
- NPort
229
- NR900
230
- NetScaler Gateway
231
- NetScaler SDX Gateway
232
- NetScreen
233
- NetVR
234
- Netbox
235
- Netscaler Gateway
236
- Network Camera
237
- Network Gateway
238
- Network Node
239
- Network Security Appliance
240
- Nexus 1000V
241
- Nexus Player
242
- Novus UPS
243
- OfficeConnect Switch
244
- OnHub
245
- OpenManage
246
- OpenManage Switch
247
- OpenNAC
248
- Orbi micro
249
- Orbit IP Camera
250
- PCoIP Endpoint Device
251
- PDR M800
252
- PIAF Virtual Appliance
253
- PLAY
254
- PLC-5
255
- Paragon-100G
256
- Photonic Switch
257
- Plug Outdoor
258
- PoliWall
259
- PowerLogic Power Meter
260
- PowerVault 124T
261
- Prime Collaboration Manager
262
- Primergy
263
- Printer
264
- Prosafe Plus
265
- Quad Plus Receiver
266
- R Series
267
- RT31P2
268
- RTU
269
- Rack PDU Card
270
- RadioLinx
271
- Raspberry Pi
272
- ReadyNAS
273
- RecoverPoint
274
- ReeCam
275
- Roku
276
- Room Alert
277
- Roomba
278
- S7 DALI Gateway
279
- SD-WAN
280
- SHDSL Router
281
- SHIELD
282
- SIP Gateway
283
- SIParator Firewall
284
- SL2100
285
- SLS
286
- SPA
287
- SPA112
288
- SPA122
289
- SRP
290
- SV8100
291
- SV9100
292
- ScanFront
293
- Scrutinizer
294
- Sensor
295
- Sentry Switched CDU
296
- ShareLink Pro
297
- Sigma Control 2
298
- SimpliVity OmniStack
299
- Site Recovery Manager
300
- SmartEdge Sensor
301
- Softswitch
302
- SolsticePod
303
- SonicPoint
304
- SoundPoint
305
- Spot
306
- Stealthwatch
307
- Steelhead
308
- Storage Appliance
309
- Sub
310
- Sunny WebBox
311
- SuperStack 3
312
- SuperStack 3 Firewall
313
- SuperStack II
314
- Symmetry EN-2DBC
315
- System Management
316
- TG789vac
317
- TelePresence
318
- TelePresence MCU
319
- Tenable Appliance
320
- Tenable Core
321
- Tetration
322
- Time Capsule
323
- TouchLink Control Panel
324
- UCM6202
325
- UCM6204
326
- UCM6208
327
- UCS Manager
328
- UDS
329
- UPS
330
- USG20-VPN
331
- USG40
332
- USG60
333
- Ultra Door Controller
334
- UniFi Cloud Key
335
- UniFi NVR
336
- UniFi Security Gateway
337
- Univerge
338
- Universal Media Gateway
339
- VBrick Rev
340
- VPN Gateway
341
- Verizon FiOS Router
342
- Video Controller
343
- Vigor
344
- Virtual Connect Manager
345
- Virtual Traffic Manager
346
- Vood
347
- WLAN AP
348
- WNR2000
349
- WebBox
350
- Whiteboard
351
- Wireless Dock
352
- Wireless LAN Controller
353
- Wireless Radio
354
- Wireless Router
355
- XCC
356
- Xfinity Broadband Router
357
- Xserve (Early 2008)
358
- Xserve (Early 2009)
359
- Xserve (Late 2006)
360
- Xserve G4
361
- Xserve G4 (Slot Load)
362
- Xserve G5
363
- Zone Director
364
- airCube
365
- e-STUDIO
366
- iCOM Control Panel
367
- iDRAC
368
- iLO
369
- iLO 3
370
- iLO 4
371
- iMac (20/24-inch, Early 2008)
372
- iMac (21.5-inch, 2017)
373
- iMac (21.5-inch, Late 2012)
374
- iMac (21.5-inch, Late 2013)
375
- iMac (21.5-inch, Late 2015)
376
- iMac (21.5-inch, Mid 2010)
377
- iMac (21.5-inch, Mid 2011)
378
- iMac (21.5-inch, Mid 2014)
379
- iMac (24-inch, Early 2009)
380
- iMac (24-inch, M1, 2021)
381
- iMac (27-inch, Late 2009)
382
- iMac (27-inch, Late 2012)
383
- iMac (27-inch, Late 2013)
384
- iMac (27-inch, Mid 2010)
385
- iMac (27-inch, Mid 2011)
386
- iMac (Retina 4K, 21.5-inch, 2017)
387
- iMac (Retina 4K, 21.5-inch, 2019)
388
- iMac (Retina 4K, 21.5-inch, Late 2015)
389
- iMac (Retina 5K, 27-inch, 2017)
390
- iMac (Retina 5K, 27-inch, 2019)
391
- iMac (Retina 5K, 27-inch, 2020)
392
- iMac (Retina 5K, 27-inch, Late 2015)
393
- iMac (Retina 5K, 27-inch, Mid 2015)
394
- iMac Pro (Retina 5K, Late 2017)
395
- iPad (4th generation)
396
- iPad (5th generation)
397
- iPad (6th generation)
398
- iPad (7th generation)
399
- iPad (8th generation)
400
- iPad (9th generation)
401
- iPad Air
402
- iPad Air (3rd generation)
403
- iPad Air (4th generation)
404
- iPad Air 2
405
- iPad Pro (10.5-inch)
406
- iPad Pro (11-inch)
407
- iPad Pro (11-inch, 2nd generation)
408
- iPad Pro (11-inch, 3rd generation)
409
- iPad Pro (12.9-inch)
410
- iPad Pro (12.9-inch, 2nd generation)
411
- iPad Pro (12.9-inch, 3rd generation)
412
- iPad Pro (12.9-inch, 4th generation)
413
- iPad Pro (9.7-inch)
414
- iPad mini
415
- iPad mini (5th generation)
416
- iPad mini (6th generation)
417
- iPad mini 2
418
- iPad mini 3
419
- iPad mini 4
420
- iPhone
421
- iPhone 11
422
- iPhone 11 Pro
423
- iPhone 11 Pro Max
424
- iPhone 12 5G
425
- iPhone 12 Mini 5G
426
- iPhone 12 Pro 5G
427
- iPhone 12 Pro Max 5G
428
- iPhone 13
429
- iPhone 13 Pro
430
- iPhone 13 Pro Max
431
- iPhone 13 mini
432
- iPhone 3G
433
- iPhone 3GS
434
- iPhone 4
435
- iPhone 4s
436
- iPhone 5
437
- iPhone 5c
438
- iPhone 5s
439
- iPhone 6
440
- iPhone 6 Plus
441
- iPhone 6s
442
- iPhone 6s Plus
443
- iPhone 7
444
- iPhone 7 Plus
445
- iPhone 8
446
- iPhone 8 Plus
447
- iPhone SE
448
- iPhone SE (2020)
449
- iPhone X
450
- iPhone XR
451
- iPhone XS
452
- iPhone XS Max
453
- iPod Touch (1st generation)
454
- iPod Touch (2nd generation)
455
- iPod Touch (3rd generation)
456
- iPod Touch (4th generation)
457
- iPod Touch (5th generation)
458
- iPod Touch (6th generation)
459
- iPod Touch (7th generation)
460
- iSTAR Ultra
461
- vManage
@@ -1,10 +0,0 @@
1
- ARM
2
- ARM64
3
- Alpha
4
- MIPS
5
- MIPS64
6
- PowerPC
7
- Sparc
8
- System/6000
9
- x86
10
- x86_64
@@ -1,75 +0,0 @@
1
- ADSL Modem
2
- ADSL Router
3
- ATM DSL Unit
4
- Alarm Panel
5
- Appliance
6
- Broadband Router
7
- CSU/DSU
8
- Cable Modem
9
- Check Scanner
10
- Copier
11
- DSL Modem
12
- DSLAM
13
- DSU/CSU
14
- DVR
15
- Device Server
16
- Fax Server
17
- Firewall
18
- Frame Relay
19
- HMI Controller
20
- HiPath
21
- Hub
22
- Hypervisor
23
- IDS
24
- IP Camera
25
- IPS
26
- KVM
27
- Lights Out Management
28
- Linux
29
- Load Balancer
30
- Mainframe
31
- Management Processor
32
- Media Gateway
33
- Mobile
34
- Monitoring
35
- Multifunction Device
36
- Multiplexer
37
- NAC
38
- NAS
39
- Network
40
- Network Audio
41
- Network Management Device
42
- Network Scanner
43
- Onboard Administrator
44
- PDU
45
- PLC
46
- Point of Sale
47
- Power Device
48
- Print Server
49
- Printer
50
- Remote Access Server
51
- Remote Terminal
52
- Router
53
- SD-WAN Appliance
54
- SIP Device
55
- SIP Gateway
56
- SSL-VPN
57
- Scanner
58
- Security Appliance
59
- Storage
60
- Switch
61
- Tape library
62
- Test Instrument
63
- UPS
64
- USB Server
65
- UnixWare
66
- VPN
67
- Video Conferencing
68
- ViewStation
69
- VoIP
70
- VoIP Switch
71
- WAN Accelerator
72
- WAP
73
- Web Proxy
74
- Wireless Controller
75
- Wireless Presenter