recog-intrigue 2.3.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (130) hide show
  1. checksums.yaml +7 -0
  2. data/.github/ISSUE_TEMPLATE/bug_report.md +37 -0
  3. data/.github/ISSUE_TEMPLATE/feature_request.md +17 -0
  4. data/.github/ISSUE_TEMPLATE/fingerprint_request.md +27 -0
  5. data/.github/PULL_REQUEST_TEMPLATE +24 -0
  6. data/.gitignore +14 -0
  7. data/.rbenv-gemset +1 -0
  8. data/.rspec +3 -0
  9. data/.ruby-gemset +1 -0
  10. data/.ruby-version +1 -0
  11. data/.travis.yml +25 -0
  12. data/.yardopts +1 -0
  13. data/CONTRIBUTING.md +171 -0
  14. data/COPYING +23 -0
  15. data/Gemfile +10 -0
  16. data/LICENSE +7 -0
  17. data/README.md +85 -0
  18. data/Rakefile +22 -0
  19. data/bin/recog_export +81 -0
  20. data/bin/recog_match +55 -0
  21. data/bin/recog_standardize +118 -0
  22. data/bin/recog_verify +64 -0
  23. data/cpe-remap.yaml +134 -0
  24. data/features/data/failing_banners_fingerprints.xml +20 -0
  25. data/features/data/matching_banners_fingerprints.xml +23 -0
  26. data/features/data/multiple_banners_fingerprints.xml +32 -0
  27. data/features/data/no_tests.xml +3 -0
  28. data/features/data/sample_banner.txt +2 -0
  29. data/features/data/successful_tests.xml +18 -0
  30. data/features/data/tests_with_failures.xml +20 -0
  31. data/features/data/tests_with_warnings.xml +17 -0
  32. data/features/match.feature +36 -0
  33. data/features/support/aruba.rb +3 -0
  34. data/features/support/env.rb +6 -0
  35. data/features/verify.feature +48 -0
  36. data/identifiers/README.md +47 -0
  37. data/identifiers/os_architecture.txt +20 -0
  38. data/identifiers/os_device.txt +52 -0
  39. data/identifiers/os_family.txt +160 -0
  40. data/identifiers/os_product.txt +199 -0
  41. data/identifiers/service_family.txt +185 -0
  42. data/identifiers/service_product.txt +255 -0
  43. data/identifiers/software_class.txt +26 -0
  44. data/identifiers/software_family.txt +91 -0
  45. data/identifiers/software_product.txt +333 -0
  46. data/identifiers/vendor.txt +405 -0
  47. data/lib/recog.rb +4 -0
  48. data/lib/recog/db.rb +78 -0
  49. data/lib/recog/db_manager.rb +31 -0
  50. data/lib/recog/fingerprint.rb +280 -0
  51. data/lib/recog/fingerprint/regexp_factory.rb +56 -0
  52. data/lib/recog/fingerprint/test.rb +18 -0
  53. data/lib/recog/formatter.rb +51 -0
  54. data/lib/recog/match_reporter.rb +77 -0
  55. data/lib/recog/matcher.rb +94 -0
  56. data/lib/recog/matcher_factory.rb +14 -0
  57. data/lib/recog/nizer.rb +347 -0
  58. data/lib/recog/verifier.rb +39 -0
  59. data/lib/recog/verifier_factory.rb +13 -0
  60. data/lib/recog/verify_reporter.rb +86 -0
  61. data/lib/recog/version.rb +3 -0
  62. data/misc/convert_mysql_err +61 -0
  63. data/misc/order.xsl +17 -0
  64. data/recog-intrigue.gemspec +45 -0
  65. data/requirements.txt +2 -0
  66. data/spec/data/best_os_match_1.yml +17 -0
  67. data/spec/data/best_os_match_2.yml +17 -0
  68. data/spec/data/best_service_match_1.yml +17 -0
  69. data/spec/data/smb_native_os.txt +25 -0
  70. data/spec/data/test_fingerprints.xml +36 -0
  71. data/spec/data/verification_fingerprints.xml +86 -0
  72. data/spec/data/whitespaced_fingerprint.xml +5 -0
  73. data/spec/lib/fingerprint_self_test_spec.rb +174 -0
  74. data/spec/lib/recog/db_spec.rb +98 -0
  75. data/spec/lib/recog/fingerprint/regexp_factory_spec.rb +73 -0
  76. data/spec/lib/recog/fingerprint_spec.rb +112 -0
  77. data/spec/lib/recog/formatter_spec.rb +69 -0
  78. data/spec/lib/recog/match_reporter_spec.rb +91 -0
  79. data/spec/lib/recog/nizer_spec.rb +330 -0
  80. data/spec/lib/recog/verify_reporter_spec.rb +113 -0
  81. data/spec/spec_helper.rb +82 -0
  82. data/update_cpes.py +186 -0
  83. data/xml/apache_modules.xml +1911 -0
  84. data/xml/apache_os.xml +273 -0
  85. data/xml/architecture.xml +36 -0
  86. data/xml/dns_versionbind.xml +761 -0
  87. data/xml/fingerprints.xsd +128 -0
  88. data/xml/ftp_banners.xml +1553 -0
  89. data/xml/h323_callresp.xml +603 -0
  90. data/xml/hp_pjl_id.xml +358 -0
  91. data/xml/html_title.xml +1630 -0
  92. data/xml/http_cookies.xml +411 -0
  93. data/xml/http_servers.xml +3195 -0
  94. data/xml/http_wwwauth.xml +595 -0
  95. data/xml/imap_banners.xml +245 -0
  96. data/xml/ldap_searchresult.xml +711 -0
  97. data/xml/mdns_device-info_txt.xml +1796 -0
  98. data/xml/mdns_workstation_txt.xml +15 -0
  99. data/xml/mysql_banners.xml +1649 -0
  100. data/xml/mysql_error.xml +871 -0
  101. data/xml/nntp_banners.xml +82 -0
  102. data/xml/ntp_banners.xml +1223 -0
  103. data/xml/operating_system.xml +629 -0
  104. data/xml/pop_banners.xml +499 -0
  105. data/xml/rsh_resp.xml +76 -0
  106. data/xml/rtsp_servers.xml +76 -0
  107. data/xml/sip_banners.xml +359 -0
  108. data/xml/sip_user_agents.xml +221 -0
  109. data/xml/smb_native_lm.xml +62 -0
  110. data/xml/smb_native_os.xml +662 -0
  111. data/xml/smtp_banners.xml +1690 -0
  112. data/xml/smtp_debug.xml +39 -0
  113. data/xml/smtp_ehlo.xml +49 -0
  114. data/xml/smtp_expn.xml +82 -0
  115. data/xml/smtp_help.xml +157 -0
  116. data/xml/smtp_mailfrom.xml +20 -0
  117. data/xml/smtp_noop.xml +44 -0
  118. data/xml/smtp_quit.xml +29 -0
  119. data/xml/smtp_rcptto.xml +25 -0
  120. data/xml/smtp_rset.xml +26 -0
  121. data/xml/smtp_turn.xml +26 -0
  122. data/xml/smtp_vrfy.xml +89 -0
  123. data/xml/snmp_sysdescr.xml +6507 -0
  124. data/xml/snmp_sysobjid.xml +430 -0
  125. data/xml/ssh_banners.xml +1968 -0
  126. data/xml/telnet_banners.xml +1595 -0
  127. data/xml/x11_banners.xml +232 -0
  128. data/xml/x509_issuers.xml +134 -0
  129. data/xml/x509_subjects.xml +1268 -0
  130. metadata +304 -0
@@ -0,0 +1,199 @@
1
+ Adaptive Security Appliance
2
+ AIX
3
+ AIX VIOS
4
+ BIG-IP
5
+ BoSS
6
+ CatOS
7
+ Cobalt RaQ
8
+ ConnectUPS
9
+ cs
10
+ Data ONTAP
11
+ Dell Remote Access Controller
12
+ Eagle Secure Gateway
13
+ Email Appliance
14
+ Enterprise Linux
15
+ Enterprise Linux AS
16
+ Enterprise Linux ES
17
+ Enterprise Linux WS
18
+ EulerOS
19
+ ExtendNet DX
20
+ ExtendNet SX
21
+ Fedora Core Linux
22
+ Fibre Channel
23
+ Firewall-1
24
+ FortiOS
25
+ FreeBSD
26
+ GAiA OS
27
+ GigaVUE HD
28
+ GigaVUE TA1
29
+ HP-UX
30
+ iLO
31
+ im
32
+ Integrated Dell Remote Access Controller
33
+ IOS
34
+ IOS-XE
35
+ IOS-XR
36
+ IPSO
37
+ JetDirect
38
+ Junos OS
39
+ LaserJet
40
+ Linux
41
+ Linux AMI
42
+ Linux AMI 2
43
+ Linux Enterprise Desktop
44
+ Linux Enterprise Server
45
+ LX
46
+ Mac OS X
47
+ Mac OS X Server
48
+ Madge CrossFire
49
+ MedNet Server
50
+ Meridian
51
+ NetBSD
52
+ NetCache
53
+ Netopia
54
+ NetScaler
55
+ NetVanta
56
+ NetWare
57
+ NG
58
+ Nortel
59
+ NX-OS
60
+ OpenVMS
61
+ OS/400
62
+ OSF/1
63
+ PA Firewall
64
+ PA Panorama
65
+ PacketShaper pSOS
66
+ PalmOS
67
+ PAN-OS
68
+ Passport
69
+ PIX
70
+ ProLiant
71
+ Raptor
72
+ Remote Supervisor Adapter / Remote Management Module
73
+ RouterOS
74
+ RT
75
+ SAN-OS
76
+ ScreenOS
77
+ Secure Linux
78
+ Solaris
79
+ SonicOS
80
+ SonicWALL
81
+ SpeedTouch
82
+ Tru64 UNIX
83
+ Ubuntu Linux
84
+ UCS Device
85
+ UCS Manager
86
+ UNIX
87
+ UnixWare
88
+ UPS
89
+ Vigor
90
+ VMware ESX Server
91
+ VMware ESXi Server
92
+ VRP
93
+ WAAS
94
+ Windows
95
+ Windows 10
96
+ Windows 10 Education Edition
97
+ Windows 10 Enterprise Edition
98
+ Windows 10 Home Edition
99
+ Windows 10 Mobile Edition
100
+ Windows 10 Mobile Enterprise Edition
101
+ Windows 10 Professional Edition
102
+ Windows 2000
103
+ Windows 2000 Advanced Server
104
+ Windows 2000 Datacenter Server
105
+ Windows 2000 Professional
106
+ Windows 2000 Server
107
+ Windows 7
108
+ Windows 7 Enterprise Edition
109
+ Windows 7 Enterprise N Edition
110
+ Windows 7 Home, Basic Edition
111
+ Windows 7 Home, Basic N Edition
112
+ Windows 7 Home, Premium Edition
113
+ Windows 7 Home, Premium N Edition
114
+ Windows 7 Professional Edition
115
+ Windows 7 Starter Edition
116
+ Windows 7 Starter N Edition
117
+ Windows 7 Ultimate Edition
118
+ Windows 7 Ultimate N Edition
119
+ Windows 8
120
+ Windows 8 Enterprise Edition
121
+ Windows 8 Professional Edition
122
+ Windows 8.1
123
+ Windows 8.1 Enterprise Edition
124
+ Windows 8.1 Professional Edition
125
+ Windows 95
126
+ Windows 98
127
+ Windows 98SE
128
+ Windows CE
129
+ Windows Essential Business Server 2008
130
+ Windows Longhorn Server Beta
131
+ Windows ME
132
+ Windows NT
133
+ Windows NT Advanced Server
134
+ Windows NT Server
135
+ Windows NT Server, Enterprise Edition
136
+ Windows NT Server, Terminal Server Edition
137
+ Windows NT Workstation
138
+ Windows RT
139
+ Windows Server 2003
140
+ Windows Server 2003 R2
141
+ Windows Server 2003 R2, Datacenter Edition
142
+ Windows Server 2003 R2, Enterprise Edition
143
+ Windows Server 2003 R2, Express Edition
144
+ Windows Server 2003 R2, Standard Edition
145
+ Windows Server 2003 R2, Web Edition
146
+ Windows Server 2003 R2, Workgroup Edition
147
+ Windows Server 2003, Datacenter Edition
148
+ Windows Server 2003, Enterprise Edition
149
+ Windows Server 2003, Standard Edition
150
+ Windows Server 2003, Web Edition
151
+ Windows Server 2008
152
+ Windows Server 2008 Datacenter Edition
153
+ Windows Server 2008 Enterprise Edition
154
+ Windows Server 2008 HPC Edition
155
+ Windows Server 2008 R2
156
+ Windows Server 2008 R2, Datacenter Edition
157
+ Windows Server 2008 R2, Enterprise Edition
158
+ Windows Server 2008 R2, Standard Edition
159
+ Windows Server 2008 R2, Web Edition
160
+ Windows Server 2008 Standard Edition
161
+ Windows Server 2008 Storage Edition
162
+ Windows Server 2008 Web Edition
163
+ Windows Server 2012
164
+ Windows Server 2012 Datacenter Edition
165
+ Windows Server 2012 Essentials Edition
166
+ Windows Server 2012 Foundation Edition
167
+ Windows Server 2012 R2
168
+ Windows Server 2012 R2 Datacenter Edition
169
+ Windows Server 2012 R2 Essentials Edition
170
+ Windows Server 2012 R2 Foundation Edition
171
+ Windows Server 2012 R2 Standard Edition
172
+ Windows Server 2012 Standard Edition
173
+ Windows Server 2016
174
+ Windows Server 2016 Datacenter Edition
175
+ Windows Server 2016 Essentials Edition
176
+ Windows Server 2016 Foundation Edition
177
+ Windows Server 2016 Standard Edition
178
+ Windows Small Business Server 2003
179
+ Windows Small Business Server 2003 R2
180
+ Windows Small Business Server 2008
181
+ Windows Storage Server 2012
182
+ Windows Storage Server 2012 R2
183
+ Windows Storage Server 2016
184
+ Windows Vista
185
+ Windows Vista Business Edition
186
+ Windows Vista Business N Edition
187
+ Windows Vista Enterprise Edition
188
+ Windows Vista Home, Basic Edition
189
+ Windows Vista Home, Basic N Edition
190
+ Windows Vista Home, Premium Edition
191
+ Windows Vista Starter Edition
192
+ Windows Vista Ultimate Edition
193
+ Windows XP
194
+ Windows XP Home
195
+ Windows XP Professional
196
+ Windows XP Tablet PC Edition
197
+ Wireless LAN Controller
198
+ WRT54G
199
+ z/OS
@@ -0,0 +1,185 @@
1
+ .NET
2
+ 4th Dimension 2004
3
+ Abyss Web Server
4
+ Adaptive Server Enterprise
5
+ Agent
6
+ Alteon
7
+ Antivirus for Gateways
8
+ AOS
9
+ Apache Tomcat HTTP Connector
10
+ Apache
11
+ AppleShare IP Mail Server
12
+ Application Protection System
13
+ Appweb
14
+ ASM
15
+ ASP.NET
16
+ AURA
17
+ BIG-IP
18
+ BIND
19
+ Check Point
20
+ CherryPy
21
+ CMS
22
+ CMS400.NET
23
+ ColdFusion
24
+ Commerce Server
25
+ Compaq HTTP Server
26
+ ConnectUPS
27
+ Content Server
28
+ Content Service Switch
29
+ Coyote
30
+ CRM
31
+ CVS
32
+ Cyrus
33
+ DB2
34
+ Desktop Authority
35
+ Dovecot
36
+ Dropbear
37
+ DSView
38
+ Dynamo
39
+ E-mail Services
40
+ Embedded SSH Server
41
+ emHTTPD
42
+ ePolicy Orchestrator
43
+ EWS
44
+ Exchange Server
45
+ exim
46
+ FastTrack Server
47
+ FileZilla FTP Server
48
+ Firewall-1
49
+ FortressSSH Server
50
+ FreSSH
51
+ FrontPage
52
+ FTGate
53
+ FWTK
54
+ GNAT Box
55
+ GoAhead Webserver
56
+ Google Front End
57
+ GroupWise
58
+ HAProxy
59
+ Helix Server
60
+ HP Data Protector
61
+ HTTP Server
62
+ iGateway
63
+ IIS
64
+ iLO
65
+ IMail Server
66
+ Integrated Lights Out Manager
67
+ Internet Mail Scanner
68
+ Internet Mail Server
69
+ Internet Mail Services
70
+ IntraStore
71
+ IOS
72
+ iPlanet Web Server
73
+ Java System Application Server
74
+ Java System Web Proxy Server
75
+ Java System Web Server
76
+ JBoss
77
+ JC-HTTPD
78
+ JC-SHTTPD
79
+ JetDirect
80
+ Jetty
81
+ Joom!Fish
82
+ JServ
83
+ lighttpd
84
+ Lotus Domino
85
+ Lotus Expeditor
86
+ Mail Server
87
+ Mail-Max
88
+ MailSite
89
+ MAILsweeper
90
+ MDaemon
91
+ MERCUR
92
+ Mercury Mail Transport System
93
+ Messaging Server
94
+ mini_httpd
95
+ Mongrel
96
+ MOVEit DMZ
97
+ MT
98
+ MultiNet
99
+ MySQL
100
+ Nepenthes
101
+ NetBus
102
+ NetCache
103
+ Netscape Enterprise Server
104
+ NetScreen
105
+ NetTracker
106
+ NetVanta
107
+ NetWare Enterprise Web Server
108
+ NetWare HTTP Server
109
+ NetWare HTTP Stack
110
+ NetWeaver
111
+ Network Printer Manager
112
+ NTMail
113
+ NTP
114
+ OpenAdStream
115
+ OpenSSH
116
+ Oracle Database
117
+ Oracle
118
+ OracleAS
119
+ Palo Alto Networks
120
+ PHP
121
+ PIX
122
+ Post.Office
123
+ Postfix
124
+ Postgres
125
+ ProFTPD
126
+ Proxy
127
+ Pure-FTPd
128
+ PWS
129
+ qmail
130
+ Qpopper
131
+ qpopper-mysql
132
+ RealMedia
133
+ Reflection
134
+ RemoteView
135
+ Resin
136
+ RT
137
+ Secure FTP Server
138
+ Sendmail
139
+ Sentinel
140
+ Serv-U
141
+ sfcb
142
+ SharePoint
143
+ SLMail
144
+ Snort Console
145
+ SpeedTouch
146
+ SQL Server
147
+ Squid
148
+ SSH Tectia Server
149
+ SSH
150
+ sshlib
151
+ SSL-VPN
152
+ Stronghold
153
+ Sun Java System Web Server
154
+ Sun ONE Web Server
155
+ Thin
156
+ thttpd
157
+ Tivoli
158
+ Tomcat
159
+ Twisted Web
160
+ Urchin
161
+ Vignette
162
+ VM
163
+ VMware
164
+ VOPMail
165
+ VPOP3
166
+ VRP
167
+ vsFTPd
168
+ VShell
169
+ Web PN Server
170
+ WebGUI
171
+ WebLogic
172
+ Webmin
173
+ Webserver
174
+ WebServer
175
+ WebShield
176
+ WebSphere
177
+ WebSTAR
178
+ WebTrends
179
+ Windows CE Web Server
180
+ Windows Media Services
181
+ WinRoute
182
+ WinSSHD
183
+ Zincite
184
+ ZMailer
185
+ Zope
@@ -0,0 +1,255 @@
1
+ .NET CLR
2
+ .NET Remoting
3
+ 11000 Series Content Service Switch
4
+ 4th Dimension 2004
5
+ Abyss Web Server X1
6
+ Adaptive Server Enterprise
7
+ Adaptive Server Enterprise, Backup Server
8
+ Alteon Web Switch
9
+ Antivirus for Gateways
10
+ AOS
11
+ Apache Tomcat HTTP Connector
12
+ Apache
13
+ AppleShare IP Mail Server
14
+ Application Protection System, Enterprise
15
+ Appweb
16
+ ARRIS
17
+ ASM
18
+ ASP.NET
19
+ Aura Communication Manager
20
+ Avahi
21
+ Back Orifice 2000
22
+ Back Orifice
23
+ Ben-SSL
24
+ BIG-IP LTM
25
+ BIG-IP
26
+ BIND
27
+ CakePHP
28
+ Cart32
29
+ CherryPy
30
+ CMS
31
+ CMS400.NET
32
+ ColdFusion
33
+ Commerce Server
34
+ Confluence
35
+ ConnectUPS
36
+ Content Server
37
+ Coyote
38
+ CRM
39
+ CUPS
40
+ CVS
41
+ Cyrus
42
+ DAV
43
+ DB2
44
+ Desktop Authority
45
+ dnsmasq
46
+ Dovecot
47
+ Dropbear
48
+ DSView
49
+ Dynamo
50
+ Email Appliance
51
+ E-mail Services
52
+ Embedded SSH Server
53
+ emHTTPD
54
+ ePolicy Orchestrator
55
+ Exchange 2000 Server
56
+ Exchange 2003 Server
57
+ Exchange 2007 Server
58
+ Exchange Server 4.0
59
+ Exchange Server 5.0
60
+ Exchange Server 5.5
61
+ Exchange Server
62
+ exim
63
+ FastTrack Server
64
+ FileZilla FTP Server
65
+ Firewall-1
66
+ Fisheye
67
+ Flash
68
+ FortressSSH Server
69
+ FreSSH
70
+ FrontPage
71
+ FTGate
72
+ FTP
73
+ FWTK
74
+ Generic Printer
75
+ GNAT Box
76
+ GoAhead Webserver
77
+ Google Web Server
78
+ GroupWise
79
+ HAProxy
80
+ HP Data Protector
81
+ HTTP Server
82
+ HTTP
83
+ iGateway
84
+ IIS
85
+ iLO
86
+ IMail Server
87
+ Integrated Lights Out Manager
88
+ Internet Mail Scanner
89
+ Internet Mail Server
90
+ Internet Mail Services
91
+ IntraStore
92
+ IOS
93
+ iPlanet or Sun ONE
94
+ Java System Application Server Platform Edition
95
+ Java System Application Server
96
+ Java System Web Server
97
+ JBoss EAP
98
+ JC-HTTPD
99
+ JC-SHTTPD
100
+ JetDirect
101
+ Jetty
102
+ JIRA
103
+ Joom!Fish
104
+ JServ
105
+ Knot DNS
106
+ lighttpd
107
+ ListManager
108
+ Lotus Domino
109
+ Lotus Expeditor Server
110
+ Mail Server
111
+ Mail-Max
112
+ MailSite
113
+ MAILsweeper
114
+ MDaemon
115
+ MERCUR
116
+ Mercury Mail Transport System
117
+ Messaging Server
118
+ Microsoft DNS
119
+ mini_httpd
120
+ mod_auth_oracle
121
+ mod_auth_pgsql
122
+ mod_frontpage
123
+ mod_gzip
124
+ mod_jk
125
+ mod_python
126
+ mod_ssl
127
+ Mongrel
128
+ MOVEit DMZ
129
+ MultiNet
130
+ MySQL
131
+ NcFTPd Server
132
+ Nepenthes
133
+ NetBus
134
+ NetCache
135
+ NetScreen
136
+ NetTracker
137
+ NetVanta
138
+ NetWare Enterprise Web Server
139
+ NetWare HTTP Server
140
+ NetWare HTTP Stack
141
+ NetWeaver Web AS
142
+ Network Printer Manager
143
+ NSD
144
+ NTMail
145
+ NTP
146
+ OpenAdStream
147
+ OpenSSH
148
+ OpenSSL
149
+ Oracle Database
150
+ Oracle
151
+ OracleAS Portal
152
+ PA Firewall
153
+ PHP
154
+ PIX
155
+ Post.Office
156
+ Postfix
157
+ Postgres
158
+ PowerDNS
159
+ ProFTPD
160
+ Proxy
161
+ Pure-FTPd
162
+ PWS
163
+ Python
164
+ qmail
165
+ Qpopper
166
+ qpopper-mysql
167
+ Rapid Logic
168
+ Rapid7 Agent
169
+ Raptor
170
+ Reflection
171
+ RemoteView
172
+ Resin
173
+ RT
174
+ Ruby on Rails
175
+ Secure FTP Server
176
+ Sendmail
177
+ Sentinel Keys Server
178
+ Sentinel Protection Server
179
+ Server: Apache
180
+ Serv-U
181
+ sfcb
182
+ SLMail
183
+ Snort Console
184
+ SpeedTouch
185
+ SQL Server 2000
186
+ SQL Server 2000, Desktop Engine
187
+ SQL Server 2000, Developer Edition
188
+ SQL Server 2000, Enterprise Edition
189
+ SQL Server 2000, Personal Edition
190
+ SQL Server 2000, Standard Edition
191
+ SQL Server 2005
192
+ SQL Server 2005, Compact Edition
193
+ SQL Server 2005, Developer Edition
194
+ SQL Server 2005, Enterprise Edition
195
+ SQL Server 2005, Express Edition
196
+ SQL Server 2005, Standard Edition
197
+ SQL Server 2005, Workgroup Edition
198
+ SQL Server 2008
199
+ SQL Server 2012
200
+ SQL Server 2014
201
+ SQL Server 2016
202
+ SQL Server 2017
203
+ SQL Server
204
+ SQL Server, Backup Server
205
+ SQL Server, Desktop Engine
206
+ SQL Server, Developer Edition
207
+ SQL Server, Enterprise Edition
208
+ SQL Server, Standard Edition
209
+ Squid
210
+ SSH Tectia Server
211
+ SSH
212
+ sshlib
213
+ SSL-VPN
214
+ Stronghold
215
+ Symantec Mail Security for SMTP
216
+ Thin
217
+ thttpd
218
+ Tivoli Access Manager for e-business WebSEAL
219
+ Tivoli Storage Manager
220
+ Tomcat
221
+ Twisted Web
222
+ Unbound
223
+ Urchin Tracking Module
224
+ Vignette
225
+ VM
226
+ VMware Authentication Daemon
227
+ VMware
228
+ VOPMail
229
+ VPOP3
230
+ VRP
231
+ vsFTPd
232
+ VShell
233
+ Web PN Server
234
+ WebDAV component (instead of DAV
235
+ WebDAV
236
+ WebGUI
237
+ WebLogic Server Plugin
238
+ WebLogic
239
+ Webmin
240
+ Webserver
241
+ WebServer
242
+ WebShield
243
+ WebSphere Load Balancer
244
+ WebSphere
245
+ WebSTAR
246
+ WebTrends
247
+ Windows CE Web Server
248
+ WinRoute
249
+ WinSSHD
250
+ Xerox_MicroServer
251
+ XML DB
252
+ z/OS FTP Server
253
+ Zincite
254
+ ZMailer
255
+ Zope