recog 2.3.7 → 2.3.12

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 (81) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +9 -2
  3. data/.ruby-gemset +1 -0
  4. data/.ruby-version +1 -0
  5. data/.travis.yml +2 -4
  6. data/CONTRIBUTING.md +136 -37
  7. data/Gemfile +2 -5
  8. data/README.md +18 -16
  9. data/bin/recog_cleanup +16 -0
  10. data/bin/recog_standardize +142 -0
  11. data/cpe-remap.yaml +36 -1
  12. data/features/match.feature +4 -0
  13. data/features/support/aruba.rb +3 -0
  14. data/features/verify.feature +5 -0
  15. data/identifiers/README.md +56 -0
  16. data/identifiers/hw_device.txt +77 -0
  17. data/identifiers/hw_family.txt +96 -0
  18. data/identifiers/hw_product.txt +328 -0
  19. data/identifiers/os_architecture.txt +20 -0
  20. data/identifiers/os_device.txt +94 -0
  21. data/identifiers/os_family.txt +325 -0
  22. data/identifiers/os_product.txt +420 -0
  23. data/identifiers/service_family.txt +272 -0
  24. data/identifiers/service_product.txt +557 -0
  25. data/identifiers/software_class.txt +26 -0
  26. data/identifiers/software_family.txt +91 -0
  27. data/identifiers/software_product.txt +333 -0
  28. data/identifiers/vendor.txt +891 -0
  29. data/lib/recog/version.rb +1 -1
  30. data/requirements.txt +1 -1
  31. data/spec/lib/fingerprint_self_test_spec.rb +1 -1
  32. data/spec/lib/recog/fingerprint/regexp_factory_spec.rb +1 -1
  33. data/update_cpes.py +4 -1
  34. data/xml/apache_modules.xml +292 -5
  35. data/xml/apache_os.xml +50 -2
  36. data/xml/architecture.xml +19 -7
  37. data/xml/dns_versionbind.xml +200 -26
  38. data/xml/favicons.xml +1701 -0
  39. data/xml/ftp_banners.xml +276 -16
  40. data/xml/h323_callresp.xml +112 -12
  41. data/xml/hp_pjl_id.xml +47 -5
  42. data/xml/html_title.xml +1419 -72
  43. data/xml/http_cookies.xml +77 -10
  44. data/xml/http_servers.xml +898 -47
  45. data/xml/http_wwwauth.xml +154 -27
  46. data/xml/imap_banners.xml +23 -13
  47. data/xml/ldap_searchresult.xml +81 -9
  48. data/xml/mdns_device-info_txt.xml +194 -17
  49. data/xml/mdns_workstation_txt.xml +4 -2
  50. data/xml/mysql_banners.xml +554 -45
  51. data/xml/mysql_error.xml +113 -6
  52. data/xml/nntp_banners.xml +10 -2
  53. data/xml/ntp_banners.xml +95 -11
  54. data/xml/operating_system.xml +90 -3
  55. data/xml/pop_banners.xml +32 -31
  56. data/xml/rsh_resp.xml +11 -2
  57. data/xml/rtsp_servers.xml +43 -23
  58. data/xml/sip_banners.xml +9 -14
  59. data/xml/sip_user_agents.xml +69 -3
  60. data/xml/smb_native_lm.xml +10 -2
  61. data/xml/smb_native_os.xml +80 -2
  62. data/xml/smtp_banners.xml +233 -13
  63. data/xml/smtp_debug.xml +6 -4
  64. data/xml/smtp_ehlo.xml +7 -5
  65. data/xml/smtp_expn.xml +13 -4
  66. data/xml/smtp_help.xml +23 -4
  67. data/xml/smtp_mailfrom.xml +5 -2
  68. data/xml/smtp_noop.xml +6 -5
  69. data/xml/smtp_quit.xml +5 -4
  70. data/xml/smtp_rcptto.xml +5 -2
  71. data/xml/smtp_rset.xml +4 -4
  72. data/xml/smtp_turn.xml +4 -4
  73. data/xml/smtp_vrfy.xml +14 -4
  74. data/xml/snmp_sysdescr.xml +776 -52
  75. data/xml/snmp_sysobjid.xml +47 -2
  76. data/xml/ssh_banners.xml +259 -80
  77. data/xml/telnet_banners.xml +376 -23
  78. data/xml/x11_banners.xml +27 -4
  79. data/xml/x509_issuers.xml +37 -13
  80. data/xml/x509_subjects.xml +525 -55
  81. metadata +29 -6
@@ -1,4 +1,6 @@
1
1
  mappings:
2
+ alpine:
3
+ vendor: alpinelinux
2
4
  apache:
3
5
  vendor: apache
4
6
  products:
@@ -14,6 +16,10 @@ mappings:
14
16
  weblogic: weblogic_server
15
17
  blue_coat:
16
18
  vendor: bluecoat
19
+ carnegie_mellon_university:
20
+ vendor: cmu
21
+ products:
22
+ cyrus_imap: cyrus_imap_server
17
23
  centos:
18
24
  vendor: centos
19
25
  products:
@@ -30,6 +36,9 @@ mappings:
30
36
  vendor: debian
31
37
  products:
32
38
  linux: debian_linux
39
+ embedthis:
40
+ products:
41
+ goahead_webserver: goahead
33
42
  f5:
34
43
  vendor: f5
35
44
  products:
@@ -39,16 +48,26 @@ mappings:
39
48
  vendor: hp
40
49
  products:
41
50
  ilo: integrated_lights_out
42
- lotus_domino: lotus_domino_server
43
51
  tru64_unix: tru64
44
52
  ibm:
45
53
  vendor: ibm
46
54
  products:
47
55
  lotus_domino: lotus_domino_server
56
+ ibm_domino: lotus_domino
57
+ os/400: os_400
58
+ jamf:
59
+ products:
60
+ jamf_pro: jamf
48
61
  juniper:
49
62
  vendor: juniper
50
63
  products:
51
64
  junos_os: junos
65
+ kibana:
66
+ vendor: elasticsearch
67
+ cz.nic:
68
+ vendor: knot-dns
69
+ litespeed_technologies:
70
+ vendor: litespeedtech
52
71
  linux:
53
72
  vendor: linux
54
73
  products:
@@ -86,6 +105,10 @@ mappings:
86
105
  vendor: modwsgi
87
106
  mort_bay:
88
107
  vendor: mortbay
108
+ nlnet_labs:
109
+ vendor: nlnetlabs
110
+ products:
111
+ dnsd: name_server_daemon
89
112
  net-snmp:
90
113
  vendor: net-snmp
91
114
  products:
@@ -94,6 +117,11 @@ mappings:
94
117
  vendor: paloaltonetworks
95
118
  products:
96
119
  pa_firewall: pan-os
120
+ parallels:
121
+ products:
122
+ plesk: parallels_plesk_panel
123
+ plesk:
124
+ vendor: parallels
97
125
  proftpd_project:
98
126
  vendor: proftpd
99
127
  realvnc_ltd.:
@@ -113,6 +141,13 @@ mappings:
113
141
  vendor: sun
114
142
  products:
115
143
  solaris: sunos
144
+ tandberg:
145
+ vendor: cisco
146
+ tightvnc:
147
+ products:
148
+ desktop: tightvnc
149
+ ubiquiti:
150
+ vendor: ui
116
151
  ubuntu:
117
152
  vendor: canonical
118
153
  products:
@@ -1,4 +1,5 @@
1
1
  Feature: Match
2
+ @no-clobber
2
3
  Scenario: Finds matches
3
4
  When I run `recog_match matching_banners_fingerprints.xml sample_banner.txt`
4
5
  Then it should pass with:
@@ -7,6 +8,7 @@ Feature: Match
7
8
  MATCH: {"matched"=>"SunOS/Solaris", "os.vendor"=>"Sun", "os.family"=>"Solaris", "os.product"=>"Solaris", "os.device"=>"General", "host.name"=>"polaris", "os.version"=>"5.8", "service.protocol"=>"ftp", "fingerprint_db"=>"matching_banners_fingerprints", "data"=>"polaris FTP server (SunOS 5.8) ready."}
8
9
  """
9
10
 
11
+ @no-clobber
10
12
  Scenario: Fails at finding matches
11
13
  When I run `recog_match failing_banners_fingerprints.xml sample_banner.txt`
12
14
  Then it should pass with:
@@ -15,6 +17,7 @@ Feature: Match
15
17
  FAIL: polaris FTP server (SunOS 5.8) ready
16
18
  """
17
19
 
20
+ @no-clobber
18
21
  Scenario: Finds multiple matches
19
22
  When I run `recog_match multiple_banners_fingerprints.xml sample_banner.txt --multi-match`
20
23
  Then it should pass with:
@@ -23,6 +26,7 @@ Feature: Match
23
26
  MATCHES: {"matched"=>"Generic FTP, Checks for the existence of the word FTP in the line", "service.protocol"=>"", "fingerprint_db"=>"multiple_banners_fingerprints", "data"=>"polaris FTP server (SunOS 5.8) ready."},{"matched"=>"SunOS/Solaris", "service.protocol"=>"ftp", "os.vendor"=>"Sun", "os.family"=>"Solaris", "os.product"=>"Solaris", "os.device"=>"General", "host.name"=>"polaris", "os.version"=>"5.8", "fingerprint_db"=>"multiple_banners_fingerprints", "data"=>"polaris FTP server (SunOS 5.8) ready."}
24
27
  """
25
28
 
29
+ @no-clobber
26
30
  Scenario: Finds first matches using no-multi-match flag
27
31
  When I run `recog_match multiple_banners_fingerprints.xml sample_banner.txt --no-multi-match`
28
32
  Then it should pass with:
@@ -0,0 +1,3 @@
1
+ Aruba.configure do |config|
2
+ config.working_directory = 'features/data'
3
+ end
@@ -1,4 +1,5 @@
1
1
  Feature: Verify
2
+ @no-clobber
2
3
  Scenario: No tests
3
4
  When I run `recog_verify no_tests.xml`
4
5
  Then it should pass with:
@@ -6,6 +7,7 @@ Feature: Verify
6
7
  SUMMARY: Test completed with 0 successful, 0 warnings, and 0 failures
7
8
  """
8
9
 
10
+ @no-clobber
9
11
  Scenario: Successful tests
10
12
  When I run `recog_verify successful_tests.xml`
11
13
  Then it should pass with:
@@ -13,6 +15,7 @@ Feature: Verify
13
15
  SUMMARY: Test completed with 4 successful, 0 warnings, and 0 failures
14
16
  """
15
17
 
18
+ @no-clobber
16
19
  Scenario: Tests with warnings, warnings enabled
17
20
  When I run `recog_verify tests_with_warnings.xml`
18
21
  Then it should fail with:
@@ -23,6 +26,7 @@ Feature: Verify
23
26
  """
24
27
  And the exit status should be 2
25
28
 
29
+ @no-clobber
26
30
  Scenario: Tests with warnings, warnings disabled
27
31
  When I run `recog_verify --no-warnings tests_with_warnings.xml`
28
32
  Then it should pass with:
@@ -30,6 +34,7 @@ Feature: Verify
30
34
  SUMMARY: Test completed with 1 successful, 0 warnings, and 0 failures
31
35
  """
32
36
 
37
+ @no-clobber
33
38
  Scenario: Tests with failures
34
39
  When I run `recog_verify tests_with_failures.xml`
35
40
  Then it should fail with:
@@ -0,0 +1,56 @@
1
+ # Recog: Identifiers
2
+
3
+ This directory contains lists of standard identifiers for mapping Recog matches. The goal is define a standard set of constants to represent known software, hardware, vendors, and categories.
4
+
5
+ This is currently incomplete and will be updated as standardization work moves forward.
6
+
7
+ Fingerprints should use these identifiers whenever possible; if a different name or syntax for a given identifier is preferred, this should be implemented in the application through a mapping function.
8
+
9
+ ## Lists
10
+
11
+ ### Vendors
12
+
13
+ `vendor.txt` defines known vendor names, covering services, operating systems, and hardware.
14
+
15
+ ### Operating Systems
16
+
17
+ `os_architecture.txt` defines known CPU types.
18
+
19
+ `os_product.txt` defines known operating system names.
20
+
21
+ `os_family.txt` defines known operating system families.
22
+
23
+ `os_device.txt` defines known types of devices by function or purpose.
24
+
25
+
26
+ ### Hardware
27
+
28
+ `hw_product.txt` defines known hardware product names.
29
+
30
+ `hw_family.txt` defines known hardware product families.
31
+
32
+ `hw_device.txt` defines known types of devices by function or purpose (overlaps with `os_device.txt`).
33
+
34
+ ### Services
35
+
36
+ `service_product.txt` defines known service product names.
37
+
38
+ `service_family.txt` defines known service product families.
39
+
40
+ ### Software
41
+
42
+ `software_product.txt` defines known software product names.
43
+
44
+ `software_family.txt` defines known software product families.
45
+
46
+ `software_class.txt` defines known types of software by function or purpose.
47
+
48
+ ## Pending Work
49
+
50
+ * All existing fingerprints should be correlated against these lists to identify mismatches and updated accordingly.
51
+
52
+ * All net new identifiers from the existing fingerprints should be merged into these lists.
53
+
54
+ * All fingerprint assertions should be enumerated, documented, and standardized where possible (`host.mac`, etc).
55
+
56
+ * Hardware identifiers should be enumerated, consolidated, and standardized.
@@ -0,0 +1,77 @@
1
+ ADSL Modem
2
+ AV Receiver
3
+ Access Control
4
+ Alarm Panel
5
+ Appliance
6
+ Audio Encoder
7
+ Broadband router
8
+ Building Automation
9
+ Cable Modem
10
+ Check Scanner
11
+ DOCSIS Cable Modem
12
+ DSL Modem
13
+ DVR
14
+ Data Terminal
15
+ Desktop
16
+ Device
17
+ Device Hub
18
+ Device Server
19
+ Display Controller
20
+ Environment Control
21
+ Ethernet Adapter
22
+ Firewall
23
+ HMI Controller
24
+ Handheld Scanner
25
+ IP Camera
26
+ IPS
27
+ Industrial Control
28
+ JTAG Adapter
29
+ KVM
30
+ Laptop
31
+ Light Bulb
32
+ Lights Out Management
33
+ Media Receiver
34
+ Media Server
35
+ Mobile Phone
36
+ Monitoring
37
+ Multifunction Device
38
+ NAS
39
+ Network Appliance
40
+ Network Audio
41
+ Network Management Device
42
+ PLC
43
+ Power Relay
44
+ Power device
45
+ Powerline
46
+ Print server
47
+ Printer
48
+ Router
49
+ SD-WAN Appliance
50
+ SIP Device
51
+ SIP Gateway
52
+ Scanner
53
+ Security Appliance
54
+ Smart TV
55
+ Storage
56
+ Storage Appliance
57
+ Support Appliance
58
+ Switch
59
+ Tablet
60
+ Tape Library
61
+ Telecom
62
+ Test Instrument
63
+ VPN
64
+ Video Conference
65
+ Video Conferencing
66
+ Video Decoder
67
+ Video Encoder
68
+ VoIP
69
+ VoIP Server
70
+ VoIP Switch
71
+ Voice Appliance
72
+ WAP
73
+ WLAN Repeater
74
+ Web cam
75
+ Whiteboard
76
+ Wireless Controller
77
+ Wireless Presenter
@@ -0,0 +1,96 @@
1
+ AR Series
2
+ Adaptive Security Appliance
3
+ Aficio
4
+ AirPort
5
+ Apple TV
6
+ Communication Manager
7
+ DVR
8
+ DiskStation
9
+ Document Centre
10
+ Extended Systems ExtendNet
11
+ FRITZ!Box
12
+ FRITZ!Powerline
13
+ FRITZ!WLAN Repeater
14
+ FS
15
+ Firewall-1
16
+ Forms Printer
17
+ FortiGate
18
+ GW25
19
+ GXV
20
+ GXW
21
+ HDX
22
+ HandyTone
23
+ HomePod
24
+ Honeywell
25
+ ILOM
26
+ IMDVR
27
+ ION
28
+ JetDirect
29
+ LaserJet
30
+ LinkCom Xpress
31
+ MGate
32
+ MPEG4 DVR
33
+ MT
34
+ MX Series
35
+ Mac mini
36
+ MacBook
37
+ MacBook Pro
38
+ MegaRAC
39
+ Multifunction
40
+ My Book
41
+ NE
42
+ NPort
43
+ NetVanta
44
+ Network Audio
45
+ Network Video Door Station
46
+ Optra
47
+ Orbi
48
+ POWER System
49
+ Phaser
50
+ Primergy
51
+ Pro Series
52
+ RMX
53
+ ReadyNAS
54
+ RealPresence
55
+ RealPresence Group
56
+ Router
57
+ S500 Range
58
+ SIP Device
59
+ SIP Gateway
60
+ Service Access Switch
61
+ Service Router
62
+ SoundPoint
63
+ SoundTouch
64
+ SpeedTouch
65
+ Speedport
66
+ Storage
67
+ Sun Fire
68
+ Sunny
69
+ Switch
70
+ System X
71
+ TASKalfa
72
+ TelePresence
73
+ Time Capsule
74
+ TippingPoint
75
+ Turbo Station
76
+ UniFi
77
+ Unified Security Gateway
78
+ VSX
79
+ VoIP
80
+ WD2GO
81
+ WiMax
82
+ Wide Format
83
+ Wide Format Printer
84
+ WorkCentre
85
+ WorkCentre Pro
86
+ Xserve
87
+ ZXDSL
88
+ ZXHN
89
+ ZXV
90
+ iLO
91
+ iMac
92
+ iPad
93
+ iPad Air
94
+ iPad Pro
95
+ iPad mini
96
+ iPhone
@@ -0,0 +1,328 @@
1
+ 33220A Waveform Generator
2
+ 33521A Waveform Generator
3
+ 34972A Data Logger
4
+ 3PAR
5
+ 53230A Frequency Counter
6
+ ADB-4820CD
7
+ APIC
8
+ AV Receiver
9
+ AVC787
10
+ Access Gateway
11
+ Access Point
12
+ Adaptive Security Appliance
13
+ AirPort Express
14
+ AirPort Extreme
15
+ AppDynamics
16
+ Apple TV (2nd generation)
17
+ Apple TV (3rd generation)
18
+ Apple TV (4th generation)
19
+ Apple TV 4K
20
+ Appliance
21
+ ArchiveTeam Warrior
22
+ Asset Management
23
+ AutoVu SharpV
24
+ BladeSystem Onboard Administrator
25
+ Border GW
26
+ Bridge
27
+ CC EtherNet/IP
28
+ CP
29
+ Camera
30
+ Captive Portal
31
+ CarDetector
32
+ Catalyst
33
+ Catalyst 1900
34
+ Celerra
35
+ Chromecast
36
+ ClickShare
37
+ CloudKey
38
+ CommandPost
39
+ ConnectUPS Web Card
40
+ Crosswork SON Appliance
41
+ DD OS
42
+ DNA Center
43
+ DSL Router
44
+ Digital Signage Player
45
+ Discover
46
+ Discovery
47
+ Document Centre
48
+ DuraFon
49
+ ECOM100
50
+ EP-series
51
+ EXA Signal Analyzer
52
+ Eagle Eye Director II
53
+ EchoLife Home Gateway
54
+ EdgeSwitch
55
+ Elevation
56
+ EqualLogic
57
+ Ethernet Relay Module
58
+ Excella
59
+ Fastmark M5
60
+ Fiber Network Box
61
+ Firepower
62
+ Firewall
63
+ Firewall-1
64
+ FlexiPacket Hub
65
+ FortiMail
66
+ FortiManager
67
+ GigaVUE
68
+ HDHomeRun
69
+ HDIPCam
70
+ HDX {hw.model}
71
+ HiPer Access Router Card
72
+ Home Controller
73
+ Home Gateway
74
+ HomePod
75
+ Hue
76
+ IA Appliance
77
+ IAM
78
+ IBHLink S7++
79
+ ILOM
80
+ IMC
81
+ IP Camera
82
+ IP Link Control Processor
83
+ IP2IR
84
+ IPMI
85
+ IVR
86
+ IntelliSlot Web Card
87
+ Internet Payment Gateway
88
+ Internet Phone Adapter
89
+ Isilon InsightIQ
90
+ Isilon OneFS
91
+ J-Link Pro
92
+ J9155A
93
+ JetDirect
94
+ K1000
95
+ KWS-1043N
96
+ Key Management
97
+ Lantick Ethernet Relay Controller
98
+ Lencore Sound Manager 2
99
+ MDS 9000
100
+ MXA Signal Analyzer
101
+ Mac Pro (Early 2008)
102
+ Mac Pro (Early 2009)
103
+ Mac Pro (Late 2013)
104
+ Mac Pro (Late 2019)
105
+ Mac Pro (Mid 2006)
106
+ Mac Pro (Mid 2007)
107
+ Mac Pro (Mid 2012)
108
+ Mac mini (Late 2009)
109
+ Mac mini (Late 2012)
110
+ Mac mini (Late 2014)
111
+ Mac mini (Late 2018)
112
+ Mac mini (Mid 2007)
113
+ Mac mini (Mid 2010)
114
+ Mac mini (Mid 2011)
115
+ MacBook (13-inch, Mid 2010)
116
+ MacBook (Retina, 12-inch, 2017)
117
+ MacBook (Retina, 12-inch, Early 2015)
118
+ MacBook (Retina, 12-inch, Early 2016)
119
+ MacBook Air (11-inch, Early 2014)
120
+ MacBook Air (11-inch, Early 2015)
121
+ MacBook Air (11-inch, Late 2010)
122
+ MacBook Air (11-inch, Mid 2011)
123
+ MacBook Air (11-inch, Mid 2012)
124
+ MacBook Air (13-inch, 2017)
125
+ MacBook Air (13-inch, Early 2014)
126
+ MacBook Air (13-inch, Late 2010)
127
+ MacBook Air (13-inch, Mid 2011)
128
+ MacBook Air (13-inch, Mid 2012)
129
+ MacBook Air (Mid 2009)
130
+ MacBook Air (Retina, 13-inch, 2018)
131
+ MacBook Air (Retina, 13-inch, 2019)
132
+ MacBook Pro (13-inch, 2016, Four Thunderbolt 3 ports)
133
+ MacBook Pro (13-inch, 2016, Two Thunderbolt 3 ports)
134
+ MacBook Pro (13-inch, 2017, Four Thunderbolt 3 ports)
135
+ MacBook Pro (13-inch, 2017, Two Thunderbolt 3 ports)
136
+ MacBook Pro (13-inch, 2018, Four Thunderbolt 3 ports)
137
+ MacBook Pro (13-inch, 2019, Two Thunderbolt 3 ports)
138
+ MacBook Pro (13-inch, Late 2011)
139
+ MacBook Pro (13-inch, Mid 2009)
140
+ MacBook Pro (13-inch, Mid 2010)
141
+ MacBook Pro (13-inch, Mid 2012)
142
+ MacBook Pro (15-inch, 2016)
143
+ MacBook Pro (15-inch, 2017)
144
+ MacBook Pro (15-inch, 2018)
145
+ MacBook Pro (15-inch, 2019)
146
+ MacBook Pro (15-inch, Late 2008)
147
+ MacBook Pro (15-inch, Late 2011)
148
+ MacBook Pro (15-inch, Mid 2009)
149
+ MacBook Pro (15-inch, Mid 2010)
150
+ MacBook Pro (17-inch, Early 2008)
151
+ MacBook Pro (17-inch, Late 2011)
152
+ MacBook Pro (17-inch, Mid 2009)
153
+ MacBook Pro (17-inch, Mid 2010)
154
+ MacBook Pro (Retina, 13-inch, Early 2013)
155
+ MacBook Pro (Retina, 13-inch, Early 2015)
156
+ MacBook Pro (Retina, 13-inch, Late 2013)
157
+ MacBook Pro (Retina, 15-inch, Early 2013)
158
+ MacBook Pro (Retina, 15-inch, Late 2013)
159
+ MacBook Pro (Retina, 15-inch, Mid 2015)
160
+ Makito X Decoder
161
+ MediaLink Controller
162
+ MediaSense
163
+ Meeting Management
164
+ MegaRAC
165
+ Mercury
166
+ Mergepoint
167
+ Miniserver
168
+ My Book Live
169
+ N5172B Signal Generator
170
+ NFVIS
171
+ NPort
172
+ NetScreen
173
+ NetVR
174
+ Netbox
175
+ Network Gateway
176
+ Network Node
177
+ Nexus Player
178
+ OnHub
179
+ OpenManage
180
+ OpenManage Switch
181
+ OpenNAC
182
+ Orbit IP Camera
183
+ PDR M800
184
+ PLAY
185
+ PLC-5
186
+ Paragon-100G
187
+ Photonic Switch
188
+ PoliWall
189
+ PowerVault 124T
190
+ Prime Collaboration Manager
191
+ Primergy
192
+ Printer
193
+ Prosafe Plus
194
+ RTU
195
+ Rack PDU Card
196
+ Raspberry Pi
197
+ ReadyNAS
198
+ RealPresence Group {hw.model}
199
+ RealPresence Trio {hw.model}
200
+ RecoverPoint
201
+ ReeCam
202
+ Roku
203
+ Room Alert {hw.product.model}
204
+ S7 DALI Gateway
205
+ SHIELD
206
+ SIP Gateway
207
+ SIParator Firewall
208
+ SLS
209
+ SPA
210
+ SRP
211
+ ScanFront
212
+ Scrutinizer
213
+ Sensor
214
+ Sentry Switched CDU
215
+ ShareLink Pro
216
+ Sigma Control 2
217
+ SimpliVity OmniStack
218
+ Site Recovery Manager
219
+ SmartEdge Sensor
220
+ Softswitch
221
+ SolsticePod
222
+ SoundPoint
223
+ Spot
224
+ Stealthwatch
225
+ Storage Appliance
226
+ Sub
227
+ SuperStack 3
228
+ SuperStack 3 Firewall
229
+ SuperStack II
230
+ Symmetry EN-2DBC
231
+ System Management
232
+ TelePresence
233
+ TelePresence MCU
234
+ TemPageR {hw.product.model}
235
+ Tenable Appliance
236
+ Tenable Core
237
+ Thermal Label Printer {hw.model}
238
+ Time Capsule
239
+ TouchLink Control Panel
240
+ UCS Manager
241
+ UniFi Cloud Key
242
+ UniFi NVR
243
+ UniFi Security Gateway
244
+ Universal Media Gateway
245
+ VBrick Rev
246
+ Verizon FiOS Router
247
+ Video Controller
248
+ Vigor
249
+ Virtual Connect Manager
250
+ Virtual Traffic Manager
251
+ Vood
252
+ WLAN AP
253
+ WebBox
254
+ Whiteboard
255
+ Wireless Dock
256
+ Wireless LAN Controller
257
+ Wireless Router
258
+ XCC
259
+ Xserve (Early 2008)
260
+ Xserve (Early 2009)
261
+ Xserve (Late 2006)
262
+ Xserve G4
263
+ Xserve G4 (Slot Load)
264
+ Xserve G5
265
+ Zone Director
266
+ airCube
267
+ e-STUDIO
268
+ iCOM Control Panel
269
+ iDRAC
270
+ iLO
271
+ iMac (21.5-inch, 2017)
272
+ iMac (21.5-inch, Late 2012)
273
+ iMac (21.5-inch, Late 2013)
274
+ iMac (21.5-inch, Late 2015)
275
+ iMac (21.5-inch, Mid 2010)
276
+ iMac (21.5-inch, Mid 2011)
277
+ iMac (21.5-inch, Mid 2014)
278
+ iMac (24-inch, Early 2009)
279
+ iMac (27-inch, Late 2009)
280
+ iMac (27-inch, Late 2012)
281
+ iMac (27-inch, Late 2013)
282
+ iMac (27-inch, Mid 2010)
283
+ iMac (27-inch, Mid 2011)
284
+ iMac (Retina 4K, 21.5-inch, 2017)
285
+ iMac (Retina 4K, 21.5-inch, 2019)
286
+ iMac (Retina 4K, 21.5-inch, Late 2015)
287
+ iMac (Retina 5K, 27-inch, 2017)
288
+ iMac (Retina 5K, 27-inch, 2019)
289
+ iMac (Retina 5K, 27-inch, Late 2015)
290
+ iMac (Retina 5K, 27-inch, Mid 2015)
291
+ iMac Pro (Retina 5K, Late 2017)
292
+ iPad (4th generation)
293
+ iPad (5th generation)
294
+ iPad (6th generation)
295
+ iPad Air
296
+ iPad Air (3rd generation)
297
+ iPad Air 2
298
+ iPad Pro (10.5-inch)
299
+ iPad Pro (11-inch)
300
+ iPad Pro (12.9-inch)
301
+ iPad Pro (9.7-inch)
302
+ iPad mini
303
+ iPad mini (5th generation)
304
+ iPad mini 2
305
+ iPad mini 3
306
+ iPad mini 4
307
+ iPhone
308
+ iPhone 3G
309
+ iPhone 3GS
310
+ iPhone 4
311
+ iPhone 4s
312
+ iPhone 5
313
+ iPhone 5c
314
+ iPhone 5s
315
+ iPhone 6
316
+ iPhone 6 Plus
317
+ iPhone 6s
318
+ iPhone 6s Plus
319
+ iPhone 7
320
+ iPhone 7 Plus
321
+ iPhone 8
322
+ iPhone 8 Plus
323
+ iPhone SE
324
+ iPhone X
325
+ iPhone XR
326
+ iPhone XS
327
+ iPhone XS Max
328
+ vManage