recog 2.3.8 → 2.3.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +6 -0
- data/CONTRIBUTING.md +136 -37
- data/README.md +18 -16
- data/bin/recog_cleanup +16 -0
- data/bin/recog_standardize +30 -6
- data/identifiers/README.md +9 -0
- data/identifiers/hw_device.txt +77 -0
- data/identifiers/hw_family.txt +96 -0
- data/identifiers/hw_product.txt +328 -0
- data/identifiers/os_architecture.txt +6 -6
- data/identifiers/os_device.txt +45 -3
- data/identifiers/os_family.txt +206 -41
- data/identifiers/os_product.txt +238 -17
- data/identifiers/service_family.txt +144 -57
- data/identifiers/service_product.txt +384 -83
- data/identifiers/vendor.txt +553 -68
- data/lib/recog/version.rb +1 -1
- data/requirements.txt +1 -1
- data/xml/apache_modules.xml +292 -5
- data/xml/apache_os.xml +41 -2
- data/xml/architecture.xml +11 -3
- data/xml/dns_versionbind.xml +76 -8
- data/xml/favicons.xml +1700 -0
- data/xml/ftp_banners.xml +178 -8
- data/xml/h323_callresp.xml +112 -12
- data/xml/hp_pjl_id.xml +47 -5
- data/xml/html_title.xml +1258 -25
- data/xml/http_cookies.xml +64 -9
- data/xml/http_servers.xml +667 -37
- data/xml/http_wwwauth.xml +141 -26
- data/xml/imap_banners.xml +19 -13
- data/xml/ldap_searchresult.xml +81 -9
- data/xml/mdns_device-info_txt.xml +175 -2
- data/xml/mdns_workstation_txt.xml +4 -2
- data/xml/mysql_banners.xml +134 -7
- data/xml/mysql_error.xml +113 -6
- data/xml/nntp_banners.xml +10 -2
- data/xml/ntp_banners.xml +80 -4
- data/xml/operating_system.xml +89 -3
- data/xml/pop_banners.xml +30 -31
- data/xml/rsh_resp.xml +11 -2
- data/xml/rtsp_servers.xml +22 -2
- data/xml/sip_banners.xml +35 -4
- data/xml/sip_user_agents.xml +29 -2
- data/xml/smb_native_lm.xml +10 -2
- data/xml/smb_native_os.xml +79 -2
- data/xml/smtp_banners.xml +146 -7
- data/xml/smtp_debug.xml +6 -4
- data/xml/smtp_ehlo.xml +7 -5
- data/xml/smtp_expn.xml +13 -4
- data/xml/smtp_help.xml +23 -4
- data/xml/smtp_mailfrom.xml +5 -2
- data/xml/smtp_noop.xml +6 -5
- data/xml/smtp_quit.xml +5 -4
- data/xml/smtp_rcptto.xml +5 -2
- data/xml/smtp_rset.xml +4 -4
- data/xml/smtp_turn.xml +4 -4
- data/xml/smtp_vrfy.xml +14 -4
- data/xml/snmp_sysdescr.xml +731 -24
- data/xml/snmp_sysobjid.xml +47 -2
- data/xml/ssh_banners.xml +175 -5
- data/xml/telnet_banners.xml +266 -15
- data/xml/x11_banners.xml +26 -3
- data/xml/x509_issuers.xml +30 -6
- data/xml/x509_subjects.xml +200 -31
- metadata +8 -2
data/lib/recog/version.rb
CHANGED
data/requirements.txt
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
lxml==4.
|
1
|
+
lxml==4.5.1
|
2
2
|
pyyaml
|
data/xml/apache_modules.xml
CHANGED
@@ -1,30 +1,30 @@
|
|
1
|
-
<?xml version=
|
1
|
+
<?xml version='1.0' encoding='UTF-8'?>
|
2
2
|
<fingerprints matches="apache_modules" database_type="service" preference="0.90">
|
3
3
|
<!--
|
4
4
|
When an HTTP server is fingerprinted as apache, the "server" string
|
5
5
|
(taken from the Server header, among other locations) may advertise the
|
6
6
|
Apache version, OS and modules in use by Apache in space separated list, such as:
|
7
|
-
|
8
7
|
Apache/1.3.37 (Unix) FrontPage/5.0.2.2623 mod_ssl/2.8.28 OpenSSL/0.9.7e-p1
|
9
|
-
|
10
8
|
In this example, the Apache instance is running (at least) the modules
|
11
9
|
FrontPage, mod_ssl and OpenSSL.
|
12
|
-
|
13
10
|
This fingerprint file is meant to be used to fingerprint each of the
|
14
11
|
modules individually after splitting the module string on whitespace.
|
15
12
|
-->
|
13
|
+
|
16
14
|
<fingerprint pattern="^(Ben-SSL|Communique|DAV|FrontPage|JRun|LibreSSL|NSS|mpm-itk|OpenSSL|Perl|PHP\d?|proxy_html|Python|Resin|Ruby|SVN|Tomcat)/(\S+)$">
|
17
15
|
<description>Language-specific apache modules with a version</description>
|
18
16
|
<example service.component.product="PHP" service.component.version="7.0.30">PHP/7.0.30</example>
|
19
17
|
<param pos="1" name="service.component.product"/>
|
20
18
|
<param pos="2" name="service.component.version"/>
|
21
19
|
</fingerprint>
|
20
|
+
|
22
21
|
<fingerprint pattern="^(Ben-SSL|Communique|DAV|FrontPage|JRun|LibreSSL|mpm-itk|NSS|OpenSSL|Perl|PHP\d?|proxy_html|Python|Resin|Ruby|SVN|Tomcat)/?$">
|
23
22
|
<description>Language-specific apache modules without a version</description>
|
24
23
|
<example service.component.product="PHP">PHP</example>
|
25
24
|
<example service.component.product="Perl">Perl/</example>
|
26
25
|
<param pos="1" name="service.component.product"/>
|
27
26
|
</fingerprint>
|
27
|
+
|
28
28
|
<fingerprint pattern="mod_access/(\S+)$">
|
29
29
|
<description>mod_access with version</description>
|
30
30
|
<example service.component.version="1.2.3">mod_access/1.2.3</example>
|
@@ -32,12 +32,14 @@
|
|
32
32
|
<param pos="0" name="service.component.product" value="mod_access"/>
|
33
33
|
<param pos="1" name="service.component.version"/>
|
34
34
|
</fingerprint>
|
35
|
+
|
35
36
|
<fingerprint pattern="mod_access/?$">
|
36
37
|
<description>mod_access without version</description>
|
37
38
|
<example>mod_access/</example>
|
38
39
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
39
40
|
<param pos="0" name="service.component.product" value="mod_access"/>
|
40
41
|
</fingerprint>
|
42
|
+
|
41
43
|
<fingerprint pattern="mod_access_compat/(\S+)$">
|
42
44
|
<description>mod_access_compat with version</description>
|
43
45
|
<example service.component.version="1.2.3">mod_access_compat/1.2.3</example>
|
@@ -45,12 +47,14 @@
|
|
45
47
|
<param pos="0" name="service.component.product" value="mod_access_compat"/>
|
46
48
|
<param pos="1" name="service.component.version"/>
|
47
49
|
</fingerprint>
|
50
|
+
|
48
51
|
<fingerprint pattern="mod_access_compat/?$">
|
49
52
|
<description>mod_access_compat without version</description>
|
50
53
|
<example>mod_access_compat/</example>
|
51
54
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
52
55
|
<param pos="0" name="service.component.product" value="mod_access_compat"/>
|
53
56
|
</fingerprint>
|
57
|
+
|
54
58
|
<fingerprint pattern="mod_actions/(\S+)$">
|
55
59
|
<description>mod_actions with version</description>
|
56
60
|
<example service.component.version="1.2.3">mod_actions/1.2.3</example>
|
@@ -58,12 +62,14 @@
|
|
58
62
|
<param pos="0" name="service.component.product" value="mod_actions"/>
|
59
63
|
<param pos="1" name="service.component.version"/>
|
60
64
|
</fingerprint>
|
65
|
+
|
61
66
|
<fingerprint pattern="mod_actions/?$">
|
62
67
|
<description>mod_actions without version</description>
|
63
68
|
<example>mod_actions/</example>
|
64
69
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
65
70
|
<param pos="0" name="service.component.product" value="mod_actions"/>
|
66
71
|
</fingerprint>
|
72
|
+
|
67
73
|
<fingerprint pattern="mod_alias/(\S+)$">
|
68
74
|
<description>mod_alias with version</description>
|
69
75
|
<example service.component.version="1.2.3">mod_alias/1.2.3</example>
|
@@ -71,12 +77,14 @@
|
|
71
77
|
<param pos="0" name="service.component.product" value="mod_alias"/>
|
72
78
|
<param pos="1" name="service.component.version"/>
|
73
79
|
</fingerprint>
|
80
|
+
|
74
81
|
<fingerprint pattern="mod_alias/?$">
|
75
82
|
<description>mod_alias without version</description>
|
76
83
|
<example>mod_alias/</example>
|
77
84
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
78
85
|
<param pos="0" name="service.component.product" value="mod_alias"/>
|
79
86
|
</fingerprint>
|
87
|
+
|
80
88
|
<fingerprint pattern="mod_allowmethods/(\S+)$">
|
81
89
|
<description>mod_allowmethods with version</description>
|
82
90
|
<example service.component.version="1.2.3">mod_allowmethods/1.2.3</example>
|
@@ -84,12 +92,14 @@
|
|
84
92
|
<param pos="0" name="service.component.product" value="mod_allowmethods"/>
|
85
93
|
<param pos="1" name="service.component.version"/>
|
86
94
|
</fingerprint>
|
95
|
+
|
87
96
|
<fingerprint pattern="mod_allowmethods/?$">
|
88
97
|
<description>mod_allowmethods without version</description>
|
89
98
|
<example>mod_allowmethods/</example>
|
90
99
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
91
100
|
<param pos="0" name="service.component.product" value="mod_allowmethods"/>
|
92
101
|
</fingerprint>
|
102
|
+
|
93
103
|
<fingerprint pattern="mod_asis/(\S+)$">
|
94
104
|
<description>mod_asis with version</description>
|
95
105
|
<example service.component.version="1.2.3">mod_asis/1.2.3</example>
|
@@ -97,12 +107,14 @@
|
|
97
107
|
<param pos="0" name="service.component.product" value="mod_asis"/>
|
98
108
|
<param pos="1" name="service.component.version"/>
|
99
109
|
</fingerprint>
|
110
|
+
|
100
111
|
<fingerprint pattern="mod_asis/?$">
|
101
112
|
<description>mod_asis without version</description>
|
102
113
|
<example>mod_asis/</example>
|
103
114
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
104
115
|
<param pos="0" name="service.component.product" value="mod_asis"/>
|
105
116
|
</fingerprint>
|
117
|
+
|
106
118
|
<fingerprint pattern="mod_auth/(\S+)$">
|
107
119
|
<description>mod_auth with version</description>
|
108
120
|
<example service.component.version="1.2.3">mod_auth/1.2.3</example>
|
@@ -110,12 +122,14 @@
|
|
110
122
|
<param pos="0" name="service.component.product" value="mod_auth"/>
|
111
123
|
<param pos="1" name="service.component.version"/>
|
112
124
|
</fingerprint>
|
125
|
+
|
113
126
|
<fingerprint pattern="mod_auth/?$">
|
114
127
|
<description>mod_auth without version</description>
|
115
128
|
<example>mod_auth/</example>
|
116
129
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
117
130
|
<param pos="0" name="service.component.product" value="mod_auth"/>
|
118
131
|
</fingerprint>
|
132
|
+
|
119
133
|
<fingerprint pattern="mod_auth_anon/(\S+)$">
|
120
134
|
<description>mod_auth_anon with version</description>
|
121
135
|
<example service.component.version="1.2.3">mod_auth_anon/1.2.3</example>
|
@@ -123,12 +137,14 @@
|
|
123
137
|
<param pos="0" name="service.component.product" value="mod_auth_anon"/>
|
124
138
|
<param pos="1" name="service.component.version"/>
|
125
139
|
</fingerprint>
|
140
|
+
|
126
141
|
<fingerprint pattern="mod_auth_anon/?$">
|
127
142
|
<description>mod_auth_anon without version</description>
|
128
143
|
<example>mod_auth_anon/</example>
|
129
144
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
130
145
|
<param pos="0" name="service.component.product" value="mod_auth_anon"/>
|
131
146
|
</fingerprint>
|
147
|
+
|
132
148
|
<fingerprint pattern="mod_auth_basic/(\S+)$">
|
133
149
|
<description>mod_auth_basic with version</description>
|
134
150
|
<example service.component.version="1.2.3">mod_auth_basic/1.2.3</example>
|
@@ -136,12 +152,14 @@
|
|
136
152
|
<param pos="0" name="service.component.product" value="mod_auth_basic"/>
|
137
153
|
<param pos="1" name="service.component.version"/>
|
138
154
|
</fingerprint>
|
155
|
+
|
139
156
|
<fingerprint pattern="mod_auth_basic/?$">
|
140
157
|
<description>mod_auth_basic without version</description>
|
141
158
|
<example>mod_auth_basic/</example>
|
142
159
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
143
160
|
<param pos="0" name="service.component.product" value="mod_auth_basic"/>
|
144
161
|
</fingerprint>
|
162
|
+
|
145
163
|
<fingerprint pattern="mod_auth_dbm/(\S+)$">
|
146
164
|
<description>mod_auth_dbm with version</description>
|
147
165
|
<example service.component.version="1.2.3">mod_auth_dbm/1.2.3</example>
|
@@ -149,12 +167,14 @@
|
|
149
167
|
<param pos="0" name="service.component.product" value="mod_auth_dbm"/>
|
150
168
|
<param pos="1" name="service.component.version"/>
|
151
169
|
</fingerprint>
|
170
|
+
|
152
171
|
<fingerprint pattern="mod_auth_dbm/?$">
|
153
172
|
<description>mod_auth_dbm without version</description>
|
154
173
|
<example>mod_auth_dbm/</example>
|
155
174
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
156
175
|
<param pos="0" name="service.component.product" value="mod_auth_dbm"/>
|
157
176
|
</fingerprint>
|
177
|
+
|
158
178
|
<fingerprint pattern="mod_auth_digest/(\S+)$">
|
159
179
|
<description>mod_auth_digest with version</description>
|
160
180
|
<example service.component.version="1.2.3">mod_auth_digest/1.2.3</example>
|
@@ -162,12 +182,14 @@
|
|
162
182
|
<param pos="0" name="service.component.product" value="mod_auth_digest"/>
|
163
183
|
<param pos="1" name="service.component.version"/>
|
164
184
|
</fingerprint>
|
185
|
+
|
165
186
|
<fingerprint pattern="mod_auth_digest/?$">
|
166
187
|
<description>mod_auth_digest without version</description>
|
167
188
|
<example>mod_auth_digest/</example>
|
168
189
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
169
190
|
<param pos="0" name="service.component.product" value="mod_auth_digest"/>
|
170
191
|
</fingerprint>
|
192
|
+
|
171
193
|
<fingerprint pattern="mod_auth_form/(\S+)$">
|
172
194
|
<description>mod_auth_form with version</description>
|
173
195
|
<example service.component.version="1.2.3">mod_auth_form/1.2.3</example>
|
@@ -175,12 +197,14 @@
|
|
175
197
|
<param pos="0" name="service.component.product" value="mod_auth_form"/>
|
176
198
|
<param pos="1" name="service.component.version"/>
|
177
199
|
</fingerprint>
|
200
|
+
|
178
201
|
<fingerprint pattern="mod_auth_form/?$">
|
179
202
|
<description>mod_auth_form without version</description>
|
180
203
|
<example>mod_auth_form/</example>
|
181
204
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
182
205
|
<param pos="0" name="service.component.product" value="mod_auth_form"/>
|
183
206
|
</fingerprint>
|
207
|
+
|
184
208
|
<fingerprint pattern="mod_auth_ldap/(\S+)$">
|
185
209
|
<description>mod_auth_ldap with version</description>
|
186
210
|
<example service.component.version="1.2.3">mod_auth_ldap/1.2.3</example>
|
@@ -188,12 +212,14 @@
|
|
188
212
|
<param pos="0" name="service.component.product" value="mod_auth_ldap"/>
|
189
213
|
<param pos="1" name="service.component.version"/>
|
190
214
|
</fingerprint>
|
215
|
+
|
191
216
|
<fingerprint pattern="mod_auth_ldap/?$">
|
192
217
|
<description>mod_auth_ldap without version</description>
|
193
218
|
<example>mod_auth_ldap/</example>
|
194
219
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
195
220
|
<param pos="0" name="service.component.product" value="mod_auth_ldap"/>
|
196
221
|
</fingerprint>
|
222
|
+
|
197
223
|
<fingerprint pattern="mod_auth_radius/(\S+)$">
|
198
224
|
<description>mod_auth_radius with version</description>
|
199
225
|
<example service.component.version="1.2.3">mod_auth_radius/1.2.3</example>
|
@@ -202,6 +228,7 @@
|
|
202
228
|
<param pos="1" name="service.component.version"/>
|
203
229
|
<param pos="0" name="service.component.cpe23" value="cpe:/a:apache:mod_auth_radius:{service.component.version}"/>
|
204
230
|
</fingerprint>
|
231
|
+
|
205
232
|
<fingerprint pattern="mod_auth_radius/?$">
|
206
233
|
<description>mod_auth_radius without version</description>
|
207
234
|
<example>mod_auth_radius/</example>
|
@@ -209,6 +236,7 @@
|
|
209
236
|
<param pos="0" name="service.component.product" value="mod_auth_radius"/>
|
210
237
|
<param pos="0" name="service.component.cpe23" value="cpe:/a:apache:mod_auth_radius:-"/>
|
211
238
|
</fingerprint>
|
239
|
+
|
212
240
|
<fingerprint pattern="mod_authn_alias/(\S+)$">
|
213
241
|
<description>mod_authn_alias with version</description>
|
214
242
|
<example service.component.version="1.2.3">mod_authn_alias/1.2.3</example>
|
@@ -216,12 +244,14 @@
|
|
216
244
|
<param pos="0" name="service.component.product" value="mod_authn_alias"/>
|
217
245
|
<param pos="1" name="service.component.version"/>
|
218
246
|
</fingerprint>
|
247
|
+
|
219
248
|
<fingerprint pattern="mod_authn_alias/?$">
|
220
249
|
<description>mod_authn_alias without version</description>
|
221
250
|
<example>mod_authn_alias/</example>
|
222
251
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
223
252
|
<param pos="0" name="service.component.product" value="mod_authn_alias"/>
|
224
253
|
</fingerprint>
|
254
|
+
|
225
255
|
<fingerprint pattern="mod_authn_anon/(\S+)$">
|
226
256
|
<description>mod_authn_anon with version</description>
|
227
257
|
<example service.component.version="1.2.3">mod_authn_anon/1.2.3</example>
|
@@ -229,12 +259,14 @@
|
|
229
259
|
<param pos="0" name="service.component.product" value="mod_authn_anon"/>
|
230
260
|
<param pos="1" name="service.component.version"/>
|
231
261
|
</fingerprint>
|
262
|
+
|
232
263
|
<fingerprint pattern="mod_authn_anon/?$">
|
233
264
|
<description>mod_authn_anon without version</description>
|
234
265
|
<example>mod_authn_anon/</example>
|
235
266
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
236
267
|
<param pos="0" name="service.component.product" value="mod_authn_anon"/>
|
237
268
|
</fingerprint>
|
269
|
+
|
238
270
|
<fingerprint pattern="mod_authn_core/(\S+)$">
|
239
271
|
<description>mod_authn_core with version</description>
|
240
272
|
<example service.component.version="1.2.3">mod_authn_core/1.2.3</example>
|
@@ -242,12 +274,14 @@
|
|
242
274
|
<param pos="0" name="service.component.product" value="mod_authn_core"/>
|
243
275
|
<param pos="1" name="service.component.version"/>
|
244
276
|
</fingerprint>
|
277
|
+
|
245
278
|
<fingerprint pattern="mod_authn_core/?$">
|
246
279
|
<description>mod_authn_core without version</description>
|
247
280
|
<example>mod_authn_core/</example>
|
248
281
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
249
282
|
<param pos="0" name="service.component.product" value="mod_authn_core"/>
|
250
283
|
</fingerprint>
|
284
|
+
|
251
285
|
<fingerprint pattern="mod_authn_dbd/(\S+)$">
|
252
286
|
<description>mod_authn_dbd with version</description>
|
253
287
|
<example service.component.version="1.2.3">mod_authn_dbd/1.2.3</example>
|
@@ -255,12 +289,14 @@
|
|
255
289
|
<param pos="0" name="service.component.product" value="mod_authn_dbd"/>
|
256
290
|
<param pos="1" name="service.component.version"/>
|
257
291
|
</fingerprint>
|
292
|
+
|
258
293
|
<fingerprint pattern="mod_authn_dbd/?$">
|
259
294
|
<description>mod_authn_dbd without version</description>
|
260
295
|
<example>mod_authn_dbd/</example>
|
261
296
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
262
297
|
<param pos="0" name="service.component.product" value="mod_authn_dbd"/>
|
263
298
|
</fingerprint>
|
299
|
+
|
264
300
|
<fingerprint pattern="mod_authn_dbm/(\S+)$">
|
265
301
|
<description>mod_authn_dbm with version</description>
|
266
302
|
<example service.component.version="1.2.3">mod_authn_dbm/1.2.3</example>
|
@@ -268,12 +304,14 @@
|
|
268
304
|
<param pos="0" name="service.component.product" value="mod_authn_dbm"/>
|
269
305
|
<param pos="1" name="service.component.version"/>
|
270
306
|
</fingerprint>
|
307
|
+
|
271
308
|
<fingerprint pattern="mod_authn_dbm/?$">
|
272
309
|
<description>mod_authn_dbm without version</description>
|
273
310
|
<example>mod_authn_dbm/</example>
|
274
311
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
275
312
|
<param pos="0" name="service.component.product" value="mod_authn_dbm"/>
|
276
313
|
</fingerprint>
|
314
|
+
|
277
315
|
<fingerprint pattern="mod_authn_default/(\S+)$">
|
278
316
|
<description>mod_authn_default with version</description>
|
279
317
|
<example service.component.version="1.2.3">mod_authn_default/1.2.3</example>
|
@@ -281,12 +319,14 @@
|
|
281
319
|
<param pos="0" name="service.component.product" value="mod_authn_default"/>
|
282
320
|
<param pos="1" name="service.component.version"/>
|
283
321
|
</fingerprint>
|
322
|
+
|
284
323
|
<fingerprint pattern="mod_authn_default/?$">
|
285
324
|
<description>mod_authn_default without version</description>
|
286
325
|
<example>mod_authn_default/</example>
|
287
326
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
288
327
|
<param pos="0" name="service.component.product" value="mod_authn_default"/>
|
289
328
|
</fingerprint>
|
329
|
+
|
290
330
|
<fingerprint pattern="mod_authn_file/(\S+)$">
|
291
331
|
<description>mod_authn_file with version</description>
|
292
332
|
<example service.component.version="1.2.3">mod_authn_file/1.2.3</example>
|
@@ -294,12 +334,14 @@
|
|
294
334
|
<param pos="0" name="service.component.product" value="mod_authn_file"/>
|
295
335
|
<param pos="1" name="service.component.version"/>
|
296
336
|
</fingerprint>
|
337
|
+
|
297
338
|
<fingerprint pattern="mod_authn_file/?$">
|
298
339
|
<description>mod_authn_file without version</description>
|
299
340
|
<example>mod_authn_file/</example>
|
300
341
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
301
342
|
<param pos="0" name="service.component.product" value="mod_authn_file"/>
|
302
343
|
</fingerprint>
|
344
|
+
|
303
345
|
<fingerprint pattern="mod_authn_socache/(\S+)$">
|
304
346
|
<description>mod_authn_socache with version</description>
|
305
347
|
<example service.component.version="1.2.3">mod_authn_socache/1.2.3</example>
|
@@ -307,12 +349,14 @@
|
|
307
349
|
<param pos="0" name="service.component.product" value="mod_authn_socache"/>
|
308
350
|
<param pos="1" name="service.component.version"/>
|
309
351
|
</fingerprint>
|
352
|
+
|
310
353
|
<fingerprint pattern="mod_authn_socache/?$">
|
311
354
|
<description>mod_authn_socache without version</description>
|
312
355
|
<example>mod_authn_socache/</example>
|
313
356
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
314
357
|
<param pos="0" name="service.component.product" value="mod_authn_socache"/>
|
315
358
|
</fingerprint>
|
359
|
+
|
316
360
|
<fingerprint pattern="mod_authnz_fcgi/(\S+)$">
|
317
361
|
<description>mod_authnz_fcgi with version</description>
|
318
362
|
<example service.component.version="1.2.3">mod_authnz_fcgi/1.2.3</example>
|
@@ -320,12 +364,14 @@
|
|
320
364
|
<param pos="0" name="service.component.product" value="mod_authnz_fcgi"/>
|
321
365
|
<param pos="1" name="service.component.version"/>
|
322
366
|
</fingerprint>
|
367
|
+
|
323
368
|
<fingerprint pattern="mod_authnz_fcgi/?$">
|
324
369
|
<description>mod_authnz_fcgi without version</description>
|
325
370
|
<example>mod_authnz_fcgi/</example>
|
326
371
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
327
372
|
<param pos="0" name="service.component.product" value="mod_authnz_fcgi"/>
|
328
373
|
</fingerprint>
|
374
|
+
|
329
375
|
<fingerprint pattern="mod_authnz_ldap/(\S+)$">
|
330
376
|
<description>mod_authnz_ldap with version</description>
|
331
377
|
<example service.component.version="1.2.3">mod_authnz_ldap/1.2.3</example>
|
@@ -333,12 +379,14 @@
|
|
333
379
|
<param pos="0" name="service.component.product" value="mod_authnz_ldap"/>
|
334
380
|
<param pos="1" name="service.component.version"/>
|
335
381
|
</fingerprint>
|
382
|
+
|
336
383
|
<fingerprint pattern="mod_authnz_ldap/?$">
|
337
384
|
<description>mod_authnz_ldap without version</description>
|
338
385
|
<example>mod_authnz_ldap/</example>
|
339
386
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
340
387
|
<param pos="0" name="service.component.product" value="mod_authnz_ldap"/>
|
341
388
|
</fingerprint>
|
389
|
+
|
342
390
|
<fingerprint pattern="mod_authz_core/(\S+)$">
|
343
391
|
<description>mod_authz_core with version</description>
|
344
392
|
<example service.component.version="1.2.3">mod_authz_core/1.2.3</example>
|
@@ -346,12 +394,14 @@
|
|
346
394
|
<param pos="0" name="service.component.product" value="mod_authz_core"/>
|
347
395
|
<param pos="1" name="service.component.version"/>
|
348
396
|
</fingerprint>
|
397
|
+
|
349
398
|
<fingerprint pattern="mod_authz_core/?$">
|
350
399
|
<description>mod_authz_core without version</description>
|
351
400
|
<example>mod_authz_core/</example>
|
352
401
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
353
402
|
<param pos="0" name="service.component.product" value="mod_authz_core"/>
|
354
403
|
</fingerprint>
|
404
|
+
|
355
405
|
<fingerprint pattern="mod_authz_dbd/(\S+)$">
|
356
406
|
<description>mod_authz_dbd with version</description>
|
357
407
|
<example service.component.version="1.2.3">mod_authz_dbd/1.2.3</example>
|
@@ -359,12 +409,14 @@
|
|
359
409
|
<param pos="0" name="service.component.product" value="mod_authz_dbd"/>
|
360
410
|
<param pos="1" name="service.component.version"/>
|
361
411
|
</fingerprint>
|
412
|
+
|
362
413
|
<fingerprint pattern="mod_authz_dbd/?$">
|
363
414
|
<description>mod_authz_dbd without version</description>
|
364
415
|
<example>mod_authz_dbd/</example>
|
365
416
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
366
417
|
<param pos="0" name="service.component.product" value="mod_authz_dbd"/>
|
367
418
|
</fingerprint>
|
419
|
+
|
368
420
|
<fingerprint pattern="mod_authz_dbm/(\S+)$">
|
369
421
|
<description>mod_authz_dbm with version</description>
|
370
422
|
<example service.component.version="1.2.3">mod_authz_dbm/1.2.3</example>
|
@@ -372,12 +424,14 @@
|
|
372
424
|
<param pos="0" name="service.component.product" value="mod_authz_dbm"/>
|
373
425
|
<param pos="1" name="service.component.version"/>
|
374
426
|
</fingerprint>
|
427
|
+
|
375
428
|
<fingerprint pattern="mod_authz_dbm/?$">
|
376
429
|
<description>mod_authz_dbm without version</description>
|
377
430
|
<example>mod_authz_dbm/</example>
|
378
431
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
379
432
|
<param pos="0" name="service.component.product" value="mod_authz_dbm"/>
|
380
433
|
</fingerprint>
|
434
|
+
|
381
435
|
<fingerprint pattern="mod_authz_default/(\S+)$">
|
382
436
|
<description>mod_authz_default with version</description>
|
383
437
|
<example service.component.version="1.2.3">mod_authz_default/1.2.3</example>
|
@@ -385,12 +439,14 @@
|
|
385
439
|
<param pos="0" name="service.component.product" value="mod_authz_default"/>
|
386
440
|
<param pos="1" name="service.component.version"/>
|
387
441
|
</fingerprint>
|
442
|
+
|
388
443
|
<fingerprint pattern="mod_authz_default/?$">
|
389
444
|
<description>mod_authz_default without version</description>
|
390
445
|
<example>mod_authz_default/</example>
|
391
446
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
392
447
|
<param pos="0" name="service.component.product" value="mod_authz_default"/>
|
393
448
|
</fingerprint>
|
449
|
+
|
394
450
|
<fingerprint pattern="mod_authz_groupfile/(\S+)$">
|
395
451
|
<description>mod_authz_groupfile with version</description>
|
396
452
|
<example service.component.version="1.2.3">mod_authz_groupfile/1.2.3</example>
|
@@ -398,12 +454,14 @@
|
|
398
454
|
<param pos="0" name="service.component.product" value="mod_authz_groupfile"/>
|
399
455
|
<param pos="1" name="service.component.version"/>
|
400
456
|
</fingerprint>
|
457
|
+
|
401
458
|
<fingerprint pattern="mod_authz_groupfile/?$">
|
402
459
|
<description>mod_authz_groupfile without version</description>
|
403
460
|
<example>mod_authz_groupfile/</example>
|
404
461
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
405
462
|
<param pos="0" name="service.component.product" value="mod_authz_groupfile"/>
|
406
463
|
</fingerprint>
|
464
|
+
|
407
465
|
<fingerprint pattern="mod_authz_host/(\S+)$">
|
408
466
|
<description>mod_authz_host with version</description>
|
409
467
|
<example service.component.version="1.2.3">mod_authz_host/1.2.3</example>
|
@@ -411,12 +469,14 @@
|
|
411
469
|
<param pos="0" name="service.component.product" value="mod_authz_host"/>
|
412
470
|
<param pos="1" name="service.component.version"/>
|
413
471
|
</fingerprint>
|
472
|
+
|
414
473
|
<fingerprint pattern="mod_authz_host/?$">
|
415
474
|
<description>mod_authz_host without version</description>
|
416
475
|
<example>mod_authz_host/</example>
|
417
476
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
418
477
|
<param pos="0" name="service.component.product" value="mod_authz_host"/>
|
419
478
|
</fingerprint>
|
479
|
+
|
420
480
|
<fingerprint pattern="mod_authz_owner/(\S+)$">
|
421
481
|
<description>mod_authz_owner with version</description>
|
422
482
|
<example service.component.version="1.2.3">mod_authz_owner/1.2.3</example>
|
@@ -424,12 +484,14 @@
|
|
424
484
|
<param pos="0" name="service.component.product" value="mod_authz_owner"/>
|
425
485
|
<param pos="1" name="service.component.version"/>
|
426
486
|
</fingerprint>
|
487
|
+
|
427
488
|
<fingerprint pattern="mod_authz_owner/?$">
|
428
489
|
<description>mod_authz_owner without version</description>
|
429
490
|
<example>mod_authz_owner/</example>
|
430
491
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
431
492
|
<param pos="0" name="service.component.product" value="mod_authz_owner"/>
|
432
493
|
</fingerprint>
|
494
|
+
|
433
495
|
<fingerprint pattern="mod_authz_user/(\S+)$">
|
434
496
|
<description>mod_authz_user with version</description>
|
435
497
|
<example service.component.version="1.2.3">mod_authz_user/1.2.3</example>
|
@@ -437,12 +499,14 @@
|
|
437
499
|
<param pos="0" name="service.component.product" value="mod_authz_user"/>
|
438
500
|
<param pos="1" name="service.component.version"/>
|
439
501
|
</fingerprint>
|
502
|
+
|
440
503
|
<fingerprint pattern="mod_authz_user/?$">
|
441
504
|
<description>mod_authz_user without version</description>
|
442
505
|
<example>mod_authz_user/</example>
|
443
506
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
444
507
|
<param pos="0" name="service.component.product" value="mod_authz_user"/>
|
445
508
|
</fingerprint>
|
509
|
+
|
446
510
|
<fingerprint pattern="mod_autoindex/(\S+)$">
|
447
511
|
<description>mod_autoindex with version</description>
|
448
512
|
<example service.component.version="1.2.3">mod_autoindex/1.2.3</example>
|
@@ -450,12 +514,14 @@
|
|
450
514
|
<param pos="0" name="service.component.product" value="mod_autoindex"/>
|
451
515
|
<param pos="1" name="service.component.version"/>
|
452
516
|
</fingerprint>
|
517
|
+
|
453
518
|
<fingerprint pattern="mod_autoindex/?$">
|
454
519
|
<description>mod_autoindex without version</description>
|
455
520
|
<example>mod_autoindex/</example>
|
456
521
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
457
522
|
<param pos="0" name="service.component.product" value="mod_autoindex"/>
|
458
523
|
</fingerprint>
|
524
|
+
|
459
525
|
<fingerprint pattern="mod_brotli/(\S+)$">
|
460
526
|
<description>mod_brotli with version</description>
|
461
527
|
<example service.component.version="1.2.3">mod_brotli/1.2.3</example>
|
@@ -463,12 +529,14 @@
|
|
463
529
|
<param pos="0" name="service.component.product" value="mod_brotli"/>
|
464
530
|
<param pos="1" name="service.component.version"/>
|
465
531
|
</fingerprint>
|
532
|
+
|
466
533
|
<fingerprint pattern="mod_brotli/?$">
|
467
534
|
<description>mod_brotli without version</description>
|
468
535
|
<example>mod_brotli/</example>
|
469
536
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
470
537
|
<param pos="0" name="service.component.product" value="mod_brotli"/>
|
471
538
|
</fingerprint>
|
539
|
+
|
472
540
|
<fingerprint pattern="mod_buffer/(\S+)$">
|
473
541
|
<description>mod_buffer with version</description>
|
474
542
|
<example service.component.version="1.2.3">mod_buffer/1.2.3</example>
|
@@ -476,12 +544,14 @@
|
|
476
544
|
<param pos="0" name="service.component.product" value="mod_buffer"/>
|
477
545
|
<param pos="1" name="service.component.version"/>
|
478
546
|
</fingerprint>
|
547
|
+
|
479
548
|
<fingerprint pattern="mod_buffer/?$">
|
480
549
|
<description>mod_buffer without version</description>
|
481
550
|
<example>mod_buffer/</example>
|
482
551
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
483
552
|
<param pos="0" name="service.component.product" value="mod_buffer"/>
|
484
553
|
</fingerprint>
|
554
|
+
|
485
555
|
<fingerprint pattern="mod_cache/(\S+)$">
|
486
556
|
<description>mod_cache with version</description>
|
487
557
|
<example service.component.version="1.2.3">mod_cache/1.2.3</example>
|
@@ -489,12 +559,14 @@
|
|
489
559
|
<param pos="0" name="service.component.product" value="mod_cache"/>
|
490
560
|
<param pos="1" name="service.component.version"/>
|
491
561
|
</fingerprint>
|
562
|
+
|
492
563
|
<fingerprint pattern="mod_cache/?$">
|
493
564
|
<description>mod_cache without version</description>
|
494
565
|
<example>mod_cache/</example>
|
495
566
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
496
567
|
<param pos="0" name="service.component.product" value="mod_cache"/>
|
497
568
|
</fingerprint>
|
569
|
+
|
498
570
|
<fingerprint pattern="mod_cache_disk/(\S+)$">
|
499
571
|
<description>mod_cache_disk with version</description>
|
500
572
|
<example service.component.version="1.2.3">mod_cache_disk/1.2.3</example>
|
@@ -502,12 +574,14 @@
|
|
502
574
|
<param pos="0" name="service.component.product" value="mod_cache_disk"/>
|
503
575
|
<param pos="1" name="service.component.version"/>
|
504
576
|
</fingerprint>
|
577
|
+
|
505
578
|
<fingerprint pattern="mod_cache_disk/?$">
|
506
579
|
<description>mod_cache_disk without version</description>
|
507
580
|
<example>mod_cache_disk/</example>
|
508
581
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
509
582
|
<param pos="0" name="service.component.product" value="mod_cache_disk"/>
|
510
583
|
</fingerprint>
|
584
|
+
|
511
585
|
<fingerprint pattern="mod_cache_socache/(\S+)$">
|
512
586
|
<description>mod_cache_socache with version</description>
|
513
587
|
<example service.component.version="1.2.3">mod_cache_socache/1.2.3</example>
|
@@ -515,12 +589,14 @@
|
|
515
589
|
<param pos="0" name="service.component.product" value="mod_cache_socache"/>
|
516
590
|
<param pos="1" name="service.component.version"/>
|
517
591
|
</fingerprint>
|
592
|
+
|
518
593
|
<fingerprint pattern="mod_cache_socache/?$">
|
519
594
|
<description>mod_cache_socache without version</description>
|
520
595
|
<example>mod_cache_socache/</example>
|
521
596
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
522
597
|
<param pos="0" name="service.component.product" value="mod_cache_socache"/>
|
523
598
|
</fingerprint>
|
599
|
+
|
524
600
|
<fingerprint pattern="mod_cern_meta/(\S+)$">
|
525
601
|
<description>mod_cern_meta with version</description>
|
526
602
|
<example service.component.version="1.2.3">mod_cern_meta/1.2.3</example>
|
@@ -528,12 +604,14 @@
|
|
528
604
|
<param pos="0" name="service.component.product" value="mod_cern_meta"/>
|
529
605
|
<param pos="1" name="service.component.version"/>
|
530
606
|
</fingerprint>
|
607
|
+
|
531
608
|
<fingerprint pattern="mod_cern_meta/?$">
|
532
609
|
<description>mod_cern_meta without version</description>
|
533
610
|
<example>mod_cern_meta/</example>
|
534
611
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
535
612
|
<param pos="0" name="service.component.product" value="mod_cern_meta"/>
|
536
613
|
</fingerprint>
|
614
|
+
|
537
615
|
<fingerprint pattern="mod_cgi/(\S+)$">
|
538
616
|
<description>mod_cgi with version</description>
|
539
617
|
<example service.component.version="1.2.3">mod_cgi/1.2.3</example>
|
@@ -541,12 +619,14 @@
|
|
541
619
|
<param pos="0" name="service.component.product" value="mod_cgi"/>
|
542
620
|
<param pos="1" name="service.component.version"/>
|
543
621
|
</fingerprint>
|
622
|
+
|
544
623
|
<fingerprint pattern="mod_cgi/?$">
|
545
624
|
<description>mod_cgi without version</description>
|
546
625
|
<example>mod_cgi/</example>
|
547
626
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
548
627
|
<param pos="0" name="service.component.product" value="mod_cgi"/>
|
549
628
|
</fingerprint>
|
629
|
+
|
550
630
|
<fingerprint pattern="mod_cgid/(\S+)$">
|
551
631
|
<description>mod_cgid with version</description>
|
552
632
|
<example service.component.version="1.2.3">mod_cgid/1.2.3</example>
|
@@ -554,12 +634,14 @@
|
|
554
634
|
<param pos="0" name="service.component.product" value="mod_cgid"/>
|
555
635
|
<param pos="1" name="service.component.version"/>
|
556
636
|
</fingerprint>
|
637
|
+
|
557
638
|
<fingerprint pattern="mod_cgid/?$">
|
558
639
|
<description>mod_cgid without version</description>
|
559
640
|
<example>mod_cgid/</example>
|
560
641
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
561
642
|
<param pos="0" name="service.component.product" value="mod_cgid"/>
|
562
643
|
</fingerprint>
|
644
|
+
|
563
645
|
<fingerprint pattern="mod_charset_lite/(\S+)$">
|
564
646
|
<description>mod_charset_lite with version</description>
|
565
647
|
<example service.component.version="1.2.3">mod_charset_lite/1.2.3</example>
|
@@ -567,12 +649,14 @@
|
|
567
649
|
<param pos="0" name="service.component.product" value="mod_charset_lite"/>
|
568
650
|
<param pos="1" name="service.component.version"/>
|
569
651
|
</fingerprint>
|
652
|
+
|
570
653
|
<fingerprint pattern="mod_charset_lite/?$">
|
571
654
|
<description>mod_charset_lite without version</description>
|
572
655
|
<example>mod_charset_lite/</example>
|
573
656
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
574
657
|
<param pos="0" name="service.component.product" value="mod_charset_lite"/>
|
575
658
|
</fingerprint>
|
659
|
+
|
576
660
|
<fingerprint pattern="mod_data/(\S+)$">
|
577
661
|
<description>mod_data with version</description>
|
578
662
|
<example service.component.version="1.2.3">mod_data/1.2.3</example>
|
@@ -580,12 +664,14 @@
|
|
580
664
|
<param pos="0" name="service.component.product" value="mod_data"/>
|
581
665
|
<param pos="1" name="service.component.version"/>
|
582
666
|
</fingerprint>
|
667
|
+
|
583
668
|
<fingerprint pattern="mod_data/?$">
|
584
669
|
<description>mod_data without version</description>
|
585
670
|
<example>mod_data/</example>
|
586
671
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
587
672
|
<param pos="0" name="service.component.product" value="mod_data"/>
|
588
673
|
</fingerprint>
|
674
|
+
|
589
675
|
<fingerprint pattern="mod_dav/(\S+)$">
|
590
676
|
<description>mod_dav with version</description>
|
591
677
|
<example service.component.version="1.2.3">mod_dav/1.2.3</example>
|
@@ -593,12 +679,14 @@
|
|
593
679
|
<param pos="0" name="service.component.product" value="mod_dav"/>
|
594
680
|
<param pos="1" name="service.component.version"/>
|
595
681
|
</fingerprint>
|
682
|
+
|
596
683
|
<fingerprint pattern="mod_dav/?$">
|
597
684
|
<description>mod_dav without version</description>
|
598
685
|
<example>mod_dav/</example>
|
599
686
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
600
687
|
<param pos="0" name="service.component.product" value="mod_dav"/>
|
601
688
|
</fingerprint>
|
689
|
+
|
602
690
|
<fingerprint pattern="mod_dav_fs/(\S+)$">
|
603
691
|
<description>mod_dav_fs with version</description>
|
604
692
|
<example service.component.version="1.2.3">mod_dav_fs/1.2.3</example>
|
@@ -606,12 +694,14 @@
|
|
606
694
|
<param pos="0" name="service.component.product" value="mod_dav_fs"/>
|
607
695
|
<param pos="1" name="service.component.version"/>
|
608
696
|
</fingerprint>
|
697
|
+
|
609
698
|
<fingerprint pattern="mod_dav_fs/?$">
|
610
699
|
<description>mod_dav_fs without version</description>
|
611
700
|
<example>mod_dav_fs/</example>
|
612
701
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
613
702
|
<param pos="0" name="service.component.product" value="mod_dav_fs"/>
|
614
703
|
</fingerprint>
|
704
|
+
|
615
705
|
<fingerprint pattern="mod_dav_lock/(\S+)$">
|
616
706
|
<description>mod_dav_lock with version</description>
|
617
707
|
<example service.component.version="1.2.3">mod_dav_lock/1.2.3</example>
|
@@ -619,12 +709,14 @@
|
|
619
709
|
<param pos="0" name="service.component.product" value="mod_dav_lock"/>
|
620
710
|
<param pos="1" name="service.component.version"/>
|
621
711
|
</fingerprint>
|
712
|
+
|
622
713
|
<fingerprint pattern="mod_dav_lock/?$">
|
623
714
|
<description>mod_dav_lock without version</description>
|
624
715
|
<example>mod_dav_lock/</example>
|
625
716
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
626
717
|
<param pos="0" name="service.component.product" value="mod_dav_lock"/>
|
627
718
|
</fingerprint>
|
719
|
+
|
628
720
|
<fingerprint pattern="mod_dav_svn/(\S+)$">
|
629
721
|
<description>mod_dav_svn with version</description>
|
630
722
|
<example service.component.version="1.2.3">mod_dav_svn/1.2.3</example>
|
@@ -633,6 +725,7 @@
|
|
633
725
|
<param pos="1" name="service.component.version"/>
|
634
726
|
<param pos="0" name="service.component.cpe23" value="cpe:/a:apache:mod_dav_svn:{service.component.version}"/>
|
635
727
|
</fingerprint>
|
728
|
+
|
636
729
|
<fingerprint pattern="mod_dav_svn/?$">
|
637
730
|
<description>mod_dav_svn without version</description>
|
638
731
|
<example>mod_dav_svn/</example>
|
@@ -640,6 +733,7 @@
|
|
640
733
|
<param pos="0" name="service.component.product" value="mod_dav_svn"/>
|
641
734
|
<param pos="0" name="service.component.cpe23" value="cpe:/a:apache:mod_dav_svn:-"/>
|
642
735
|
</fingerprint>
|
736
|
+
|
643
737
|
<fingerprint pattern="mod_dbd/(\S+)$">
|
644
738
|
<description>mod_dbd with version</description>
|
645
739
|
<example service.component.version="1.2.3">mod_dbd/1.2.3</example>
|
@@ -647,12 +741,14 @@
|
|
647
741
|
<param pos="0" name="service.component.product" value="mod_dbd"/>
|
648
742
|
<param pos="1" name="service.component.version"/>
|
649
743
|
</fingerprint>
|
744
|
+
|
650
745
|
<fingerprint pattern="mod_dbd/?$">
|
651
746
|
<description>mod_dbd without version</description>
|
652
747
|
<example>mod_dbd/</example>
|
653
748
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
654
749
|
<param pos="0" name="service.component.product" value="mod_dbd"/>
|
655
750
|
</fingerprint>
|
751
|
+
|
656
752
|
<fingerprint pattern="mod_deflate/(\S+)$">
|
657
753
|
<description>mod_deflate with version</description>
|
658
754
|
<example service.component.version="1.2.3">mod_deflate/1.2.3</example>
|
@@ -660,12 +756,14 @@
|
|
660
756
|
<param pos="0" name="service.component.product" value="mod_deflate"/>
|
661
757
|
<param pos="1" name="service.component.version"/>
|
662
758
|
</fingerprint>
|
759
|
+
|
663
760
|
<fingerprint pattern="mod_deflate/?$">
|
664
761
|
<description>mod_deflate without version</description>
|
665
762
|
<example>mod_deflate/</example>
|
666
763
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
667
764
|
<param pos="0" name="service.component.product" value="mod_deflate"/>
|
668
765
|
</fingerprint>
|
766
|
+
|
669
767
|
<fingerprint pattern="mod_dialup/(\S+)$">
|
670
768
|
<description>mod_dialup with version</description>
|
671
769
|
<example service.component.version="1.2.3">mod_dialup/1.2.3</example>
|
@@ -673,12 +771,14 @@
|
|
673
771
|
<param pos="0" name="service.component.product" value="mod_dialup"/>
|
674
772
|
<param pos="1" name="service.component.version"/>
|
675
773
|
</fingerprint>
|
774
|
+
|
676
775
|
<fingerprint pattern="mod_dialup/?$">
|
677
776
|
<description>mod_dialup without version</description>
|
678
777
|
<example>mod_dialup/</example>
|
679
778
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
680
779
|
<param pos="0" name="service.component.product" value="mod_dialup"/>
|
681
780
|
</fingerprint>
|
781
|
+
|
682
782
|
<fingerprint pattern="mod_dir/(\S+)$">
|
683
783
|
<description>mod_dir with version</description>
|
684
784
|
<example service.component.version="1.2.3">mod_dir/1.2.3</example>
|
@@ -686,12 +786,14 @@
|
|
686
786
|
<param pos="0" name="service.component.product" value="mod_dir"/>
|
687
787
|
<param pos="1" name="service.component.version"/>
|
688
788
|
</fingerprint>
|
789
|
+
|
689
790
|
<fingerprint pattern="mod_dir/?$">
|
690
791
|
<description>mod_dir without version</description>
|
691
792
|
<example>mod_dir/</example>
|
692
793
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
693
794
|
<param pos="0" name="service.component.product" value="mod_dir"/>
|
694
795
|
</fingerprint>
|
796
|
+
|
695
797
|
<fingerprint pattern="mod_disk_cache/(\S+)$">
|
696
798
|
<description>mod_disk_cache with version</description>
|
697
799
|
<example service.component.version="1.2.3">mod_disk_cache/1.2.3</example>
|
@@ -699,12 +801,14 @@
|
|
699
801
|
<param pos="0" name="service.component.product" value="mod_disk_cache"/>
|
700
802
|
<param pos="1" name="service.component.version"/>
|
701
803
|
</fingerprint>
|
804
|
+
|
702
805
|
<fingerprint pattern="mod_disk_cache/?$">
|
703
806
|
<description>mod_disk_cache without version</description>
|
704
807
|
<example>mod_disk_cache/</example>
|
705
808
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
706
809
|
<param pos="0" name="service.component.product" value="mod_disk_cache"/>
|
707
810
|
</fingerprint>
|
811
|
+
|
708
812
|
<fingerprint pattern="mod_dontdothat/(\S+)$">
|
709
813
|
<description>mod_dontdothat with version</description>
|
710
814
|
<example service.component.version="1.2.3">mod_dontdothat/1.2.3</example>
|
@@ -713,6 +817,7 @@
|
|
713
817
|
<param pos="1" name="service.component.version"/>
|
714
818
|
<param pos="0" name="service.component.cpe23" value="cpe:/a:apache:mod_dontdothat:{service.component.version}"/>
|
715
819
|
</fingerprint>
|
820
|
+
|
716
821
|
<fingerprint pattern="mod_dontdothat/?$">
|
717
822
|
<description>mod_dontdothat without version</description>
|
718
823
|
<example>mod_dontdothat/</example>
|
@@ -720,6 +825,7 @@
|
|
720
825
|
<param pos="0" name="service.component.product" value="mod_dontdothat"/>
|
721
826
|
<param pos="0" name="service.component.cpe23" value="cpe:/a:apache:mod_dontdothat:-"/>
|
722
827
|
</fingerprint>
|
828
|
+
|
723
829
|
<fingerprint pattern="mod_dumpio/(\S+)$">
|
724
830
|
<description>mod_dumpio with version</description>
|
725
831
|
<example service.component.version="1.2.3">mod_dumpio/1.2.3</example>
|
@@ -727,12 +833,14 @@
|
|
727
833
|
<param pos="0" name="service.component.product" value="mod_dumpio"/>
|
728
834
|
<param pos="1" name="service.component.version"/>
|
729
835
|
</fingerprint>
|
836
|
+
|
730
837
|
<fingerprint pattern="mod_dumpio/?$">
|
731
838
|
<description>mod_dumpio without version</description>
|
732
839
|
<example>mod_dumpio/</example>
|
733
840
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
734
841
|
<param pos="0" name="service.component.product" value="mod_dumpio"/>
|
735
842
|
</fingerprint>
|
843
|
+
|
736
844
|
<fingerprint pattern="mod_echo/(\S+)$">
|
737
845
|
<description>mod_echo with version</description>
|
738
846
|
<example service.component.version="1.2.3">mod_echo/1.2.3</example>
|
@@ -740,12 +848,14 @@
|
|
740
848
|
<param pos="0" name="service.component.product" value="mod_echo"/>
|
741
849
|
<param pos="1" name="service.component.version"/>
|
742
850
|
</fingerprint>
|
851
|
+
|
743
852
|
<fingerprint pattern="mod_echo/?$">
|
744
853
|
<description>mod_echo without version</description>
|
745
854
|
<example>mod_echo/</example>
|
746
855
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
747
856
|
<param pos="0" name="service.component.product" value="mod_echo"/>
|
748
857
|
</fingerprint>
|
858
|
+
|
749
859
|
<fingerprint pattern="mod_env/(\S+)$">
|
750
860
|
<description>mod_env with version</description>
|
751
861
|
<example service.component.version="1.2.3">mod_env/1.2.3</example>
|
@@ -753,12 +863,14 @@
|
|
753
863
|
<param pos="0" name="service.component.product" value="mod_env"/>
|
754
864
|
<param pos="1" name="service.component.version"/>
|
755
865
|
</fingerprint>
|
866
|
+
|
756
867
|
<fingerprint pattern="mod_env/?$">
|
757
868
|
<description>mod_env without version</description>
|
758
869
|
<example>mod_env/</example>
|
759
870
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
760
871
|
<param pos="0" name="service.component.product" value="mod_env"/>
|
761
872
|
</fingerprint>
|
873
|
+
|
762
874
|
<fingerprint pattern="mod_example/(\S+)$">
|
763
875
|
<description>mod_example with version</description>
|
764
876
|
<example service.component.version="1.2.3">mod_example/1.2.3</example>
|
@@ -766,12 +878,14 @@
|
|
766
878
|
<param pos="0" name="service.component.product" value="mod_example"/>
|
767
879
|
<param pos="1" name="service.component.version"/>
|
768
880
|
</fingerprint>
|
881
|
+
|
769
882
|
<fingerprint pattern="mod_example/?$">
|
770
883
|
<description>mod_example without version</description>
|
771
884
|
<example>mod_example/</example>
|
772
885
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
773
886
|
<param pos="0" name="service.component.product" value="mod_example"/>
|
774
887
|
</fingerprint>
|
888
|
+
|
775
889
|
<fingerprint pattern="mod_example_hooks/(\S+)$">
|
776
890
|
<description>mod_example_hooks with version</description>
|
777
891
|
<example service.component.version="1.2.3">mod_example_hooks/1.2.3</example>
|
@@ -779,12 +893,14 @@
|
|
779
893
|
<param pos="0" name="service.component.product" value="mod_example_hooks"/>
|
780
894
|
<param pos="1" name="service.component.version"/>
|
781
895
|
</fingerprint>
|
896
|
+
|
782
897
|
<fingerprint pattern="mod_example_hooks/?$">
|
783
898
|
<description>mod_example_hooks without version</description>
|
784
899
|
<example>mod_example_hooks/</example>
|
785
900
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
786
901
|
<param pos="0" name="service.component.product" value="mod_example_hooks"/>
|
787
902
|
</fingerprint>
|
903
|
+
|
788
904
|
<fingerprint pattern="mod_expires/(\S+)$">
|
789
905
|
<description>mod_expires with version</description>
|
790
906
|
<example service.component.version="1.2.3">mod_expires/1.2.3</example>
|
@@ -792,12 +908,14 @@
|
|
792
908
|
<param pos="0" name="service.component.product" value="mod_expires"/>
|
793
909
|
<param pos="1" name="service.component.version"/>
|
794
910
|
</fingerprint>
|
911
|
+
|
795
912
|
<fingerprint pattern="mod_expires/?$">
|
796
913
|
<description>mod_expires without version</description>
|
797
914
|
<example>mod_expires/</example>
|
798
915
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
799
916
|
<param pos="0" name="service.component.product" value="mod_expires"/>
|
800
917
|
</fingerprint>
|
918
|
+
|
801
919
|
<fingerprint pattern="mod_ext_filter/(\S+)$">
|
802
920
|
<description>mod_ext_filter with version</description>
|
803
921
|
<example service.component.version="1.2.3">mod_ext_filter/1.2.3</example>
|
@@ -805,12 +923,14 @@
|
|
805
923
|
<param pos="0" name="service.component.product" value="mod_ext_filter"/>
|
806
924
|
<param pos="1" name="service.component.version"/>
|
807
925
|
</fingerprint>
|
926
|
+
|
808
927
|
<fingerprint pattern="mod_ext_filter/?$">
|
809
928
|
<description>mod_ext_filter without version</description>
|
810
929
|
<example>mod_ext_filter/</example>
|
811
930
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
812
931
|
<param pos="0" name="service.component.product" value="mod_ext_filter"/>
|
813
932
|
</fingerprint>
|
933
|
+
|
814
934
|
<fingerprint pattern="mod_fcgid/(\S+)$">
|
815
935
|
<description>mod_fcgid with version</description>
|
816
936
|
<example service.component.version="1.2.3">mod_fcgid/1.2.3</example>
|
@@ -819,6 +939,7 @@
|
|
819
939
|
<param pos="1" name="service.component.version"/>
|
820
940
|
<param pos="0" name="service.component.cpe23" value="cpe:/a:apache:mod_fcgid:{service.component.version}"/>
|
821
941
|
</fingerprint>
|
942
|
+
|
822
943
|
<fingerprint pattern="mod_fcgid/?$">
|
823
944
|
<description>mod_fcgid without version</description>
|
824
945
|
<example>mod_fcgid/</example>
|
@@ -826,6 +947,7 @@
|
|
826
947
|
<param pos="0" name="service.component.product" value="mod_fcgid"/>
|
827
948
|
<param pos="0" name="service.component.cpe23" value="cpe:/a:apache:mod_fcgid:-"/>
|
828
949
|
</fingerprint>
|
950
|
+
|
829
951
|
<fingerprint pattern="mod_file_cache/(\S+)$">
|
830
952
|
<description>mod_file_cache with version</description>
|
831
953
|
<example service.component.version="1.2.3">mod_file_cache/1.2.3</example>
|
@@ -833,12 +955,14 @@
|
|
833
955
|
<param pos="0" name="service.component.product" value="mod_file_cache"/>
|
834
956
|
<param pos="1" name="service.component.version"/>
|
835
957
|
</fingerprint>
|
958
|
+
|
836
959
|
<fingerprint pattern="mod_file_cache/?$">
|
837
960
|
<description>mod_file_cache without version</description>
|
838
961
|
<example>mod_file_cache/</example>
|
839
962
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
840
963
|
<param pos="0" name="service.component.product" value="mod_file_cache"/>
|
841
964
|
</fingerprint>
|
965
|
+
|
842
966
|
<fingerprint pattern="mod_filter/(\S+)$">
|
843
967
|
<description>mod_filter with version</description>
|
844
968
|
<example service.component.version="1.2.3">mod_filter/1.2.3</example>
|
@@ -846,12 +970,14 @@
|
|
846
970
|
<param pos="0" name="service.component.product" value="mod_filter"/>
|
847
971
|
<param pos="1" name="service.component.version"/>
|
848
972
|
</fingerprint>
|
973
|
+
|
849
974
|
<fingerprint pattern="mod_filter/?$">
|
850
975
|
<description>mod_filter without version</description>
|
851
976
|
<example>mod_filter/</example>
|
852
977
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
853
978
|
<param pos="0" name="service.component.product" value="mod_filter"/>
|
854
979
|
</fingerprint>
|
980
|
+
|
855
981
|
<fingerprint pattern="mod_headers/(\S+)$">
|
856
982
|
<description>mod_headers with version</description>
|
857
983
|
<example service.component.version="1.2.3">mod_headers/1.2.3</example>
|
@@ -859,12 +985,14 @@
|
|
859
985
|
<param pos="0" name="service.component.product" value="mod_headers"/>
|
860
986
|
<param pos="1" name="service.component.version"/>
|
861
987
|
</fingerprint>
|
988
|
+
|
862
989
|
<fingerprint pattern="mod_headers/?$">
|
863
990
|
<description>mod_headers without version</description>
|
864
991
|
<example>mod_headers/</example>
|
865
992
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
866
993
|
<param pos="0" name="service.component.product" value="mod_headers"/>
|
867
994
|
</fingerprint>
|
995
|
+
|
868
996
|
<fingerprint pattern="mod_heartbeat/(\S+)$">
|
869
997
|
<description>mod_heartbeat with version</description>
|
870
998
|
<example service.component.version="1.2.3">mod_heartbeat/1.2.3</example>
|
@@ -872,12 +1000,14 @@
|
|
872
1000
|
<param pos="0" name="service.component.product" value="mod_heartbeat"/>
|
873
1001
|
<param pos="1" name="service.component.version"/>
|
874
1002
|
</fingerprint>
|
1003
|
+
|
875
1004
|
<fingerprint pattern="mod_heartbeat/?$">
|
876
1005
|
<description>mod_heartbeat without version</description>
|
877
1006
|
<example>mod_heartbeat/</example>
|
878
1007
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
879
1008
|
<param pos="0" name="service.component.product" value="mod_heartbeat"/>
|
880
1009
|
</fingerprint>
|
1010
|
+
|
881
1011
|
<fingerprint pattern="mod_heartmonitor/(\S+)$">
|
882
1012
|
<description>mod_heartmonitor with version</description>
|
883
1013
|
<example service.component.version="1.2.3">mod_heartmonitor/1.2.3</example>
|
@@ -885,12 +1015,14 @@
|
|
885
1015
|
<param pos="0" name="service.component.product" value="mod_heartmonitor"/>
|
886
1016
|
<param pos="1" name="service.component.version"/>
|
887
1017
|
</fingerprint>
|
1018
|
+
|
888
1019
|
<fingerprint pattern="mod_heartmonitor/?$">
|
889
1020
|
<description>mod_heartmonitor without version</description>
|
890
1021
|
<example>mod_heartmonitor/</example>
|
891
1022
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
892
1023
|
<param pos="0" name="service.component.product" value="mod_heartmonitor"/>
|
893
1024
|
</fingerprint>
|
1025
|
+
|
894
1026
|
<fingerprint pattern="mod_http2/(\S+)$">
|
895
1027
|
<description>mod_http2 with version</description>
|
896
1028
|
<example service.component.version="1.2.3">mod_http2/1.2.3</example>
|
@@ -898,12 +1030,14 @@
|
|
898
1030
|
<param pos="0" name="service.component.product" value="mod_http2"/>
|
899
1031
|
<param pos="1" name="service.component.version"/>
|
900
1032
|
</fingerprint>
|
1033
|
+
|
901
1034
|
<fingerprint pattern="mod_http2/?$">
|
902
1035
|
<description>mod_http2 without version</description>
|
903
1036
|
<example>mod_http2/</example>
|
904
1037
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
905
1038
|
<param pos="0" name="service.component.product" value="mod_http2"/>
|
906
1039
|
</fingerprint>
|
1040
|
+
|
907
1041
|
<fingerprint pattern="mod_ident/(\S+)$">
|
908
1042
|
<description>mod_ident with version</description>
|
909
1043
|
<example service.component.version="1.2.3">mod_ident/1.2.3</example>
|
@@ -911,12 +1045,14 @@
|
|
911
1045
|
<param pos="0" name="service.component.product" value="mod_ident"/>
|
912
1046
|
<param pos="1" name="service.component.version"/>
|
913
1047
|
</fingerprint>
|
1048
|
+
|
914
1049
|
<fingerprint pattern="mod_ident/?$">
|
915
1050
|
<description>mod_ident without version</description>
|
916
1051
|
<example>mod_ident/</example>
|
917
1052
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
918
1053
|
<param pos="0" name="service.component.product" value="mod_ident"/>
|
919
1054
|
</fingerprint>
|
1055
|
+
|
920
1056
|
<fingerprint pattern="mod_imagemap/(\S+)$">
|
921
1057
|
<description>mod_imagemap with version</description>
|
922
1058
|
<example service.component.version="1.2.3">mod_imagemap/1.2.3</example>
|
@@ -924,12 +1060,14 @@
|
|
924
1060
|
<param pos="0" name="service.component.product" value="mod_imagemap"/>
|
925
1061
|
<param pos="1" name="service.component.version"/>
|
926
1062
|
</fingerprint>
|
1063
|
+
|
927
1064
|
<fingerprint pattern="mod_imagemap/?$">
|
928
1065
|
<description>mod_imagemap without version</description>
|
929
1066
|
<example>mod_imagemap/</example>
|
930
1067
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
931
1068
|
<param pos="0" name="service.component.product" value="mod_imagemap"/>
|
932
1069
|
</fingerprint>
|
1070
|
+
|
933
1071
|
<fingerprint pattern="mod_imap/(\S+)$">
|
934
1072
|
<description>mod_imap with version</description>
|
935
1073
|
<example service.component.version="1.2.3">mod_imap/1.2.3</example>
|
@@ -938,6 +1076,7 @@
|
|
938
1076
|
<param pos="1" name="service.component.version"/>
|
939
1077
|
<param pos="0" name="service.component.cpe23" value="cpe:/a:apache:mod_imap:{service.component.version}"/>
|
940
1078
|
</fingerprint>
|
1079
|
+
|
941
1080
|
<fingerprint pattern="mod_imap/?$">
|
942
1081
|
<description>mod_imap without version</description>
|
943
1082
|
<example>mod_imap/</example>
|
@@ -945,6 +1084,7 @@
|
|
945
1084
|
<param pos="0" name="service.component.product" value="mod_imap"/>
|
946
1085
|
<param pos="0" name="service.component.cpe23" value="cpe:/a:apache:mod_imap:-"/>
|
947
1086
|
</fingerprint>
|
1087
|
+
|
948
1088
|
<fingerprint pattern="mod_include/(\S+)$">
|
949
1089
|
<description>mod_include with version</description>
|
950
1090
|
<example service.component.version="1.2.3">mod_include/1.2.3</example>
|
@@ -952,12 +1092,14 @@
|
|
952
1092
|
<param pos="0" name="service.component.product" value="mod_include"/>
|
953
1093
|
<param pos="1" name="service.component.version"/>
|
954
1094
|
</fingerprint>
|
1095
|
+
|
955
1096
|
<fingerprint pattern="mod_include/?$">
|
956
1097
|
<description>mod_include without version</description>
|
957
1098
|
<example>mod_include/</example>
|
958
1099
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
959
1100
|
<param pos="0" name="service.component.product" value="mod_include"/>
|
960
1101
|
</fingerprint>
|
1102
|
+
|
961
1103
|
<fingerprint pattern="mod_info/(\S+)$">
|
962
1104
|
<description>mod_info with version</description>
|
963
1105
|
<example service.component.version="1.2.3">mod_info/1.2.3</example>
|
@@ -965,12 +1107,14 @@
|
|
965
1107
|
<param pos="0" name="service.component.product" value="mod_info"/>
|
966
1108
|
<param pos="1" name="service.component.version"/>
|
967
1109
|
</fingerprint>
|
1110
|
+
|
968
1111
|
<fingerprint pattern="mod_info/?$">
|
969
1112
|
<description>mod_info without version</description>
|
970
1113
|
<example>mod_info/</example>
|
971
1114
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
972
1115
|
<param pos="0" name="service.component.product" value="mod_info"/>
|
973
1116
|
</fingerprint>
|
1117
|
+
|
974
1118
|
<fingerprint pattern="mod_isapi/(\S+)$">
|
975
1119
|
<description>mod_isapi with version</description>
|
976
1120
|
<example service.component.version="1.2.3">mod_isapi/1.2.3</example>
|
@@ -978,12 +1122,14 @@
|
|
978
1122
|
<param pos="0" name="service.component.product" value="mod_isapi"/>
|
979
1123
|
<param pos="1" name="service.component.version"/>
|
980
1124
|
</fingerprint>
|
1125
|
+
|
981
1126
|
<fingerprint pattern="mod_isapi/?$">
|
982
1127
|
<description>mod_isapi without version</description>
|
983
1128
|
<example>mod_isapi/</example>
|
984
1129
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
985
1130
|
<param pos="0" name="service.component.product" value="mod_isapi"/>
|
986
1131
|
</fingerprint>
|
1132
|
+
|
987
1133
|
<fingerprint pattern="mod_jk/(\S+)$">
|
988
1134
|
<description>mod_jk with version</description>
|
989
1135
|
<example service.component.version="1.2.3">mod_jk/1.2.3</example>
|
@@ -991,12 +1137,14 @@
|
|
991
1137
|
<param pos="0" name="service.component.product" value="mod_jk"/>
|
992
1138
|
<param pos="1" name="service.component.version"/>
|
993
1139
|
</fingerprint>
|
1140
|
+
|
994
1141
|
<fingerprint pattern="mod_jk/?$">
|
995
1142
|
<description>mod_jk without version</description>
|
996
1143
|
<example>mod_jk/</example>
|
997
1144
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
998
1145
|
<param pos="0" name="service.component.product" value="mod_jk"/>
|
999
1146
|
</fingerprint>
|
1147
|
+
|
1000
1148
|
<fingerprint pattern="mod_jk2/(\S+)$">
|
1001
1149
|
<description>mod_jk2 with version</description>
|
1002
1150
|
<example service.component.version="1.2.3">mod_jk2/1.2.3</example>
|
@@ -1004,12 +1152,14 @@
|
|
1004
1152
|
<param pos="0" name="service.component.product" value="mod_jk2"/>
|
1005
1153
|
<param pos="1" name="service.component.version"/>
|
1006
1154
|
</fingerprint>
|
1155
|
+
|
1007
1156
|
<fingerprint pattern="mod_jk2/?$">
|
1008
1157
|
<description>mod_jk2 without version</description>
|
1009
1158
|
<example>mod_jk2/</example>
|
1010
1159
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1011
1160
|
<param pos="0" name="service.component.product" value="mod_jk2"/>
|
1012
1161
|
</fingerprint>
|
1162
|
+
|
1013
1163
|
<fingerprint pattern="mod_lbmethod_bybusyness/(\S+)$">
|
1014
1164
|
<description>mod_lbmethod_bybusyness with version</description>
|
1015
1165
|
<example service.component.version="1.2.3">mod_lbmethod_bybusyness/1.2.3</example>
|
@@ -1017,12 +1167,14 @@
|
|
1017
1167
|
<param pos="0" name="service.component.product" value="mod_lbmethod_bybusyness"/>
|
1018
1168
|
<param pos="1" name="service.component.version"/>
|
1019
1169
|
</fingerprint>
|
1170
|
+
|
1020
1171
|
<fingerprint pattern="mod_lbmethod_bybusyness/?$">
|
1021
1172
|
<description>mod_lbmethod_bybusyness without version</description>
|
1022
1173
|
<example>mod_lbmethod_bybusyness/</example>
|
1023
1174
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1024
1175
|
<param pos="0" name="service.component.product" value="mod_lbmethod_bybusyness"/>
|
1025
1176
|
</fingerprint>
|
1177
|
+
|
1026
1178
|
<fingerprint pattern="mod_lbmethod_byrequests/(\S+)$">
|
1027
1179
|
<description>mod_lbmethod_byrequests with version</description>
|
1028
1180
|
<example service.component.version="1.2.3">mod_lbmethod_byrequests/1.2.3</example>
|
@@ -1030,12 +1182,14 @@
|
|
1030
1182
|
<param pos="0" name="service.component.product" value="mod_lbmethod_byrequests"/>
|
1031
1183
|
<param pos="1" name="service.component.version"/>
|
1032
1184
|
</fingerprint>
|
1185
|
+
|
1033
1186
|
<fingerprint pattern="mod_lbmethod_byrequests/?$">
|
1034
1187
|
<description>mod_lbmethod_byrequests without version</description>
|
1035
1188
|
<example>mod_lbmethod_byrequests/</example>
|
1036
1189
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1037
1190
|
<param pos="0" name="service.component.product" value="mod_lbmethod_byrequests"/>
|
1038
1191
|
</fingerprint>
|
1192
|
+
|
1039
1193
|
<fingerprint pattern="mod_lbmethod_bytraffic/(\S+)$">
|
1040
1194
|
<description>mod_lbmethod_bytraffic with version</description>
|
1041
1195
|
<example service.component.version="1.2.3">mod_lbmethod_bytraffic/1.2.3</example>
|
@@ -1043,12 +1197,14 @@
|
|
1043
1197
|
<param pos="0" name="service.component.product" value="mod_lbmethod_bytraffic"/>
|
1044
1198
|
<param pos="1" name="service.component.version"/>
|
1045
1199
|
</fingerprint>
|
1200
|
+
|
1046
1201
|
<fingerprint pattern="mod_lbmethod_bytraffic/?$">
|
1047
1202
|
<description>mod_lbmethod_bytraffic without version</description>
|
1048
1203
|
<example>mod_lbmethod_bytraffic/</example>
|
1049
1204
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1050
1205
|
<param pos="0" name="service.component.product" value="mod_lbmethod_bytraffic"/>
|
1051
1206
|
</fingerprint>
|
1207
|
+
|
1052
1208
|
<fingerprint pattern="mod_lbmethod_heartbeat/(\S+)$">
|
1053
1209
|
<description>mod_lbmethod_heartbeat with version</description>
|
1054
1210
|
<example service.component.version="1.2.3">mod_lbmethod_heartbeat/1.2.3</example>
|
@@ -1056,12 +1212,14 @@
|
|
1056
1212
|
<param pos="0" name="service.component.product" value="mod_lbmethod_heartbeat"/>
|
1057
1213
|
<param pos="1" name="service.component.version"/>
|
1058
1214
|
</fingerprint>
|
1215
|
+
|
1059
1216
|
<fingerprint pattern="mod_lbmethod_heartbeat/?$">
|
1060
1217
|
<description>mod_lbmethod_heartbeat without version</description>
|
1061
1218
|
<example>mod_lbmethod_heartbeat/</example>
|
1062
1219
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1063
1220
|
<param pos="0" name="service.component.product" value="mod_lbmethod_heartbeat"/>
|
1064
1221
|
</fingerprint>
|
1222
|
+
|
1065
1223
|
<fingerprint pattern="mod_ldap/(\S+)$">
|
1066
1224
|
<description>mod_ldap with version</description>
|
1067
1225
|
<example service.component.version="1.2.3">mod_ldap/1.2.3</example>
|
@@ -1069,12 +1227,14 @@
|
|
1069
1227
|
<param pos="0" name="service.component.product" value="mod_ldap"/>
|
1070
1228
|
<param pos="1" name="service.component.version"/>
|
1071
1229
|
</fingerprint>
|
1230
|
+
|
1072
1231
|
<fingerprint pattern="mod_ldap/?$">
|
1073
1232
|
<description>mod_ldap without version</description>
|
1074
1233
|
<example>mod_ldap/</example>
|
1075
1234
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1076
1235
|
<param pos="0" name="service.component.product" value="mod_ldap"/>
|
1077
1236
|
</fingerprint>
|
1237
|
+
|
1078
1238
|
<fingerprint pattern="mod_log_config/(\S+)$">
|
1079
1239
|
<description>mod_log_config with version</description>
|
1080
1240
|
<example service.component.version="1.2.3">mod_log_config/1.2.3</example>
|
@@ -1082,12 +1242,14 @@
|
|
1082
1242
|
<param pos="0" name="service.component.product" value="mod_log_config"/>
|
1083
1243
|
<param pos="1" name="service.component.version"/>
|
1084
1244
|
</fingerprint>
|
1245
|
+
|
1085
1246
|
<fingerprint pattern="mod_log_config/?$">
|
1086
1247
|
<description>mod_log_config without version</description>
|
1087
1248
|
<example>mod_log_config/</example>
|
1088
1249
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1089
1250
|
<param pos="0" name="service.component.product" value="mod_log_config"/>
|
1090
1251
|
</fingerprint>
|
1252
|
+
|
1091
1253
|
<fingerprint pattern="mod_log_debug/(\S+)$">
|
1092
1254
|
<description>mod_log_debug with version</description>
|
1093
1255
|
<example service.component.version="1.2.3">mod_log_debug/1.2.3</example>
|
@@ -1095,12 +1257,14 @@
|
|
1095
1257
|
<param pos="0" name="service.component.product" value="mod_log_debug"/>
|
1096
1258
|
<param pos="1" name="service.component.version"/>
|
1097
1259
|
</fingerprint>
|
1260
|
+
|
1098
1261
|
<fingerprint pattern="mod_log_debug/?$">
|
1099
1262
|
<description>mod_log_debug without version</description>
|
1100
1263
|
<example>mod_log_debug/</example>
|
1101
1264
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1102
1265
|
<param pos="0" name="service.component.product" value="mod_log_debug"/>
|
1103
1266
|
</fingerprint>
|
1267
|
+
|
1104
1268
|
<fingerprint pattern="mod_log_forensic/(\S+)$">
|
1105
1269
|
<description>mod_log_forensic with version</description>
|
1106
1270
|
<example service.component.version="1.2.3">mod_log_forensic/1.2.3</example>
|
@@ -1108,12 +1272,14 @@
|
|
1108
1272
|
<param pos="0" name="service.component.product" value="mod_log_forensic"/>
|
1109
1273
|
<param pos="1" name="service.component.version"/>
|
1110
1274
|
</fingerprint>
|
1275
|
+
|
1111
1276
|
<fingerprint pattern="mod_log_forensic/?$">
|
1112
1277
|
<description>mod_log_forensic without version</description>
|
1113
1278
|
<example>mod_log_forensic/</example>
|
1114
1279
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1115
1280
|
<param pos="0" name="service.component.product" value="mod_log_forensic"/>
|
1116
1281
|
</fingerprint>
|
1282
|
+
|
1117
1283
|
<fingerprint pattern="mod_logio/(\S+)$">
|
1118
1284
|
<description>mod_logio with version</description>
|
1119
1285
|
<example service.component.version="1.2.3">mod_logio/1.2.3</example>
|
@@ -1121,12 +1287,14 @@
|
|
1121
1287
|
<param pos="0" name="service.component.product" value="mod_logio"/>
|
1122
1288
|
<param pos="1" name="service.component.version"/>
|
1123
1289
|
</fingerprint>
|
1290
|
+
|
1124
1291
|
<fingerprint pattern="mod_logio/?$">
|
1125
1292
|
<description>mod_logio without version</description>
|
1126
1293
|
<example>mod_logio/</example>
|
1127
1294
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1128
1295
|
<param pos="0" name="service.component.product" value="mod_logio"/>
|
1129
1296
|
</fingerprint>
|
1297
|
+
|
1130
1298
|
<fingerprint pattern="mod_lua/(\S+)$">
|
1131
1299
|
<description>mod_lua with version</description>
|
1132
1300
|
<example service.component.version="1.2.3">mod_lua/1.2.3</example>
|
@@ -1134,12 +1302,14 @@
|
|
1134
1302
|
<param pos="0" name="service.component.product" value="mod_lua"/>
|
1135
1303
|
<param pos="1" name="service.component.version"/>
|
1136
1304
|
</fingerprint>
|
1305
|
+
|
1137
1306
|
<fingerprint pattern="mod_lua/?$">
|
1138
1307
|
<description>mod_lua without version</description>
|
1139
1308
|
<example>mod_lua/</example>
|
1140
1309
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1141
1310
|
<param pos="0" name="service.component.product" value="mod_lua"/>
|
1142
1311
|
</fingerprint>
|
1312
|
+
|
1143
1313
|
<fingerprint pattern="mod_macro/(\S+)$">
|
1144
1314
|
<description>mod_macro with version</description>
|
1145
1315
|
<example service.component.version="1.2.3">mod_macro/1.2.3</example>
|
@@ -1147,12 +1317,14 @@
|
|
1147
1317
|
<param pos="0" name="service.component.product" value="mod_macro"/>
|
1148
1318
|
<param pos="1" name="service.component.version"/>
|
1149
1319
|
</fingerprint>
|
1320
|
+
|
1150
1321
|
<fingerprint pattern="mod_macro/?$">
|
1151
1322
|
<description>mod_macro without version</description>
|
1152
1323
|
<example>mod_macro/</example>
|
1153
1324
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1154
1325
|
<param pos="0" name="service.component.product" value="mod_macro"/>
|
1155
1326
|
</fingerprint>
|
1327
|
+
|
1156
1328
|
<fingerprint pattern="mod_md/(\S+)$">
|
1157
1329
|
<description>mod_md with version</description>
|
1158
1330
|
<example service.component.version="1.2.3">mod_md/1.2.3</example>
|
@@ -1160,12 +1332,14 @@
|
|
1160
1332
|
<param pos="0" name="service.component.product" value="mod_md"/>
|
1161
1333
|
<param pos="1" name="service.component.version"/>
|
1162
1334
|
</fingerprint>
|
1335
|
+
|
1163
1336
|
<fingerprint pattern="mod_md/?$">
|
1164
1337
|
<description>mod_md without version</description>
|
1165
1338
|
<example>mod_md/</example>
|
1166
1339
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1167
1340
|
<param pos="0" name="service.component.product" value="mod_md"/>
|
1168
1341
|
</fingerprint>
|
1342
|
+
|
1169
1343
|
<fingerprint pattern="mod_mem_cache/(\S+)$">
|
1170
1344
|
<description>mod_mem_cache with version</description>
|
1171
1345
|
<example service.component.version="1.2.3">mod_mem_cache/1.2.3</example>
|
@@ -1173,12 +1347,14 @@
|
|
1173
1347
|
<param pos="0" name="service.component.product" value="mod_mem_cache"/>
|
1174
1348
|
<param pos="1" name="service.component.version"/>
|
1175
1349
|
</fingerprint>
|
1350
|
+
|
1176
1351
|
<fingerprint pattern="mod_mem_cache/?$">
|
1177
1352
|
<description>mod_mem_cache without version</description>
|
1178
1353
|
<example>mod_mem_cache/</example>
|
1179
1354
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1180
1355
|
<param pos="0" name="service.component.product" value="mod_mem_cache"/>
|
1181
1356
|
</fingerprint>
|
1357
|
+
|
1182
1358
|
<fingerprint pattern="mod_mime/(\S+)$">
|
1183
1359
|
<description>mod_mime with version</description>
|
1184
1360
|
<example service.component.version="1.2.3">mod_mime/1.2.3</example>
|
@@ -1186,12 +1362,14 @@
|
|
1186
1362
|
<param pos="0" name="service.component.product" value="mod_mime"/>
|
1187
1363
|
<param pos="1" name="service.component.version"/>
|
1188
1364
|
</fingerprint>
|
1365
|
+
|
1189
1366
|
<fingerprint pattern="mod_mime/?$">
|
1190
1367
|
<description>mod_mime without version</description>
|
1191
1368
|
<example>mod_mime/</example>
|
1192
1369
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1193
1370
|
<param pos="0" name="service.component.product" value="mod_mime"/>
|
1194
1371
|
</fingerprint>
|
1372
|
+
|
1195
1373
|
<fingerprint pattern="mod_mime_magic/(\S+)$">
|
1196
1374
|
<description>mod_mime_magic with version</description>
|
1197
1375
|
<example service.component.version="1.2.3">mod_mime_magic/1.2.3</example>
|
@@ -1199,12 +1377,14 @@
|
|
1199
1377
|
<param pos="0" name="service.component.product" value="mod_mime_magic"/>
|
1200
1378
|
<param pos="1" name="service.component.version"/>
|
1201
1379
|
</fingerprint>
|
1380
|
+
|
1202
1381
|
<fingerprint pattern="mod_mime_magic/?$">
|
1203
1382
|
<description>mod_mime_magic without version</description>
|
1204
1383
|
<example>mod_mime_magic/</example>
|
1205
1384
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1206
1385
|
<param pos="0" name="service.component.product" value="mod_mime_magic"/>
|
1207
1386
|
</fingerprint>
|
1387
|
+
|
1208
1388
|
<fingerprint pattern="mod_negotiation/(\S+)$">
|
1209
1389
|
<description>mod_negotiation with version</description>
|
1210
1390
|
<example service.component.version="1.2.3">mod_negotiation/1.2.3</example>
|
@@ -1212,12 +1392,14 @@
|
|
1212
1392
|
<param pos="0" name="service.component.product" value="mod_negotiation"/>
|
1213
1393
|
<param pos="1" name="service.component.version"/>
|
1214
1394
|
</fingerprint>
|
1395
|
+
|
1215
1396
|
<fingerprint pattern="mod_negotiation/?$">
|
1216
1397
|
<description>mod_negotiation without version</description>
|
1217
1398
|
<example>mod_negotiation/</example>
|
1218
1399
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1219
1400
|
<param pos="0" name="service.component.product" value="mod_negotiation"/>
|
1220
1401
|
</fingerprint>
|
1402
|
+
|
1221
1403
|
<fingerprint pattern="mod_nw_ssl/(\S+)$">
|
1222
1404
|
<description>mod_nw_ssl with version</description>
|
1223
1405
|
<example service.component.version="1.2.3">mod_nw_ssl/1.2.3</example>
|
@@ -1225,12 +1407,14 @@
|
|
1225
1407
|
<param pos="0" name="service.component.product" value="mod_nw_ssl"/>
|
1226
1408
|
<param pos="1" name="service.component.version"/>
|
1227
1409
|
</fingerprint>
|
1410
|
+
|
1228
1411
|
<fingerprint pattern="mod_nw_ssl/?$">
|
1229
1412
|
<description>mod_nw_ssl without version</description>
|
1230
1413
|
<example>mod_nw_ssl/</example>
|
1231
1414
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1232
1415
|
<param pos="0" name="service.component.product" value="mod_nw_ssl"/>
|
1233
1416
|
</fingerprint>
|
1417
|
+
|
1234
1418
|
<fingerprint pattern="mod_perl/(\S+)$">
|
1235
1419
|
<description>mod_perl with version</description>
|
1236
1420
|
<example service.component.version="1.2.3">mod_perl/1.2.3</example>
|
@@ -1239,6 +1423,7 @@
|
|
1239
1423
|
<param pos="1" name="service.component.version"/>
|
1240
1424
|
<param pos="0" name="service.component.cpe23" value="cpe:/a:apache:mod_perl:{service.component.version}"/>
|
1241
1425
|
</fingerprint>
|
1426
|
+
|
1242
1427
|
<fingerprint pattern="mod_perl/?$">
|
1243
1428
|
<description>mod_perl without version</description>
|
1244
1429
|
<example>mod_perl/</example>
|
@@ -1246,6 +1431,7 @@
|
|
1246
1431
|
<param pos="0" name="service.component.product" value="mod_perl"/>
|
1247
1432
|
<param pos="0" name="service.component.cpe23" value="cpe:/a:apache:mod_perl:-"/>
|
1248
1433
|
</fingerprint>
|
1434
|
+
|
1249
1435
|
<fingerprint pattern="mod_privileges/(\S+)$">
|
1250
1436
|
<description>mod_privileges with version</description>
|
1251
1437
|
<example service.component.version="1.2.3">mod_privileges/1.2.3</example>
|
@@ -1253,12 +1439,14 @@
|
|
1253
1439
|
<param pos="0" name="service.component.product" value="mod_privileges"/>
|
1254
1440
|
<param pos="1" name="service.component.version"/>
|
1255
1441
|
</fingerprint>
|
1442
|
+
|
1256
1443
|
<fingerprint pattern="mod_privileges/?$">
|
1257
1444
|
<description>mod_privileges without version</description>
|
1258
1445
|
<example>mod_privileges/</example>
|
1259
1446
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1260
1447
|
<param pos="0" name="service.component.product" value="mod_privileges"/>
|
1261
1448
|
</fingerprint>
|
1449
|
+
|
1262
1450
|
<fingerprint pattern="mod_proxy/(\S+)$">
|
1263
1451
|
<description>mod_proxy with version</description>
|
1264
1452
|
<example service.component.version="1.2.3">mod_proxy/1.2.3</example>
|
@@ -1266,12 +1454,14 @@
|
|
1266
1454
|
<param pos="0" name="service.component.product" value="mod_proxy"/>
|
1267
1455
|
<param pos="1" name="service.component.version"/>
|
1268
1456
|
</fingerprint>
|
1457
|
+
|
1269
1458
|
<fingerprint pattern="mod_proxy/?$">
|
1270
1459
|
<description>mod_proxy without version</description>
|
1271
1460
|
<example>mod_proxy/</example>
|
1272
1461
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1273
1462
|
<param pos="0" name="service.component.product" value="mod_proxy"/>
|
1274
1463
|
</fingerprint>
|
1464
|
+
|
1275
1465
|
<fingerprint pattern="mod_proxy_ajp/(\S+)$">
|
1276
1466
|
<description>mod_proxy_ajp with version</description>
|
1277
1467
|
<example service.component.version="1.2.3">mod_proxy_ajp/1.2.3</example>
|
@@ -1279,12 +1469,14 @@
|
|
1279
1469
|
<param pos="0" name="service.component.product" value="mod_proxy_ajp"/>
|
1280
1470
|
<param pos="1" name="service.component.version"/>
|
1281
1471
|
</fingerprint>
|
1472
|
+
|
1282
1473
|
<fingerprint pattern="mod_proxy_ajp/?$">
|
1283
1474
|
<description>mod_proxy_ajp without version</description>
|
1284
1475
|
<example>mod_proxy_ajp/</example>
|
1285
1476
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1286
1477
|
<param pos="0" name="service.component.product" value="mod_proxy_ajp"/>
|
1287
1478
|
</fingerprint>
|
1479
|
+
|
1288
1480
|
<fingerprint pattern="mod_proxy_balancer/(\S+)$">
|
1289
1481
|
<description>mod_proxy_balancer with version</description>
|
1290
1482
|
<example service.component.version="1.2.3">mod_proxy_balancer/1.2.3</example>
|
@@ -1292,12 +1484,14 @@
|
|
1292
1484
|
<param pos="0" name="service.component.product" value="mod_proxy_balancer"/>
|
1293
1485
|
<param pos="1" name="service.component.version"/>
|
1294
1486
|
</fingerprint>
|
1487
|
+
|
1295
1488
|
<fingerprint pattern="mod_proxy_balancer/?$">
|
1296
1489
|
<description>mod_proxy_balancer without version</description>
|
1297
1490
|
<example>mod_proxy_balancer/</example>
|
1298
1491
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1299
1492
|
<param pos="0" name="service.component.product" value="mod_proxy_balancer"/>
|
1300
1493
|
</fingerprint>
|
1494
|
+
|
1301
1495
|
<fingerprint pattern="mod_proxy_connect/(\S+)$">
|
1302
1496
|
<description>mod_proxy_connect with version</description>
|
1303
1497
|
<example service.component.version="1.2.3">mod_proxy_connect/1.2.3</example>
|
@@ -1305,12 +1499,14 @@
|
|
1305
1499
|
<param pos="0" name="service.component.product" value="mod_proxy_connect"/>
|
1306
1500
|
<param pos="1" name="service.component.version"/>
|
1307
1501
|
</fingerprint>
|
1502
|
+
|
1308
1503
|
<fingerprint pattern="mod_proxy_connect/?$">
|
1309
1504
|
<description>mod_proxy_connect without version</description>
|
1310
1505
|
<example>mod_proxy_connect/</example>
|
1311
1506
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1312
1507
|
<param pos="0" name="service.component.product" value="mod_proxy_connect"/>
|
1313
1508
|
</fingerprint>
|
1509
|
+
|
1314
1510
|
<fingerprint pattern="mod_proxy_express/(\S+)$">
|
1315
1511
|
<description>mod_proxy_express with version</description>
|
1316
1512
|
<example service.component.version="1.2.3">mod_proxy_express/1.2.3</example>
|
@@ -1318,12 +1514,14 @@
|
|
1318
1514
|
<param pos="0" name="service.component.product" value="mod_proxy_express"/>
|
1319
1515
|
<param pos="1" name="service.component.version"/>
|
1320
1516
|
</fingerprint>
|
1517
|
+
|
1321
1518
|
<fingerprint pattern="mod_proxy_express/?$">
|
1322
1519
|
<description>mod_proxy_express without version</description>
|
1323
1520
|
<example>mod_proxy_express/</example>
|
1324
1521
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1325
1522
|
<param pos="0" name="service.component.product" value="mod_proxy_express"/>
|
1326
1523
|
</fingerprint>
|
1524
|
+
|
1327
1525
|
<fingerprint pattern="mod_proxy_fcgi/(\S+)$">
|
1328
1526
|
<description>mod_proxy_fcgi with version</description>
|
1329
1527
|
<example service.component.version="1.2.3">mod_proxy_fcgi/1.2.3</example>
|
@@ -1331,12 +1529,14 @@
|
|
1331
1529
|
<param pos="0" name="service.component.product" value="mod_proxy_fcgi"/>
|
1332
1530
|
<param pos="1" name="service.component.version"/>
|
1333
1531
|
</fingerprint>
|
1532
|
+
|
1334
1533
|
<fingerprint pattern="mod_proxy_fcgi/?$">
|
1335
1534
|
<description>mod_proxy_fcgi without version</description>
|
1336
1535
|
<example>mod_proxy_fcgi/</example>
|
1337
1536
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1338
1537
|
<param pos="0" name="service.component.product" value="mod_proxy_fcgi"/>
|
1339
1538
|
</fingerprint>
|
1539
|
+
|
1340
1540
|
<fingerprint pattern="mod_proxy_fdpass/(\S+)$">
|
1341
1541
|
<description>mod_proxy_fdpass with version</description>
|
1342
1542
|
<example service.component.version="1.2.3">mod_proxy_fdpass/1.2.3</example>
|
@@ -1344,12 +1544,14 @@
|
|
1344
1544
|
<param pos="0" name="service.component.product" value="mod_proxy_fdpass"/>
|
1345
1545
|
<param pos="1" name="service.component.version"/>
|
1346
1546
|
</fingerprint>
|
1547
|
+
|
1347
1548
|
<fingerprint pattern="mod_proxy_fdpass/?$">
|
1348
1549
|
<description>mod_proxy_fdpass without version</description>
|
1349
1550
|
<example>mod_proxy_fdpass/</example>
|
1350
1551
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1351
1552
|
<param pos="0" name="service.component.product" value="mod_proxy_fdpass"/>
|
1352
1553
|
</fingerprint>
|
1554
|
+
|
1353
1555
|
<fingerprint pattern="mod_proxy_ftp/(\S+)$">
|
1354
1556
|
<description>mod_proxy_ftp with version</description>
|
1355
1557
|
<example service.component.version="1.2.3">mod_proxy_ftp/1.2.3</example>
|
@@ -1357,12 +1559,14 @@
|
|
1357
1559
|
<param pos="0" name="service.component.product" value="mod_proxy_ftp"/>
|
1358
1560
|
<param pos="1" name="service.component.version"/>
|
1359
1561
|
</fingerprint>
|
1562
|
+
|
1360
1563
|
<fingerprint pattern="mod_proxy_ftp/?$">
|
1361
1564
|
<description>mod_proxy_ftp without version</description>
|
1362
1565
|
<example>mod_proxy_ftp/</example>
|
1363
1566
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1364
1567
|
<param pos="0" name="service.component.product" value="mod_proxy_ftp"/>
|
1365
1568
|
</fingerprint>
|
1569
|
+
|
1366
1570
|
<fingerprint pattern="mod_proxy_hcheck/(\S+)$">
|
1367
1571
|
<description>mod_proxy_hcheck with version</description>
|
1368
1572
|
<example service.component.version="1.2.3">mod_proxy_hcheck/1.2.3</example>
|
@@ -1370,12 +1574,14 @@
|
|
1370
1574
|
<param pos="0" name="service.component.product" value="mod_proxy_hcheck"/>
|
1371
1575
|
<param pos="1" name="service.component.version"/>
|
1372
1576
|
</fingerprint>
|
1577
|
+
|
1373
1578
|
<fingerprint pattern="mod_proxy_hcheck/?$">
|
1374
1579
|
<description>mod_proxy_hcheck without version</description>
|
1375
1580
|
<example>mod_proxy_hcheck/</example>
|
1376
1581
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1377
1582
|
<param pos="0" name="service.component.product" value="mod_proxy_hcheck"/>
|
1378
1583
|
</fingerprint>
|
1584
|
+
|
1379
1585
|
<fingerprint pattern="mod_proxy_html/(\S+)$">
|
1380
1586
|
<description>mod_proxy_html with version</description>
|
1381
1587
|
<example service.component.version="1.2.3">mod_proxy_html/1.2.3</example>
|
@@ -1383,12 +1589,14 @@
|
|
1383
1589
|
<param pos="0" name="service.component.product" value="mod_proxy_html"/>
|
1384
1590
|
<param pos="1" name="service.component.version"/>
|
1385
1591
|
</fingerprint>
|
1592
|
+
|
1386
1593
|
<fingerprint pattern="mod_proxy_html/?$">
|
1387
1594
|
<description>mod_proxy_html without version</description>
|
1388
1595
|
<example>mod_proxy_html/</example>
|
1389
1596
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1390
1597
|
<param pos="0" name="service.component.product" value="mod_proxy_html"/>
|
1391
1598
|
</fingerprint>
|
1599
|
+
|
1392
1600
|
<fingerprint pattern="mod_proxy_http/(\S+)$">
|
1393
1601
|
<description>mod_proxy_http with version</description>
|
1394
1602
|
<example service.component.version="1.2.3">mod_proxy_http/1.2.3</example>
|
@@ -1396,12 +1604,14 @@
|
|
1396
1604
|
<param pos="0" name="service.component.product" value="mod_proxy_http"/>
|
1397
1605
|
<param pos="1" name="service.component.version"/>
|
1398
1606
|
</fingerprint>
|
1607
|
+
|
1399
1608
|
<fingerprint pattern="mod_proxy_http/?$">
|
1400
1609
|
<description>mod_proxy_http without version</description>
|
1401
1610
|
<example>mod_proxy_http/</example>
|
1402
1611
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1403
1612
|
<param pos="0" name="service.component.product" value="mod_proxy_http"/>
|
1404
1613
|
</fingerprint>
|
1614
|
+
|
1405
1615
|
<fingerprint pattern="mod_proxy_http2/(\S+)$">
|
1406
1616
|
<description>mod_proxy_http2 with version</description>
|
1407
1617
|
<example service.component.version="1.2.3">mod_proxy_http2/1.2.3</example>
|
@@ -1409,12 +1619,14 @@
|
|
1409
1619
|
<param pos="0" name="service.component.product" value="mod_proxy_http2"/>
|
1410
1620
|
<param pos="1" name="service.component.version"/>
|
1411
1621
|
</fingerprint>
|
1622
|
+
|
1412
1623
|
<fingerprint pattern="mod_proxy_http2/?$">
|
1413
1624
|
<description>mod_proxy_http2 without version</description>
|
1414
1625
|
<example>mod_proxy_http2/</example>
|
1415
1626
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1416
1627
|
<param pos="0" name="service.component.product" value="mod_proxy_http2"/>
|
1417
1628
|
</fingerprint>
|
1629
|
+
|
1418
1630
|
<fingerprint pattern="mod_proxy_scgi/(\S+)$">
|
1419
1631
|
<description>mod_proxy_scgi with version</description>
|
1420
1632
|
<example service.component.version="1.2.3">mod_proxy_scgi/1.2.3</example>
|
@@ -1422,12 +1634,14 @@
|
|
1422
1634
|
<param pos="0" name="service.component.product" value="mod_proxy_scgi"/>
|
1423
1635
|
<param pos="1" name="service.component.version"/>
|
1424
1636
|
</fingerprint>
|
1637
|
+
|
1425
1638
|
<fingerprint pattern="mod_proxy_scgi/?$">
|
1426
1639
|
<description>mod_proxy_scgi without version</description>
|
1427
1640
|
<example>mod_proxy_scgi/</example>
|
1428
1641
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1429
1642
|
<param pos="0" name="service.component.product" value="mod_proxy_scgi"/>
|
1430
1643
|
</fingerprint>
|
1644
|
+
|
1431
1645
|
<fingerprint pattern="mod_proxy_uwsgi/(\S+)$">
|
1432
1646
|
<description>mod_proxy_uwsgi with version</description>
|
1433
1647
|
<example service.component.version="1.2.3">mod_proxy_uwsgi/1.2.3</example>
|
@@ -1435,12 +1649,14 @@
|
|
1435
1649
|
<param pos="0" name="service.component.product" value="mod_proxy_uwsgi"/>
|
1436
1650
|
<param pos="1" name="service.component.version"/>
|
1437
1651
|
</fingerprint>
|
1652
|
+
|
1438
1653
|
<fingerprint pattern="mod_proxy_uwsgi/?$">
|
1439
1654
|
<description>mod_proxy_uwsgi without version</description>
|
1440
1655
|
<example>mod_proxy_uwsgi/</example>
|
1441
1656
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1442
1657
|
<param pos="0" name="service.component.product" value="mod_proxy_uwsgi"/>
|
1443
1658
|
</fingerprint>
|
1659
|
+
|
1444
1660
|
<fingerprint pattern="mod_proxy_wstunnel/(\S+)$">
|
1445
1661
|
<description>mod_proxy_wstunnel with version</description>
|
1446
1662
|
<example service.component.version="1.2.3">mod_proxy_wstunnel/1.2.3</example>
|
@@ -1448,12 +1664,14 @@
|
|
1448
1664
|
<param pos="0" name="service.component.product" value="mod_proxy_wstunnel"/>
|
1449
1665
|
<param pos="1" name="service.component.version"/>
|
1450
1666
|
</fingerprint>
|
1667
|
+
|
1451
1668
|
<fingerprint pattern="mod_proxy_wstunnel/?$">
|
1452
1669
|
<description>mod_proxy_wstunnel without version</description>
|
1453
1670
|
<example>mod_proxy_wstunnel/</example>
|
1454
1671
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1455
1672
|
<param pos="0" name="service.component.product" value="mod_proxy_wstunnel"/>
|
1456
1673
|
</fingerprint>
|
1674
|
+
|
1457
1675
|
<fingerprint pattern="mod_python/(\S+)$">
|
1458
1676
|
<description>mod_python with version</description>
|
1459
1677
|
<example service.component.version="1.2.3">mod_python/1.2.3</example>
|
@@ -1462,6 +1680,7 @@
|
|
1462
1680
|
<param pos="1" name="service.component.version"/>
|
1463
1681
|
<param pos="0" name="service.component.cpe23" value="cpe:/a:apache:mod_python:{service.component.version}"/>
|
1464
1682
|
</fingerprint>
|
1683
|
+
|
1465
1684
|
<fingerprint pattern="mod_python/?$">
|
1466
1685
|
<description>mod_python without version</description>
|
1467
1686
|
<example>mod_python/</example>
|
@@ -1469,6 +1688,7 @@
|
|
1469
1688
|
<param pos="0" name="service.component.product" value="mod_python"/>
|
1470
1689
|
<param pos="0" name="service.component.cpe23" value="cpe:/a:apache:mod_python:-"/>
|
1471
1690
|
</fingerprint>
|
1691
|
+
|
1472
1692
|
<fingerprint pattern="mod_ratelimit/(\S+)$">
|
1473
1693
|
<description>mod_ratelimit with version</description>
|
1474
1694
|
<example service.component.version="1.2.3">mod_ratelimit/1.2.3</example>
|
@@ -1476,12 +1696,14 @@
|
|
1476
1696
|
<param pos="0" name="service.component.product" value="mod_ratelimit"/>
|
1477
1697
|
<param pos="1" name="service.component.version"/>
|
1478
1698
|
</fingerprint>
|
1699
|
+
|
1479
1700
|
<fingerprint pattern="mod_ratelimit/?$">
|
1480
1701
|
<description>mod_ratelimit without version</description>
|
1481
1702
|
<example>mod_ratelimit/</example>
|
1482
1703
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1483
1704
|
<param pos="0" name="service.component.product" value="mod_ratelimit"/>
|
1484
1705
|
</fingerprint>
|
1706
|
+
|
1485
1707
|
<fingerprint pattern="mod_reflector/(\S+)$">
|
1486
1708
|
<description>mod_reflector with version</description>
|
1487
1709
|
<example service.component.version="1.2.3">mod_reflector/1.2.3</example>
|
@@ -1489,12 +1711,14 @@
|
|
1489
1711
|
<param pos="0" name="service.component.product" value="mod_reflector"/>
|
1490
1712
|
<param pos="1" name="service.component.version"/>
|
1491
1713
|
</fingerprint>
|
1714
|
+
|
1492
1715
|
<fingerprint pattern="mod_reflector/?$">
|
1493
1716
|
<description>mod_reflector without version</description>
|
1494
1717
|
<example>mod_reflector/</example>
|
1495
1718
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1496
1719
|
<param pos="0" name="service.component.product" value="mod_reflector"/>
|
1497
1720
|
</fingerprint>
|
1721
|
+
|
1498
1722
|
<fingerprint pattern="mod_remoteip/(\S+)$">
|
1499
1723
|
<description>mod_remoteip with version</description>
|
1500
1724
|
<example service.component.version="1.2.3">mod_remoteip/1.2.3</example>
|
@@ -1502,12 +1726,14 @@
|
|
1502
1726
|
<param pos="0" name="service.component.product" value="mod_remoteip"/>
|
1503
1727
|
<param pos="1" name="service.component.version"/>
|
1504
1728
|
</fingerprint>
|
1729
|
+
|
1505
1730
|
<fingerprint pattern="mod_remoteip/?$">
|
1506
1731
|
<description>mod_remoteip without version</description>
|
1507
1732
|
<example>mod_remoteip/</example>
|
1508
1733
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1509
1734
|
<param pos="0" name="service.component.product" value="mod_remoteip"/>
|
1510
1735
|
</fingerprint>
|
1736
|
+
|
1511
1737
|
<fingerprint pattern="mod_reqtimeout/(\S+)$">
|
1512
1738
|
<description>mod_reqtimeout with version</description>
|
1513
1739
|
<example service.component.version="1.2.3">mod_reqtimeout/1.2.3</example>
|
@@ -1515,12 +1741,14 @@
|
|
1515
1741
|
<param pos="0" name="service.component.product" value="mod_reqtimeout"/>
|
1516
1742
|
<param pos="1" name="service.component.version"/>
|
1517
1743
|
</fingerprint>
|
1744
|
+
|
1518
1745
|
<fingerprint pattern="mod_reqtimeout/?$">
|
1519
1746
|
<description>mod_reqtimeout without version</description>
|
1520
1747
|
<example>mod_reqtimeout/</example>
|
1521
1748
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1522
1749
|
<param pos="0" name="service.component.product" value="mod_reqtimeout"/>
|
1523
1750
|
</fingerprint>
|
1751
|
+
|
1524
1752
|
<fingerprint pattern="mod_request/(\S+)$">
|
1525
1753
|
<description>mod_request with version</description>
|
1526
1754
|
<example service.component.version="1.2.3">mod_request/1.2.3</example>
|
@@ -1528,12 +1756,14 @@
|
|
1528
1756
|
<param pos="0" name="service.component.product" value="mod_request"/>
|
1529
1757
|
<param pos="1" name="service.component.version"/>
|
1530
1758
|
</fingerprint>
|
1759
|
+
|
1531
1760
|
<fingerprint pattern="mod_request/?$">
|
1532
1761
|
<description>mod_request without version</description>
|
1533
1762
|
<example>mod_request/</example>
|
1534
1763
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1535
1764
|
<param pos="0" name="service.component.product" value="mod_request"/>
|
1536
1765
|
</fingerprint>
|
1766
|
+
|
1537
1767
|
<fingerprint pattern="mod_rewrite/(\S+)$">
|
1538
1768
|
<description>mod_rewrite with version</description>
|
1539
1769
|
<example service.component.version="1.2.3">mod_rewrite/1.2.3</example>
|
@@ -1541,12 +1771,14 @@
|
|
1541
1771
|
<param pos="0" name="service.component.product" value="mod_rewrite"/>
|
1542
1772
|
<param pos="1" name="service.component.version"/>
|
1543
1773
|
</fingerprint>
|
1774
|
+
|
1544
1775
|
<fingerprint pattern="mod_rewrite/?$">
|
1545
1776
|
<description>mod_rewrite without version</description>
|
1546
1777
|
<example>mod_rewrite/</example>
|
1547
1778
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1548
1779
|
<param pos="0" name="service.component.product" value="mod_rewrite"/>
|
1549
1780
|
</fingerprint>
|
1781
|
+
|
1550
1782
|
<fingerprint pattern="mod_sed/(\S+)$">
|
1551
1783
|
<description>mod_sed with version</description>
|
1552
1784
|
<example service.component.version="1.2.3">mod_sed/1.2.3</example>
|
@@ -1554,12 +1786,14 @@
|
|
1554
1786
|
<param pos="0" name="service.component.product" value="mod_sed"/>
|
1555
1787
|
<param pos="1" name="service.component.version"/>
|
1556
1788
|
</fingerprint>
|
1789
|
+
|
1557
1790
|
<fingerprint pattern="mod_sed/?$">
|
1558
1791
|
<description>mod_sed without version</description>
|
1559
1792
|
<example>mod_sed/</example>
|
1560
1793
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1561
1794
|
<param pos="0" name="service.component.product" value="mod_sed"/>
|
1562
1795
|
</fingerprint>
|
1796
|
+
|
1563
1797
|
<fingerprint pattern="mod_session/(\S+)$">
|
1564
1798
|
<description>mod_session with version</description>
|
1565
1799
|
<example service.component.version="1.2.3">mod_session/1.2.3</example>
|
@@ -1567,12 +1801,14 @@
|
|
1567
1801
|
<param pos="0" name="service.component.product" value="mod_session"/>
|
1568
1802
|
<param pos="1" name="service.component.version"/>
|
1569
1803
|
</fingerprint>
|
1804
|
+
|
1570
1805
|
<fingerprint pattern="mod_session/?$">
|
1571
1806
|
<description>mod_session without version</description>
|
1572
1807
|
<example>mod_session/</example>
|
1573
1808
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1574
1809
|
<param pos="0" name="service.component.product" value="mod_session"/>
|
1575
1810
|
</fingerprint>
|
1811
|
+
|
1576
1812
|
<fingerprint pattern="mod_session_cookie/(\S+)$">
|
1577
1813
|
<description>mod_session_cookie with version</description>
|
1578
1814
|
<example service.component.version="1.2.3">mod_session_cookie/1.2.3</example>
|
@@ -1580,12 +1816,14 @@
|
|
1580
1816
|
<param pos="0" name="service.component.product" value="mod_session_cookie"/>
|
1581
1817
|
<param pos="1" name="service.component.version"/>
|
1582
1818
|
</fingerprint>
|
1819
|
+
|
1583
1820
|
<fingerprint pattern="mod_session_cookie/?$">
|
1584
1821
|
<description>mod_session_cookie without version</description>
|
1585
1822
|
<example>mod_session_cookie/</example>
|
1586
1823
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1587
1824
|
<param pos="0" name="service.component.product" value="mod_session_cookie"/>
|
1588
1825
|
</fingerprint>
|
1826
|
+
|
1589
1827
|
<fingerprint pattern="mod_session_crypto/(\S+)$">
|
1590
1828
|
<description>mod_session_crypto with version</description>
|
1591
1829
|
<example service.component.version="1.2.3">mod_session_crypto/1.2.3</example>
|
@@ -1593,12 +1831,14 @@
|
|
1593
1831
|
<param pos="0" name="service.component.product" value="mod_session_crypto"/>
|
1594
1832
|
<param pos="1" name="service.component.version"/>
|
1595
1833
|
</fingerprint>
|
1834
|
+
|
1596
1835
|
<fingerprint pattern="mod_session_crypto/?$">
|
1597
1836
|
<description>mod_session_crypto without version</description>
|
1598
1837
|
<example>mod_session_crypto/</example>
|
1599
1838
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1600
1839
|
<param pos="0" name="service.component.product" value="mod_session_crypto"/>
|
1601
1840
|
</fingerprint>
|
1841
|
+
|
1602
1842
|
<fingerprint pattern="mod_session_dbd/(\S+)$">
|
1603
1843
|
<description>mod_session_dbd with version</description>
|
1604
1844
|
<example service.component.version="1.2.3">mod_session_dbd/1.2.3</example>
|
@@ -1606,12 +1846,14 @@
|
|
1606
1846
|
<param pos="0" name="service.component.product" value="mod_session_dbd"/>
|
1607
1847
|
<param pos="1" name="service.component.version"/>
|
1608
1848
|
</fingerprint>
|
1849
|
+
|
1609
1850
|
<fingerprint pattern="mod_session_dbd/?$">
|
1610
1851
|
<description>mod_session_dbd without version</description>
|
1611
1852
|
<example>mod_session_dbd/</example>
|
1612
1853
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1613
1854
|
<param pos="0" name="service.component.product" value="mod_session_dbd"/>
|
1614
1855
|
</fingerprint>
|
1856
|
+
|
1615
1857
|
<fingerprint pattern="mod_setenvif/(\S+)$">
|
1616
1858
|
<description>mod_setenvif with version</description>
|
1617
1859
|
<example service.component.version="1.2.3">mod_setenvif/1.2.3</example>
|
@@ -1619,12 +1861,14 @@
|
|
1619
1861
|
<param pos="0" name="service.component.product" value="mod_setenvif"/>
|
1620
1862
|
<param pos="1" name="service.component.version"/>
|
1621
1863
|
</fingerprint>
|
1864
|
+
|
1622
1865
|
<fingerprint pattern="mod_setenvif/?$">
|
1623
1866
|
<description>mod_setenvif without version</description>
|
1624
1867
|
<example>mod_setenvif/</example>
|
1625
1868
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1626
1869
|
<param pos="0" name="service.component.product" value="mod_setenvif"/>
|
1627
1870
|
</fingerprint>
|
1871
|
+
|
1628
1872
|
<fingerprint pattern="mod_slotmem_plain/(\S+)$">
|
1629
1873
|
<description>mod_slotmem_plain with version</description>
|
1630
1874
|
<example service.component.version="1.2.3">mod_slotmem_plain/1.2.3</example>
|
@@ -1632,12 +1876,14 @@
|
|
1632
1876
|
<param pos="0" name="service.component.product" value="mod_slotmem_plain"/>
|
1633
1877
|
<param pos="1" name="service.component.version"/>
|
1634
1878
|
</fingerprint>
|
1879
|
+
|
1635
1880
|
<fingerprint pattern="mod_slotmem_plain/?$">
|
1636
1881
|
<description>mod_slotmem_plain without version</description>
|
1637
1882
|
<example>mod_slotmem_plain/</example>
|
1638
1883
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1639
1884
|
<param pos="0" name="service.component.product" value="mod_slotmem_plain"/>
|
1640
1885
|
</fingerprint>
|
1886
|
+
|
1641
1887
|
<fingerprint pattern="mod_slotmem_shm/(\S+)$">
|
1642
1888
|
<description>mod_slotmem_shm with version</description>
|
1643
1889
|
<example service.component.version="1.2.3">mod_slotmem_shm/1.2.3</example>
|
@@ -1645,12 +1891,14 @@
|
|
1645
1891
|
<param pos="0" name="service.component.product" value="mod_slotmem_shm"/>
|
1646
1892
|
<param pos="1" name="service.component.version"/>
|
1647
1893
|
</fingerprint>
|
1894
|
+
|
1648
1895
|
<fingerprint pattern="mod_slotmem_shm/?$">
|
1649
1896
|
<description>mod_slotmem_shm without version</description>
|
1650
1897
|
<example>mod_slotmem_shm/</example>
|
1651
1898
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1652
1899
|
<param pos="0" name="service.component.product" value="mod_slotmem_shm"/>
|
1653
1900
|
</fingerprint>
|
1901
|
+
|
1654
1902
|
<fingerprint pattern="mod_so/(\S+)$">
|
1655
1903
|
<description>mod_so with version</description>
|
1656
1904
|
<example service.component.version="1.2.3">mod_so/1.2.3</example>
|
@@ -1658,12 +1906,14 @@
|
|
1658
1906
|
<param pos="0" name="service.component.product" value="mod_so"/>
|
1659
1907
|
<param pos="1" name="service.component.version"/>
|
1660
1908
|
</fingerprint>
|
1909
|
+
|
1661
1910
|
<fingerprint pattern="mod_so/?$">
|
1662
1911
|
<description>mod_so without version</description>
|
1663
1912
|
<example>mod_so/</example>
|
1664
1913
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1665
1914
|
<param pos="0" name="service.component.product" value="mod_so"/>
|
1666
1915
|
</fingerprint>
|
1916
|
+
|
1667
1917
|
<fingerprint pattern="mod_socache_dbm/(\S+)$">
|
1668
1918
|
<description>mod_socache_dbm with version</description>
|
1669
1919
|
<example service.component.version="1.2.3">mod_socache_dbm/1.2.3</example>
|
@@ -1671,12 +1921,14 @@
|
|
1671
1921
|
<param pos="0" name="service.component.product" value="mod_socache_dbm"/>
|
1672
1922
|
<param pos="1" name="service.component.version"/>
|
1673
1923
|
</fingerprint>
|
1924
|
+
|
1674
1925
|
<fingerprint pattern="mod_socache_dbm/?$">
|
1675
1926
|
<description>mod_socache_dbm without version</description>
|
1676
1927
|
<example>mod_socache_dbm/</example>
|
1677
1928
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1678
1929
|
<param pos="0" name="service.component.product" value="mod_socache_dbm"/>
|
1679
1930
|
</fingerprint>
|
1931
|
+
|
1680
1932
|
<fingerprint pattern="mod_socache_dc/(\S+)$">
|
1681
1933
|
<description>mod_socache_dc with version</description>
|
1682
1934
|
<example service.component.version="1.2.3">mod_socache_dc/1.2.3</example>
|
@@ -1684,12 +1936,14 @@
|
|
1684
1936
|
<param pos="0" name="service.component.product" value="mod_socache_dc"/>
|
1685
1937
|
<param pos="1" name="service.component.version"/>
|
1686
1938
|
</fingerprint>
|
1939
|
+
|
1687
1940
|
<fingerprint pattern="mod_socache_dc/?$">
|
1688
1941
|
<description>mod_socache_dc without version</description>
|
1689
1942
|
<example>mod_socache_dc/</example>
|
1690
1943
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1691
1944
|
<param pos="0" name="service.component.product" value="mod_socache_dc"/>
|
1692
1945
|
</fingerprint>
|
1946
|
+
|
1693
1947
|
<fingerprint pattern="mod_socache_memcache/(\S+)$">
|
1694
1948
|
<description>mod_socache_memcache with version</description>
|
1695
1949
|
<example service.component.version="1.2.3">mod_socache_memcache/1.2.3</example>
|
@@ -1697,12 +1951,14 @@
|
|
1697
1951
|
<param pos="0" name="service.component.product" value="mod_socache_memcache"/>
|
1698
1952
|
<param pos="1" name="service.component.version"/>
|
1699
1953
|
</fingerprint>
|
1954
|
+
|
1700
1955
|
<fingerprint pattern="mod_socache_memcache/?$">
|
1701
1956
|
<description>mod_socache_memcache without version</description>
|
1702
1957
|
<example>mod_socache_memcache/</example>
|
1703
1958
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1704
1959
|
<param pos="0" name="service.component.product" value="mod_socache_memcache"/>
|
1705
1960
|
</fingerprint>
|
1961
|
+
|
1706
1962
|
<fingerprint pattern="mod_socache_shmcb/(\S+)$">
|
1707
1963
|
<description>mod_socache_shmcb with version</description>
|
1708
1964
|
<example service.component.version="1.2.3">mod_socache_shmcb/1.2.3</example>
|
@@ -1710,12 +1966,14 @@
|
|
1710
1966
|
<param pos="0" name="service.component.product" value="mod_socache_shmcb"/>
|
1711
1967
|
<param pos="1" name="service.component.version"/>
|
1712
1968
|
</fingerprint>
|
1969
|
+
|
1713
1970
|
<fingerprint pattern="mod_socache_shmcb/?$">
|
1714
1971
|
<description>mod_socache_shmcb without version</description>
|
1715
1972
|
<example>mod_socache_shmcb/</example>
|
1716
1973
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1717
1974
|
<param pos="0" name="service.component.product" value="mod_socache_shmcb"/>
|
1718
1975
|
</fingerprint>
|
1976
|
+
|
1719
1977
|
<fingerprint pattern="mod_speling/(\S+)$">
|
1720
1978
|
<description>mod_speling with version</description>
|
1721
1979
|
<example service.component.version="1.2.3">mod_speling/1.2.3</example>
|
@@ -1723,12 +1981,14 @@
|
|
1723
1981
|
<param pos="0" name="service.component.product" value="mod_speling"/>
|
1724
1982
|
<param pos="1" name="service.component.version"/>
|
1725
1983
|
</fingerprint>
|
1984
|
+
|
1726
1985
|
<fingerprint pattern="mod_speling/?$">
|
1727
1986
|
<description>mod_speling without version</description>
|
1728
1987
|
<example>mod_speling/</example>
|
1729
1988
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1730
1989
|
<param pos="0" name="service.component.product" value="mod_speling"/>
|
1731
1990
|
</fingerprint>
|
1991
|
+
|
1732
1992
|
<fingerprint pattern="mod_ssl/(\S+)$">
|
1733
1993
|
<description>mod_ssl with version</description>
|
1734
1994
|
<example service.component.version="1.2.3">mod_ssl/1.2.3</example>
|
@@ -1737,6 +1997,7 @@
|
|
1737
1997
|
<param pos="1" name="service.component.version"/>
|
1738
1998
|
<param pos="0" name="service.component.cpe23" value="cpe:/a:modssl:mod_ssl:{service.component.version}"/>
|
1739
1999
|
</fingerprint>
|
2000
|
+
|
1740
2001
|
<fingerprint pattern="mod_ssl/?$">
|
1741
2002
|
<description>mod_ssl without version</description>
|
1742
2003
|
<example>mod_ssl/</example>
|
@@ -1744,6 +2005,7 @@
|
|
1744
2005
|
<param pos="0" name="service.component.product" value="mod_ssl"/>
|
1745
2006
|
<param pos="0" name="service.component.cpe23" value="cpe:/a:modssl:mod_ssl:-"/>
|
1746
2007
|
</fingerprint>
|
2008
|
+
|
1747
2009
|
<fingerprint pattern="mod_status/(\S+)$">
|
1748
2010
|
<description>mod_status with version</description>
|
1749
2011
|
<example service.component.version="1.2.3">mod_status/1.2.3</example>
|
@@ -1751,12 +2013,14 @@
|
|
1751
2013
|
<param pos="0" name="service.component.product" value="mod_status"/>
|
1752
2014
|
<param pos="1" name="service.component.version"/>
|
1753
2015
|
</fingerprint>
|
2016
|
+
|
1754
2017
|
<fingerprint pattern="mod_status/?$">
|
1755
2018
|
<description>mod_status without version</description>
|
1756
2019
|
<example>mod_status/</example>
|
1757
2020
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1758
2021
|
<param pos="0" name="service.component.product" value="mod_status"/>
|
1759
2022
|
</fingerprint>
|
2023
|
+
|
1760
2024
|
<fingerprint pattern="mod_substitute/(\S+)$">
|
1761
2025
|
<description>mod_substitute with version</description>
|
1762
2026
|
<example service.component.version="1.2.3">mod_substitute/1.2.3</example>
|
@@ -1764,12 +2028,14 @@
|
|
1764
2028
|
<param pos="0" name="service.component.product" value="mod_substitute"/>
|
1765
2029
|
<param pos="1" name="service.component.version"/>
|
1766
2030
|
</fingerprint>
|
2031
|
+
|
1767
2032
|
<fingerprint pattern="mod_substitute/?$">
|
1768
2033
|
<description>mod_substitute without version</description>
|
1769
2034
|
<example>mod_substitute/</example>
|
1770
2035
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1771
2036
|
<param pos="0" name="service.component.product" value="mod_substitute"/>
|
1772
2037
|
</fingerprint>
|
2038
|
+
|
1773
2039
|
<fingerprint pattern="mod_suexec/(\S+)$">
|
1774
2040
|
<description>mod_suexec with version</description>
|
1775
2041
|
<example service.component.version="1.2.3">mod_suexec/1.2.3</example>
|
@@ -1777,12 +2043,14 @@
|
|
1777
2043
|
<param pos="0" name="service.component.product" value="mod_suexec"/>
|
1778
2044
|
<param pos="1" name="service.component.version"/>
|
1779
2045
|
</fingerprint>
|
2046
|
+
|
1780
2047
|
<fingerprint pattern="mod_suexec/?$">
|
1781
2048
|
<description>mod_suexec without version</description>
|
1782
2049
|
<example>mod_suexec/</example>
|
1783
2050
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1784
2051
|
<param pos="0" name="service.component.product" value="mod_suexec"/>
|
1785
2052
|
</fingerprint>
|
2053
|
+
|
1786
2054
|
<fingerprint pattern="mod_unique_id/(\S+)$">
|
1787
2055
|
<description>mod_unique_id with version</description>
|
1788
2056
|
<example service.component.version="1.2.3">mod_unique_id/1.2.3</example>
|
@@ -1790,12 +2058,14 @@
|
|
1790
2058
|
<param pos="0" name="service.component.product" value="mod_unique_id"/>
|
1791
2059
|
<param pos="1" name="service.component.version"/>
|
1792
2060
|
</fingerprint>
|
2061
|
+
|
1793
2062
|
<fingerprint pattern="mod_unique_id/?$">
|
1794
2063
|
<description>mod_unique_id without version</description>
|
1795
2064
|
<example>mod_unique_id/</example>
|
1796
2065
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1797
2066
|
<param pos="0" name="service.component.product" value="mod_unique_id"/>
|
1798
2067
|
</fingerprint>
|
2068
|
+
|
1799
2069
|
<fingerprint pattern="mod_unixd/(\S+)$">
|
1800
2070
|
<description>mod_unixd with version</description>
|
1801
2071
|
<example service.component.version="1.2.3">mod_unixd/1.2.3</example>
|
@@ -1803,12 +2073,14 @@
|
|
1803
2073
|
<param pos="0" name="service.component.product" value="mod_unixd"/>
|
1804
2074
|
<param pos="1" name="service.component.version"/>
|
1805
2075
|
</fingerprint>
|
2076
|
+
|
1806
2077
|
<fingerprint pattern="mod_unixd/?$">
|
1807
2078
|
<description>mod_unixd without version</description>
|
1808
2079
|
<example>mod_unixd/</example>
|
1809
2080
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1810
2081
|
<param pos="0" name="service.component.product" value="mod_unixd"/>
|
1811
2082
|
</fingerprint>
|
2083
|
+
|
1812
2084
|
<fingerprint pattern="mod_userdir/(\S+)$">
|
1813
2085
|
<description>mod_userdir with version</description>
|
1814
2086
|
<example service.component.version="1.2.3">mod_userdir/1.2.3</example>
|
@@ -1816,12 +2088,14 @@
|
|
1816
2088
|
<param pos="0" name="service.component.product" value="mod_userdir"/>
|
1817
2089
|
<param pos="1" name="service.component.version"/>
|
1818
2090
|
</fingerprint>
|
2091
|
+
|
1819
2092
|
<fingerprint pattern="mod_userdir/?$">
|
1820
2093
|
<description>mod_userdir without version</description>
|
1821
2094
|
<example>mod_userdir/</example>
|
1822
2095
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1823
2096
|
<param pos="0" name="service.component.product" value="mod_userdir"/>
|
1824
2097
|
</fingerprint>
|
2098
|
+
|
1825
2099
|
<fingerprint pattern="mod_usertrack/(\S+)$">
|
1826
2100
|
<description>mod_usertrack with version</description>
|
1827
2101
|
<example service.component.version="1.2.3">mod_usertrack/1.2.3</example>
|
@@ -1829,12 +2103,14 @@
|
|
1829
2103
|
<param pos="0" name="service.component.product" value="mod_usertrack"/>
|
1830
2104
|
<param pos="1" name="service.component.version"/>
|
1831
2105
|
</fingerprint>
|
2106
|
+
|
1832
2107
|
<fingerprint pattern="mod_usertrack/?$">
|
1833
2108
|
<description>mod_usertrack without version</description>
|
1834
2109
|
<example>mod_usertrack/</example>
|
1835
2110
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1836
2111
|
<param pos="0" name="service.component.product" value="mod_usertrack"/>
|
1837
2112
|
</fingerprint>
|
2113
|
+
|
1838
2114
|
<fingerprint pattern="mod_version/(\S+)$">
|
1839
2115
|
<description>mod_version with version</description>
|
1840
2116
|
<example service.component.version="1.2.3">mod_version/1.2.3</example>
|
@@ -1842,12 +2118,14 @@
|
|
1842
2118
|
<param pos="0" name="service.component.product" value="mod_version"/>
|
1843
2119
|
<param pos="1" name="service.component.version"/>
|
1844
2120
|
</fingerprint>
|
2121
|
+
|
1845
2122
|
<fingerprint pattern="mod_version/?$">
|
1846
2123
|
<description>mod_version without version</description>
|
1847
2124
|
<example>mod_version/</example>
|
1848
2125
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1849
2126
|
<param pos="0" name="service.component.product" value="mod_version"/>
|
1850
2127
|
</fingerprint>
|
2128
|
+
|
1851
2129
|
<fingerprint pattern="mod_vhost_alias/(\S+)$">
|
1852
2130
|
<description>mod_vhost_alias with version</description>
|
1853
2131
|
<example service.component.version="1.2.3">mod_vhost_alias/1.2.3</example>
|
@@ -1855,12 +2133,14 @@
|
|
1855
2133
|
<param pos="0" name="service.component.product" value="mod_vhost_alias"/>
|
1856
2134
|
<param pos="1" name="service.component.version"/>
|
1857
2135
|
</fingerprint>
|
2136
|
+
|
1858
2137
|
<fingerprint pattern="mod_vhost_alias/?$">
|
1859
2138
|
<description>mod_vhost_alias without version</description>
|
1860
2139
|
<example>mod_vhost_alias/</example>
|
1861
2140
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1862
2141
|
<param pos="0" name="service.component.product" value="mod_vhost_alias"/>
|
1863
2142
|
</fingerprint>
|
2143
|
+
|
1864
2144
|
<fingerprint pattern="mod_watchdog/(\S+)$">
|
1865
2145
|
<description>mod_watchdog with version</description>
|
1866
2146
|
<example service.component.version="1.2.3">mod_watchdog/1.2.3</example>
|
@@ -1868,12 +2148,14 @@
|
|
1868
2148
|
<param pos="0" name="service.component.product" value="mod_watchdog"/>
|
1869
2149
|
<param pos="1" name="service.component.version"/>
|
1870
2150
|
</fingerprint>
|
2151
|
+
|
1871
2152
|
<fingerprint pattern="mod_watchdog/?$">
|
1872
2153
|
<description>mod_watchdog without version</description>
|
1873
2154
|
<example>mod_watchdog/</example>
|
1874
2155
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1875
2156
|
<param pos="0" name="service.component.product" value="mod_watchdog"/>
|
1876
2157
|
</fingerprint>
|
2158
|
+
|
1877
2159
|
<fingerprint pattern="mod_wsgi/(\S+)$">
|
1878
2160
|
<description>mod_wsgi with version</description>
|
1879
2161
|
<example service.component.version="1.2.3">mod_wsgi/1.2.3</example>
|
@@ -1882,6 +2164,7 @@
|
|
1882
2164
|
<param pos="1" name="service.component.version"/>
|
1883
2165
|
<param pos="0" name="service.component.cpe23" value="cpe:/a:modwsgi:mod_wsgi:{service.component.version}"/>
|
1884
2166
|
</fingerprint>
|
2167
|
+
|
1885
2168
|
<fingerprint pattern="mod_wsgi/?$">
|
1886
2169
|
<description>mod_wsgi without version</description>
|
1887
2170
|
<example>mod_wsgi/</example>
|
@@ -1889,6 +2172,7 @@
|
|
1889
2172
|
<param pos="0" name="service.component.product" value="mod_wsgi"/>
|
1890
2173
|
<param pos="0" name="service.component.cpe23" value="cpe:/a:modwsgi:mod_wsgi:-"/>
|
1891
2174
|
</fingerprint>
|
2175
|
+
|
1892
2176
|
<fingerprint pattern="mod_xml2enc/(\S+)$">
|
1893
2177
|
<description>mod_xml2enc with version</description>
|
1894
2178
|
<example service.component.version="1.2.3">mod_xml2enc/1.2.3</example>
|
@@ -1896,16 +2180,19 @@
|
|
1896
2180
|
<param pos="0" name="service.component.product" value="mod_xml2enc"/>
|
1897
2181
|
<param pos="1" name="service.component.version"/>
|
1898
2182
|
</fingerprint>
|
2183
|
+
|
1899
2184
|
<fingerprint pattern="mod_xml2enc/?$">
|
1900
2185
|
<description>mod_xml2enc without version</description>
|
1901
2186
|
<example>mod_xml2enc/</example>
|
1902
2187
|
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1903
2188
|
<param pos="0" name="service.component.product" value="mod_xml2enc"/>
|
1904
2189
|
</fingerprint>
|
2190
|
+
|
1905
2191
|
<fingerprint pattern="^Phusion_Passenger/(\S+)$">
|
1906
2192
|
<description>Phusion passenger with version</description>
|
1907
2193
|
<example service.component.version="1.1">Phusion_Passenger/1.1</example>
|
1908
2194
|
<param pos="0" name="service.component.product" value="Phusion Passenger"/>
|
1909
2195
|
<param pos="1" name="service.component.version"/>
|
1910
2196
|
</fingerprint>
|
1911
|
-
|
2197
|
+
|
2198
|
+
</fingerprints>
|