recog 2.3.14 → 2.3.19

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 (50) hide show
  1. checksums.yaml +4 -4
  2. data/.github/SECURITY.md +35 -0
  3. data/.github/workflows/ci.yml +26 -0
  4. data/.snyk +10 -0
  5. data/LICENSE +1 -1
  6. data/bin/recog_standardize +2 -2
  7. data/cpe-remap.yaml +55 -14
  8. data/identifiers/hw_device.txt +5 -4
  9. data/identifiers/hw_family.txt +12 -0
  10. data/identifiers/hw_product.txt +76 -6
  11. data/identifiers/os_architecture.txt +0 -10
  12. data/identifiers/os_device.txt +13 -31
  13. data/identifiers/os_family.txt +2 -95
  14. data/identifiers/os_product.txt +34 -117
  15. data/identifiers/service_family.txt +7 -36
  16. data/identifiers/service_product.txt +238 -92
  17. data/identifiers/vendor.txt +78 -193
  18. data/lib/recog/version.rb +1 -1
  19. data/requirements.txt +1 -1
  20. data/update_cpes.py +96 -48
  21. data/xml/dns_versionbind.xml +39 -16
  22. data/xml/favicons.xml +150 -17
  23. data/xml/ftp_banners.xml +21 -19
  24. data/xml/hp_pjl_id.xml +1 -1
  25. data/xml/html_title.xml +200 -23
  26. data/xml/http_cookies.xml +89 -1
  27. data/xml/http_servers.xml +144 -18
  28. data/xml/http_wwwauth.xml +28 -20
  29. data/xml/ldap_searchresult.xml +9 -6
  30. data/xml/mdns_device-info_txt.xml +308 -10
  31. data/xml/ntp_banners.xml +9 -1
  32. data/xml/operating_system.xml +1 -0
  33. data/xml/rtsp_servers.xml +7 -0
  34. data/xml/sip_banners.xml +344 -8
  35. data/xml/sip_user_agents.xml +320 -7
  36. data/xml/smb_native_lm.xml +32 -1
  37. data/xml/smb_native_os.xml +158 -33
  38. data/xml/smtp_banners.xml +7 -2
  39. data/xml/smtp_help.xml +2 -0
  40. data/xml/smtp_vrfy.xml +2 -1
  41. data/xml/snmp_sysdescr.xml +252 -86
  42. data/xml/ssh_banners.xml +118 -11
  43. data/xml/telnet_banners.xml +34 -9
  44. data/xml/tls_jarm.xml +139 -0
  45. data/xml/x509_issuers.xml +24 -5
  46. data/xml/x509_subjects.xml +97 -17
  47. metadata +6 -5
  48. data/identifiers/software_class.txt +0 -26
  49. data/identifiers/software_family.txt +0 -91
  50. data/identifiers/software_product.txt +0 -333
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c46efafef760f2701e6eeee565e715ac04544300ebfb08f0083db856e4c81603
4
- data.tar.gz: 4e66bbd5ec6364325c9c7130aeb7434ab20242def9d7200d0e7d8e588f577c40
3
+ metadata.gz: 1730f78c5d43d5e0bf074820df10e11d051112e1f35a768807942cef830c8752
4
+ data.tar.gz: f4bbfb15e03793f02bed6da87e76ff6750a737b08957f216a41377ad5dd4e77f
5
5
  SHA512:
6
- metadata.gz: 61ca19b2266100f66d6c220459941ddbc0aa795cbcd2bc52c6782cd66feeb6787a3d1657486ff2af99c196592b5cdabcb2c4d9b33e7efe136f175d2bf5c12bbc
7
- data.tar.gz: dd5718510eb4780815fda18496c37afcbb4971246d2b9c6e439ca4697ac17ca1f9e70d3f634b04b5b9be7374e4fc15a346d3177ac5cf827c50e9136f48169009
6
+ metadata.gz: 0ddc88f9553b8ac65157032c8d082b315dfee065fd9994bd9c4f04fb1f23738ce4b15d7e958ef85cd4d548422bbab6db7343126560242b2aacf66a0bea05794a
7
+ data.tar.gz: 18a1df88375afa271379547779eaeb2379f431164ac116316005ff60d2035b89608c4aec64e2a66ac9f7d27af13e58e703ead9a2f3532f8d9b1074439ad05458
@@ -0,0 +1,35 @@
1
+ # Reporting security issues
2
+
3
+ Thanks for your interest in making Recog more secure! If you feel
4
+ that you have found a security issue involving Metasploit, Meterpreter,
5
+ Recog, or any other Rapid7 open source project, you are welcome to let
6
+ us know in the way that's most comfortable for you.
7
+
8
+ ## Via ZenDesk
9
+
10
+ You can click on the big blue button at [Rapid7's Vulnerability
11
+ Disclosure][r7-vulns] page, which will get you to our general
12
+ vulnerability reporting system. While this does require a (free) ZenDesk
13
+ account to use, you'll get regular updates on your issue as our software
14
+ support teams work through it. As it happens [that page][r7-vulns] also
15
+ will tell you what to expect when it comes to reporting vulns, how fast
16
+ we'll fix and respond, and all the rest, so it's a pretty good read
17
+ regardless.
18
+
19
+ ## Via email
20
+
21
+ If you're more of a traditionalist, you can email your finding to
22
+ security@rapid7.com. If you like, you can use our [PGP key][pgp] to
23
+ encrypt your messages, but we certainly don't mind cleartext reports
24
+ over email.
25
+
26
+ ## NOT via GitHub Issues
27
+
28
+ Please don't! Disclosing security vulnerabilities to public bug trackers
29
+ is kind of mean, even when it's well-intentioned, since you end up
30
+ dropping 0-day on pretty much everyone right out of the gate. We'd prefer
31
+ you didn't!
32
+
33
+ [r7-vulns]:https://www.rapid7.com/security/disclosure/
34
+ [pgp]:https://keybase.io/rapid7/pgp_keys.asc?fingerprint=9a90aea0576cbcafa39c502ba5e16807959d3eda
35
+
@@ -0,0 +1,26 @@
1
+ name: CI
2
+
3
+ on: [push, pull_request]
4
+
5
+ jobs:
6
+ test:
7
+ name: 'Ruby: ${{ matrix.ruby-version }}'
8
+ runs-on: ubuntu-latest
9
+ strategy:
10
+ fail-fast: false
11
+ matrix:
12
+ ruby-version: ['2.5', '2.6', '2.7', '3.0', 'jruby-9.1.17.0', 'jruby']
13
+
14
+ steps:
15
+ - uses: actions/checkout@v2
16
+ - name: Set up Ruby
17
+ uses: ruby/setup-ruby@v1
18
+ with:
19
+ ruby-version: ${{ matrix.ruby-version }}
20
+ bundler-cache: true # runs 'bundle install' and caches installed gems automatically
21
+ - name: Run tests
22
+ run: |
23
+ bundle exec rake --version
24
+ bundle exec rake tests
25
+ env:
26
+ JRUBY_OPTS: --server -J-Xms512m -J-Xmx2G
data/.snyk ADDED
@@ -0,0 +1,10 @@
1
+ # Snyk (https://snyk.io) policy file, patches or ignores known vulnerabilities.
2
+ python: 3.6.0
3
+ version: v1.14.1
4
+ # ignores vulnerabilities until expiry date; change duration by modifying expiry date
5
+ ignore:
6
+ SNYK-PYTHON-PYYAML-590151:
7
+ - pyyaml:
8
+ reason: Project doesn't use vulnerable code path.
9
+ expires: 2021-06-01T00:00:00.000Z
10
+ patch: {}
data/LICENSE CHANGED
@@ -2,6 +2,6 @@ Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
2
2
  Source: https://github.com/rapid7/recog
3
3
 
4
4
  Files: *
5
- Copyright: 2014-2015, Rapid7, Inc.
5
+ Copyright: 2014, Rapid7, Inc.
6
6
  License: BSD-2-clause
7
7
 
@@ -68,7 +68,7 @@ ARGV.each do |arg|
68
68
  f.params.each do |k,v|
69
69
  paramIndex, val = v
70
70
  next if paramIndex != 0
71
- next if val.index("{") != -1
71
+ next if val.index("{") != nil
72
72
  next if val.strip == ""
73
73
  case k
74
74
  when "os.vendor", "service.vendor", "service.component.vendor", "hw.vendor"
@@ -111,7 +111,7 @@ ARGV.each do |arg|
111
111
  puts "HW DEVICE MISSING: #{val}"
112
112
  hw_device[val] = true
113
113
  end
114
- when "service.product"
114
+ when "service.product", "service.component.product"
115
115
  if ! svc_prod[val]
116
116
  puts "SERVICE PRODUCT MISSING: #{val}"
117
117
  svc_prod[val] = true
data/cpe-remap.yaml CHANGED
@@ -1,17 +1,21 @@
1
1
  mappings:
2
2
  alpine:
3
3
  vendor: alpinelinux
4
+ products:
5
+ linux: alpine_linux
4
6
  apache:
5
- vendor: apache
6
7
  products:
7
8
  httpd: http_server
8
9
  apple:
9
10
  products:
10
11
  ios: iphone_os
12
+ aprelium_technologies:
13
+ vendor: aprelium
11
14
  alt-n:
12
15
  vendor: altn
16
+ aruba_networks:
17
+ vendor: arubanetworks
13
18
  bea:
14
- vendor: bea
15
19
  products:
16
20
  weblogic: weblogic_server
17
21
  blue_coat:
@@ -21,65 +25,90 @@ mappings:
21
25
  products:
22
26
  cyrus_imap: cyrus_imap_server
23
27
  centos:
24
- vendor: centos
25
28
  products:
26
29
  linux: centos
27
30
  centos_webpanel:
28
31
  vendor: centos-webpanel
29
32
  check_point:
30
33
  vendor: checkpoint
34
+ cherokee_project:
35
+ vendor: cherokee-project
31
36
  cisco:
32
37
  vendor: cisco
33
38
  products:
34
39
  adaptive_security_appliance: adaptive_security_appliance_software
40
+ apic: application_policy_infrastructure_controller
35
41
  pix: pix_firewall_software
36
42
  telepresence: telepresence_video_communication_server_software
43
+ crushftp:
44
+ products:
45
+ crushftp_web_interface: crushftp
46
+ cumulus:
47
+ vendor: cumulusnetworks
48
+ data_domain:
49
+ vendor: dell
50
+ products:
51
+ dd_os: emc_data_domain_os
37
52
  debian:
38
- vendor: debian
39
53
  products:
40
54
  linux: debian_linux
55
+ drupal:
56
+ products:
57
+ cms: drupal
41
58
  embedthis:
42
59
  products:
43
60
  goahead_webserver: goahead
61
+ emc:
62
+ products:
63
+ celerra: celerra_network_attached_storage
44
64
  f5:
45
- vendor: f5
46
65
  products:
47
66
  big-ip: big-ip_local_traffic_manager
48
67
  big-ip_ltm: big-ip_local_traffic_manager
68
+ fedora_project:
69
+ vendor: fedoraproject
49
70
  hp:
50
- vendor: hp
51
71
  products:
52
72
  ilo: integrated_lights_out
53
73
  tru64_unix: tru64
54
74
  ibm:
55
- vendor: ibm
56
75
  products:
57
76
  lotus_domino: lotus_domino_server
58
77
  ibm_domino: lotus_domino
59
78
  os/400: os_400
79
+ i5/os: i5os
80
+ ignite_realtime:
81
+ vendor: igniterealtime
82
+ intel:
83
+ products:
84
+ intel(r)_active_management_technology: active_management_technology
85
+ intel(r)_standard_manageability: standard_manageability
60
86
  jamf:
61
87
  products:
62
88
  jamf_pro: jamf
63
89
  juniper:
64
- vendor: juniper
65
90
  products:
66
91
  junos_os: junos
67
92
  kibana:
68
93
  vendor: elasticsearch
94
+ kodi:
95
+ products:
96
+ media_server: kodi
69
97
  cz.nic:
70
98
  vendor: knot-dns
71
99
  litespeed_technologies:
72
100
  vendor: litespeedtech
73
101
  linux:
74
- vendor: linux
75
102
  products:
76
103
  linux: linux_kernel
104
+ lynx_technology:
105
+ vendor: lynxtechnology
106
+ products:
107
+ twonky_media_server: twonky_server
77
108
  mailenable:
78
- vendor: mailenable
79
109
  products:
80
110
  mail_server: mailenable
81
111
  microsoft:
82
- vendor: microsoft
83
112
  products:
84
113
  active_directory_controller: active_directory
85
114
  exchange_server_5.5: exchange_server
@@ -107,14 +136,18 @@ mappings:
107
136
  vendor: modwsgi
108
137
  mort_bay:
109
138
  vendor: mortbay
139
+ munin:
140
+ vendor: munin-monitoring
110
141
  nlnet_labs:
111
142
  vendor: nlnetlabs
112
143
  products:
113
144
  dnsd: name_server_daemon
114
145
  net-snmp:
115
- vendor: net-snmp
116
146
  products:
117
147
  snmp_agent: net-snmp
148
+ owncloud:
149
+ products:
150
+ owncloud_server: owncloud
118
151
  palo_alto_networks:
119
152
  vendor: paloaltonetworks
120
153
  products:
@@ -126,6 +159,11 @@ mappings:
126
159
  vendor: parallels
127
160
  proftpd_project:
128
161
  vendor: proftpd
162
+ progress:
163
+ products:
164
+ openedge_explorer: openedge
165
+ pulse_secure:
166
+ vendor: pulsesecure
129
167
  realvnc_ltd.:
130
168
  vendor: realvnc
131
169
  red_hat:
@@ -143,11 +181,15 @@ mappings:
143
181
  vendor: sun
144
182
  products:
145
183
  solaris: sunos
184
+ swagger:
185
+ vendor: smartbear
146
186
  tandberg:
147
187
  vendor: cisco
148
188
  tightvnc:
149
189
  products:
150
190
  desktop: tightvnc
191
+ tor_project:
192
+ vendor: torproject
151
193
  ubiquiti:
152
194
  vendor: ui
153
195
  ubuntu:
@@ -157,15 +199,14 @@ mappings:
157
199
  vandyke_software:
158
200
  vendor: vandyke
159
201
  vmware:
160
- vendor: vmware
161
202
  products:
162
203
  photon_linux: photon_os
163
204
  zimbra: zimbra_desktop
205
+ vcenter: vcenter_server
164
206
  vmware_esx_server: esx
165
207
  vmware_esxi_server: esxi
166
208
  wind_river:
167
209
  vendor: windriver
168
210
  x.org:
169
- vendor: x.org
170
211
  products:
171
212
  x.org_x11: x11
@@ -4,7 +4,7 @@ Access Control
4
4
  Alarm Panel
5
5
  Appliance
6
6
  Audio Encoder
7
- Broadband router
7
+ Broadband Router
8
8
  Building Automation
9
9
  Cable Modem
10
10
  Check Scanner
@@ -22,6 +22,7 @@ Ethernet Adapter
22
22
  Firewall
23
23
  HMI Controller
24
24
  Handheld Scanner
25
+ Hypervisor
25
26
  IP Camera
26
27
  IPS
27
28
  Industrial Control
@@ -40,11 +41,12 @@ Network Appliance
40
41
  Network Audio
41
42
  Network Management Device
42
43
  PLC
44
+ Power Device
43
45
  Power Relay
44
- Power device
45
46
  Powerline
46
- Print server
47
+ Print Server
47
48
  Printer
49
+ Relay Controller
48
50
  Router
49
51
  SD-WAN Appliance
50
52
  SIP Device
@@ -71,7 +73,6 @@ VoIP Switch
71
73
  Voice Appliance
72
74
  WAP
73
75
  WLAN Repeater
74
- Web cam
75
76
  Whiteboard
76
77
  Wireless Controller
77
78
  Wireless Presenter
@@ -5,16 +5,20 @@ AirPort
5
5
  Apple TV
6
6
  Communication Manager
7
7
  DVR
8
+ Data ONTAP
8
9
  DiskStation
9
10
  Document Centre
11
+ EDR
10
12
  Extended Systems ExtendNet
11
13
  FRITZ!Box
14
+ FRITZ!Fon
12
15
  FRITZ!Powerline
13
16
  FRITZ!WLAN Repeater
14
17
  FS
15
18
  Firewall-1
16
19
  Forms Printer
17
20
  FortiGate
21
+ FortiVoice
18
22
  GW25
19
23
  GXV
20
24
  GXW
@@ -36,6 +40,7 @@ Mac mini
36
40
  MacBook
37
41
  MacBook Pro
38
42
  MegaRAC
43
+ MiiNePort
39
44
  Multifunction
40
45
  My Book
41
46
  NE
@@ -57,8 +62,13 @@ Router
57
62
  S500 Range
58
63
  SIP Device
59
64
  SIP Gateway
65
+ SL2100
60
66
  Service Access Switch
61
67
  Service Router
68
+ Simatic HMI
69
+ Simatic NET
70
+ Simatic S7
71
+ Simatic Sinumerik
62
72
  SoundPoint
63
73
  SoundTouch
64
74
  SpeedTouch
@@ -73,8 +83,10 @@ TelePresence
73
83
  Time Capsule
74
84
  TippingPoint
75
85
  Turbo Station
86
+ UNIVERGE
76
87
  UniFi
77
88
  Unified Security Gateway
89
+ VDX
78
90
  VSX
79
91
  VoIP
80
92
  WD2GO
@@ -3,15 +3,18 @@
3
3
  34972A Data Logger
4
4
  3PAR
5
5
  53230A Frequency Counter
6
+ 883 VoIP
6
7
  ADB-4820CD
7
8
  APIC
8
9
  AV Receiver
9
10
  AVC787
11
+ Access Control
10
12
  Access Gateway
11
13
  Access Point
12
14
  Adaptive Security Appliance
13
15
  AirPort Express
14
16
  AirPort Extreme
17
+ Alarm Panel
15
18
  AppDynamics
16
19
  Apple TV (2nd generation)
17
20
  Apple TV (3rd generation)
@@ -33,20 +36,28 @@ Catalyst
33
36
  Catalyst 1900
34
37
  Celerra
35
38
  Chromecast
39
+ ClearPass Policy Manager
36
40
  ClickShare
37
41
  CloudKey
38
42
  CommandPost
39
43
  ConnectUPS Web Card
40
44
  Crosswork SON Appliance
45
+ D Series
46
+ DCS-825L
47
+ DCS-932
41
48
  DD OS
42
49
  DNA Center
43
50
  DSL Router
51
+ Data ONTAP
44
52
  Digital Signage Player
45
53
  Discover
46
54
  Discovery
47
55
  Document Centre
48
56
  DuraFon
49
57
  ECOM100
58
+ EDR-G902
59
+ EDR-G903
60
+ EM7
50
61
  EP-series
51
62
  EXA Signal Analyzer
52
63
  Eagle Eye Director II
@@ -54,6 +65,7 @@ EchoLife Home Gateway
54
65
  EdgeSwitch
55
66
  Elevation
56
67
  EqualLogic
68
+ Ethernet Relay Controller
57
69
  Ethernet Relay Module
58
70
  Excella
59
71
  Fastmark M5
@@ -64,15 +76,26 @@ Firewall-1
64
76
  FlexiPacket Hub
65
77
  FortiMail
66
78
  FortiManager
79
+ GXP1610
80
+ GXP1615
81
+ GXP1625
82
+ GXP1628
83
+ GXP2200
67
84
  GigaVUE
68
85
  HDHomeRun
69
86
  HDIPCam
70
- HDX {hw.model}
87
+ HT801
88
+ HT802
89
+ HT812
90
+ HT813
91
+ HT814
92
+ HT818
71
93
  HiPer Access Router Card
72
94
  Home Controller
73
95
  Home Gateway
74
96
  HomePod
75
97
  Hue
98
+ HyperFlex Connect
76
99
  IA Appliance
77
100
  IAM
78
101
  IBHLink S7++
@@ -83,6 +106,7 @@ IP Link Control Processor
83
106
  IP2IR
84
107
  IPMI
85
108
  IVR
109
+ Infinity Controler
86
110
  IntelliSlot Web Card
87
111
  Internet Payment Gateway
88
112
  Internet Phone Adapter
@@ -94,6 +118,7 @@ JetDirect
94
118
  K1000
95
119
  KWS-1043N
96
120
  Key Management
121
+ Key Management Server
97
122
  Lantick Ethernet Relay Controller
98
123
  Lencore Sound Manager 2
99
124
  MDS 9000
@@ -109,6 +134,7 @@ Mac mini (Late 2009)
109
134
  Mac mini (Late 2012)
110
135
  Mac mini (Late 2014)
111
136
  Mac mini (Late 2018)
137
+ Mac mini (M1, 2020)
112
138
  Mac mini (Mid 2007)
113
139
  Mac mini (Mid 2010)
114
140
  Mac mini (Mid 2011)
@@ -126,16 +152,20 @@ MacBook Air (13-inch, Early 2014)
126
152
  MacBook Air (13-inch, Late 2010)
127
153
  MacBook Air (13-inch, Mid 2011)
128
154
  MacBook Air (13-inch, Mid 2012)
155
+ MacBook Air (M1, 2020)
129
156
  MacBook Air (Mid 2009)
130
157
  MacBook Air (Retina, 13-inch, 2018)
131
158
  MacBook Air (Retina, 13-inch, 2019)
159
+ MacBook Air (Retina, 13-inch, 2020)
132
160
  MacBook Pro (13-inch, 2016, Four Thunderbolt 3 ports)
133
161
  MacBook Pro (13-inch, 2016, Two Thunderbolt 3 ports)
134
162
  MacBook Pro (13-inch, 2017, Four Thunderbolt 3 ports)
135
163
  MacBook Pro (13-inch, 2017, Two Thunderbolt 3 ports)
136
164
  MacBook Pro (13-inch, 2018, Four Thunderbolt 3 ports)
137
165
  MacBook Pro (13-inch, 2019, Two Thunderbolt 3 ports)
166
+ MacBook Pro (13-inch, 2020)
138
167
  MacBook Pro (13-inch, Late 2011)
168
+ MacBook Pro (13-inch, M1, 2020)
139
169
  MacBook Pro (13-inch, Mid 2009)
140
170
  MacBook Pro (13-inch, Mid 2010)
141
171
  MacBook Pro (13-inch, Mid 2012)
@@ -147,6 +177,8 @@ MacBook Pro (15-inch, Late 2008)
147
177
  MacBook Pro (15-inch, Late 2011)
148
178
  MacBook Pro (15-inch, Mid 2009)
149
179
  MacBook Pro (15-inch, Mid 2010)
180
+ MacBook Pro (15-inch, Mid 2012)
181
+ MacBook Pro (16-inch, 2019)
150
182
  MacBook Pro (17-inch, Early 2008)
151
183
  MacBook Pro (17-inch, Late 2011)
152
184
  MacBook Pro (17-inch, Mid 2009)
@@ -158,29 +190,38 @@ MacBook Pro (Retina, 15-inch, Early 2013)
158
190
  MacBook Pro (Retina, 15-inch, Late 2013)
159
191
  MacBook Pro (Retina, 15-inch, Mid 2015)
160
192
  Makito X Decoder
193
+ Media Gateway
161
194
  MediaLink Controller
162
195
  MediaSense
163
196
  Meeting Management
197
+ Meeting Server
164
198
  MegaRAC
199
+ Meraki Device
165
200
  Mercury
166
201
  Mergepoint
167
202
  Miniserver
168
203
  My Book Live
169
204
  N5172B Signal Generator
205
+ NAS4Free
170
206
  NFVIS
171
207
  NPort
172
208
  NetScreen
173
209
  NetVR
174
210
  Netbox
211
+ Network Camera
175
212
  Network Gateway
176
213
  Network Node
214
+ Nexus 1000V
177
215
  Nexus Player
216
+ OfficeConnect Switch
178
217
  OnHub
179
218
  OpenManage
180
219
  OpenManage Switch
181
220
  OpenNAC
221
+ Orbi micro
182
222
  Orbit IP Camera
183
223
  PDR M800
224
+ PIAF Virtual Appliance
184
225
  PLAY
185
226
  PLC-5
186
227
  Paragon-100G
@@ -191,23 +232,29 @@ Prime Collaboration Manager
191
232
  Primergy
192
233
  Printer
193
234
  Prosafe Plus
235
+ R Series
236
+ RT31P2
194
237
  RTU
195
238
  Rack PDU Card
196
239
  Raspberry Pi
197
240
  ReadyNAS
198
- RealPresence Group {hw.model}
199
- RealPresence Trio {hw.model}
200
241
  RecoverPoint
201
242
  ReeCam
202
243
  Roku
203
- Room Alert {hw.product.model}
244
+ Room Alert
204
245
  S7 DALI Gateway
246
+ SD-WAN
205
247
  SHIELD
206
248
  SIP Gateway
207
249
  SIParator Firewall
250
+ SL2100
208
251
  SLS
209
252
  SPA
253
+ SPA112
254
+ SPA122
210
255
  SRP
256
+ SV8100
257
+ SV9100
211
258
  ScanFront
212
259
  Scrutinizer
213
260
  Sensor
@@ -222,27 +269,34 @@ SolsticePod
222
269
  SoundPoint
223
270
  Spot
224
271
  Stealthwatch
272
+ Steelhead
225
273
  Storage Appliance
226
274
  Sub
275
+ Sunny WebBox
227
276
  SuperStack 3
228
277
  SuperStack 3 Firewall
229
278
  SuperStack II
230
279
  Symmetry EN-2DBC
231
280
  System Management
281
+ TG789vac
232
282
  TelePresence
233
283
  TelePresence MCU
234
- TemPageR {hw.product.model}
235
284
  Tenable Appliance
236
285
  Tenable Core
237
- Thermal Label Printer {hw.model}
286
+ Tetration
238
287
  Time Capsule
239
288
  TouchLink Control Panel
289
+ UCM6202
290
+ UCM6204
291
+ UCM6208
240
292
  UCS Manager
241
293
  UniFi Cloud Key
242
294
  UniFi NVR
243
295
  UniFi Security Gateway
296
+ Univerge
244
297
  Universal Media Gateway
245
298
  VBrick Rev
299
+ VPN Gateway
246
300
  Verizon FiOS Router
247
301
  Video Controller
248
302
  Vigor
@@ -250,12 +304,14 @@ Virtual Connect Manager
250
304
  Virtual Traffic Manager
251
305
  Vood
252
306
  WLAN AP
307
+ WNR2000
253
308
  WebBox
254
309
  Whiteboard
255
310
  Wireless Dock
256
311
  Wireless LAN Controller
257
312
  Wireless Router
258
313
  XCC
314
+ Xfinity Broadband Router
259
315
  Xserve (Early 2008)
260
316
  Xserve (Early 2009)
261
317
  Xserve (Late 2006)
@@ -268,6 +324,8 @@ e-STUDIO
268
324
  iCOM Control Panel
269
325
  iDRAC
270
326
  iLO
327
+ iLO 3
328
+ iMac (20/24-inch, Early 2008)
271
329
  iMac (21.5-inch, 2017)
272
330
  iMac (21.5-inch, Late 2012)
273
331
  iMac (21.5-inch, Late 2013)
@@ -286,6 +344,7 @@ iMac (Retina 4K, 21.5-inch, 2019)
286
344
  iMac (Retina 4K, 21.5-inch, Late 2015)
287
345
  iMac (Retina 5K, 27-inch, 2017)
288
346
  iMac (Retina 5K, 27-inch, 2019)
347
+ iMac (Retina 5K, 27-inch, 2020)
289
348
  iMac (Retina 5K, 27-inch, Late 2015)
290
349
  iMac (Retina 5K, 27-inch, Mid 2015)
291
350
  iMac Pro (Retina 5K, Late 2017)
@@ -297,7 +356,11 @@ iPad Air (3rd generation)
297
356
  iPad Air 2
298
357
  iPad Pro (10.5-inch)
299
358
  iPad Pro (11-inch)
359
+ iPad Pro (11-inch, 2nd generation)
300
360
  iPad Pro (12.9-inch)
361
+ iPad Pro (12.9-inch, 2nd generation)
362
+ iPad Pro (12.9-inch, 3rd generation)
363
+ iPad Pro (12.9-inch, 4th generation)
301
364
  iPad Pro (9.7-inch)
302
365
  iPad mini
303
366
  iPad mini (5th generation)
@@ -305,6 +368,12 @@ iPad mini 2
305
368
  iPad mini 3
306
369
  iPad mini 4
307
370
  iPhone
371
+ iPhone 11 Pro
372
+ iPhone 11 Pro Max
373
+ iPhone 12 5G
374
+ iPhone 12 Mini 5G
375
+ iPhone 12 Pro 5G
376
+ iPhone 12 Pro Max 5G
308
377
  iPhone 3G
309
378
  iPhone 3GS
310
379
  iPhone 4
@@ -321,6 +390,7 @@ iPhone 7 Plus
321
390
  iPhone 8
322
391
  iPhone 8 Plus
323
392
  iPhone SE
393
+ iPhone SE (2020)
324
394
  iPhone X
325
395
  iPhone XR
326
396
  iPhone XS