recog 2.3.19 → 2.3.20
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.
- checksums.yaml +4 -4
- data/bin/recog_standardize +6 -0
- data/cpe-remap.yaml +314 -211
- data/identifiers/README.md +24 -10
- data/identifiers/fields.txt +104 -0
- data/identifiers/hw_family.txt +5 -0
- data/identifiers/hw_product.txt +11 -0
- data/identifiers/os_device.txt +0 -1
- data/identifiers/os_family.txt +1 -0
- data/identifiers/os_product.txt +12 -8
- data/identifiers/service_family.txt +7 -1
- data/identifiers/service_product.txt +52 -3
- data/identifiers/vendor.txt +23 -1
- data/lib/recog/version.rb +1 -1
- data/requirements.txt +1 -1
- data/update_cpes.py +15 -2
- data/xml/apache_modules.xml +60 -0
- data/xml/dns_versionbind.xml +1 -1
- data/xml/favicons.xml +13 -3
- data/xml/ftp_banners.xml +4 -6
- data/xml/html_title.xml +362 -29
- data/xml/http_cookies.xml +179 -62
- data/xml/http_servers.xml +331 -81
- data/xml/http_wwwauth.xml +25 -6
- data/xml/ldap_searchresult.xml +1 -0
- data/xml/ntp_banners.xml +7 -1
- data/xml/sip_banners.xml +2 -0
- data/xml/sip_user_agents.xml +1 -0
- data/xml/smtp_banners.xml +41 -5
- data/xml/smtp_expn.xml +1 -0
- data/xml/smtp_vrfy.xml +1 -0
- data/xml/snmp_sysdescr.xml +52 -11
- data/xml/ssh_banners.xml +9 -3
- data/xml/telnet_banners.xml +10 -5
- data/xml/tls_jarm.xml +3 -2
- data/xml/x509_issuers.xml +155 -2
- data/xml/x509_subjects.xml +157 -20
- metadata +3 -2
data/identifiers/README.md
CHANGED
@@ -1,16 +1,27 @@
|
|
1
1
|
# Recog: Identifiers
|
2
2
|
|
3
|
-
This directory contains lists of standard identifiers for mapping Recog matches.
|
3
|
+
This directory contains lists of standard identifiers for mapping Recog matches.
|
4
|
+
The goal is define a standard set of constants to represent known software,
|
5
|
+
hardware, vendors, and categories.
|
4
6
|
|
5
|
-
This is currently incomplete and will be updated as standardization work moves
|
7
|
+
This is currently incomplete and will be updated as standardization work moves
|
8
|
+
forward.
|
6
9
|
|
7
|
-
Fingerprints should use these identifiers whenever possible; if a different name
|
10
|
+
Fingerprints should use these identifiers whenever possible; if a different name
|
11
|
+
or syntax for a given identifier is preferred, this should be implemented in the
|
12
|
+
application through a mapping function.
|
8
13
|
|
9
14
|
## Lists
|
10
15
|
|
16
|
+
### Fields
|
17
|
+
|
18
|
+
`fields.txt` defines the various fields (`os.vendor`, etc.) used to assert
|
19
|
+
information about a match.
|
20
|
+
|
11
21
|
### Vendors
|
12
22
|
|
13
|
-
`vendor.txt` defines known vendor names, covering services, operating systems,
|
23
|
+
`vendor.txt` defines known vendor names, covering services, operating systems,
|
24
|
+
and hardware.
|
14
25
|
|
15
26
|
### Operating Systems
|
16
27
|
|
@@ -22,14 +33,14 @@ Fingerprints should use these identifiers whenever possible; if a different name
|
|
22
33
|
|
23
34
|
`os_device.txt` defines known types of devices by function or purpose.
|
24
35
|
|
25
|
-
|
26
36
|
### Hardware
|
27
37
|
|
28
38
|
`hw_product.txt` defines known hardware product names.
|
29
39
|
|
30
40
|
`hw_family.txt` defines known hardware product families.
|
31
41
|
|
32
|
-
`hw_device.txt` defines known types of devices by function or purpose (overlaps
|
42
|
+
`hw_device.txt` defines known types of devices by function or purpose (overlaps
|
43
|
+
with `os_device.txt`).
|
33
44
|
|
34
45
|
### Services
|
35
46
|
|
@@ -47,10 +58,13 @@ Fingerprints should use these identifiers whenever possible; if a different name
|
|
47
58
|
|
48
59
|
## Pending Work
|
49
60
|
|
50
|
-
|
61
|
+
* All existing fingerprints should be correlated against these lists to
|
62
|
+
identify mismatches and updated accordingly.
|
51
63
|
|
52
|
-
|
64
|
+
* All net new identifiers from the existing fingerprints should be merged into
|
65
|
+
these lists.
|
53
66
|
|
54
|
-
|
67
|
+
* All fingerprint assertions should be enumerated, documented, and standardized
|
68
|
+
where possible (`host.mac`, etc).
|
55
69
|
|
56
|
-
|
70
|
+
* Hardware identifiers should be enumerated, consolidated, and standardized.
|
@@ -0,0 +1,104 @@
|
|
1
|
+
agilent.serial
|
2
|
+
apache.info
|
3
|
+
apache.variant
|
4
|
+
apache.variant.version
|
5
|
+
chromecast.capabilities
|
6
|
+
chromecast.generation
|
7
|
+
chromecast.serial_number
|
8
|
+
cisco.imc_model
|
9
|
+
cisco.serial_number
|
10
|
+
cookie
|
11
|
+
dell.service_tag
|
12
|
+
extron.model
|
13
|
+
fortinet.serial_number
|
14
|
+
host.domain
|
15
|
+
host.id
|
16
|
+
host.ip
|
17
|
+
host.mac
|
18
|
+
host.mac_eui64
|
19
|
+
host.mac_local
|
20
|
+
host.name
|
21
|
+
host.time
|
22
|
+
hw.certainty
|
23
|
+
hw.cpe23
|
24
|
+
hw.device
|
25
|
+
hw.family
|
26
|
+
hw.model
|
27
|
+
hw.product
|
28
|
+
hw.series
|
29
|
+
hw.vendor
|
30
|
+
hw.version
|
31
|
+
imail.eval
|
32
|
+
jetty.info
|
33
|
+
junction.cookie
|
34
|
+
junction.name
|
35
|
+
lenovo.machine_model
|
36
|
+
lenovo.machine_type
|
37
|
+
linux.kernel.version
|
38
|
+
loadbalancer.poolname
|
39
|
+
mdaemon.unregistered
|
40
|
+
mercur.os.info
|
41
|
+
metainfo.version
|
42
|
+
metainfo.version.version
|
43
|
+
ms.nttp.version
|
44
|
+
notes.build.version
|
45
|
+
ntmail.id
|
46
|
+
openssh.comment
|
47
|
+
openssh.cvepatch
|
48
|
+
os.arch
|
49
|
+
os.build
|
50
|
+
os.certainty
|
51
|
+
os.cpe23
|
52
|
+
os.device
|
53
|
+
os.edition
|
54
|
+
os.family
|
55
|
+
os.model
|
56
|
+
os.product
|
57
|
+
os.rev
|
58
|
+
os.vendor
|
59
|
+
os.version
|
60
|
+
os.version.version
|
61
|
+
os.version.version.version
|
62
|
+
postfix.os.info
|
63
|
+
postoffice.build
|
64
|
+
postoffice.id
|
65
|
+
procurve.model
|
66
|
+
proftpd.server.name
|
67
|
+
pureftpd.config
|
68
|
+
python.version
|
69
|
+
qpopper.version
|
70
|
+
ruckus.serial_number
|
71
|
+
securetransport.build
|
72
|
+
sendmail.config.version
|
73
|
+
sendmail.hpux.phne.version
|
74
|
+
sendmail.vendor.version
|
75
|
+
service.certainty
|
76
|
+
service.component.cpe23
|
77
|
+
service.component.family
|
78
|
+
service.component.product
|
79
|
+
service.component.vendor
|
80
|
+
service.component.version
|
81
|
+
service.cpe23
|
82
|
+
service.device
|
83
|
+
service.edition
|
84
|
+
service.family
|
85
|
+
service.node
|
86
|
+
service.product
|
87
|
+
service.protocol
|
88
|
+
service.vendor
|
89
|
+
service.version
|
90
|
+
service.version.version
|
91
|
+
service.version.version.version
|
92
|
+
service.version.version.version.version
|
93
|
+
siemens.model
|
94
|
+
snmp.fpmib.oid.1
|
95
|
+
snmp.fpmib.oid.2
|
96
|
+
system.time
|
97
|
+
system.time.format
|
98
|
+
system.time.micros
|
99
|
+
system.time.millis
|
100
|
+
tandberg.model
|
101
|
+
thttpd.mx-patch
|
102
|
+
tomcat.info
|
103
|
+
wd2go.device_id
|
104
|
+
zmailer.ident
|
data/identifiers/hw_family.txt
CHANGED
@@ -45,8 +45,11 @@ Multifunction
|
|
45
45
|
My Book
|
46
46
|
NE
|
47
47
|
NPort
|
48
|
+
NetScaler
|
48
49
|
NetVanta
|
50
|
+
Netscaler
|
49
51
|
Network Audio
|
52
|
+
Network Security Appliance
|
50
53
|
Network Video Door Station
|
51
54
|
Optra
|
52
55
|
Orbi
|
@@ -88,6 +91,7 @@ UniFi
|
|
88
91
|
Unified Security Gateway
|
89
92
|
VDX
|
90
93
|
VSX
|
94
|
+
Vigor
|
91
95
|
VoIP
|
92
96
|
WD2GO
|
93
97
|
WiMax
|
@@ -99,6 +103,7 @@ Xserve
|
|
99
103
|
ZXDSL
|
100
104
|
ZXHN
|
101
105
|
ZXV
|
106
|
+
airMAX
|
102
107
|
iLO
|
103
108
|
iMac
|
104
109
|
iPad
|
data/identifiers/hw_product.txt
CHANGED
@@ -62,8 +62,10 @@ EP-series
|
|
62
62
|
EXA Signal Analyzer
|
63
63
|
Eagle Eye Director II
|
64
64
|
EchoLife Home Gateway
|
65
|
+
EdgeRouter X
|
65
66
|
EdgeSwitch
|
66
67
|
Elevation
|
68
|
+
Email Security Gateway
|
67
69
|
EqualLogic
|
68
70
|
Ethernet Relay Controller
|
69
71
|
Ethernet Relay Module
|
@@ -202,15 +204,20 @@ Mergepoint
|
|
202
204
|
Miniserver
|
203
205
|
My Book Live
|
204
206
|
N5172B Signal Generator
|
207
|
+
NAM
|
205
208
|
NAS4Free
|
206
209
|
NFVIS
|
207
210
|
NPort
|
211
|
+
NetScaler Gateway
|
212
|
+
NetScaler SDX Gateway
|
208
213
|
NetScreen
|
209
214
|
NetVR
|
210
215
|
Netbox
|
216
|
+
Netscaler Gateway
|
211
217
|
Network Camera
|
212
218
|
Network Gateway
|
213
219
|
Network Node
|
220
|
+
Network Security Appliance
|
214
221
|
Nexus 1000V
|
215
222
|
Nexus Player
|
216
223
|
OfficeConnect Switch
|
@@ -290,6 +297,9 @@ UCM6202
|
|
290
297
|
UCM6204
|
291
298
|
UCM6208
|
292
299
|
UCS Manager
|
300
|
+
USG20-VPN
|
301
|
+
USG40
|
302
|
+
USG60
|
293
303
|
UniFi Cloud Key
|
294
304
|
UniFi NVR
|
295
305
|
UniFi Security Gateway
|
@@ -325,6 +335,7 @@ iCOM Control Panel
|
|
325
335
|
iDRAC
|
326
336
|
iLO
|
327
337
|
iLO 3
|
338
|
+
iLO 4
|
328
339
|
iMac (20/24-inch, Early 2008)
|
329
340
|
iMac (21.5-inch, 2017)
|
330
341
|
iMac (21.5-inch, Late 2012)
|
data/identifiers/os_device.txt
CHANGED
data/identifiers/os_family.txt
CHANGED
data/identifiers/os_product.txt
CHANGED
@@ -68,8 +68,6 @@ Document Centre
|
|
68
68
|
Dynix
|
69
69
|
EDR G902 Firmware
|
70
70
|
EDR G903 Firmware
|
71
|
-
ESX
|
72
|
-
ESXi
|
73
71
|
EdgeBlaster
|
74
72
|
EdgeOS
|
75
73
|
Email Appliance
|
@@ -78,7 +76,6 @@ Enterprise Linux
|
|
78
76
|
Enterprise WAP
|
79
77
|
EqualLogic
|
80
78
|
Excella
|
81
|
-
FRITZ!BOX
|
82
79
|
FRITZ!OS
|
83
80
|
Fabric OS
|
84
81
|
Fastmark M5
|
@@ -100,6 +97,7 @@ GXP1628 Firmware
|
|
100
97
|
GXP2200 Firmware
|
101
98
|
GigaVUE HD
|
102
99
|
GigaVUE TA1
|
100
|
+
GuardianOS
|
103
101
|
HP-UX
|
104
102
|
HT801 Firmware
|
105
103
|
HT802 Firmware
|
@@ -118,6 +116,7 @@ IPReach
|
|
118
116
|
IPSO
|
119
117
|
IRIX
|
120
118
|
Integrated Lights Out Manager
|
119
|
+
Integrated Lights Out Manager firmware
|
121
120
|
Irix
|
122
121
|
Isilon OneFS OS
|
123
122
|
JetDirect
|
@@ -157,6 +156,7 @@ NetScaler Gateway
|
|
157
156
|
NetScaler SDX Gateway
|
158
157
|
NetVanta
|
159
158
|
NetWare
|
159
|
+
Netscaler Gateway Firmware
|
160
160
|
Network Gateway
|
161
161
|
Network Scanner
|
162
162
|
Network Storage Router
|
@@ -173,14 +173,12 @@ OpenServer
|
|
173
173
|
OpenTV
|
174
174
|
OpenVMS
|
175
175
|
OpenWall
|
176
|
-
|
177
|
-
PANOS
|
176
|
+
PAN-OS
|
178
177
|
PIX
|
179
178
|
PLC-5
|
180
179
|
PRO/100
|
181
180
|
PacketShaper
|
182
181
|
PalmOS
|
183
|
-
Panorama Server
|
184
182
|
Photon Linux
|
185
183
|
PocketPro
|
186
184
|
Polycom
|
@@ -193,13 +191,14 @@ Prestige 660HW-D1
|
|
193
191
|
Prestige 660ME-61
|
194
192
|
Prime Collaboration Manager
|
195
193
|
Print Server
|
196
|
-
Print server
|
197
194
|
PrintServer
|
198
195
|
Printer
|
199
196
|
Printer Board
|
200
197
|
ProLiant
|
198
|
+
Prosafe Firmware
|
201
199
|
Proxmox
|
202
200
|
Pulse Connect Secure
|
201
|
+
QTS
|
203
202
|
RASExpress
|
204
203
|
RDK
|
205
204
|
RISC OS
|
@@ -259,6 +258,9 @@ UCM6204 Firmware
|
|
259
258
|
UCM6208 Firmware
|
260
259
|
UCS Device
|
261
260
|
UNIX
|
261
|
+
USG20-VPN firmware
|
262
|
+
USG40 firmware
|
263
|
+
USG60 firmware
|
262
264
|
Ubuntu Linux
|
263
265
|
Ultrix
|
264
266
|
UnixWare
|
@@ -268,7 +270,6 @@ VIOS
|
|
268
270
|
VMS
|
269
271
|
VMware ESX Server
|
270
272
|
VMware ESXi Server
|
271
|
-
VPN
|
272
273
|
VPN 3000 Concentrator
|
273
274
|
VRP
|
274
275
|
Virtual Library
|
@@ -317,16 +318,19 @@ WorkCentre Pro
|
|
317
318
|
X3e 31C-M
|
318
319
|
XCC Linux
|
319
320
|
XOS
|
321
|
+
XenServer
|
320
322
|
Zentyal
|
321
323
|
Zone Director
|
322
324
|
ZyNOS firmware
|
323
325
|
audioOS
|
324
326
|
e-STUDIO
|
325
327
|
eCos
|
328
|
+
i5/OS
|
326
329
|
iDRAC Linux
|
327
330
|
iLO
|
328
331
|
iLO 2
|
329
332
|
iLO 3
|
333
|
+
iLO 4
|
330
334
|
iOS
|
331
335
|
iScale
|
332
336
|
im
|
@@ -12,6 +12,7 @@ Application Protection System
|
|
12
12
|
Appweb
|
13
13
|
Atlas Anchor
|
14
14
|
Aura
|
15
|
+
Azure
|
15
16
|
BIG-IP
|
16
17
|
BIND
|
17
18
|
Bftpd
|
@@ -40,6 +41,7 @@ DSM
|
|
40
41
|
DSView
|
41
42
|
David
|
42
43
|
Desktop Authority
|
44
|
+
Diskstation
|
43
45
|
Dnsmasq
|
44
46
|
Dovecot
|
45
47
|
Dropbear
|
@@ -47,7 +49,6 @@ Dynamo
|
|
47
49
|
E-mail Services
|
48
50
|
EWS
|
49
51
|
Ecelerity Mail Server
|
50
|
-
Elastic Load Balancing
|
51
52
|
EmWeb
|
52
53
|
Email Security
|
53
54
|
Embedded SSH Server
|
@@ -94,6 +95,7 @@ JetDirect
|
|
94
95
|
Jetty
|
95
96
|
Joom!Fish
|
96
97
|
Knot
|
98
|
+
Kubernetes
|
97
99
|
ListManager
|
98
100
|
Lotus Domino
|
99
101
|
Lotus Expeditor
|
@@ -127,6 +129,7 @@ NetWare Enterprise Web Server
|
|
127
129
|
NetWare HTTP Server
|
128
130
|
NetWare HTTP Stack
|
129
131
|
NetWeaver
|
132
|
+
Netscaler
|
130
133
|
Network Printer Manager
|
131
134
|
Niagara
|
132
135
|
OpenAdStream
|
@@ -167,6 +170,7 @@ SMH
|
|
167
170
|
SSH
|
168
171
|
SSH Tectia Server
|
169
172
|
SSL-VPN
|
173
|
+
Sage X3 Syracuse Web Server
|
170
174
|
Samba
|
171
175
|
Secure Access Gateway
|
172
176
|
Secure FTP Server
|
@@ -186,6 +190,7 @@ TippingPoint
|
|
186
190
|
Tivoli
|
187
191
|
Tomcat
|
188
192
|
Tornado
|
193
|
+
Traefik
|
189
194
|
Twisted
|
190
195
|
Twisted Web
|
191
196
|
UPnP
|
@@ -206,6 +211,7 @@ VoiP Gateway
|
|
206
211
|
WS_FTP
|
207
212
|
WeOnlyDo
|
208
213
|
Web PN Server
|
214
|
+
Web Services
|
209
215
|
WebGUI
|
210
216
|
WebLogic
|
211
217
|
WebServer
|
@@ -3,14 +3,18 @@
|
|
3
3
|
11000 Series Content Service Switch
|
4
4
|
2wire
|
5
5
|
389 Directory Server
|
6
|
+
3CX Web Server
|
6
7
|
4690 FTP Server
|
7
8
|
ADAudit Plus
|
9
|
+
AIOHTTP
|
8
10
|
AOS
|
9
11
|
APIC
|
10
12
|
ARRIS
|
11
13
|
ASM
|
12
14
|
ASP.NET
|
13
15
|
Abyss Web Server X1
|
16
|
+
Abyss Web Server X2
|
17
|
+
Access Manager
|
14
18
|
Active Directory Controller
|
15
19
|
Active Intelligence Engine
|
16
20
|
ActiveMQ
|
@@ -23,16 +27,19 @@ AnswerX
|
|
23
27
|
Antivirus for Gateways
|
24
28
|
Apache Tomcat HTTP Connector
|
25
29
|
AppleShare IP Mail Server
|
30
|
+
Application Load Balancer
|
26
31
|
Application Protection System, Enterprise
|
27
32
|
Application Server Portal
|
28
33
|
Application Server Web Cache
|
29
34
|
Appweb
|
30
35
|
Arachni
|
36
|
+
Artifactory
|
31
37
|
Aspen
|
32
38
|
Aura Communication Manager
|
33
39
|
AuthServ
|
34
40
|
Authoritative Server
|
35
41
|
Avahi
|
42
|
+
Azure App Service on Azure Stack
|
36
43
|
BIG-IP LTM
|
37
44
|
BIND
|
38
45
|
BRCM400
|
@@ -77,10 +84,12 @@ Connect
|
|
77
84
|
ConnectUPS
|
78
85
|
Consul
|
79
86
|
Content Server
|
87
|
+
Control
|
80
88
|
CouchDB
|
81
89
|
Couchbase Server
|
82
90
|
Courier IMAP
|
83
91
|
Courier POP
|
92
|
+
Cowboy
|
84
93
|
Coyote
|
85
94
|
Cross Web Server
|
86
95
|
CrushFTP Web Interface
|
@@ -115,12 +124,16 @@ E-mail Services
|
|
115
124
|
ESMTP
|
116
125
|
EWS
|
117
126
|
Ecelerity Mail Server
|
127
|
+
Elastic Load Balancer
|
128
|
+
Elastic Load Balancing
|
118
129
|
EmWeb
|
119
130
|
Email Appliance
|
120
131
|
Email Security
|
132
|
+
Email Security Gateway
|
121
133
|
Embedded SSH Server
|
122
134
|
Endpoint Protection Manager
|
123
135
|
Enterprise
|
136
|
+
Envoy
|
124
137
|
Exchange 2000 Server
|
125
138
|
Exchange 2003 Server
|
126
139
|
Exchange 2007 Server
|
@@ -138,17 +151,22 @@ FastTrack Server
|
|
138
151
|
Fiery Print Server
|
139
152
|
FileZilla Server
|
140
153
|
Firewall-1
|
154
|
+
Fireware XTM
|
155
|
+
Fisheye
|
141
156
|
Flink
|
142
157
|
Flower
|
143
158
|
Flussonic Media Server
|
159
|
+
Flyspray
|
144
160
|
FortiVoice
|
145
161
|
FortressSSH Server
|
146
162
|
FreSSH
|
147
163
|
FreeSWITCH
|
164
|
+
Fusion Middleware
|
148
165
|
GHost
|
149
166
|
GNAT Box
|
150
167
|
GStreamer RTSP Server
|
151
168
|
Gateway
|
169
|
+
Gerrit
|
152
170
|
GitLab
|
153
171
|
Gitea
|
154
172
|
GlassFish Server
|
@@ -219,6 +237,7 @@ Kestrel web server
|
|
219
237
|
Kibana
|
220
238
|
Kiwi Syslog
|
221
239
|
Knot DNS
|
240
|
+
Kubernetes
|
222
241
|
LDAP Agent for eDirectory
|
223
242
|
LDAP Server
|
224
243
|
LLBServer
|
@@ -247,6 +266,7 @@ Management Console
|
|
247
266
|
Management Server
|
248
267
|
Management Service
|
249
268
|
MariaDB
|
269
|
+
Mastodon
|
250
270
|
MaxScale
|
251
271
|
Media Server
|
252
272
|
MediaSense
|
@@ -258,8 +278,9 @@ MetaDirectory Server
|
|
258
278
|
Metabase
|
259
279
|
Metasploit
|
260
280
|
MiniDLNA
|
261
|
-
|
281
|
+
MiniUPnPd
|
262
282
|
MobaXterm
|
283
|
+
MoinMoin
|
263
284
|
Mongoose
|
264
285
|
Mongrel
|
265
286
|
Monit
|
@@ -269,7 +290,9 @@ Multicraft
|
|
269
290
|
Munin
|
270
291
|
MySQL
|
271
292
|
MySQL Proxy
|
293
|
+
NGINX Ingress Controller
|
272
294
|
NNTP
|
295
|
+
NQ
|
273
296
|
NTMail
|
274
297
|
NTP
|
275
298
|
Nagios Log Server
|
@@ -296,14 +319,17 @@ NetWeaver Application Server
|
|
296
319
|
NetWeaver Application Server Java
|
297
320
|
NetWeaver Internet Communication Manager
|
298
321
|
NetWeaver Web AS
|
322
|
+
Netscaler
|
299
323
|
Network Monitor
|
300
324
|
Network Printer Manager
|
301
325
|
Nexpose
|
326
|
+
Nextcloud Server
|
302
327
|
Nexus Repository Manager
|
303
328
|
Niagara AX
|
304
329
|
Node
|
305
330
|
Notebook
|
306
331
|
Nucleus SNMP Agent
|
332
|
+
Observium
|
307
333
|
OpManager
|
308
334
|
Open Directory
|
309
335
|
Open Stack Platform Director
|
@@ -332,6 +358,7 @@ PHP
|
|
332
358
|
PMS
|
333
359
|
PMail Server
|
334
360
|
PWS
|
361
|
+
Panorama Server
|
335
362
|
Paramiko
|
336
363
|
Percona Server
|
337
364
|
Perl
|
@@ -348,7 +375,6 @@ PowerMTA
|
|
348
375
|
ProFTPD
|
349
376
|
ProRat
|
350
377
|
Prometheus
|
351
|
-
Proxmox
|
352
378
|
Proxy
|
353
379
|
Proxygen
|
354
380
|
Pulse Connect Secure
|
@@ -364,6 +390,7 @@ Recursor
|
|
364
390
|
Red Hat Directory Server
|
365
391
|
Redmine
|
366
392
|
Reflection
|
393
|
+
Reflection for Secure IT
|
367
394
|
ReflectionX
|
368
395
|
RemoteView
|
369
396
|
Resin
|
@@ -378,7 +405,6 @@ S7/S5 OPC Server
|
|
378
405
|
SABnzbd
|
379
406
|
SAP Message Server
|
380
407
|
SCO X server
|
381
|
-
SIP Server
|
382
408
|
SIP Stack
|
383
409
|
SIPPS IP Phone
|
384
410
|
SLMail
|
@@ -395,9 +421,11 @@ SSL-VPN
|
|
395
421
|
STARFACE PBX
|
396
422
|
STUN Server
|
397
423
|
SWAT
|
424
|
+
Sage X3 Syracuse Web Server
|
398
425
|
Samba
|
399
426
|
Search
|
400
427
|
Secure FTP Server
|
428
|
+
Secure Global Desktop
|
401
429
|
Secure Tencent Gateway
|
402
430
|
SecureTransport
|
403
431
|
Security Center
|
@@ -420,8 +448,10 @@ Snowball
|
|
420
448
|
SonarQube
|
421
449
|
SpeedTouch
|
422
450
|
Splunk
|
451
|
+
Squeezebox
|
423
452
|
Squid
|
424
453
|
StarNet X-Win32
|
454
|
+
Streaming Engine
|
425
455
|
Stronghold
|
426
456
|
Sun Directory Proxy Server
|
427
457
|
Sun Directory Server
|
@@ -435,6 +465,7 @@ TBS FTP Server
|
|
435
465
|
TCP/IP
|
436
466
|
TCPIP POP server
|
437
467
|
TUX Web Server
|
468
|
+
Tableau Server
|
438
469
|
TeamCity
|
439
470
|
Tengine
|
440
471
|
TestCenter IQ
|
@@ -447,13 +478,17 @@ Tivoli Storage Manager
|
|
447
478
|
Tomcat
|
448
479
|
Tor
|
449
480
|
Tornado
|
481
|
+
Traefik Proxy
|
482
|
+
Transportation Management
|
450
483
|
Twisted FTPD
|
451
484
|
Twisted Web
|
452
485
|
Twonky Media Server
|
453
486
|
UnboundID Directory Proxy Server
|
454
487
|
UnboundID Directory Server
|
455
488
|
UniFi Video
|
489
|
+
Universal Management Appliance
|
456
490
|
Urchin Tracking Module
|
491
|
+
Usermin
|
457
492
|
VM
|
458
493
|
VMS SFTP Server
|
459
494
|
VOPMail
|
@@ -463,8 +498,10 @@ VShell
|
|
463
498
|
Varnish
|
464
499
|
Vault
|
465
500
|
VcXsrv
|
501
|
+
View
|
466
502
|
Vignette
|
467
503
|
Virtual Directory Server
|
504
|
+
Virtual Environment
|
468
505
|
Virtualization Manager
|
469
506
|
VisionFS
|
470
507
|
VxWorks CIFS
|
@@ -478,6 +515,7 @@ Web Client
|
|
478
515
|
Web Jetadmin
|
479
516
|
Web PN Server
|
480
517
|
Web Server
|
518
|
+
Web Station
|
481
519
|
WebGUI
|
482
520
|
WebLogic
|
483
521
|
WebServer
|
@@ -485,6 +523,7 @@ WebShield
|
|
485
523
|
WebSphere
|
486
524
|
WebSphere Load Balancer
|
487
525
|
WebTrends
|
526
|
+
Webmin
|
488
527
|
Webserver
|
489
528
|
Werkzeug
|
490
529
|
WildFly
|
@@ -492,6 +531,7 @@ WinRoute
|
|
492
531
|
WinSSHD
|
493
532
|
WinWebMail
|
494
533
|
Windows CE Web Server
|
534
|
+
Windows Media Player
|
495
535
|
Windows Media Server
|
496
536
|
Wing FTP Server
|
497
537
|
Work Server
|
@@ -505,6 +545,7 @@ XSun Solaris X11 server
|
|
505
545
|
XenServer
|
506
546
|
Xming
|
507
547
|
Xvnc
|
548
|
+
YNQ
|
508
549
|
ZMailer
|
509
550
|
Zabbix
|
510
551
|
Zimbra
|
@@ -522,6 +563,7 @@ dnsd
|
|
522
563
|
eDirectory
|
523
564
|
ePolicy Orchestrator
|
524
565
|
emHTTPD
|
566
|
+
etherpad
|
525
567
|
exim
|
526
568
|
flowssh
|
527
569
|
gSOAP
|
@@ -550,6 +592,8 @@ mod_auth_dbm
|
|
550
592
|
mod_auth_digest
|
551
593
|
mod_auth_form
|
552
594
|
mod_auth_ldap
|
595
|
+
mod_auth_oracle
|
596
|
+
mod_auth_pgsql
|
553
597
|
mod_auth_radius
|
554
598
|
mod_authn_alias
|
555
599
|
mod_authn_anon
|
@@ -600,6 +644,8 @@ mod_ext_filter
|
|
600
644
|
mod_fcgid
|
601
645
|
mod_file_cache
|
602
646
|
mod_filter
|
647
|
+
mod_frontpage
|
648
|
+
mod_gzip
|
603
649
|
mod_headers
|
604
650
|
mod_heartbeat
|
605
651
|
mod_heartmonitor
|
@@ -683,6 +729,7 @@ mod_xml2enc
|
|
683
729
|
nginx
|
684
730
|
noVNC
|
685
731
|
ownCloud Server
|
732
|
+
perl
|
686
733
|
pfSense
|
687
734
|
qmail
|
688
735
|
qpopper-mysql
|
@@ -695,7 +742,9 @@ tnftpd
|
|
695
742
|
uc-httpd
|
696
743
|
ucftpd
|
697
744
|
unbound
|
745
|
+
uvicorn
|
698
746
|
vCenter
|
747
|
+
vCenter Converter
|
699
748
|
vmauthd
|
700
749
|
vsFTPd
|
701
750
|
vsFTPd Extended
|