recog-intrigue 2.3.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.github/ISSUE_TEMPLATE/bug_report.md +37 -0
- data/.github/ISSUE_TEMPLATE/feature_request.md +17 -0
- data/.github/ISSUE_TEMPLATE/fingerprint_request.md +27 -0
- data/.github/PULL_REQUEST_TEMPLATE +24 -0
- data/.gitignore +14 -0
- data/.rbenv-gemset +1 -0
- data/.rspec +3 -0
- data/.ruby-gemset +1 -0
- data/.ruby-version +1 -0
- data/.travis.yml +25 -0
- data/.yardopts +1 -0
- data/CONTRIBUTING.md +171 -0
- data/COPYING +23 -0
- data/Gemfile +10 -0
- data/LICENSE +7 -0
- data/README.md +85 -0
- data/Rakefile +22 -0
- data/bin/recog_export +81 -0
- data/bin/recog_match +55 -0
- data/bin/recog_standardize +118 -0
- data/bin/recog_verify +64 -0
- data/cpe-remap.yaml +134 -0
- data/features/data/failing_banners_fingerprints.xml +20 -0
- data/features/data/matching_banners_fingerprints.xml +23 -0
- data/features/data/multiple_banners_fingerprints.xml +32 -0
- data/features/data/no_tests.xml +3 -0
- data/features/data/sample_banner.txt +2 -0
- data/features/data/successful_tests.xml +18 -0
- data/features/data/tests_with_failures.xml +20 -0
- data/features/data/tests_with_warnings.xml +17 -0
- data/features/match.feature +36 -0
- data/features/support/aruba.rb +3 -0
- data/features/support/env.rb +6 -0
- data/features/verify.feature +48 -0
- data/identifiers/README.md +47 -0
- data/identifiers/os_architecture.txt +20 -0
- data/identifiers/os_device.txt +52 -0
- data/identifiers/os_family.txt +160 -0
- data/identifiers/os_product.txt +199 -0
- data/identifiers/service_family.txt +185 -0
- data/identifiers/service_product.txt +255 -0
- data/identifiers/software_class.txt +26 -0
- data/identifiers/software_family.txt +91 -0
- data/identifiers/software_product.txt +333 -0
- data/identifiers/vendor.txt +405 -0
- data/lib/recog.rb +4 -0
- data/lib/recog/db.rb +78 -0
- data/lib/recog/db_manager.rb +31 -0
- data/lib/recog/fingerprint.rb +280 -0
- data/lib/recog/fingerprint/regexp_factory.rb +56 -0
- data/lib/recog/fingerprint/test.rb +18 -0
- data/lib/recog/formatter.rb +51 -0
- data/lib/recog/match_reporter.rb +77 -0
- data/lib/recog/matcher.rb +94 -0
- data/lib/recog/matcher_factory.rb +14 -0
- data/lib/recog/nizer.rb +347 -0
- data/lib/recog/verifier.rb +39 -0
- data/lib/recog/verifier_factory.rb +13 -0
- data/lib/recog/verify_reporter.rb +86 -0
- data/lib/recog/version.rb +3 -0
- data/misc/convert_mysql_err +61 -0
- data/misc/order.xsl +17 -0
- data/recog-intrigue.gemspec +45 -0
- data/requirements.txt +2 -0
- data/spec/data/best_os_match_1.yml +17 -0
- data/spec/data/best_os_match_2.yml +17 -0
- data/spec/data/best_service_match_1.yml +17 -0
- data/spec/data/smb_native_os.txt +25 -0
- data/spec/data/test_fingerprints.xml +36 -0
- data/spec/data/verification_fingerprints.xml +86 -0
- data/spec/data/whitespaced_fingerprint.xml +5 -0
- data/spec/lib/fingerprint_self_test_spec.rb +174 -0
- data/spec/lib/recog/db_spec.rb +98 -0
- data/spec/lib/recog/fingerprint/regexp_factory_spec.rb +73 -0
- data/spec/lib/recog/fingerprint_spec.rb +112 -0
- data/spec/lib/recog/formatter_spec.rb +69 -0
- data/spec/lib/recog/match_reporter_spec.rb +91 -0
- data/spec/lib/recog/nizer_spec.rb +330 -0
- data/spec/lib/recog/verify_reporter_spec.rb +113 -0
- data/spec/spec_helper.rb +82 -0
- data/update_cpes.py +186 -0
- data/xml/apache_modules.xml +1911 -0
- data/xml/apache_os.xml +273 -0
- data/xml/architecture.xml +36 -0
- data/xml/dns_versionbind.xml +761 -0
- data/xml/fingerprints.xsd +128 -0
- data/xml/ftp_banners.xml +1553 -0
- data/xml/h323_callresp.xml +603 -0
- data/xml/hp_pjl_id.xml +358 -0
- data/xml/html_title.xml +1630 -0
- data/xml/http_cookies.xml +411 -0
- data/xml/http_servers.xml +3195 -0
- data/xml/http_wwwauth.xml +595 -0
- data/xml/imap_banners.xml +245 -0
- data/xml/ldap_searchresult.xml +711 -0
- data/xml/mdns_device-info_txt.xml +1796 -0
- data/xml/mdns_workstation_txt.xml +15 -0
- data/xml/mysql_banners.xml +1649 -0
- data/xml/mysql_error.xml +871 -0
- data/xml/nntp_banners.xml +82 -0
- data/xml/ntp_banners.xml +1223 -0
- data/xml/operating_system.xml +629 -0
- data/xml/pop_banners.xml +499 -0
- data/xml/rsh_resp.xml +76 -0
- data/xml/rtsp_servers.xml +76 -0
- data/xml/sip_banners.xml +359 -0
- data/xml/sip_user_agents.xml +221 -0
- data/xml/smb_native_lm.xml +62 -0
- data/xml/smb_native_os.xml +662 -0
- data/xml/smtp_banners.xml +1690 -0
- data/xml/smtp_debug.xml +39 -0
- data/xml/smtp_ehlo.xml +49 -0
- data/xml/smtp_expn.xml +82 -0
- data/xml/smtp_help.xml +157 -0
- data/xml/smtp_mailfrom.xml +20 -0
- data/xml/smtp_noop.xml +44 -0
- data/xml/smtp_quit.xml +29 -0
- data/xml/smtp_rcptto.xml +25 -0
- data/xml/smtp_rset.xml +26 -0
- data/xml/smtp_turn.xml +26 -0
- data/xml/smtp_vrfy.xml +89 -0
- data/xml/snmp_sysdescr.xml +6507 -0
- data/xml/snmp_sysobjid.xml +430 -0
- data/xml/ssh_banners.xml +1968 -0
- data/xml/telnet_banners.xml +1595 -0
- data/xml/x11_banners.xml +232 -0
- data/xml/x509_issuers.xml +134 -0
- data/xml/x509_subjects.xml +1268 -0
- metadata +304 -0
@@ -0,0 +1,113 @@
|
|
1
|
+
require 'recog/verify_reporter'
|
2
|
+
|
3
|
+
describe Recog::VerifyReporter do
|
4
|
+
let(:formatter) { double('formatter').as_null_object }
|
5
|
+
let(:fingerprint) { double(name: 'a name', tests: tests) }
|
6
|
+
let(:tests) { [double, double, double] }
|
7
|
+
let(:summary_line) do
|
8
|
+
"SUMMARY: Test completed with 1 successful, 1 warnings, and 1 failures"
|
9
|
+
end
|
10
|
+
|
11
|
+
subject { Recog::VerifyReporter.new(double(detail: false, quiet: false, warnings: true), formatter) }
|
12
|
+
|
13
|
+
def run_report
|
14
|
+
subject.report(1) do
|
15
|
+
subject.print_name fingerprint
|
16
|
+
subject.success 'passed'
|
17
|
+
subject.warning 'a warning'
|
18
|
+
subject.failure 'a failure'
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
describe "#report" do
|
23
|
+
it "prints warnings" do
|
24
|
+
expect(formatter).to receive(:warning_message).with('a warning')
|
25
|
+
run_report
|
26
|
+
end
|
27
|
+
|
28
|
+
it "prints failures" do
|
29
|
+
expect(formatter).to receive(:failure_message).with('a failure')
|
30
|
+
run_report
|
31
|
+
end
|
32
|
+
|
33
|
+
it "prints summary" do
|
34
|
+
expect(formatter).to receive(:failure_message).with(summary_line)
|
35
|
+
run_report
|
36
|
+
end
|
37
|
+
|
38
|
+
context "with detail" do
|
39
|
+
subject { Recog::VerifyReporter.new(double(detail: true, quiet: false, warnings: true), formatter) }
|
40
|
+
|
41
|
+
it "prints the fingerprint name" do
|
42
|
+
expect(formatter).to receive(:status_message).with("\na name")
|
43
|
+
run_report
|
44
|
+
end
|
45
|
+
|
46
|
+
it "prints successes" do
|
47
|
+
expect(formatter).to receive(:success_message).with(' passed')
|
48
|
+
run_report
|
49
|
+
end
|
50
|
+
|
51
|
+
it "prints warnings" do
|
52
|
+
expect(formatter).to receive(:warning_message).with(' a warning')
|
53
|
+
run_report
|
54
|
+
end
|
55
|
+
|
56
|
+
it "prints failures" do
|
57
|
+
expect(formatter).to receive(:failure_message).with(' a failure')
|
58
|
+
run_report
|
59
|
+
end
|
60
|
+
|
61
|
+
it "prints the fingerprint count" do
|
62
|
+
expect(formatter).to receive(:status_message).with("\nVerified 1 fingerprints:")
|
63
|
+
run_report
|
64
|
+
end
|
65
|
+
|
66
|
+
it "prints summary" do
|
67
|
+
expect(formatter).to receive(:failure_message).with(summary_line)
|
68
|
+
run_report
|
69
|
+
end
|
70
|
+
|
71
|
+
context "with no fingerprint tests" do
|
72
|
+
let(:tests) { [] }
|
73
|
+
|
74
|
+
it "does not print the name" do
|
75
|
+
expect(formatter).not_to receive(:status_message).with("\na name")
|
76
|
+
run_report
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|
80
|
+
end
|
81
|
+
|
82
|
+
describe "#print_summary" do
|
83
|
+
context "with success" do
|
84
|
+
before { subject.success 'pass' }
|
85
|
+
|
86
|
+
it "prints a successful summary" do
|
87
|
+
msg = "SUMMARY: Test completed with 1 successful, 0 warnings, and 0 failures"
|
88
|
+
expect(formatter).to receive(:success_message).with(msg)
|
89
|
+
subject.print_summary
|
90
|
+
end
|
91
|
+
end
|
92
|
+
|
93
|
+
context "with warnings" do
|
94
|
+
before { subject.warning 'warn' }
|
95
|
+
|
96
|
+
it "prints a warning summary" do
|
97
|
+
msg = "SUMMARY: Test completed with 0 successful, 1 warnings, and 0 failures"
|
98
|
+
expect(formatter).to receive(:warning_message).with(msg)
|
99
|
+
subject.print_summary
|
100
|
+
end
|
101
|
+
end
|
102
|
+
|
103
|
+
context "with failures" do
|
104
|
+
before { subject.failure 'fail' }
|
105
|
+
|
106
|
+
it "prints a failure summary" do
|
107
|
+
msg = "SUMMARY: Test completed with 0 successful, 0 warnings, and 1 failures"
|
108
|
+
expect(formatter).to receive(:failure_message).with(msg)
|
109
|
+
subject.print_summary
|
110
|
+
end
|
111
|
+
end
|
112
|
+
end
|
113
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,82 @@
|
|
1
|
+
require 'simplecov'
|
2
|
+
SimpleCov.start
|
3
|
+
|
4
|
+
# This file was generated by the `rspec --init` command. Conventionally, all
|
5
|
+
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
|
6
|
+
# The generated `.rspec` file contains `--require spec_helper` which will cause this
|
7
|
+
# file to always be loaded, without a need to explicitly require it in any files.
|
8
|
+
#
|
9
|
+
# Given that it is always loaded, you are encouraged to keep this file as
|
10
|
+
# light-weight as possible. Requiring heavyweight dependencies from this file
|
11
|
+
# will add to the boot time of your test suite on EVERY test run, even for an
|
12
|
+
# individual file that may not need all of that loaded. Instead, make a
|
13
|
+
# separate helper file that requires this one and then use it only in the specs
|
14
|
+
# that actually need it.
|
15
|
+
#
|
16
|
+
# The `.rspec` file also contains a few flags that are not defaults but that
|
17
|
+
# users commonly want.
|
18
|
+
#
|
19
|
+
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
|
20
|
+
RSpec.configure do |config|
|
21
|
+
|
22
|
+
# Run specs in random order to surface order dependencies. If you find an
|
23
|
+
# order dependency and want to debug it, you can fix the order by providing
|
24
|
+
# the seed, which is printed after each run.
|
25
|
+
# --seed 1234
|
26
|
+
config.order = :random
|
27
|
+
|
28
|
+
# Seed global randomization in this process using the `--seed` CLI option.
|
29
|
+
# Setting this allows you to use `--seed` to deterministically reproduce
|
30
|
+
# test failures related to randomization by passing the same `--seed` value
|
31
|
+
# as the one that triggered the failure.
|
32
|
+
Kernel.srand config.seed
|
33
|
+
|
34
|
+
# Many RSpec users commonly either run the entire suite or an individual
|
35
|
+
# file, and it's useful to allow more verbose output when running an
|
36
|
+
# individual spec file.
|
37
|
+
if config.files_to_run.one?
|
38
|
+
# Use the documentation formatter for detailed output,
|
39
|
+
# unless a formatter has already been configured
|
40
|
+
# (e.g. via a command-line flag).
|
41
|
+
config.default_formatter = 'doc'
|
42
|
+
end
|
43
|
+
|
44
|
+
# The settings below are suggested to provide a good initial experience
|
45
|
+
# with RSpec, but feel free to customize to your heart's content.
|
46
|
+
=begin
|
47
|
+
# These two settings work together to allow you to limit a spec run
|
48
|
+
# to individual examples or groups you care about by tagging them with
|
49
|
+
# `:focus` metadata. When nothing is tagged with `:focus`, all examples
|
50
|
+
# get run.
|
51
|
+
config.filter_run :focus
|
52
|
+
config.run_all_when_everything_filtered = true
|
53
|
+
|
54
|
+
# Print the 10 slowest examples and example groups at the
|
55
|
+
# end of the spec run, to help surface which specs are running
|
56
|
+
# particularly slow.
|
57
|
+
config.profile_examples = 10
|
58
|
+
|
59
|
+
# rspec-expectations config goes here. You can use an alternate
|
60
|
+
# assertion/expectation library such as wrong or the stdlib/minitest
|
61
|
+
# assertions if you prefer.
|
62
|
+
config.expect_with :rspec do |expectations|
|
63
|
+
# Enable only the newer, non-monkey-patching expect syntax.
|
64
|
+
# For more details, see:
|
65
|
+
# - http://myronmars.to/n/dev-blog/2012/06/rspecs-new-expectation-syntax
|
66
|
+
expectations.syntax = :expect
|
67
|
+
end
|
68
|
+
|
69
|
+
# rspec-mocks config goes here. You can use an alternate test double
|
70
|
+
# library (such as bogus or mocha) by changing the `mock_with` option here.
|
71
|
+
config.mock_with :rspec do |mocks|
|
72
|
+
# Enable only the newer, non-monkey-patching expect syntax.
|
73
|
+
# For more details, see:
|
74
|
+
# - http://teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
|
75
|
+
mocks.syntax = :expect
|
76
|
+
|
77
|
+
# Prevents you from mocking or stubbing a method that does not exist on
|
78
|
+
# a real object. This is generally recommended.
|
79
|
+
mocks.verify_partial_doubles = true
|
80
|
+
end
|
81
|
+
=end
|
82
|
+
end
|
data/update_cpes.py
ADDED
@@ -0,0 +1,186 @@
|
|
1
|
+
#!/usr/bin/env python
|
2
|
+
|
3
|
+
import yaml
|
4
|
+
import logging
|
5
|
+
import re
|
6
|
+
import sys
|
7
|
+
|
8
|
+
from lxml import etree
|
9
|
+
|
10
|
+
def parse_r7_remapping(file):
|
11
|
+
with open(file) as remap_file:
|
12
|
+
return yaml.load(remap_file)["mappings"]
|
13
|
+
|
14
|
+
def parse_cpe_vp_map(file):
|
15
|
+
vp_map = {} # cpe_type -> vendor -> products
|
16
|
+
parser = etree.XMLParser(remove_comments=False)
|
17
|
+
doc = etree.parse(file, parser)
|
18
|
+
namespaces = {'ns': 'http://cpe.mitre.org/dictionary/2.0', 'meta': 'http://scap.nist.gov/schema/cpe-dictionary-metadata/0.2'}
|
19
|
+
for cpe_name in doc.xpath("//ns:cpe-list/ns:cpe-item/@name", namespaces=namespaces):
|
20
|
+
cpe_match = re.match('^cpe:/([aho]):([^:]+):([^:]+)', cpe_name)
|
21
|
+
if cpe_match:
|
22
|
+
cpe_type, vendor, product = cpe_match.group(1, 2, 3)
|
23
|
+
if not cpe_type in vp_map:
|
24
|
+
vp_map[cpe_type] = {}
|
25
|
+
if not vendor in vp_map[cpe_type]:
|
26
|
+
vp_map[cpe_type][vendor] = set()
|
27
|
+
vp_map[cpe_type][vendor].add(product)
|
28
|
+
else:
|
29
|
+
logging.error("Unexpected CPE %s", cpe_name)
|
30
|
+
|
31
|
+
return vp_map
|
32
|
+
|
33
|
+
def main():
|
34
|
+
if len(sys.argv) != 4:
|
35
|
+
logging.critical("Expecting exactly 3 arguments; recog XML file, CPE 2.3 XML dictionary, JSON remapping, got %s", (len(sys.argv) - 1))
|
36
|
+
exit(1)
|
37
|
+
|
38
|
+
cpe_vp_map = parse_cpe_vp_map(sys.argv[2])
|
39
|
+
if not cpe_vp_map:
|
40
|
+
logging.critical("No CPE vendor => product mappings read from CPE 2.3 XML dictionary %s", sys.argv[2])
|
41
|
+
exit(1)
|
42
|
+
|
43
|
+
r7_vp_map = parse_r7_remapping(sys.argv[3])
|
44
|
+
if not r7_vp_map:
|
45
|
+
logging.warning("No Rapid7 vendor/product => CPE mapping read from %s", sys.argv[3])
|
46
|
+
|
47
|
+
update_cpes(sys.argv[1], cpe_vp_map, r7_vp_map)
|
48
|
+
|
49
|
+
def update_cpes(xml_file, cpe_vp_map, r7_vp_map):
|
50
|
+
parser = etree.XMLParser(remove_comments=False, remove_blank_text=True)
|
51
|
+
doc = etree.parse(xml_file, parser)
|
52
|
+
|
53
|
+
for fingerprint in doc.xpath('//fingerprint'):
|
54
|
+
|
55
|
+
# collect all the params, grouping by os and service params that could be used to compute a CPE
|
56
|
+
params = {}
|
57
|
+
for param in fingerprint.xpath('./param'):
|
58
|
+
name = param.attrib['name']
|
59
|
+
# remove any existing CPE params
|
60
|
+
if re.match(r'^.*\.cpe\d{0,2}$', name):
|
61
|
+
param.getparent().remove(param)
|
62
|
+
continue
|
63
|
+
|
64
|
+
match = re.search(r'^(?P<fp_type>hw|os|service(?:\.component)?)\.', name)
|
65
|
+
if match:
|
66
|
+
fp_type = match.group('fp_type')
|
67
|
+
if not fp_type in params:
|
68
|
+
params[fp_type] = {}
|
69
|
+
if name in params[fp_type]:
|
70
|
+
raise ValueError('Duplicated fingerprint named {} in {}'.format(name, fingerprint.attrib['pattern']))
|
71
|
+
params[fp_type][name] = param
|
72
|
+
|
73
|
+
|
74
|
+
# for each of the applicable os/service param groups, build a CPE
|
75
|
+
for fp_type in params:
|
76
|
+
if fp_type == 'os':
|
77
|
+
cpe_type = 'o'
|
78
|
+
elif fp_type.startswith('service'):
|
79
|
+
cpe_type = 'a'
|
80
|
+
elif fp_type == 'hw':
|
81
|
+
cpe_type = 'h'
|
82
|
+
else:
|
83
|
+
raise ValueError('Unhandled param type {}'.format(fp_type))
|
84
|
+
|
85
|
+
# extract the vendor/product/version values from each os/service group,
|
86
|
+
# using the static value ('Apache', for example) when pos is 0, and
|
87
|
+
# otherwise use a value that contains interpolation markers such that
|
88
|
+
# products/projects that use recog content can insert the value
|
89
|
+
# extracted from the banner/other data via regex capturing groups
|
90
|
+
fp_data = {
|
91
|
+
'vendor': None,
|
92
|
+
'product': None,
|
93
|
+
'version': '-',
|
94
|
+
}
|
95
|
+
for fp_datum in fp_data:
|
96
|
+
fp_datum_param_name = "{}.{}".format(fp_type, fp_datum)
|
97
|
+
if fp_datum_param_name in params[fp_type]:
|
98
|
+
fp_datum_e = params[fp_type][fp_datum_param_name]
|
99
|
+
if fp_datum_e.attrib['pos'] == '0':
|
100
|
+
fp_data[fp_datum] = fp_datum_e.attrib['value']
|
101
|
+
else:
|
102
|
+
fp_data[fp_datum] = "{{{}}}".format(fp_datum_e.attrib['name'])
|
103
|
+
|
104
|
+
vendor = fp_data['vendor']
|
105
|
+
product = fp_data['product']
|
106
|
+
version = fp_data['version']
|
107
|
+
|
108
|
+
# build a reasonable looking CPE value from the vendor/product/version,
|
109
|
+
# lowercasing, replacing whitespace with _, and more
|
110
|
+
if vendor and product:
|
111
|
+
if not cpe_type in cpe_vp_map:
|
112
|
+
logging.error("Didn't find CPE type '%s' for '%s' '%s'", cpe_type, vendor, product)
|
113
|
+
continue
|
114
|
+
|
115
|
+
vendor = vendor.lower().replace(' ', '_').replace(',', '')
|
116
|
+
product = product.lower().replace(' ', '_').replace(',', '')
|
117
|
+
if 'unknown' in [vendor, product]:
|
118
|
+
continue
|
119
|
+
|
120
|
+
if (vendor.startswith('{') and vendor.endswith('}')) or (product.startswith('{') and product.endswith('}')):
|
121
|
+
continue
|
122
|
+
|
123
|
+
remapped_vendor = False
|
124
|
+
og_vendor = vendor
|
125
|
+
if not vendor in cpe_vp_map[cpe_type]:
|
126
|
+
if vendor in r7_vp_map:
|
127
|
+
vendor = r7_vp_map[vendor]['vendor']
|
128
|
+
remapped_vendor = True
|
129
|
+
if not vendor in cpe_vp_map[cpe_type]:
|
130
|
+
logging.error("Remapped vendor %s (remapped from %s) invalid for CPE %s (product %s)", vendor, og_vendor, cpe_type, product)
|
131
|
+
continue
|
132
|
+
else:
|
133
|
+
logging.error("Vendor %s invalid for CPE %s and no remapping (product %s)", vendor, cpe_type, product)
|
134
|
+
continue
|
135
|
+
|
136
|
+
|
137
|
+
# if the product as specified is not found in the CPE dictionary for this vendor
|
138
|
+
if not product in cpe_vp_map[cpe_type][vendor]:
|
139
|
+
# if this vendor has a remapping from R7
|
140
|
+
if og_vendor in r7_vp_map and 'products' in r7_vp_map[og_vendor]:
|
141
|
+
# if this product has a remapping for this vendor from R7
|
142
|
+
if product in r7_vp_map[og_vendor]['products']:
|
143
|
+
og_product = product
|
144
|
+
product = r7_vp_map[og_vendor]['products'][product]
|
145
|
+
# ensure that the remapped product is valid for the given vendor in CPE
|
146
|
+
if not product in cpe_vp_map[cpe_type][vendor]:
|
147
|
+
logging.error("Remapped product %s (remapped from %s) from vendor %s invalid for CPE %s", product, og_product, vendor, cpe_type)
|
148
|
+
continue
|
149
|
+
else:
|
150
|
+
if remapped_vendor:
|
151
|
+
logging.error("Product %s from vendor %s (remapped from %s) invalid for CPE %s and no mapping", product, vendor, og_vendor, cpe_type)
|
152
|
+
else:
|
153
|
+
logging.error("Product %s from vendor %s invalid for CPE %s and no mapping", product, vendor, cpe_type)
|
154
|
+
continue
|
155
|
+
else:
|
156
|
+
if remapped_vendor:
|
157
|
+
logging.error("Vendor %s (remapped from %s) is valid for CPE %s but product %s not valid and no mapping", vendor, og_vendor, cpe_type, product)
|
158
|
+
else:
|
159
|
+
logging.error("Vendor %s is valid for CPE %s but product %s not valid and no mapping", vendor, cpe_type, product)
|
160
|
+
continue
|
161
|
+
|
162
|
+
# building the CPE string
|
163
|
+
cpe_value = 'cpe:/{}:{}:{}'.format(cpe_type, vendor, product)
|
164
|
+
|
165
|
+
if version:
|
166
|
+
cpe_value += ":{}".format(version)
|
167
|
+
|
168
|
+
cpe_param = etree.Element('param')
|
169
|
+
cpe_param.attrib['pos'] = '0'
|
170
|
+
cpe_param.attrib['name'] = '{}.cpe23'.format(fp_type)
|
171
|
+
cpe_param.attrib['value'] = cpe_value
|
172
|
+
|
173
|
+
for param_name in params[fp_type]:
|
174
|
+
param = params[fp_type][param_name]
|
175
|
+
parent = param.getparent()
|
176
|
+
index = parent.index(param) + 1
|
177
|
+
parent.insert(index, cpe_param)
|
178
|
+
|
179
|
+
root = doc.getroot()
|
180
|
+
|
181
|
+
with open(xml_file, 'wb') as xml_out:
|
182
|
+
xml_out.write(etree.tostring(root, pretty_print=True, xml_declaration=True, encoding=doc.docinfo.encoding))
|
183
|
+
|
184
|
+
if __name__ == '__main__':
|
185
|
+
try: exit(main())
|
186
|
+
except KeyboardInterrupt: pass
|
@@ -0,0 +1,1911 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<fingerprints matches="apache_modules" database_type="service" preference="0.90">
|
3
|
+
<!--
|
4
|
+
When an HTTP server is fingerprinted as apache, the "server" string
|
5
|
+
(taken from the Server header, among other locations) may advertise the
|
6
|
+
Apache version, OS and modules in use by Apache in space separated list, such as:
|
7
|
+
|
8
|
+
Apache/1.3.37 (Unix) FrontPage/5.0.2.2623 mod_ssl/2.8.28 OpenSSL/0.9.7e-p1
|
9
|
+
|
10
|
+
In this example, the Apache instance is running (at least) the modules
|
11
|
+
FrontPage, mod_ssl and OpenSSL.
|
12
|
+
|
13
|
+
This fingerprint file is meant to be used to fingerprint each of the
|
14
|
+
modules individually after splitting the module string on whitespace.
|
15
|
+
-->
|
16
|
+
<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
|
+
<description>Language-specific apache modules with a version</description>
|
18
|
+
<example service.component.product="PHP" service.component.version="7.0.30">PHP/7.0.30</example>
|
19
|
+
<param pos="1" name="service.component.product"/>
|
20
|
+
<param pos="2" name="service.component.version"/>
|
21
|
+
</fingerprint>
|
22
|
+
<fingerprint pattern="^(Ben-SSL|Communique|DAV|FrontPage|JRun|LibreSSL|mpm-itk|NSS|OpenSSL|Perl|PHP\d?|proxy_html|Python|Resin|Ruby|SVN|Tomcat)/?$">
|
23
|
+
<description>Language-specific apache modules without a version</description>
|
24
|
+
<example service.component.product="PHP">PHP</example>
|
25
|
+
<example service.component.product="Perl">Perl/</example>
|
26
|
+
<param pos="1" name="service.component.product"/>
|
27
|
+
</fingerprint>
|
28
|
+
<fingerprint pattern="mod_access/(\S+)$">
|
29
|
+
<description>mod_access with version</description>
|
30
|
+
<example service.component.version="1.2.3">mod_access/1.2.3</example>
|
31
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
32
|
+
<param pos="0" name="service.component.product" value="mod_access"/>
|
33
|
+
<param pos="1" name="service.component.version"/>
|
34
|
+
</fingerprint>
|
35
|
+
<fingerprint pattern="mod_access/?$">
|
36
|
+
<description>mod_access without version</description>
|
37
|
+
<example>mod_access/</example>
|
38
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
39
|
+
<param pos="0" name="service.component.product" value="mod_access"/>
|
40
|
+
</fingerprint>
|
41
|
+
<fingerprint pattern="mod_access_compat/(\S+)$">
|
42
|
+
<description>mod_access_compat with version</description>
|
43
|
+
<example service.component.version="1.2.3">mod_access_compat/1.2.3</example>
|
44
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
45
|
+
<param pos="0" name="service.component.product" value="mod_access_compat"/>
|
46
|
+
<param pos="1" name="service.component.version"/>
|
47
|
+
</fingerprint>
|
48
|
+
<fingerprint pattern="mod_access_compat/?$">
|
49
|
+
<description>mod_access_compat without version</description>
|
50
|
+
<example>mod_access_compat/</example>
|
51
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
52
|
+
<param pos="0" name="service.component.product" value="mod_access_compat"/>
|
53
|
+
</fingerprint>
|
54
|
+
<fingerprint pattern="mod_actions/(\S+)$">
|
55
|
+
<description>mod_actions with version</description>
|
56
|
+
<example service.component.version="1.2.3">mod_actions/1.2.3</example>
|
57
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
58
|
+
<param pos="0" name="service.component.product" value="mod_actions"/>
|
59
|
+
<param pos="1" name="service.component.version"/>
|
60
|
+
</fingerprint>
|
61
|
+
<fingerprint pattern="mod_actions/?$">
|
62
|
+
<description>mod_actions without version</description>
|
63
|
+
<example>mod_actions/</example>
|
64
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
65
|
+
<param pos="0" name="service.component.product" value="mod_actions"/>
|
66
|
+
</fingerprint>
|
67
|
+
<fingerprint pattern="mod_alias/(\S+)$">
|
68
|
+
<description>mod_alias with version</description>
|
69
|
+
<example service.component.version="1.2.3">mod_alias/1.2.3</example>
|
70
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
71
|
+
<param pos="0" name="service.component.product" value="mod_alias"/>
|
72
|
+
<param pos="1" name="service.component.version"/>
|
73
|
+
</fingerprint>
|
74
|
+
<fingerprint pattern="mod_alias/?$">
|
75
|
+
<description>mod_alias without version</description>
|
76
|
+
<example>mod_alias/</example>
|
77
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
78
|
+
<param pos="0" name="service.component.product" value="mod_alias"/>
|
79
|
+
</fingerprint>
|
80
|
+
<fingerprint pattern="mod_allowmethods/(\S+)$">
|
81
|
+
<description>mod_allowmethods with version</description>
|
82
|
+
<example service.component.version="1.2.3">mod_allowmethods/1.2.3</example>
|
83
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
84
|
+
<param pos="0" name="service.component.product" value="mod_allowmethods"/>
|
85
|
+
<param pos="1" name="service.component.version"/>
|
86
|
+
</fingerprint>
|
87
|
+
<fingerprint pattern="mod_allowmethods/?$">
|
88
|
+
<description>mod_allowmethods without version</description>
|
89
|
+
<example>mod_allowmethods/</example>
|
90
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
91
|
+
<param pos="0" name="service.component.product" value="mod_allowmethods"/>
|
92
|
+
</fingerprint>
|
93
|
+
<fingerprint pattern="mod_asis/(\S+)$">
|
94
|
+
<description>mod_asis with version</description>
|
95
|
+
<example service.component.version="1.2.3">mod_asis/1.2.3</example>
|
96
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
97
|
+
<param pos="0" name="service.component.product" value="mod_asis"/>
|
98
|
+
<param pos="1" name="service.component.version"/>
|
99
|
+
</fingerprint>
|
100
|
+
<fingerprint pattern="mod_asis/?$">
|
101
|
+
<description>mod_asis without version</description>
|
102
|
+
<example>mod_asis/</example>
|
103
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
104
|
+
<param pos="0" name="service.component.product" value="mod_asis"/>
|
105
|
+
</fingerprint>
|
106
|
+
<fingerprint pattern="mod_auth/(\S+)$">
|
107
|
+
<description>mod_auth with version</description>
|
108
|
+
<example service.component.version="1.2.3">mod_auth/1.2.3</example>
|
109
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
110
|
+
<param pos="0" name="service.component.product" value="mod_auth"/>
|
111
|
+
<param pos="1" name="service.component.version"/>
|
112
|
+
</fingerprint>
|
113
|
+
<fingerprint pattern="mod_auth/?$">
|
114
|
+
<description>mod_auth without version</description>
|
115
|
+
<example>mod_auth/</example>
|
116
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
117
|
+
<param pos="0" name="service.component.product" value="mod_auth"/>
|
118
|
+
</fingerprint>
|
119
|
+
<fingerprint pattern="mod_auth_anon/(\S+)$">
|
120
|
+
<description>mod_auth_anon with version</description>
|
121
|
+
<example service.component.version="1.2.3">mod_auth_anon/1.2.3</example>
|
122
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
123
|
+
<param pos="0" name="service.component.product" value="mod_auth_anon"/>
|
124
|
+
<param pos="1" name="service.component.version"/>
|
125
|
+
</fingerprint>
|
126
|
+
<fingerprint pattern="mod_auth_anon/?$">
|
127
|
+
<description>mod_auth_anon without version</description>
|
128
|
+
<example>mod_auth_anon/</example>
|
129
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
130
|
+
<param pos="0" name="service.component.product" value="mod_auth_anon"/>
|
131
|
+
</fingerprint>
|
132
|
+
<fingerprint pattern="mod_auth_basic/(\S+)$">
|
133
|
+
<description>mod_auth_basic with version</description>
|
134
|
+
<example service.component.version="1.2.3">mod_auth_basic/1.2.3</example>
|
135
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
136
|
+
<param pos="0" name="service.component.product" value="mod_auth_basic"/>
|
137
|
+
<param pos="1" name="service.component.version"/>
|
138
|
+
</fingerprint>
|
139
|
+
<fingerprint pattern="mod_auth_basic/?$">
|
140
|
+
<description>mod_auth_basic without version</description>
|
141
|
+
<example>mod_auth_basic/</example>
|
142
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
143
|
+
<param pos="0" name="service.component.product" value="mod_auth_basic"/>
|
144
|
+
</fingerprint>
|
145
|
+
<fingerprint pattern="mod_auth_dbm/(\S+)$">
|
146
|
+
<description>mod_auth_dbm with version</description>
|
147
|
+
<example service.component.version="1.2.3">mod_auth_dbm/1.2.3</example>
|
148
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
149
|
+
<param pos="0" name="service.component.product" value="mod_auth_dbm"/>
|
150
|
+
<param pos="1" name="service.component.version"/>
|
151
|
+
</fingerprint>
|
152
|
+
<fingerprint pattern="mod_auth_dbm/?$">
|
153
|
+
<description>mod_auth_dbm without version</description>
|
154
|
+
<example>mod_auth_dbm/</example>
|
155
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
156
|
+
<param pos="0" name="service.component.product" value="mod_auth_dbm"/>
|
157
|
+
</fingerprint>
|
158
|
+
<fingerprint pattern="mod_auth_digest/(\S+)$">
|
159
|
+
<description>mod_auth_digest with version</description>
|
160
|
+
<example service.component.version="1.2.3">mod_auth_digest/1.2.3</example>
|
161
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
162
|
+
<param pos="0" name="service.component.product" value="mod_auth_digest"/>
|
163
|
+
<param pos="1" name="service.component.version"/>
|
164
|
+
</fingerprint>
|
165
|
+
<fingerprint pattern="mod_auth_digest/?$">
|
166
|
+
<description>mod_auth_digest without version</description>
|
167
|
+
<example>mod_auth_digest/</example>
|
168
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
169
|
+
<param pos="0" name="service.component.product" value="mod_auth_digest"/>
|
170
|
+
</fingerprint>
|
171
|
+
<fingerprint pattern="mod_auth_form/(\S+)$">
|
172
|
+
<description>mod_auth_form with version</description>
|
173
|
+
<example service.component.version="1.2.3">mod_auth_form/1.2.3</example>
|
174
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
175
|
+
<param pos="0" name="service.component.product" value="mod_auth_form"/>
|
176
|
+
<param pos="1" name="service.component.version"/>
|
177
|
+
</fingerprint>
|
178
|
+
<fingerprint pattern="mod_auth_form/?$">
|
179
|
+
<description>mod_auth_form without version</description>
|
180
|
+
<example>mod_auth_form/</example>
|
181
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
182
|
+
<param pos="0" name="service.component.product" value="mod_auth_form"/>
|
183
|
+
</fingerprint>
|
184
|
+
<fingerprint pattern="mod_auth_ldap/(\S+)$">
|
185
|
+
<description>mod_auth_ldap with version</description>
|
186
|
+
<example service.component.version="1.2.3">mod_auth_ldap/1.2.3</example>
|
187
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
188
|
+
<param pos="0" name="service.component.product" value="mod_auth_ldap"/>
|
189
|
+
<param pos="1" name="service.component.version"/>
|
190
|
+
</fingerprint>
|
191
|
+
<fingerprint pattern="mod_auth_ldap/?$">
|
192
|
+
<description>mod_auth_ldap without version</description>
|
193
|
+
<example>mod_auth_ldap/</example>
|
194
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
195
|
+
<param pos="0" name="service.component.product" value="mod_auth_ldap"/>
|
196
|
+
</fingerprint>
|
197
|
+
<fingerprint pattern="mod_auth_radius/(\S+)$">
|
198
|
+
<description>mod_auth_radius with version</description>
|
199
|
+
<example service.component.version="1.2.3">mod_auth_radius/1.2.3</example>
|
200
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
201
|
+
<param pos="0" name="service.component.product" value="mod_auth_radius"/>
|
202
|
+
<param pos="1" name="service.component.version"/>
|
203
|
+
<param pos="0" name="service.component.cpe23" value="cpe:/a:apache:mod_auth_radius:{service.component.version}"/>
|
204
|
+
</fingerprint>
|
205
|
+
<fingerprint pattern="mod_auth_radius/?$">
|
206
|
+
<description>mod_auth_radius without version</description>
|
207
|
+
<example>mod_auth_radius/</example>
|
208
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
209
|
+
<param pos="0" name="service.component.product" value="mod_auth_radius"/>
|
210
|
+
<param pos="0" name="service.component.cpe23" value="cpe:/a:apache:mod_auth_radius:-"/>
|
211
|
+
</fingerprint>
|
212
|
+
<fingerprint pattern="mod_authn_alias/(\S+)$">
|
213
|
+
<description>mod_authn_alias with version</description>
|
214
|
+
<example service.component.version="1.2.3">mod_authn_alias/1.2.3</example>
|
215
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
216
|
+
<param pos="0" name="service.component.product" value="mod_authn_alias"/>
|
217
|
+
<param pos="1" name="service.component.version"/>
|
218
|
+
</fingerprint>
|
219
|
+
<fingerprint pattern="mod_authn_alias/?$">
|
220
|
+
<description>mod_authn_alias without version</description>
|
221
|
+
<example>mod_authn_alias/</example>
|
222
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
223
|
+
<param pos="0" name="service.component.product" value="mod_authn_alias"/>
|
224
|
+
</fingerprint>
|
225
|
+
<fingerprint pattern="mod_authn_anon/(\S+)$">
|
226
|
+
<description>mod_authn_anon with version</description>
|
227
|
+
<example service.component.version="1.2.3">mod_authn_anon/1.2.3</example>
|
228
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
229
|
+
<param pos="0" name="service.component.product" value="mod_authn_anon"/>
|
230
|
+
<param pos="1" name="service.component.version"/>
|
231
|
+
</fingerprint>
|
232
|
+
<fingerprint pattern="mod_authn_anon/?$">
|
233
|
+
<description>mod_authn_anon without version</description>
|
234
|
+
<example>mod_authn_anon/</example>
|
235
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
236
|
+
<param pos="0" name="service.component.product" value="mod_authn_anon"/>
|
237
|
+
</fingerprint>
|
238
|
+
<fingerprint pattern="mod_authn_core/(\S+)$">
|
239
|
+
<description>mod_authn_core with version</description>
|
240
|
+
<example service.component.version="1.2.3">mod_authn_core/1.2.3</example>
|
241
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
242
|
+
<param pos="0" name="service.component.product" value="mod_authn_core"/>
|
243
|
+
<param pos="1" name="service.component.version"/>
|
244
|
+
</fingerprint>
|
245
|
+
<fingerprint pattern="mod_authn_core/?$">
|
246
|
+
<description>mod_authn_core without version</description>
|
247
|
+
<example>mod_authn_core/</example>
|
248
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
249
|
+
<param pos="0" name="service.component.product" value="mod_authn_core"/>
|
250
|
+
</fingerprint>
|
251
|
+
<fingerprint pattern="mod_authn_dbd/(\S+)$">
|
252
|
+
<description>mod_authn_dbd with version</description>
|
253
|
+
<example service.component.version="1.2.3">mod_authn_dbd/1.2.3</example>
|
254
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
255
|
+
<param pos="0" name="service.component.product" value="mod_authn_dbd"/>
|
256
|
+
<param pos="1" name="service.component.version"/>
|
257
|
+
</fingerprint>
|
258
|
+
<fingerprint pattern="mod_authn_dbd/?$">
|
259
|
+
<description>mod_authn_dbd without version</description>
|
260
|
+
<example>mod_authn_dbd/</example>
|
261
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
262
|
+
<param pos="0" name="service.component.product" value="mod_authn_dbd"/>
|
263
|
+
</fingerprint>
|
264
|
+
<fingerprint pattern="mod_authn_dbm/(\S+)$">
|
265
|
+
<description>mod_authn_dbm with version</description>
|
266
|
+
<example service.component.version="1.2.3">mod_authn_dbm/1.2.3</example>
|
267
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
268
|
+
<param pos="0" name="service.component.product" value="mod_authn_dbm"/>
|
269
|
+
<param pos="1" name="service.component.version"/>
|
270
|
+
</fingerprint>
|
271
|
+
<fingerprint pattern="mod_authn_dbm/?$">
|
272
|
+
<description>mod_authn_dbm without version</description>
|
273
|
+
<example>mod_authn_dbm/</example>
|
274
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
275
|
+
<param pos="0" name="service.component.product" value="mod_authn_dbm"/>
|
276
|
+
</fingerprint>
|
277
|
+
<fingerprint pattern="mod_authn_default/(\S+)$">
|
278
|
+
<description>mod_authn_default with version</description>
|
279
|
+
<example service.component.version="1.2.3">mod_authn_default/1.2.3</example>
|
280
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
281
|
+
<param pos="0" name="service.component.product" value="mod_authn_default"/>
|
282
|
+
<param pos="1" name="service.component.version"/>
|
283
|
+
</fingerprint>
|
284
|
+
<fingerprint pattern="mod_authn_default/?$">
|
285
|
+
<description>mod_authn_default without version</description>
|
286
|
+
<example>mod_authn_default/</example>
|
287
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
288
|
+
<param pos="0" name="service.component.product" value="mod_authn_default"/>
|
289
|
+
</fingerprint>
|
290
|
+
<fingerprint pattern="mod_authn_file/(\S+)$">
|
291
|
+
<description>mod_authn_file with version</description>
|
292
|
+
<example service.component.version="1.2.3">mod_authn_file/1.2.3</example>
|
293
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
294
|
+
<param pos="0" name="service.component.product" value="mod_authn_file"/>
|
295
|
+
<param pos="1" name="service.component.version"/>
|
296
|
+
</fingerprint>
|
297
|
+
<fingerprint pattern="mod_authn_file/?$">
|
298
|
+
<description>mod_authn_file without version</description>
|
299
|
+
<example>mod_authn_file/</example>
|
300
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
301
|
+
<param pos="0" name="service.component.product" value="mod_authn_file"/>
|
302
|
+
</fingerprint>
|
303
|
+
<fingerprint pattern="mod_authn_socache/(\S+)$">
|
304
|
+
<description>mod_authn_socache with version</description>
|
305
|
+
<example service.component.version="1.2.3">mod_authn_socache/1.2.3</example>
|
306
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
307
|
+
<param pos="0" name="service.component.product" value="mod_authn_socache"/>
|
308
|
+
<param pos="1" name="service.component.version"/>
|
309
|
+
</fingerprint>
|
310
|
+
<fingerprint pattern="mod_authn_socache/?$">
|
311
|
+
<description>mod_authn_socache without version</description>
|
312
|
+
<example>mod_authn_socache/</example>
|
313
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
314
|
+
<param pos="0" name="service.component.product" value="mod_authn_socache"/>
|
315
|
+
</fingerprint>
|
316
|
+
<fingerprint pattern="mod_authnz_fcgi/(\S+)$">
|
317
|
+
<description>mod_authnz_fcgi with version</description>
|
318
|
+
<example service.component.version="1.2.3">mod_authnz_fcgi/1.2.3</example>
|
319
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
320
|
+
<param pos="0" name="service.component.product" value="mod_authnz_fcgi"/>
|
321
|
+
<param pos="1" name="service.component.version"/>
|
322
|
+
</fingerprint>
|
323
|
+
<fingerprint pattern="mod_authnz_fcgi/?$">
|
324
|
+
<description>mod_authnz_fcgi without version</description>
|
325
|
+
<example>mod_authnz_fcgi/</example>
|
326
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
327
|
+
<param pos="0" name="service.component.product" value="mod_authnz_fcgi"/>
|
328
|
+
</fingerprint>
|
329
|
+
<fingerprint pattern="mod_authnz_ldap/(\S+)$">
|
330
|
+
<description>mod_authnz_ldap with version</description>
|
331
|
+
<example service.component.version="1.2.3">mod_authnz_ldap/1.2.3</example>
|
332
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
333
|
+
<param pos="0" name="service.component.product" value="mod_authnz_ldap"/>
|
334
|
+
<param pos="1" name="service.component.version"/>
|
335
|
+
</fingerprint>
|
336
|
+
<fingerprint pattern="mod_authnz_ldap/?$">
|
337
|
+
<description>mod_authnz_ldap without version</description>
|
338
|
+
<example>mod_authnz_ldap/</example>
|
339
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
340
|
+
<param pos="0" name="service.component.product" value="mod_authnz_ldap"/>
|
341
|
+
</fingerprint>
|
342
|
+
<fingerprint pattern="mod_authz_core/(\S+)$">
|
343
|
+
<description>mod_authz_core with version</description>
|
344
|
+
<example service.component.version="1.2.3">mod_authz_core/1.2.3</example>
|
345
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
346
|
+
<param pos="0" name="service.component.product" value="mod_authz_core"/>
|
347
|
+
<param pos="1" name="service.component.version"/>
|
348
|
+
</fingerprint>
|
349
|
+
<fingerprint pattern="mod_authz_core/?$">
|
350
|
+
<description>mod_authz_core without version</description>
|
351
|
+
<example>mod_authz_core/</example>
|
352
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
353
|
+
<param pos="0" name="service.component.product" value="mod_authz_core"/>
|
354
|
+
</fingerprint>
|
355
|
+
<fingerprint pattern="mod_authz_dbd/(\S+)$">
|
356
|
+
<description>mod_authz_dbd with version</description>
|
357
|
+
<example service.component.version="1.2.3">mod_authz_dbd/1.2.3</example>
|
358
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
359
|
+
<param pos="0" name="service.component.product" value="mod_authz_dbd"/>
|
360
|
+
<param pos="1" name="service.component.version"/>
|
361
|
+
</fingerprint>
|
362
|
+
<fingerprint pattern="mod_authz_dbd/?$">
|
363
|
+
<description>mod_authz_dbd without version</description>
|
364
|
+
<example>mod_authz_dbd/</example>
|
365
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
366
|
+
<param pos="0" name="service.component.product" value="mod_authz_dbd"/>
|
367
|
+
</fingerprint>
|
368
|
+
<fingerprint pattern="mod_authz_dbm/(\S+)$">
|
369
|
+
<description>mod_authz_dbm with version</description>
|
370
|
+
<example service.component.version="1.2.3">mod_authz_dbm/1.2.3</example>
|
371
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
372
|
+
<param pos="0" name="service.component.product" value="mod_authz_dbm"/>
|
373
|
+
<param pos="1" name="service.component.version"/>
|
374
|
+
</fingerprint>
|
375
|
+
<fingerprint pattern="mod_authz_dbm/?$">
|
376
|
+
<description>mod_authz_dbm without version</description>
|
377
|
+
<example>mod_authz_dbm/</example>
|
378
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
379
|
+
<param pos="0" name="service.component.product" value="mod_authz_dbm"/>
|
380
|
+
</fingerprint>
|
381
|
+
<fingerprint pattern="mod_authz_default/(\S+)$">
|
382
|
+
<description>mod_authz_default with version</description>
|
383
|
+
<example service.component.version="1.2.3">mod_authz_default/1.2.3</example>
|
384
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
385
|
+
<param pos="0" name="service.component.product" value="mod_authz_default"/>
|
386
|
+
<param pos="1" name="service.component.version"/>
|
387
|
+
</fingerprint>
|
388
|
+
<fingerprint pattern="mod_authz_default/?$">
|
389
|
+
<description>mod_authz_default without version</description>
|
390
|
+
<example>mod_authz_default/</example>
|
391
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
392
|
+
<param pos="0" name="service.component.product" value="mod_authz_default"/>
|
393
|
+
</fingerprint>
|
394
|
+
<fingerprint pattern="mod_authz_groupfile/(\S+)$">
|
395
|
+
<description>mod_authz_groupfile with version</description>
|
396
|
+
<example service.component.version="1.2.3">mod_authz_groupfile/1.2.3</example>
|
397
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
398
|
+
<param pos="0" name="service.component.product" value="mod_authz_groupfile"/>
|
399
|
+
<param pos="1" name="service.component.version"/>
|
400
|
+
</fingerprint>
|
401
|
+
<fingerprint pattern="mod_authz_groupfile/?$">
|
402
|
+
<description>mod_authz_groupfile without version</description>
|
403
|
+
<example>mod_authz_groupfile/</example>
|
404
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
405
|
+
<param pos="0" name="service.component.product" value="mod_authz_groupfile"/>
|
406
|
+
</fingerprint>
|
407
|
+
<fingerprint pattern="mod_authz_host/(\S+)$">
|
408
|
+
<description>mod_authz_host with version</description>
|
409
|
+
<example service.component.version="1.2.3">mod_authz_host/1.2.3</example>
|
410
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
411
|
+
<param pos="0" name="service.component.product" value="mod_authz_host"/>
|
412
|
+
<param pos="1" name="service.component.version"/>
|
413
|
+
</fingerprint>
|
414
|
+
<fingerprint pattern="mod_authz_host/?$">
|
415
|
+
<description>mod_authz_host without version</description>
|
416
|
+
<example>mod_authz_host/</example>
|
417
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
418
|
+
<param pos="0" name="service.component.product" value="mod_authz_host"/>
|
419
|
+
</fingerprint>
|
420
|
+
<fingerprint pattern="mod_authz_owner/(\S+)$">
|
421
|
+
<description>mod_authz_owner with version</description>
|
422
|
+
<example service.component.version="1.2.3">mod_authz_owner/1.2.3</example>
|
423
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
424
|
+
<param pos="0" name="service.component.product" value="mod_authz_owner"/>
|
425
|
+
<param pos="1" name="service.component.version"/>
|
426
|
+
</fingerprint>
|
427
|
+
<fingerprint pattern="mod_authz_owner/?$">
|
428
|
+
<description>mod_authz_owner without version</description>
|
429
|
+
<example>mod_authz_owner/</example>
|
430
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
431
|
+
<param pos="0" name="service.component.product" value="mod_authz_owner"/>
|
432
|
+
</fingerprint>
|
433
|
+
<fingerprint pattern="mod_authz_user/(\S+)$">
|
434
|
+
<description>mod_authz_user with version</description>
|
435
|
+
<example service.component.version="1.2.3">mod_authz_user/1.2.3</example>
|
436
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
437
|
+
<param pos="0" name="service.component.product" value="mod_authz_user"/>
|
438
|
+
<param pos="1" name="service.component.version"/>
|
439
|
+
</fingerprint>
|
440
|
+
<fingerprint pattern="mod_authz_user/?$">
|
441
|
+
<description>mod_authz_user without version</description>
|
442
|
+
<example>mod_authz_user/</example>
|
443
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
444
|
+
<param pos="0" name="service.component.product" value="mod_authz_user"/>
|
445
|
+
</fingerprint>
|
446
|
+
<fingerprint pattern="mod_autoindex/(\S+)$">
|
447
|
+
<description>mod_autoindex with version</description>
|
448
|
+
<example service.component.version="1.2.3">mod_autoindex/1.2.3</example>
|
449
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
450
|
+
<param pos="0" name="service.component.product" value="mod_autoindex"/>
|
451
|
+
<param pos="1" name="service.component.version"/>
|
452
|
+
</fingerprint>
|
453
|
+
<fingerprint pattern="mod_autoindex/?$">
|
454
|
+
<description>mod_autoindex without version</description>
|
455
|
+
<example>mod_autoindex/</example>
|
456
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
457
|
+
<param pos="0" name="service.component.product" value="mod_autoindex"/>
|
458
|
+
</fingerprint>
|
459
|
+
<fingerprint pattern="mod_brotli/(\S+)$">
|
460
|
+
<description>mod_brotli with version</description>
|
461
|
+
<example service.component.version="1.2.3">mod_brotli/1.2.3</example>
|
462
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
463
|
+
<param pos="0" name="service.component.product" value="mod_brotli"/>
|
464
|
+
<param pos="1" name="service.component.version"/>
|
465
|
+
</fingerprint>
|
466
|
+
<fingerprint pattern="mod_brotli/?$">
|
467
|
+
<description>mod_brotli without version</description>
|
468
|
+
<example>mod_brotli/</example>
|
469
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
470
|
+
<param pos="0" name="service.component.product" value="mod_brotli"/>
|
471
|
+
</fingerprint>
|
472
|
+
<fingerprint pattern="mod_buffer/(\S+)$">
|
473
|
+
<description>mod_buffer with version</description>
|
474
|
+
<example service.component.version="1.2.3">mod_buffer/1.2.3</example>
|
475
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
476
|
+
<param pos="0" name="service.component.product" value="mod_buffer"/>
|
477
|
+
<param pos="1" name="service.component.version"/>
|
478
|
+
</fingerprint>
|
479
|
+
<fingerprint pattern="mod_buffer/?$">
|
480
|
+
<description>mod_buffer without version</description>
|
481
|
+
<example>mod_buffer/</example>
|
482
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
483
|
+
<param pos="0" name="service.component.product" value="mod_buffer"/>
|
484
|
+
</fingerprint>
|
485
|
+
<fingerprint pattern="mod_cache/(\S+)$">
|
486
|
+
<description>mod_cache with version</description>
|
487
|
+
<example service.component.version="1.2.3">mod_cache/1.2.3</example>
|
488
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
489
|
+
<param pos="0" name="service.component.product" value="mod_cache"/>
|
490
|
+
<param pos="1" name="service.component.version"/>
|
491
|
+
</fingerprint>
|
492
|
+
<fingerprint pattern="mod_cache/?$">
|
493
|
+
<description>mod_cache without version</description>
|
494
|
+
<example>mod_cache/</example>
|
495
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
496
|
+
<param pos="0" name="service.component.product" value="mod_cache"/>
|
497
|
+
</fingerprint>
|
498
|
+
<fingerprint pattern="mod_cache_disk/(\S+)$">
|
499
|
+
<description>mod_cache_disk with version</description>
|
500
|
+
<example service.component.version="1.2.3">mod_cache_disk/1.2.3</example>
|
501
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
502
|
+
<param pos="0" name="service.component.product" value="mod_cache_disk"/>
|
503
|
+
<param pos="1" name="service.component.version"/>
|
504
|
+
</fingerprint>
|
505
|
+
<fingerprint pattern="mod_cache_disk/?$">
|
506
|
+
<description>mod_cache_disk without version</description>
|
507
|
+
<example>mod_cache_disk/</example>
|
508
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
509
|
+
<param pos="0" name="service.component.product" value="mod_cache_disk"/>
|
510
|
+
</fingerprint>
|
511
|
+
<fingerprint pattern="mod_cache_socache/(\S+)$">
|
512
|
+
<description>mod_cache_socache with version</description>
|
513
|
+
<example service.component.version="1.2.3">mod_cache_socache/1.2.3</example>
|
514
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
515
|
+
<param pos="0" name="service.component.product" value="mod_cache_socache"/>
|
516
|
+
<param pos="1" name="service.component.version"/>
|
517
|
+
</fingerprint>
|
518
|
+
<fingerprint pattern="mod_cache_socache/?$">
|
519
|
+
<description>mod_cache_socache without version</description>
|
520
|
+
<example>mod_cache_socache/</example>
|
521
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
522
|
+
<param pos="0" name="service.component.product" value="mod_cache_socache"/>
|
523
|
+
</fingerprint>
|
524
|
+
<fingerprint pattern="mod_cern_meta/(\S+)$">
|
525
|
+
<description>mod_cern_meta with version</description>
|
526
|
+
<example service.component.version="1.2.3">mod_cern_meta/1.2.3</example>
|
527
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
528
|
+
<param pos="0" name="service.component.product" value="mod_cern_meta"/>
|
529
|
+
<param pos="1" name="service.component.version"/>
|
530
|
+
</fingerprint>
|
531
|
+
<fingerprint pattern="mod_cern_meta/?$">
|
532
|
+
<description>mod_cern_meta without version</description>
|
533
|
+
<example>mod_cern_meta/</example>
|
534
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
535
|
+
<param pos="0" name="service.component.product" value="mod_cern_meta"/>
|
536
|
+
</fingerprint>
|
537
|
+
<fingerprint pattern="mod_cgi/(\S+)$">
|
538
|
+
<description>mod_cgi with version</description>
|
539
|
+
<example service.component.version="1.2.3">mod_cgi/1.2.3</example>
|
540
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
541
|
+
<param pos="0" name="service.component.product" value="mod_cgi"/>
|
542
|
+
<param pos="1" name="service.component.version"/>
|
543
|
+
</fingerprint>
|
544
|
+
<fingerprint pattern="mod_cgi/?$">
|
545
|
+
<description>mod_cgi without version</description>
|
546
|
+
<example>mod_cgi/</example>
|
547
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
548
|
+
<param pos="0" name="service.component.product" value="mod_cgi"/>
|
549
|
+
</fingerprint>
|
550
|
+
<fingerprint pattern="mod_cgid/(\S+)$">
|
551
|
+
<description>mod_cgid with version</description>
|
552
|
+
<example service.component.version="1.2.3">mod_cgid/1.2.3</example>
|
553
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
554
|
+
<param pos="0" name="service.component.product" value="mod_cgid"/>
|
555
|
+
<param pos="1" name="service.component.version"/>
|
556
|
+
</fingerprint>
|
557
|
+
<fingerprint pattern="mod_cgid/?$">
|
558
|
+
<description>mod_cgid without version</description>
|
559
|
+
<example>mod_cgid/</example>
|
560
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
561
|
+
<param pos="0" name="service.component.product" value="mod_cgid"/>
|
562
|
+
</fingerprint>
|
563
|
+
<fingerprint pattern="mod_charset_lite/(\S+)$">
|
564
|
+
<description>mod_charset_lite with version</description>
|
565
|
+
<example service.component.version="1.2.3">mod_charset_lite/1.2.3</example>
|
566
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
567
|
+
<param pos="0" name="service.component.product" value="mod_charset_lite"/>
|
568
|
+
<param pos="1" name="service.component.version"/>
|
569
|
+
</fingerprint>
|
570
|
+
<fingerprint pattern="mod_charset_lite/?$">
|
571
|
+
<description>mod_charset_lite without version</description>
|
572
|
+
<example>mod_charset_lite/</example>
|
573
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
574
|
+
<param pos="0" name="service.component.product" value="mod_charset_lite"/>
|
575
|
+
</fingerprint>
|
576
|
+
<fingerprint pattern="mod_data/(\S+)$">
|
577
|
+
<description>mod_data with version</description>
|
578
|
+
<example service.component.version="1.2.3">mod_data/1.2.3</example>
|
579
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
580
|
+
<param pos="0" name="service.component.product" value="mod_data"/>
|
581
|
+
<param pos="1" name="service.component.version"/>
|
582
|
+
</fingerprint>
|
583
|
+
<fingerprint pattern="mod_data/?$">
|
584
|
+
<description>mod_data without version</description>
|
585
|
+
<example>mod_data/</example>
|
586
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
587
|
+
<param pos="0" name="service.component.product" value="mod_data"/>
|
588
|
+
</fingerprint>
|
589
|
+
<fingerprint pattern="mod_dav/(\S+)$">
|
590
|
+
<description>mod_dav with version</description>
|
591
|
+
<example service.component.version="1.2.3">mod_dav/1.2.3</example>
|
592
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
593
|
+
<param pos="0" name="service.component.product" value="mod_dav"/>
|
594
|
+
<param pos="1" name="service.component.version"/>
|
595
|
+
</fingerprint>
|
596
|
+
<fingerprint pattern="mod_dav/?$">
|
597
|
+
<description>mod_dav without version</description>
|
598
|
+
<example>mod_dav/</example>
|
599
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
600
|
+
<param pos="0" name="service.component.product" value="mod_dav"/>
|
601
|
+
</fingerprint>
|
602
|
+
<fingerprint pattern="mod_dav_fs/(\S+)$">
|
603
|
+
<description>mod_dav_fs with version</description>
|
604
|
+
<example service.component.version="1.2.3">mod_dav_fs/1.2.3</example>
|
605
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
606
|
+
<param pos="0" name="service.component.product" value="mod_dav_fs"/>
|
607
|
+
<param pos="1" name="service.component.version"/>
|
608
|
+
</fingerprint>
|
609
|
+
<fingerprint pattern="mod_dav_fs/?$">
|
610
|
+
<description>mod_dav_fs without version</description>
|
611
|
+
<example>mod_dav_fs/</example>
|
612
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
613
|
+
<param pos="0" name="service.component.product" value="mod_dav_fs"/>
|
614
|
+
</fingerprint>
|
615
|
+
<fingerprint pattern="mod_dav_lock/(\S+)$">
|
616
|
+
<description>mod_dav_lock with version</description>
|
617
|
+
<example service.component.version="1.2.3">mod_dav_lock/1.2.3</example>
|
618
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
619
|
+
<param pos="0" name="service.component.product" value="mod_dav_lock"/>
|
620
|
+
<param pos="1" name="service.component.version"/>
|
621
|
+
</fingerprint>
|
622
|
+
<fingerprint pattern="mod_dav_lock/?$">
|
623
|
+
<description>mod_dav_lock without version</description>
|
624
|
+
<example>mod_dav_lock/</example>
|
625
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
626
|
+
<param pos="0" name="service.component.product" value="mod_dav_lock"/>
|
627
|
+
</fingerprint>
|
628
|
+
<fingerprint pattern="mod_dav_svn/(\S+)$">
|
629
|
+
<description>mod_dav_svn with version</description>
|
630
|
+
<example service.component.version="1.2.3">mod_dav_svn/1.2.3</example>
|
631
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
632
|
+
<param pos="0" name="service.component.product" value="mod_dav_svn"/>
|
633
|
+
<param pos="1" name="service.component.version"/>
|
634
|
+
<param pos="0" name="service.component.cpe23" value="cpe:/a:apache:mod_dav_svn:{service.component.version}"/>
|
635
|
+
</fingerprint>
|
636
|
+
<fingerprint pattern="mod_dav_svn/?$">
|
637
|
+
<description>mod_dav_svn without version</description>
|
638
|
+
<example>mod_dav_svn/</example>
|
639
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
640
|
+
<param pos="0" name="service.component.product" value="mod_dav_svn"/>
|
641
|
+
<param pos="0" name="service.component.cpe23" value="cpe:/a:apache:mod_dav_svn:-"/>
|
642
|
+
</fingerprint>
|
643
|
+
<fingerprint pattern="mod_dbd/(\S+)$">
|
644
|
+
<description>mod_dbd with version</description>
|
645
|
+
<example service.component.version="1.2.3">mod_dbd/1.2.3</example>
|
646
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
647
|
+
<param pos="0" name="service.component.product" value="mod_dbd"/>
|
648
|
+
<param pos="1" name="service.component.version"/>
|
649
|
+
</fingerprint>
|
650
|
+
<fingerprint pattern="mod_dbd/?$">
|
651
|
+
<description>mod_dbd without version</description>
|
652
|
+
<example>mod_dbd/</example>
|
653
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
654
|
+
<param pos="0" name="service.component.product" value="mod_dbd"/>
|
655
|
+
</fingerprint>
|
656
|
+
<fingerprint pattern="mod_deflate/(\S+)$">
|
657
|
+
<description>mod_deflate with version</description>
|
658
|
+
<example service.component.version="1.2.3">mod_deflate/1.2.3</example>
|
659
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
660
|
+
<param pos="0" name="service.component.product" value="mod_deflate"/>
|
661
|
+
<param pos="1" name="service.component.version"/>
|
662
|
+
</fingerprint>
|
663
|
+
<fingerprint pattern="mod_deflate/?$">
|
664
|
+
<description>mod_deflate without version</description>
|
665
|
+
<example>mod_deflate/</example>
|
666
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
667
|
+
<param pos="0" name="service.component.product" value="mod_deflate"/>
|
668
|
+
</fingerprint>
|
669
|
+
<fingerprint pattern="mod_dialup/(\S+)$">
|
670
|
+
<description>mod_dialup with version</description>
|
671
|
+
<example service.component.version="1.2.3">mod_dialup/1.2.3</example>
|
672
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
673
|
+
<param pos="0" name="service.component.product" value="mod_dialup"/>
|
674
|
+
<param pos="1" name="service.component.version"/>
|
675
|
+
</fingerprint>
|
676
|
+
<fingerprint pattern="mod_dialup/?$">
|
677
|
+
<description>mod_dialup without version</description>
|
678
|
+
<example>mod_dialup/</example>
|
679
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
680
|
+
<param pos="0" name="service.component.product" value="mod_dialup"/>
|
681
|
+
</fingerprint>
|
682
|
+
<fingerprint pattern="mod_dir/(\S+)$">
|
683
|
+
<description>mod_dir with version</description>
|
684
|
+
<example service.component.version="1.2.3">mod_dir/1.2.3</example>
|
685
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
686
|
+
<param pos="0" name="service.component.product" value="mod_dir"/>
|
687
|
+
<param pos="1" name="service.component.version"/>
|
688
|
+
</fingerprint>
|
689
|
+
<fingerprint pattern="mod_dir/?$">
|
690
|
+
<description>mod_dir without version</description>
|
691
|
+
<example>mod_dir/</example>
|
692
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
693
|
+
<param pos="0" name="service.component.product" value="mod_dir"/>
|
694
|
+
</fingerprint>
|
695
|
+
<fingerprint pattern="mod_disk_cache/(\S+)$">
|
696
|
+
<description>mod_disk_cache with version</description>
|
697
|
+
<example service.component.version="1.2.3">mod_disk_cache/1.2.3</example>
|
698
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
699
|
+
<param pos="0" name="service.component.product" value="mod_disk_cache"/>
|
700
|
+
<param pos="1" name="service.component.version"/>
|
701
|
+
</fingerprint>
|
702
|
+
<fingerprint pattern="mod_disk_cache/?$">
|
703
|
+
<description>mod_disk_cache without version</description>
|
704
|
+
<example>mod_disk_cache/</example>
|
705
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
706
|
+
<param pos="0" name="service.component.product" value="mod_disk_cache"/>
|
707
|
+
</fingerprint>
|
708
|
+
<fingerprint pattern="mod_dontdothat/(\S+)$">
|
709
|
+
<description>mod_dontdothat with version</description>
|
710
|
+
<example service.component.version="1.2.3">mod_dontdothat/1.2.3</example>
|
711
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
712
|
+
<param pos="0" name="service.component.product" value="mod_dontdothat"/>
|
713
|
+
<param pos="1" name="service.component.version"/>
|
714
|
+
<param pos="0" name="service.component.cpe23" value="cpe:/a:apache:mod_dontdothat:{service.component.version}"/>
|
715
|
+
</fingerprint>
|
716
|
+
<fingerprint pattern="mod_dontdothat/?$">
|
717
|
+
<description>mod_dontdothat without version</description>
|
718
|
+
<example>mod_dontdothat/</example>
|
719
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
720
|
+
<param pos="0" name="service.component.product" value="mod_dontdothat"/>
|
721
|
+
<param pos="0" name="service.component.cpe23" value="cpe:/a:apache:mod_dontdothat:-"/>
|
722
|
+
</fingerprint>
|
723
|
+
<fingerprint pattern="mod_dumpio/(\S+)$">
|
724
|
+
<description>mod_dumpio with version</description>
|
725
|
+
<example service.component.version="1.2.3">mod_dumpio/1.2.3</example>
|
726
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
727
|
+
<param pos="0" name="service.component.product" value="mod_dumpio"/>
|
728
|
+
<param pos="1" name="service.component.version"/>
|
729
|
+
</fingerprint>
|
730
|
+
<fingerprint pattern="mod_dumpio/?$">
|
731
|
+
<description>mod_dumpio without version</description>
|
732
|
+
<example>mod_dumpio/</example>
|
733
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
734
|
+
<param pos="0" name="service.component.product" value="mod_dumpio"/>
|
735
|
+
</fingerprint>
|
736
|
+
<fingerprint pattern="mod_echo/(\S+)$">
|
737
|
+
<description>mod_echo with version</description>
|
738
|
+
<example service.component.version="1.2.3">mod_echo/1.2.3</example>
|
739
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
740
|
+
<param pos="0" name="service.component.product" value="mod_echo"/>
|
741
|
+
<param pos="1" name="service.component.version"/>
|
742
|
+
</fingerprint>
|
743
|
+
<fingerprint pattern="mod_echo/?$">
|
744
|
+
<description>mod_echo without version</description>
|
745
|
+
<example>mod_echo/</example>
|
746
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
747
|
+
<param pos="0" name="service.component.product" value="mod_echo"/>
|
748
|
+
</fingerprint>
|
749
|
+
<fingerprint pattern="mod_env/(\S+)$">
|
750
|
+
<description>mod_env with version</description>
|
751
|
+
<example service.component.version="1.2.3">mod_env/1.2.3</example>
|
752
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
753
|
+
<param pos="0" name="service.component.product" value="mod_env"/>
|
754
|
+
<param pos="1" name="service.component.version"/>
|
755
|
+
</fingerprint>
|
756
|
+
<fingerprint pattern="mod_env/?$">
|
757
|
+
<description>mod_env without version</description>
|
758
|
+
<example>mod_env/</example>
|
759
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
760
|
+
<param pos="0" name="service.component.product" value="mod_env"/>
|
761
|
+
</fingerprint>
|
762
|
+
<fingerprint pattern="mod_example/(\S+)$">
|
763
|
+
<description>mod_example with version</description>
|
764
|
+
<example service.component.version="1.2.3">mod_example/1.2.3</example>
|
765
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
766
|
+
<param pos="0" name="service.component.product" value="mod_example"/>
|
767
|
+
<param pos="1" name="service.component.version"/>
|
768
|
+
</fingerprint>
|
769
|
+
<fingerprint pattern="mod_example/?$">
|
770
|
+
<description>mod_example without version</description>
|
771
|
+
<example>mod_example/</example>
|
772
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
773
|
+
<param pos="0" name="service.component.product" value="mod_example"/>
|
774
|
+
</fingerprint>
|
775
|
+
<fingerprint pattern="mod_example_hooks/(\S+)$">
|
776
|
+
<description>mod_example_hooks with version</description>
|
777
|
+
<example service.component.version="1.2.3">mod_example_hooks/1.2.3</example>
|
778
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
779
|
+
<param pos="0" name="service.component.product" value="mod_example_hooks"/>
|
780
|
+
<param pos="1" name="service.component.version"/>
|
781
|
+
</fingerprint>
|
782
|
+
<fingerprint pattern="mod_example_hooks/?$">
|
783
|
+
<description>mod_example_hooks without version</description>
|
784
|
+
<example>mod_example_hooks/</example>
|
785
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
786
|
+
<param pos="0" name="service.component.product" value="mod_example_hooks"/>
|
787
|
+
</fingerprint>
|
788
|
+
<fingerprint pattern="mod_expires/(\S+)$">
|
789
|
+
<description>mod_expires with version</description>
|
790
|
+
<example service.component.version="1.2.3">mod_expires/1.2.3</example>
|
791
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
792
|
+
<param pos="0" name="service.component.product" value="mod_expires"/>
|
793
|
+
<param pos="1" name="service.component.version"/>
|
794
|
+
</fingerprint>
|
795
|
+
<fingerprint pattern="mod_expires/?$">
|
796
|
+
<description>mod_expires without version</description>
|
797
|
+
<example>mod_expires/</example>
|
798
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
799
|
+
<param pos="0" name="service.component.product" value="mod_expires"/>
|
800
|
+
</fingerprint>
|
801
|
+
<fingerprint pattern="mod_ext_filter/(\S+)$">
|
802
|
+
<description>mod_ext_filter with version</description>
|
803
|
+
<example service.component.version="1.2.3">mod_ext_filter/1.2.3</example>
|
804
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
805
|
+
<param pos="0" name="service.component.product" value="mod_ext_filter"/>
|
806
|
+
<param pos="1" name="service.component.version"/>
|
807
|
+
</fingerprint>
|
808
|
+
<fingerprint pattern="mod_ext_filter/?$">
|
809
|
+
<description>mod_ext_filter without version</description>
|
810
|
+
<example>mod_ext_filter/</example>
|
811
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
812
|
+
<param pos="0" name="service.component.product" value="mod_ext_filter"/>
|
813
|
+
</fingerprint>
|
814
|
+
<fingerprint pattern="mod_fcgid/(\S+)$">
|
815
|
+
<description>mod_fcgid with version</description>
|
816
|
+
<example service.component.version="1.2.3">mod_fcgid/1.2.3</example>
|
817
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
818
|
+
<param pos="0" name="service.component.product" value="mod_fcgid"/>
|
819
|
+
<param pos="1" name="service.component.version"/>
|
820
|
+
<param pos="0" name="service.component.cpe23" value="cpe:/a:apache:mod_fcgid:{service.component.version}"/>
|
821
|
+
</fingerprint>
|
822
|
+
<fingerprint pattern="mod_fcgid/?$">
|
823
|
+
<description>mod_fcgid without version</description>
|
824
|
+
<example>mod_fcgid/</example>
|
825
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
826
|
+
<param pos="0" name="service.component.product" value="mod_fcgid"/>
|
827
|
+
<param pos="0" name="service.component.cpe23" value="cpe:/a:apache:mod_fcgid:-"/>
|
828
|
+
</fingerprint>
|
829
|
+
<fingerprint pattern="mod_file_cache/(\S+)$">
|
830
|
+
<description>mod_file_cache with version</description>
|
831
|
+
<example service.component.version="1.2.3">mod_file_cache/1.2.3</example>
|
832
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
833
|
+
<param pos="0" name="service.component.product" value="mod_file_cache"/>
|
834
|
+
<param pos="1" name="service.component.version"/>
|
835
|
+
</fingerprint>
|
836
|
+
<fingerprint pattern="mod_file_cache/?$">
|
837
|
+
<description>mod_file_cache without version</description>
|
838
|
+
<example>mod_file_cache/</example>
|
839
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
840
|
+
<param pos="0" name="service.component.product" value="mod_file_cache"/>
|
841
|
+
</fingerprint>
|
842
|
+
<fingerprint pattern="mod_filter/(\S+)$">
|
843
|
+
<description>mod_filter with version</description>
|
844
|
+
<example service.component.version="1.2.3">mod_filter/1.2.3</example>
|
845
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
846
|
+
<param pos="0" name="service.component.product" value="mod_filter"/>
|
847
|
+
<param pos="1" name="service.component.version"/>
|
848
|
+
</fingerprint>
|
849
|
+
<fingerprint pattern="mod_filter/?$">
|
850
|
+
<description>mod_filter without version</description>
|
851
|
+
<example>mod_filter/</example>
|
852
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
853
|
+
<param pos="0" name="service.component.product" value="mod_filter"/>
|
854
|
+
</fingerprint>
|
855
|
+
<fingerprint pattern="mod_headers/(\S+)$">
|
856
|
+
<description>mod_headers with version</description>
|
857
|
+
<example service.component.version="1.2.3">mod_headers/1.2.3</example>
|
858
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
859
|
+
<param pos="0" name="service.component.product" value="mod_headers"/>
|
860
|
+
<param pos="1" name="service.component.version"/>
|
861
|
+
</fingerprint>
|
862
|
+
<fingerprint pattern="mod_headers/?$">
|
863
|
+
<description>mod_headers without version</description>
|
864
|
+
<example>mod_headers/</example>
|
865
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
866
|
+
<param pos="0" name="service.component.product" value="mod_headers"/>
|
867
|
+
</fingerprint>
|
868
|
+
<fingerprint pattern="mod_heartbeat/(\S+)$">
|
869
|
+
<description>mod_heartbeat with version</description>
|
870
|
+
<example service.component.version="1.2.3">mod_heartbeat/1.2.3</example>
|
871
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
872
|
+
<param pos="0" name="service.component.product" value="mod_heartbeat"/>
|
873
|
+
<param pos="1" name="service.component.version"/>
|
874
|
+
</fingerprint>
|
875
|
+
<fingerprint pattern="mod_heartbeat/?$">
|
876
|
+
<description>mod_heartbeat without version</description>
|
877
|
+
<example>mod_heartbeat/</example>
|
878
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
879
|
+
<param pos="0" name="service.component.product" value="mod_heartbeat"/>
|
880
|
+
</fingerprint>
|
881
|
+
<fingerprint pattern="mod_heartmonitor/(\S+)$">
|
882
|
+
<description>mod_heartmonitor with version</description>
|
883
|
+
<example service.component.version="1.2.3">mod_heartmonitor/1.2.3</example>
|
884
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
885
|
+
<param pos="0" name="service.component.product" value="mod_heartmonitor"/>
|
886
|
+
<param pos="1" name="service.component.version"/>
|
887
|
+
</fingerprint>
|
888
|
+
<fingerprint pattern="mod_heartmonitor/?$">
|
889
|
+
<description>mod_heartmonitor without version</description>
|
890
|
+
<example>mod_heartmonitor/</example>
|
891
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
892
|
+
<param pos="0" name="service.component.product" value="mod_heartmonitor"/>
|
893
|
+
</fingerprint>
|
894
|
+
<fingerprint pattern="mod_http2/(\S+)$">
|
895
|
+
<description>mod_http2 with version</description>
|
896
|
+
<example service.component.version="1.2.3">mod_http2/1.2.3</example>
|
897
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
898
|
+
<param pos="0" name="service.component.product" value="mod_http2"/>
|
899
|
+
<param pos="1" name="service.component.version"/>
|
900
|
+
</fingerprint>
|
901
|
+
<fingerprint pattern="mod_http2/?$">
|
902
|
+
<description>mod_http2 without version</description>
|
903
|
+
<example>mod_http2/</example>
|
904
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
905
|
+
<param pos="0" name="service.component.product" value="mod_http2"/>
|
906
|
+
</fingerprint>
|
907
|
+
<fingerprint pattern="mod_ident/(\S+)$">
|
908
|
+
<description>mod_ident with version</description>
|
909
|
+
<example service.component.version="1.2.3">mod_ident/1.2.3</example>
|
910
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
911
|
+
<param pos="0" name="service.component.product" value="mod_ident"/>
|
912
|
+
<param pos="1" name="service.component.version"/>
|
913
|
+
</fingerprint>
|
914
|
+
<fingerprint pattern="mod_ident/?$">
|
915
|
+
<description>mod_ident without version</description>
|
916
|
+
<example>mod_ident/</example>
|
917
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
918
|
+
<param pos="0" name="service.component.product" value="mod_ident"/>
|
919
|
+
</fingerprint>
|
920
|
+
<fingerprint pattern="mod_imagemap/(\S+)$">
|
921
|
+
<description>mod_imagemap with version</description>
|
922
|
+
<example service.component.version="1.2.3">mod_imagemap/1.2.3</example>
|
923
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
924
|
+
<param pos="0" name="service.component.product" value="mod_imagemap"/>
|
925
|
+
<param pos="1" name="service.component.version"/>
|
926
|
+
</fingerprint>
|
927
|
+
<fingerprint pattern="mod_imagemap/?$">
|
928
|
+
<description>mod_imagemap without version</description>
|
929
|
+
<example>mod_imagemap/</example>
|
930
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
931
|
+
<param pos="0" name="service.component.product" value="mod_imagemap"/>
|
932
|
+
</fingerprint>
|
933
|
+
<fingerprint pattern="mod_imap/(\S+)$">
|
934
|
+
<description>mod_imap with version</description>
|
935
|
+
<example service.component.version="1.2.3">mod_imap/1.2.3</example>
|
936
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
937
|
+
<param pos="0" name="service.component.product" value="mod_imap"/>
|
938
|
+
<param pos="1" name="service.component.version"/>
|
939
|
+
<param pos="0" name="service.component.cpe23" value="cpe:/a:apache:mod_imap:{service.component.version}"/>
|
940
|
+
</fingerprint>
|
941
|
+
<fingerprint pattern="mod_imap/?$">
|
942
|
+
<description>mod_imap without version</description>
|
943
|
+
<example>mod_imap/</example>
|
944
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
945
|
+
<param pos="0" name="service.component.product" value="mod_imap"/>
|
946
|
+
<param pos="0" name="service.component.cpe23" value="cpe:/a:apache:mod_imap:-"/>
|
947
|
+
</fingerprint>
|
948
|
+
<fingerprint pattern="mod_include/(\S+)$">
|
949
|
+
<description>mod_include with version</description>
|
950
|
+
<example service.component.version="1.2.3">mod_include/1.2.3</example>
|
951
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
952
|
+
<param pos="0" name="service.component.product" value="mod_include"/>
|
953
|
+
<param pos="1" name="service.component.version"/>
|
954
|
+
</fingerprint>
|
955
|
+
<fingerprint pattern="mod_include/?$">
|
956
|
+
<description>mod_include without version</description>
|
957
|
+
<example>mod_include/</example>
|
958
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
959
|
+
<param pos="0" name="service.component.product" value="mod_include"/>
|
960
|
+
</fingerprint>
|
961
|
+
<fingerprint pattern="mod_info/(\S+)$">
|
962
|
+
<description>mod_info with version</description>
|
963
|
+
<example service.component.version="1.2.3">mod_info/1.2.3</example>
|
964
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
965
|
+
<param pos="0" name="service.component.product" value="mod_info"/>
|
966
|
+
<param pos="1" name="service.component.version"/>
|
967
|
+
</fingerprint>
|
968
|
+
<fingerprint pattern="mod_info/?$">
|
969
|
+
<description>mod_info without version</description>
|
970
|
+
<example>mod_info/</example>
|
971
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
972
|
+
<param pos="0" name="service.component.product" value="mod_info"/>
|
973
|
+
</fingerprint>
|
974
|
+
<fingerprint pattern="mod_isapi/(\S+)$">
|
975
|
+
<description>mod_isapi with version</description>
|
976
|
+
<example service.component.version="1.2.3">mod_isapi/1.2.3</example>
|
977
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
978
|
+
<param pos="0" name="service.component.product" value="mod_isapi"/>
|
979
|
+
<param pos="1" name="service.component.version"/>
|
980
|
+
</fingerprint>
|
981
|
+
<fingerprint pattern="mod_isapi/?$">
|
982
|
+
<description>mod_isapi without version</description>
|
983
|
+
<example>mod_isapi/</example>
|
984
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
985
|
+
<param pos="0" name="service.component.product" value="mod_isapi"/>
|
986
|
+
</fingerprint>
|
987
|
+
<fingerprint pattern="mod_jk/(\S+)$">
|
988
|
+
<description>mod_jk with version</description>
|
989
|
+
<example service.component.version="1.2.3">mod_jk/1.2.3</example>
|
990
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
991
|
+
<param pos="0" name="service.component.product" value="mod_jk"/>
|
992
|
+
<param pos="1" name="service.component.version"/>
|
993
|
+
</fingerprint>
|
994
|
+
<fingerprint pattern="mod_jk/?$">
|
995
|
+
<description>mod_jk without version</description>
|
996
|
+
<example>mod_jk/</example>
|
997
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
998
|
+
<param pos="0" name="service.component.product" value="mod_jk"/>
|
999
|
+
</fingerprint>
|
1000
|
+
<fingerprint pattern="mod_jk2/(\S+)$">
|
1001
|
+
<description>mod_jk2 with version</description>
|
1002
|
+
<example service.component.version="1.2.3">mod_jk2/1.2.3</example>
|
1003
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1004
|
+
<param pos="0" name="service.component.product" value="mod_jk2"/>
|
1005
|
+
<param pos="1" name="service.component.version"/>
|
1006
|
+
</fingerprint>
|
1007
|
+
<fingerprint pattern="mod_jk2/?$">
|
1008
|
+
<description>mod_jk2 without version</description>
|
1009
|
+
<example>mod_jk2/</example>
|
1010
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1011
|
+
<param pos="0" name="service.component.product" value="mod_jk2"/>
|
1012
|
+
</fingerprint>
|
1013
|
+
<fingerprint pattern="mod_lbmethod_bybusyness/(\S+)$">
|
1014
|
+
<description>mod_lbmethod_bybusyness with version</description>
|
1015
|
+
<example service.component.version="1.2.3">mod_lbmethod_bybusyness/1.2.3</example>
|
1016
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1017
|
+
<param pos="0" name="service.component.product" value="mod_lbmethod_bybusyness"/>
|
1018
|
+
<param pos="1" name="service.component.version"/>
|
1019
|
+
</fingerprint>
|
1020
|
+
<fingerprint pattern="mod_lbmethod_bybusyness/?$">
|
1021
|
+
<description>mod_lbmethod_bybusyness without version</description>
|
1022
|
+
<example>mod_lbmethod_bybusyness/</example>
|
1023
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1024
|
+
<param pos="0" name="service.component.product" value="mod_lbmethod_bybusyness"/>
|
1025
|
+
</fingerprint>
|
1026
|
+
<fingerprint pattern="mod_lbmethod_byrequests/(\S+)$">
|
1027
|
+
<description>mod_lbmethod_byrequests with version</description>
|
1028
|
+
<example service.component.version="1.2.3">mod_lbmethod_byrequests/1.2.3</example>
|
1029
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1030
|
+
<param pos="0" name="service.component.product" value="mod_lbmethod_byrequests"/>
|
1031
|
+
<param pos="1" name="service.component.version"/>
|
1032
|
+
</fingerprint>
|
1033
|
+
<fingerprint pattern="mod_lbmethod_byrequests/?$">
|
1034
|
+
<description>mod_lbmethod_byrequests without version</description>
|
1035
|
+
<example>mod_lbmethod_byrequests/</example>
|
1036
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1037
|
+
<param pos="0" name="service.component.product" value="mod_lbmethod_byrequests"/>
|
1038
|
+
</fingerprint>
|
1039
|
+
<fingerprint pattern="mod_lbmethod_bytraffic/(\S+)$">
|
1040
|
+
<description>mod_lbmethod_bytraffic with version</description>
|
1041
|
+
<example service.component.version="1.2.3">mod_lbmethod_bytraffic/1.2.3</example>
|
1042
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1043
|
+
<param pos="0" name="service.component.product" value="mod_lbmethod_bytraffic"/>
|
1044
|
+
<param pos="1" name="service.component.version"/>
|
1045
|
+
</fingerprint>
|
1046
|
+
<fingerprint pattern="mod_lbmethod_bytraffic/?$">
|
1047
|
+
<description>mod_lbmethod_bytraffic without version</description>
|
1048
|
+
<example>mod_lbmethod_bytraffic/</example>
|
1049
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1050
|
+
<param pos="0" name="service.component.product" value="mod_lbmethod_bytraffic"/>
|
1051
|
+
</fingerprint>
|
1052
|
+
<fingerprint pattern="mod_lbmethod_heartbeat/(\S+)$">
|
1053
|
+
<description>mod_lbmethod_heartbeat with version</description>
|
1054
|
+
<example service.component.version="1.2.3">mod_lbmethod_heartbeat/1.2.3</example>
|
1055
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1056
|
+
<param pos="0" name="service.component.product" value="mod_lbmethod_heartbeat"/>
|
1057
|
+
<param pos="1" name="service.component.version"/>
|
1058
|
+
</fingerprint>
|
1059
|
+
<fingerprint pattern="mod_lbmethod_heartbeat/?$">
|
1060
|
+
<description>mod_lbmethod_heartbeat without version</description>
|
1061
|
+
<example>mod_lbmethod_heartbeat/</example>
|
1062
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1063
|
+
<param pos="0" name="service.component.product" value="mod_lbmethod_heartbeat"/>
|
1064
|
+
</fingerprint>
|
1065
|
+
<fingerprint pattern="mod_ldap/(\S+)$">
|
1066
|
+
<description>mod_ldap with version</description>
|
1067
|
+
<example service.component.version="1.2.3">mod_ldap/1.2.3</example>
|
1068
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1069
|
+
<param pos="0" name="service.component.product" value="mod_ldap"/>
|
1070
|
+
<param pos="1" name="service.component.version"/>
|
1071
|
+
</fingerprint>
|
1072
|
+
<fingerprint pattern="mod_ldap/?$">
|
1073
|
+
<description>mod_ldap without version</description>
|
1074
|
+
<example>mod_ldap/</example>
|
1075
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1076
|
+
<param pos="0" name="service.component.product" value="mod_ldap"/>
|
1077
|
+
</fingerprint>
|
1078
|
+
<fingerprint pattern="mod_log_config/(\S+)$">
|
1079
|
+
<description>mod_log_config with version</description>
|
1080
|
+
<example service.component.version="1.2.3">mod_log_config/1.2.3</example>
|
1081
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1082
|
+
<param pos="0" name="service.component.product" value="mod_log_config"/>
|
1083
|
+
<param pos="1" name="service.component.version"/>
|
1084
|
+
</fingerprint>
|
1085
|
+
<fingerprint pattern="mod_log_config/?$">
|
1086
|
+
<description>mod_log_config without version</description>
|
1087
|
+
<example>mod_log_config/</example>
|
1088
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1089
|
+
<param pos="0" name="service.component.product" value="mod_log_config"/>
|
1090
|
+
</fingerprint>
|
1091
|
+
<fingerprint pattern="mod_log_debug/(\S+)$">
|
1092
|
+
<description>mod_log_debug with version</description>
|
1093
|
+
<example service.component.version="1.2.3">mod_log_debug/1.2.3</example>
|
1094
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1095
|
+
<param pos="0" name="service.component.product" value="mod_log_debug"/>
|
1096
|
+
<param pos="1" name="service.component.version"/>
|
1097
|
+
</fingerprint>
|
1098
|
+
<fingerprint pattern="mod_log_debug/?$">
|
1099
|
+
<description>mod_log_debug without version</description>
|
1100
|
+
<example>mod_log_debug/</example>
|
1101
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1102
|
+
<param pos="0" name="service.component.product" value="mod_log_debug"/>
|
1103
|
+
</fingerprint>
|
1104
|
+
<fingerprint pattern="mod_log_forensic/(\S+)$">
|
1105
|
+
<description>mod_log_forensic with version</description>
|
1106
|
+
<example service.component.version="1.2.3">mod_log_forensic/1.2.3</example>
|
1107
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1108
|
+
<param pos="0" name="service.component.product" value="mod_log_forensic"/>
|
1109
|
+
<param pos="1" name="service.component.version"/>
|
1110
|
+
</fingerprint>
|
1111
|
+
<fingerprint pattern="mod_log_forensic/?$">
|
1112
|
+
<description>mod_log_forensic without version</description>
|
1113
|
+
<example>mod_log_forensic/</example>
|
1114
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1115
|
+
<param pos="0" name="service.component.product" value="mod_log_forensic"/>
|
1116
|
+
</fingerprint>
|
1117
|
+
<fingerprint pattern="mod_logio/(\S+)$">
|
1118
|
+
<description>mod_logio with version</description>
|
1119
|
+
<example service.component.version="1.2.3">mod_logio/1.2.3</example>
|
1120
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1121
|
+
<param pos="0" name="service.component.product" value="mod_logio"/>
|
1122
|
+
<param pos="1" name="service.component.version"/>
|
1123
|
+
</fingerprint>
|
1124
|
+
<fingerprint pattern="mod_logio/?$">
|
1125
|
+
<description>mod_logio without version</description>
|
1126
|
+
<example>mod_logio/</example>
|
1127
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1128
|
+
<param pos="0" name="service.component.product" value="mod_logio"/>
|
1129
|
+
</fingerprint>
|
1130
|
+
<fingerprint pattern="mod_lua/(\S+)$">
|
1131
|
+
<description>mod_lua with version</description>
|
1132
|
+
<example service.component.version="1.2.3">mod_lua/1.2.3</example>
|
1133
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1134
|
+
<param pos="0" name="service.component.product" value="mod_lua"/>
|
1135
|
+
<param pos="1" name="service.component.version"/>
|
1136
|
+
</fingerprint>
|
1137
|
+
<fingerprint pattern="mod_lua/?$">
|
1138
|
+
<description>mod_lua without version</description>
|
1139
|
+
<example>mod_lua/</example>
|
1140
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1141
|
+
<param pos="0" name="service.component.product" value="mod_lua"/>
|
1142
|
+
</fingerprint>
|
1143
|
+
<fingerprint pattern="mod_macro/(\S+)$">
|
1144
|
+
<description>mod_macro with version</description>
|
1145
|
+
<example service.component.version="1.2.3">mod_macro/1.2.3</example>
|
1146
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1147
|
+
<param pos="0" name="service.component.product" value="mod_macro"/>
|
1148
|
+
<param pos="1" name="service.component.version"/>
|
1149
|
+
</fingerprint>
|
1150
|
+
<fingerprint pattern="mod_macro/?$">
|
1151
|
+
<description>mod_macro without version</description>
|
1152
|
+
<example>mod_macro/</example>
|
1153
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1154
|
+
<param pos="0" name="service.component.product" value="mod_macro"/>
|
1155
|
+
</fingerprint>
|
1156
|
+
<fingerprint pattern="mod_md/(\S+)$">
|
1157
|
+
<description>mod_md with version</description>
|
1158
|
+
<example service.component.version="1.2.3">mod_md/1.2.3</example>
|
1159
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1160
|
+
<param pos="0" name="service.component.product" value="mod_md"/>
|
1161
|
+
<param pos="1" name="service.component.version"/>
|
1162
|
+
</fingerprint>
|
1163
|
+
<fingerprint pattern="mod_md/?$">
|
1164
|
+
<description>mod_md without version</description>
|
1165
|
+
<example>mod_md/</example>
|
1166
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1167
|
+
<param pos="0" name="service.component.product" value="mod_md"/>
|
1168
|
+
</fingerprint>
|
1169
|
+
<fingerprint pattern="mod_mem_cache/(\S+)$">
|
1170
|
+
<description>mod_mem_cache with version</description>
|
1171
|
+
<example service.component.version="1.2.3">mod_mem_cache/1.2.3</example>
|
1172
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1173
|
+
<param pos="0" name="service.component.product" value="mod_mem_cache"/>
|
1174
|
+
<param pos="1" name="service.component.version"/>
|
1175
|
+
</fingerprint>
|
1176
|
+
<fingerprint pattern="mod_mem_cache/?$">
|
1177
|
+
<description>mod_mem_cache without version</description>
|
1178
|
+
<example>mod_mem_cache/</example>
|
1179
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1180
|
+
<param pos="0" name="service.component.product" value="mod_mem_cache"/>
|
1181
|
+
</fingerprint>
|
1182
|
+
<fingerprint pattern="mod_mime/(\S+)$">
|
1183
|
+
<description>mod_mime with version</description>
|
1184
|
+
<example service.component.version="1.2.3">mod_mime/1.2.3</example>
|
1185
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1186
|
+
<param pos="0" name="service.component.product" value="mod_mime"/>
|
1187
|
+
<param pos="1" name="service.component.version"/>
|
1188
|
+
</fingerprint>
|
1189
|
+
<fingerprint pattern="mod_mime/?$">
|
1190
|
+
<description>mod_mime without version</description>
|
1191
|
+
<example>mod_mime/</example>
|
1192
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1193
|
+
<param pos="0" name="service.component.product" value="mod_mime"/>
|
1194
|
+
</fingerprint>
|
1195
|
+
<fingerprint pattern="mod_mime_magic/(\S+)$">
|
1196
|
+
<description>mod_mime_magic with version</description>
|
1197
|
+
<example service.component.version="1.2.3">mod_mime_magic/1.2.3</example>
|
1198
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1199
|
+
<param pos="0" name="service.component.product" value="mod_mime_magic"/>
|
1200
|
+
<param pos="1" name="service.component.version"/>
|
1201
|
+
</fingerprint>
|
1202
|
+
<fingerprint pattern="mod_mime_magic/?$">
|
1203
|
+
<description>mod_mime_magic without version</description>
|
1204
|
+
<example>mod_mime_magic/</example>
|
1205
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1206
|
+
<param pos="0" name="service.component.product" value="mod_mime_magic"/>
|
1207
|
+
</fingerprint>
|
1208
|
+
<fingerprint pattern="mod_negotiation/(\S+)$">
|
1209
|
+
<description>mod_negotiation with version</description>
|
1210
|
+
<example service.component.version="1.2.3">mod_negotiation/1.2.3</example>
|
1211
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1212
|
+
<param pos="0" name="service.component.product" value="mod_negotiation"/>
|
1213
|
+
<param pos="1" name="service.component.version"/>
|
1214
|
+
</fingerprint>
|
1215
|
+
<fingerprint pattern="mod_negotiation/?$">
|
1216
|
+
<description>mod_negotiation without version</description>
|
1217
|
+
<example>mod_negotiation/</example>
|
1218
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1219
|
+
<param pos="0" name="service.component.product" value="mod_negotiation"/>
|
1220
|
+
</fingerprint>
|
1221
|
+
<fingerprint pattern="mod_nw_ssl/(\S+)$">
|
1222
|
+
<description>mod_nw_ssl with version</description>
|
1223
|
+
<example service.component.version="1.2.3">mod_nw_ssl/1.2.3</example>
|
1224
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1225
|
+
<param pos="0" name="service.component.product" value="mod_nw_ssl"/>
|
1226
|
+
<param pos="1" name="service.component.version"/>
|
1227
|
+
</fingerprint>
|
1228
|
+
<fingerprint pattern="mod_nw_ssl/?$">
|
1229
|
+
<description>mod_nw_ssl without version</description>
|
1230
|
+
<example>mod_nw_ssl/</example>
|
1231
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1232
|
+
<param pos="0" name="service.component.product" value="mod_nw_ssl"/>
|
1233
|
+
</fingerprint>
|
1234
|
+
<fingerprint pattern="mod_perl/(\S+)$">
|
1235
|
+
<description>mod_perl with version</description>
|
1236
|
+
<example service.component.version="1.2.3">mod_perl/1.2.3</example>
|
1237
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1238
|
+
<param pos="0" name="service.component.product" value="mod_perl"/>
|
1239
|
+
<param pos="1" name="service.component.version"/>
|
1240
|
+
<param pos="0" name="service.component.cpe23" value="cpe:/a:apache:mod_perl:{service.component.version}"/>
|
1241
|
+
</fingerprint>
|
1242
|
+
<fingerprint pattern="mod_perl/?$">
|
1243
|
+
<description>mod_perl without version</description>
|
1244
|
+
<example>mod_perl/</example>
|
1245
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1246
|
+
<param pos="0" name="service.component.product" value="mod_perl"/>
|
1247
|
+
<param pos="0" name="service.component.cpe23" value="cpe:/a:apache:mod_perl:-"/>
|
1248
|
+
</fingerprint>
|
1249
|
+
<fingerprint pattern="mod_privileges/(\S+)$">
|
1250
|
+
<description>mod_privileges with version</description>
|
1251
|
+
<example service.component.version="1.2.3">mod_privileges/1.2.3</example>
|
1252
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1253
|
+
<param pos="0" name="service.component.product" value="mod_privileges"/>
|
1254
|
+
<param pos="1" name="service.component.version"/>
|
1255
|
+
</fingerprint>
|
1256
|
+
<fingerprint pattern="mod_privileges/?$">
|
1257
|
+
<description>mod_privileges without version</description>
|
1258
|
+
<example>mod_privileges/</example>
|
1259
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1260
|
+
<param pos="0" name="service.component.product" value="mod_privileges"/>
|
1261
|
+
</fingerprint>
|
1262
|
+
<fingerprint pattern="mod_proxy/(\S+)$">
|
1263
|
+
<description>mod_proxy with version</description>
|
1264
|
+
<example service.component.version="1.2.3">mod_proxy/1.2.3</example>
|
1265
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1266
|
+
<param pos="0" name="service.component.product" value="mod_proxy"/>
|
1267
|
+
<param pos="1" name="service.component.version"/>
|
1268
|
+
</fingerprint>
|
1269
|
+
<fingerprint pattern="mod_proxy/?$">
|
1270
|
+
<description>mod_proxy without version</description>
|
1271
|
+
<example>mod_proxy/</example>
|
1272
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1273
|
+
<param pos="0" name="service.component.product" value="mod_proxy"/>
|
1274
|
+
</fingerprint>
|
1275
|
+
<fingerprint pattern="mod_proxy_ajp/(\S+)$">
|
1276
|
+
<description>mod_proxy_ajp with version</description>
|
1277
|
+
<example service.component.version="1.2.3">mod_proxy_ajp/1.2.3</example>
|
1278
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1279
|
+
<param pos="0" name="service.component.product" value="mod_proxy_ajp"/>
|
1280
|
+
<param pos="1" name="service.component.version"/>
|
1281
|
+
</fingerprint>
|
1282
|
+
<fingerprint pattern="mod_proxy_ajp/?$">
|
1283
|
+
<description>mod_proxy_ajp without version</description>
|
1284
|
+
<example>mod_proxy_ajp/</example>
|
1285
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1286
|
+
<param pos="0" name="service.component.product" value="mod_proxy_ajp"/>
|
1287
|
+
</fingerprint>
|
1288
|
+
<fingerprint pattern="mod_proxy_balancer/(\S+)$">
|
1289
|
+
<description>mod_proxy_balancer with version</description>
|
1290
|
+
<example service.component.version="1.2.3">mod_proxy_balancer/1.2.3</example>
|
1291
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1292
|
+
<param pos="0" name="service.component.product" value="mod_proxy_balancer"/>
|
1293
|
+
<param pos="1" name="service.component.version"/>
|
1294
|
+
</fingerprint>
|
1295
|
+
<fingerprint pattern="mod_proxy_balancer/?$">
|
1296
|
+
<description>mod_proxy_balancer without version</description>
|
1297
|
+
<example>mod_proxy_balancer/</example>
|
1298
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1299
|
+
<param pos="0" name="service.component.product" value="mod_proxy_balancer"/>
|
1300
|
+
</fingerprint>
|
1301
|
+
<fingerprint pattern="mod_proxy_connect/(\S+)$">
|
1302
|
+
<description>mod_proxy_connect with version</description>
|
1303
|
+
<example service.component.version="1.2.3">mod_proxy_connect/1.2.3</example>
|
1304
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1305
|
+
<param pos="0" name="service.component.product" value="mod_proxy_connect"/>
|
1306
|
+
<param pos="1" name="service.component.version"/>
|
1307
|
+
</fingerprint>
|
1308
|
+
<fingerprint pattern="mod_proxy_connect/?$">
|
1309
|
+
<description>mod_proxy_connect without version</description>
|
1310
|
+
<example>mod_proxy_connect/</example>
|
1311
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1312
|
+
<param pos="0" name="service.component.product" value="mod_proxy_connect"/>
|
1313
|
+
</fingerprint>
|
1314
|
+
<fingerprint pattern="mod_proxy_express/(\S+)$">
|
1315
|
+
<description>mod_proxy_express with version</description>
|
1316
|
+
<example service.component.version="1.2.3">mod_proxy_express/1.2.3</example>
|
1317
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1318
|
+
<param pos="0" name="service.component.product" value="mod_proxy_express"/>
|
1319
|
+
<param pos="1" name="service.component.version"/>
|
1320
|
+
</fingerprint>
|
1321
|
+
<fingerprint pattern="mod_proxy_express/?$">
|
1322
|
+
<description>mod_proxy_express without version</description>
|
1323
|
+
<example>mod_proxy_express/</example>
|
1324
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1325
|
+
<param pos="0" name="service.component.product" value="mod_proxy_express"/>
|
1326
|
+
</fingerprint>
|
1327
|
+
<fingerprint pattern="mod_proxy_fcgi/(\S+)$">
|
1328
|
+
<description>mod_proxy_fcgi with version</description>
|
1329
|
+
<example service.component.version="1.2.3">mod_proxy_fcgi/1.2.3</example>
|
1330
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1331
|
+
<param pos="0" name="service.component.product" value="mod_proxy_fcgi"/>
|
1332
|
+
<param pos="1" name="service.component.version"/>
|
1333
|
+
</fingerprint>
|
1334
|
+
<fingerprint pattern="mod_proxy_fcgi/?$">
|
1335
|
+
<description>mod_proxy_fcgi without version</description>
|
1336
|
+
<example>mod_proxy_fcgi/</example>
|
1337
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1338
|
+
<param pos="0" name="service.component.product" value="mod_proxy_fcgi"/>
|
1339
|
+
</fingerprint>
|
1340
|
+
<fingerprint pattern="mod_proxy_fdpass/(\S+)$">
|
1341
|
+
<description>mod_proxy_fdpass with version</description>
|
1342
|
+
<example service.component.version="1.2.3">mod_proxy_fdpass/1.2.3</example>
|
1343
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1344
|
+
<param pos="0" name="service.component.product" value="mod_proxy_fdpass"/>
|
1345
|
+
<param pos="1" name="service.component.version"/>
|
1346
|
+
</fingerprint>
|
1347
|
+
<fingerprint pattern="mod_proxy_fdpass/?$">
|
1348
|
+
<description>mod_proxy_fdpass without version</description>
|
1349
|
+
<example>mod_proxy_fdpass/</example>
|
1350
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1351
|
+
<param pos="0" name="service.component.product" value="mod_proxy_fdpass"/>
|
1352
|
+
</fingerprint>
|
1353
|
+
<fingerprint pattern="mod_proxy_ftp/(\S+)$">
|
1354
|
+
<description>mod_proxy_ftp with version</description>
|
1355
|
+
<example service.component.version="1.2.3">mod_proxy_ftp/1.2.3</example>
|
1356
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1357
|
+
<param pos="0" name="service.component.product" value="mod_proxy_ftp"/>
|
1358
|
+
<param pos="1" name="service.component.version"/>
|
1359
|
+
</fingerprint>
|
1360
|
+
<fingerprint pattern="mod_proxy_ftp/?$">
|
1361
|
+
<description>mod_proxy_ftp without version</description>
|
1362
|
+
<example>mod_proxy_ftp/</example>
|
1363
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1364
|
+
<param pos="0" name="service.component.product" value="mod_proxy_ftp"/>
|
1365
|
+
</fingerprint>
|
1366
|
+
<fingerprint pattern="mod_proxy_hcheck/(\S+)$">
|
1367
|
+
<description>mod_proxy_hcheck with version</description>
|
1368
|
+
<example service.component.version="1.2.3">mod_proxy_hcheck/1.2.3</example>
|
1369
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1370
|
+
<param pos="0" name="service.component.product" value="mod_proxy_hcheck"/>
|
1371
|
+
<param pos="1" name="service.component.version"/>
|
1372
|
+
</fingerprint>
|
1373
|
+
<fingerprint pattern="mod_proxy_hcheck/?$">
|
1374
|
+
<description>mod_proxy_hcheck without version</description>
|
1375
|
+
<example>mod_proxy_hcheck/</example>
|
1376
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1377
|
+
<param pos="0" name="service.component.product" value="mod_proxy_hcheck"/>
|
1378
|
+
</fingerprint>
|
1379
|
+
<fingerprint pattern="mod_proxy_html/(\S+)$">
|
1380
|
+
<description>mod_proxy_html with version</description>
|
1381
|
+
<example service.component.version="1.2.3">mod_proxy_html/1.2.3</example>
|
1382
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1383
|
+
<param pos="0" name="service.component.product" value="mod_proxy_html"/>
|
1384
|
+
<param pos="1" name="service.component.version"/>
|
1385
|
+
</fingerprint>
|
1386
|
+
<fingerprint pattern="mod_proxy_html/?$">
|
1387
|
+
<description>mod_proxy_html without version</description>
|
1388
|
+
<example>mod_proxy_html/</example>
|
1389
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1390
|
+
<param pos="0" name="service.component.product" value="mod_proxy_html"/>
|
1391
|
+
</fingerprint>
|
1392
|
+
<fingerprint pattern="mod_proxy_http/(\S+)$">
|
1393
|
+
<description>mod_proxy_http with version</description>
|
1394
|
+
<example service.component.version="1.2.3">mod_proxy_http/1.2.3</example>
|
1395
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1396
|
+
<param pos="0" name="service.component.product" value="mod_proxy_http"/>
|
1397
|
+
<param pos="1" name="service.component.version"/>
|
1398
|
+
</fingerprint>
|
1399
|
+
<fingerprint pattern="mod_proxy_http/?$">
|
1400
|
+
<description>mod_proxy_http without version</description>
|
1401
|
+
<example>mod_proxy_http/</example>
|
1402
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1403
|
+
<param pos="0" name="service.component.product" value="mod_proxy_http"/>
|
1404
|
+
</fingerprint>
|
1405
|
+
<fingerprint pattern="mod_proxy_http2/(\S+)$">
|
1406
|
+
<description>mod_proxy_http2 with version</description>
|
1407
|
+
<example service.component.version="1.2.3">mod_proxy_http2/1.2.3</example>
|
1408
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1409
|
+
<param pos="0" name="service.component.product" value="mod_proxy_http2"/>
|
1410
|
+
<param pos="1" name="service.component.version"/>
|
1411
|
+
</fingerprint>
|
1412
|
+
<fingerprint pattern="mod_proxy_http2/?$">
|
1413
|
+
<description>mod_proxy_http2 without version</description>
|
1414
|
+
<example>mod_proxy_http2/</example>
|
1415
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1416
|
+
<param pos="0" name="service.component.product" value="mod_proxy_http2"/>
|
1417
|
+
</fingerprint>
|
1418
|
+
<fingerprint pattern="mod_proxy_scgi/(\S+)$">
|
1419
|
+
<description>mod_proxy_scgi with version</description>
|
1420
|
+
<example service.component.version="1.2.3">mod_proxy_scgi/1.2.3</example>
|
1421
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1422
|
+
<param pos="0" name="service.component.product" value="mod_proxy_scgi"/>
|
1423
|
+
<param pos="1" name="service.component.version"/>
|
1424
|
+
</fingerprint>
|
1425
|
+
<fingerprint pattern="mod_proxy_scgi/?$">
|
1426
|
+
<description>mod_proxy_scgi without version</description>
|
1427
|
+
<example>mod_proxy_scgi/</example>
|
1428
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1429
|
+
<param pos="0" name="service.component.product" value="mod_proxy_scgi"/>
|
1430
|
+
</fingerprint>
|
1431
|
+
<fingerprint pattern="mod_proxy_uwsgi/(\S+)$">
|
1432
|
+
<description>mod_proxy_uwsgi with version</description>
|
1433
|
+
<example service.component.version="1.2.3">mod_proxy_uwsgi/1.2.3</example>
|
1434
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1435
|
+
<param pos="0" name="service.component.product" value="mod_proxy_uwsgi"/>
|
1436
|
+
<param pos="1" name="service.component.version"/>
|
1437
|
+
</fingerprint>
|
1438
|
+
<fingerprint pattern="mod_proxy_uwsgi/?$">
|
1439
|
+
<description>mod_proxy_uwsgi without version</description>
|
1440
|
+
<example>mod_proxy_uwsgi/</example>
|
1441
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1442
|
+
<param pos="0" name="service.component.product" value="mod_proxy_uwsgi"/>
|
1443
|
+
</fingerprint>
|
1444
|
+
<fingerprint pattern="mod_proxy_wstunnel/(\S+)$">
|
1445
|
+
<description>mod_proxy_wstunnel with version</description>
|
1446
|
+
<example service.component.version="1.2.3">mod_proxy_wstunnel/1.2.3</example>
|
1447
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1448
|
+
<param pos="0" name="service.component.product" value="mod_proxy_wstunnel"/>
|
1449
|
+
<param pos="1" name="service.component.version"/>
|
1450
|
+
</fingerprint>
|
1451
|
+
<fingerprint pattern="mod_proxy_wstunnel/?$">
|
1452
|
+
<description>mod_proxy_wstunnel without version</description>
|
1453
|
+
<example>mod_proxy_wstunnel/</example>
|
1454
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1455
|
+
<param pos="0" name="service.component.product" value="mod_proxy_wstunnel"/>
|
1456
|
+
</fingerprint>
|
1457
|
+
<fingerprint pattern="mod_python/(\S+)$">
|
1458
|
+
<description>mod_python with version</description>
|
1459
|
+
<example service.component.version="1.2.3">mod_python/1.2.3</example>
|
1460
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1461
|
+
<param pos="0" name="service.component.product" value="mod_python"/>
|
1462
|
+
<param pos="1" name="service.component.version"/>
|
1463
|
+
<param pos="0" name="service.component.cpe23" value="cpe:/a:apache:mod_python:{service.component.version}"/>
|
1464
|
+
</fingerprint>
|
1465
|
+
<fingerprint pattern="mod_python/?$">
|
1466
|
+
<description>mod_python without version</description>
|
1467
|
+
<example>mod_python/</example>
|
1468
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1469
|
+
<param pos="0" name="service.component.product" value="mod_python"/>
|
1470
|
+
<param pos="0" name="service.component.cpe23" value="cpe:/a:apache:mod_python:-"/>
|
1471
|
+
</fingerprint>
|
1472
|
+
<fingerprint pattern="mod_ratelimit/(\S+)$">
|
1473
|
+
<description>mod_ratelimit with version</description>
|
1474
|
+
<example service.component.version="1.2.3">mod_ratelimit/1.2.3</example>
|
1475
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1476
|
+
<param pos="0" name="service.component.product" value="mod_ratelimit"/>
|
1477
|
+
<param pos="1" name="service.component.version"/>
|
1478
|
+
</fingerprint>
|
1479
|
+
<fingerprint pattern="mod_ratelimit/?$">
|
1480
|
+
<description>mod_ratelimit without version</description>
|
1481
|
+
<example>mod_ratelimit/</example>
|
1482
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1483
|
+
<param pos="0" name="service.component.product" value="mod_ratelimit"/>
|
1484
|
+
</fingerprint>
|
1485
|
+
<fingerprint pattern="mod_reflector/(\S+)$">
|
1486
|
+
<description>mod_reflector with version</description>
|
1487
|
+
<example service.component.version="1.2.3">mod_reflector/1.2.3</example>
|
1488
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1489
|
+
<param pos="0" name="service.component.product" value="mod_reflector"/>
|
1490
|
+
<param pos="1" name="service.component.version"/>
|
1491
|
+
</fingerprint>
|
1492
|
+
<fingerprint pattern="mod_reflector/?$">
|
1493
|
+
<description>mod_reflector without version</description>
|
1494
|
+
<example>mod_reflector/</example>
|
1495
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1496
|
+
<param pos="0" name="service.component.product" value="mod_reflector"/>
|
1497
|
+
</fingerprint>
|
1498
|
+
<fingerprint pattern="mod_remoteip/(\S+)$">
|
1499
|
+
<description>mod_remoteip with version</description>
|
1500
|
+
<example service.component.version="1.2.3">mod_remoteip/1.2.3</example>
|
1501
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1502
|
+
<param pos="0" name="service.component.product" value="mod_remoteip"/>
|
1503
|
+
<param pos="1" name="service.component.version"/>
|
1504
|
+
</fingerprint>
|
1505
|
+
<fingerprint pattern="mod_remoteip/?$">
|
1506
|
+
<description>mod_remoteip without version</description>
|
1507
|
+
<example>mod_remoteip/</example>
|
1508
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1509
|
+
<param pos="0" name="service.component.product" value="mod_remoteip"/>
|
1510
|
+
</fingerprint>
|
1511
|
+
<fingerprint pattern="mod_reqtimeout/(\S+)$">
|
1512
|
+
<description>mod_reqtimeout with version</description>
|
1513
|
+
<example service.component.version="1.2.3">mod_reqtimeout/1.2.3</example>
|
1514
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1515
|
+
<param pos="0" name="service.component.product" value="mod_reqtimeout"/>
|
1516
|
+
<param pos="1" name="service.component.version"/>
|
1517
|
+
</fingerprint>
|
1518
|
+
<fingerprint pattern="mod_reqtimeout/?$">
|
1519
|
+
<description>mod_reqtimeout without version</description>
|
1520
|
+
<example>mod_reqtimeout/</example>
|
1521
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1522
|
+
<param pos="0" name="service.component.product" value="mod_reqtimeout"/>
|
1523
|
+
</fingerprint>
|
1524
|
+
<fingerprint pattern="mod_request/(\S+)$">
|
1525
|
+
<description>mod_request with version</description>
|
1526
|
+
<example service.component.version="1.2.3">mod_request/1.2.3</example>
|
1527
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1528
|
+
<param pos="0" name="service.component.product" value="mod_request"/>
|
1529
|
+
<param pos="1" name="service.component.version"/>
|
1530
|
+
</fingerprint>
|
1531
|
+
<fingerprint pattern="mod_request/?$">
|
1532
|
+
<description>mod_request without version</description>
|
1533
|
+
<example>mod_request/</example>
|
1534
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1535
|
+
<param pos="0" name="service.component.product" value="mod_request"/>
|
1536
|
+
</fingerprint>
|
1537
|
+
<fingerprint pattern="mod_rewrite/(\S+)$">
|
1538
|
+
<description>mod_rewrite with version</description>
|
1539
|
+
<example service.component.version="1.2.3">mod_rewrite/1.2.3</example>
|
1540
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1541
|
+
<param pos="0" name="service.component.product" value="mod_rewrite"/>
|
1542
|
+
<param pos="1" name="service.component.version"/>
|
1543
|
+
</fingerprint>
|
1544
|
+
<fingerprint pattern="mod_rewrite/?$">
|
1545
|
+
<description>mod_rewrite without version</description>
|
1546
|
+
<example>mod_rewrite/</example>
|
1547
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1548
|
+
<param pos="0" name="service.component.product" value="mod_rewrite"/>
|
1549
|
+
</fingerprint>
|
1550
|
+
<fingerprint pattern="mod_sed/(\S+)$">
|
1551
|
+
<description>mod_sed with version</description>
|
1552
|
+
<example service.component.version="1.2.3">mod_sed/1.2.3</example>
|
1553
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1554
|
+
<param pos="0" name="service.component.product" value="mod_sed"/>
|
1555
|
+
<param pos="1" name="service.component.version"/>
|
1556
|
+
</fingerprint>
|
1557
|
+
<fingerprint pattern="mod_sed/?$">
|
1558
|
+
<description>mod_sed without version</description>
|
1559
|
+
<example>mod_sed/</example>
|
1560
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1561
|
+
<param pos="0" name="service.component.product" value="mod_sed"/>
|
1562
|
+
</fingerprint>
|
1563
|
+
<fingerprint pattern="mod_session/(\S+)$">
|
1564
|
+
<description>mod_session with version</description>
|
1565
|
+
<example service.component.version="1.2.3">mod_session/1.2.3</example>
|
1566
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1567
|
+
<param pos="0" name="service.component.product" value="mod_session"/>
|
1568
|
+
<param pos="1" name="service.component.version"/>
|
1569
|
+
</fingerprint>
|
1570
|
+
<fingerprint pattern="mod_session/?$">
|
1571
|
+
<description>mod_session without version</description>
|
1572
|
+
<example>mod_session/</example>
|
1573
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1574
|
+
<param pos="0" name="service.component.product" value="mod_session"/>
|
1575
|
+
</fingerprint>
|
1576
|
+
<fingerprint pattern="mod_session_cookie/(\S+)$">
|
1577
|
+
<description>mod_session_cookie with version</description>
|
1578
|
+
<example service.component.version="1.2.3">mod_session_cookie/1.2.3</example>
|
1579
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1580
|
+
<param pos="0" name="service.component.product" value="mod_session_cookie"/>
|
1581
|
+
<param pos="1" name="service.component.version"/>
|
1582
|
+
</fingerprint>
|
1583
|
+
<fingerprint pattern="mod_session_cookie/?$">
|
1584
|
+
<description>mod_session_cookie without version</description>
|
1585
|
+
<example>mod_session_cookie/</example>
|
1586
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1587
|
+
<param pos="0" name="service.component.product" value="mod_session_cookie"/>
|
1588
|
+
</fingerprint>
|
1589
|
+
<fingerprint pattern="mod_session_crypto/(\S+)$">
|
1590
|
+
<description>mod_session_crypto with version</description>
|
1591
|
+
<example service.component.version="1.2.3">mod_session_crypto/1.2.3</example>
|
1592
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1593
|
+
<param pos="0" name="service.component.product" value="mod_session_crypto"/>
|
1594
|
+
<param pos="1" name="service.component.version"/>
|
1595
|
+
</fingerprint>
|
1596
|
+
<fingerprint pattern="mod_session_crypto/?$">
|
1597
|
+
<description>mod_session_crypto without version</description>
|
1598
|
+
<example>mod_session_crypto/</example>
|
1599
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1600
|
+
<param pos="0" name="service.component.product" value="mod_session_crypto"/>
|
1601
|
+
</fingerprint>
|
1602
|
+
<fingerprint pattern="mod_session_dbd/(\S+)$">
|
1603
|
+
<description>mod_session_dbd with version</description>
|
1604
|
+
<example service.component.version="1.2.3">mod_session_dbd/1.2.3</example>
|
1605
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1606
|
+
<param pos="0" name="service.component.product" value="mod_session_dbd"/>
|
1607
|
+
<param pos="1" name="service.component.version"/>
|
1608
|
+
</fingerprint>
|
1609
|
+
<fingerprint pattern="mod_session_dbd/?$">
|
1610
|
+
<description>mod_session_dbd without version</description>
|
1611
|
+
<example>mod_session_dbd/</example>
|
1612
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1613
|
+
<param pos="0" name="service.component.product" value="mod_session_dbd"/>
|
1614
|
+
</fingerprint>
|
1615
|
+
<fingerprint pattern="mod_setenvif/(\S+)$">
|
1616
|
+
<description>mod_setenvif with version</description>
|
1617
|
+
<example service.component.version="1.2.3">mod_setenvif/1.2.3</example>
|
1618
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1619
|
+
<param pos="0" name="service.component.product" value="mod_setenvif"/>
|
1620
|
+
<param pos="1" name="service.component.version"/>
|
1621
|
+
</fingerprint>
|
1622
|
+
<fingerprint pattern="mod_setenvif/?$">
|
1623
|
+
<description>mod_setenvif without version</description>
|
1624
|
+
<example>mod_setenvif/</example>
|
1625
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1626
|
+
<param pos="0" name="service.component.product" value="mod_setenvif"/>
|
1627
|
+
</fingerprint>
|
1628
|
+
<fingerprint pattern="mod_slotmem_plain/(\S+)$">
|
1629
|
+
<description>mod_slotmem_plain with version</description>
|
1630
|
+
<example service.component.version="1.2.3">mod_slotmem_plain/1.2.3</example>
|
1631
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1632
|
+
<param pos="0" name="service.component.product" value="mod_slotmem_plain"/>
|
1633
|
+
<param pos="1" name="service.component.version"/>
|
1634
|
+
</fingerprint>
|
1635
|
+
<fingerprint pattern="mod_slotmem_plain/?$">
|
1636
|
+
<description>mod_slotmem_plain without version</description>
|
1637
|
+
<example>mod_slotmem_plain/</example>
|
1638
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1639
|
+
<param pos="0" name="service.component.product" value="mod_slotmem_plain"/>
|
1640
|
+
</fingerprint>
|
1641
|
+
<fingerprint pattern="mod_slotmem_shm/(\S+)$">
|
1642
|
+
<description>mod_slotmem_shm with version</description>
|
1643
|
+
<example service.component.version="1.2.3">mod_slotmem_shm/1.2.3</example>
|
1644
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1645
|
+
<param pos="0" name="service.component.product" value="mod_slotmem_shm"/>
|
1646
|
+
<param pos="1" name="service.component.version"/>
|
1647
|
+
</fingerprint>
|
1648
|
+
<fingerprint pattern="mod_slotmem_shm/?$">
|
1649
|
+
<description>mod_slotmem_shm without version</description>
|
1650
|
+
<example>mod_slotmem_shm/</example>
|
1651
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1652
|
+
<param pos="0" name="service.component.product" value="mod_slotmem_shm"/>
|
1653
|
+
</fingerprint>
|
1654
|
+
<fingerprint pattern="mod_so/(\S+)$">
|
1655
|
+
<description>mod_so with version</description>
|
1656
|
+
<example service.component.version="1.2.3">mod_so/1.2.3</example>
|
1657
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1658
|
+
<param pos="0" name="service.component.product" value="mod_so"/>
|
1659
|
+
<param pos="1" name="service.component.version"/>
|
1660
|
+
</fingerprint>
|
1661
|
+
<fingerprint pattern="mod_so/?$">
|
1662
|
+
<description>mod_so without version</description>
|
1663
|
+
<example>mod_so/</example>
|
1664
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1665
|
+
<param pos="0" name="service.component.product" value="mod_so"/>
|
1666
|
+
</fingerprint>
|
1667
|
+
<fingerprint pattern="mod_socache_dbm/(\S+)$">
|
1668
|
+
<description>mod_socache_dbm with version</description>
|
1669
|
+
<example service.component.version="1.2.3">mod_socache_dbm/1.2.3</example>
|
1670
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1671
|
+
<param pos="0" name="service.component.product" value="mod_socache_dbm"/>
|
1672
|
+
<param pos="1" name="service.component.version"/>
|
1673
|
+
</fingerprint>
|
1674
|
+
<fingerprint pattern="mod_socache_dbm/?$">
|
1675
|
+
<description>mod_socache_dbm without version</description>
|
1676
|
+
<example>mod_socache_dbm/</example>
|
1677
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1678
|
+
<param pos="0" name="service.component.product" value="mod_socache_dbm"/>
|
1679
|
+
</fingerprint>
|
1680
|
+
<fingerprint pattern="mod_socache_dc/(\S+)$">
|
1681
|
+
<description>mod_socache_dc with version</description>
|
1682
|
+
<example service.component.version="1.2.3">mod_socache_dc/1.2.3</example>
|
1683
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1684
|
+
<param pos="0" name="service.component.product" value="mod_socache_dc"/>
|
1685
|
+
<param pos="1" name="service.component.version"/>
|
1686
|
+
</fingerprint>
|
1687
|
+
<fingerprint pattern="mod_socache_dc/?$">
|
1688
|
+
<description>mod_socache_dc without version</description>
|
1689
|
+
<example>mod_socache_dc/</example>
|
1690
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1691
|
+
<param pos="0" name="service.component.product" value="mod_socache_dc"/>
|
1692
|
+
</fingerprint>
|
1693
|
+
<fingerprint pattern="mod_socache_memcache/(\S+)$">
|
1694
|
+
<description>mod_socache_memcache with version</description>
|
1695
|
+
<example service.component.version="1.2.3">mod_socache_memcache/1.2.3</example>
|
1696
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1697
|
+
<param pos="0" name="service.component.product" value="mod_socache_memcache"/>
|
1698
|
+
<param pos="1" name="service.component.version"/>
|
1699
|
+
</fingerprint>
|
1700
|
+
<fingerprint pattern="mod_socache_memcache/?$">
|
1701
|
+
<description>mod_socache_memcache without version</description>
|
1702
|
+
<example>mod_socache_memcache/</example>
|
1703
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1704
|
+
<param pos="0" name="service.component.product" value="mod_socache_memcache"/>
|
1705
|
+
</fingerprint>
|
1706
|
+
<fingerprint pattern="mod_socache_shmcb/(\S+)$">
|
1707
|
+
<description>mod_socache_shmcb with version</description>
|
1708
|
+
<example service.component.version="1.2.3">mod_socache_shmcb/1.2.3</example>
|
1709
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1710
|
+
<param pos="0" name="service.component.product" value="mod_socache_shmcb"/>
|
1711
|
+
<param pos="1" name="service.component.version"/>
|
1712
|
+
</fingerprint>
|
1713
|
+
<fingerprint pattern="mod_socache_shmcb/?$">
|
1714
|
+
<description>mod_socache_shmcb without version</description>
|
1715
|
+
<example>mod_socache_shmcb/</example>
|
1716
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1717
|
+
<param pos="0" name="service.component.product" value="mod_socache_shmcb"/>
|
1718
|
+
</fingerprint>
|
1719
|
+
<fingerprint pattern="mod_speling/(\S+)$">
|
1720
|
+
<description>mod_speling with version</description>
|
1721
|
+
<example service.component.version="1.2.3">mod_speling/1.2.3</example>
|
1722
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1723
|
+
<param pos="0" name="service.component.product" value="mod_speling"/>
|
1724
|
+
<param pos="1" name="service.component.version"/>
|
1725
|
+
</fingerprint>
|
1726
|
+
<fingerprint pattern="mod_speling/?$">
|
1727
|
+
<description>mod_speling without version</description>
|
1728
|
+
<example>mod_speling/</example>
|
1729
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1730
|
+
<param pos="0" name="service.component.product" value="mod_speling"/>
|
1731
|
+
</fingerprint>
|
1732
|
+
<fingerprint pattern="mod_ssl/(\S+)$">
|
1733
|
+
<description>mod_ssl with version</description>
|
1734
|
+
<example service.component.version="1.2.3">mod_ssl/1.2.3</example>
|
1735
|
+
<param pos="0" name="service.component.vendor" value="mod_ssl"/>
|
1736
|
+
<param pos="0" name="service.component.product" value="mod_ssl"/>
|
1737
|
+
<param pos="1" name="service.component.version"/>
|
1738
|
+
<param pos="0" name="service.component.cpe23" value="cpe:/a:modssl:mod_ssl:{service.component.version}"/>
|
1739
|
+
</fingerprint>
|
1740
|
+
<fingerprint pattern="mod_ssl/?$">
|
1741
|
+
<description>mod_ssl without version</description>
|
1742
|
+
<example>mod_ssl/</example>
|
1743
|
+
<param pos="0" name="service.component.vendor" value="mod_ssl"/>
|
1744
|
+
<param pos="0" name="service.component.product" value="mod_ssl"/>
|
1745
|
+
<param pos="0" name="service.component.cpe23" value="cpe:/a:modssl:mod_ssl:-"/>
|
1746
|
+
</fingerprint>
|
1747
|
+
<fingerprint pattern="mod_status/(\S+)$">
|
1748
|
+
<description>mod_status with version</description>
|
1749
|
+
<example service.component.version="1.2.3">mod_status/1.2.3</example>
|
1750
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1751
|
+
<param pos="0" name="service.component.product" value="mod_status"/>
|
1752
|
+
<param pos="1" name="service.component.version"/>
|
1753
|
+
</fingerprint>
|
1754
|
+
<fingerprint pattern="mod_status/?$">
|
1755
|
+
<description>mod_status without version</description>
|
1756
|
+
<example>mod_status/</example>
|
1757
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1758
|
+
<param pos="0" name="service.component.product" value="mod_status"/>
|
1759
|
+
</fingerprint>
|
1760
|
+
<fingerprint pattern="mod_substitute/(\S+)$">
|
1761
|
+
<description>mod_substitute with version</description>
|
1762
|
+
<example service.component.version="1.2.3">mod_substitute/1.2.3</example>
|
1763
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1764
|
+
<param pos="0" name="service.component.product" value="mod_substitute"/>
|
1765
|
+
<param pos="1" name="service.component.version"/>
|
1766
|
+
</fingerprint>
|
1767
|
+
<fingerprint pattern="mod_substitute/?$">
|
1768
|
+
<description>mod_substitute without version</description>
|
1769
|
+
<example>mod_substitute/</example>
|
1770
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1771
|
+
<param pos="0" name="service.component.product" value="mod_substitute"/>
|
1772
|
+
</fingerprint>
|
1773
|
+
<fingerprint pattern="mod_suexec/(\S+)$">
|
1774
|
+
<description>mod_suexec with version</description>
|
1775
|
+
<example service.component.version="1.2.3">mod_suexec/1.2.3</example>
|
1776
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1777
|
+
<param pos="0" name="service.component.product" value="mod_suexec"/>
|
1778
|
+
<param pos="1" name="service.component.version"/>
|
1779
|
+
</fingerprint>
|
1780
|
+
<fingerprint pattern="mod_suexec/?$">
|
1781
|
+
<description>mod_suexec without version</description>
|
1782
|
+
<example>mod_suexec/</example>
|
1783
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1784
|
+
<param pos="0" name="service.component.product" value="mod_suexec"/>
|
1785
|
+
</fingerprint>
|
1786
|
+
<fingerprint pattern="mod_unique_id/(\S+)$">
|
1787
|
+
<description>mod_unique_id with version</description>
|
1788
|
+
<example service.component.version="1.2.3">mod_unique_id/1.2.3</example>
|
1789
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1790
|
+
<param pos="0" name="service.component.product" value="mod_unique_id"/>
|
1791
|
+
<param pos="1" name="service.component.version"/>
|
1792
|
+
</fingerprint>
|
1793
|
+
<fingerprint pattern="mod_unique_id/?$">
|
1794
|
+
<description>mod_unique_id without version</description>
|
1795
|
+
<example>mod_unique_id/</example>
|
1796
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1797
|
+
<param pos="0" name="service.component.product" value="mod_unique_id"/>
|
1798
|
+
</fingerprint>
|
1799
|
+
<fingerprint pattern="mod_unixd/(\S+)$">
|
1800
|
+
<description>mod_unixd with version</description>
|
1801
|
+
<example service.component.version="1.2.3">mod_unixd/1.2.3</example>
|
1802
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1803
|
+
<param pos="0" name="service.component.product" value="mod_unixd"/>
|
1804
|
+
<param pos="1" name="service.component.version"/>
|
1805
|
+
</fingerprint>
|
1806
|
+
<fingerprint pattern="mod_unixd/?$">
|
1807
|
+
<description>mod_unixd without version</description>
|
1808
|
+
<example>mod_unixd/</example>
|
1809
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1810
|
+
<param pos="0" name="service.component.product" value="mod_unixd"/>
|
1811
|
+
</fingerprint>
|
1812
|
+
<fingerprint pattern="mod_userdir/(\S+)$">
|
1813
|
+
<description>mod_userdir with version</description>
|
1814
|
+
<example service.component.version="1.2.3">mod_userdir/1.2.3</example>
|
1815
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1816
|
+
<param pos="0" name="service.component.product" value="mod_userdir"/>
|
1817
|
+
<param pos="1" name="service.component.version"/>
|
1818
|
+
</fingerprint>
|
1819
|
+
<fingerprint pattern="mod_userdir/?$">
|
1820
|
+
<description>mod_userdir without version</description>
|
1821
|
+
<example>mod_userdir/</example>
|
1822
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1823
|
+
<param pos="0" name="service.component.product" value="mod_userdir"/>
|
1824
|
+
</fingerprint>
|
1825
|
+
<fingerprint pattern="mod_usertrack/(\S+)$">
|
1826
|
+
<description>mod_usertrack with version</description>
|
1827
|
+
<example service.component.version="1.2.3">mod_usertrack/1.2.3</example>
|
1828
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1829
|
+
<param pos="0" name="service.component.product" value="mod_usertrack"/>
|
1830
|
+
<param pos="1" name="service.component.version"/>
|
1831
|
+
</fingerprint>
|
1832
|
+
<fingerprint pattern="mod_usertrack/?$">
|
1833
|
+
<description>mod_usertrack without version</description>
|
1834
|
+
<example>mod_usertrack/</example>
|
1835
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1836
|
+
<param pos="0" name="service.component.product" value="mod_usertrack"/>
|
1837
|
+
</fingerprint>
|
1838
|
+
<fingerprint pattern="mod_version/(\S+)$">
|
1839
|
+
<description>mod_version with version</description>
|
1840
|
+
<example service.component.version="1.2.3">mod_version/1.2.3</example>
|
1841
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1842
|
+
<param pos="0" name="service.component.product" value="mod_version"/>
|
1843
|
+
<param pos="1" name="service.component.version"/>
|
1844
|
+
</fingerprint>
|
1845
|
+
<fingerprint pattern="mod_version/?$">
|
1846
|
+
<description>mod_version without version</description>
|
1847
|
+
<example>mod_version/</example>
|
1848
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1849
|
+
<param pos="0" name="service.component.product" value="mod_version"/>
|
1850
|
+
</fingerprint>
|
1851
|
+
<fingerprint pattern="mod_vhost_alias/(\S+)$">
|
1852
|
+
<description>mod_vhost_alias with version</description>
|
1853
|
+
<example service.component.version="1.2.3">mod_vhost_alias/1.2.3</example>
|
1854
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1855
|
+
<param pos="0" name="service.component.product" value="mod_vhost_alias"/>
|
1856
|
+
<param pos="1" name="service.component.version"/>
|
1857
|
+
</fingerprint>
|
1858
|
+
<fingerprint pattern="mod_vhost_alias/?$">
|
1859
|
+
<description>mod_vhost_alias without version</description>
|
1860
|
+
<example>mod_vhost_alias/</example>
|
1861
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1862
|
+
<param pos="0" name="service.component.product" value="mod_vhost_alias"/>
|
1863
|
+
</fingerprint>
|
1864
|
+
<fingerprint pattern="mod_watchdog/(\S+)$">
|
1865
|
+
<description>mod_watchdog with version</description>
|
1866
|
+
<example service.component.version="1.2.3">mod_watchdog/1.2.3</example>
|
1867
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1868
|
+
<param pos="0" name="service.component.product" value="mod_watchdog"/>
|
1869
|
+
<param pos="1" name="service.component.version"/>
|
1870
|
+
</fingerprint>
|
1871
|
+
<fingerprint pattern="mod_watchdog/?$">
|
1872
|
+
<description>mod_watchdog without version</description>
|
1873
|
+
<example>mod_watchdog/</example>
|
1874
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1875
|
+
<param pos="0" name="service.component.product" value="mod_watchdog"/>
|
1876
|
+
</fingerprint>
|
1877
|
+
<fingerprint pattern="mod_wsgi/(\S+)$">
|
1878
|
+
<description>mod_wsgi with version</description>
|
1879
|
+
<example service.component.version="1.2.3">mod_wsgi/1.2.3</example>
|
1880
|
+
<param pos="0" name="service.component.vendor" value="mod_wsgi"/>
|
1881
|
+
<param pos="0" name="service.component.product" value="mod_wsgi"/>
|
1882
|
+
<param pos="1" name="service.component.version"/>
|
1883
|
+
<param pos="0" name="service.component.cpe23" value="cpe:/a:modwsgi:mod_wsgi:{service.component.version}"/>
|
1884
|
+
</fingerprint>
|
1885
|
+
<fingerprint pattern="mod_wsgi/?$">
|
1886
|
+
<description>mod_wsgi without version</description>
|
1887
|
+
<example>mod_wsgi/</example>
|
1888
|
+
<param pos="0" name="service.component.vendor" value="mod_wsgi"/>
|
1889
|
+
<param pos="0" name="service.component.product" value="mod_wsgi"/>
|
1890
|
+
<param pos="0" name="service.component.cpe23" value="cpe:/a:modwsgi:mod_wsgi:-"/>
|
1891
|
+
</fingerprint>
|
1892
|
+
<fingerprint pattern="mod_xml2enc/(\S+)$">
|
1893
|
+
<description>mod_xml2enc with version</description>
|
1894
|
+
<example service.component.version="1.2.3">mod_xml2enc/1.2.3</example>
|
1895
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1896
|
+
<param pos="0" name="service.component.product" value="mod_xml2enc"/>
|
1897
|
+
<param pos="1" name="service.component.version"/>
|
1898
|
+
</fingerprint>
|
1899
|
+
<fingerprint pattern="mod_xml2enc/?$">
|
1900
|
+
<description>mod_xml2enc without version</description>
|
1901
|
+
<example>mod_xml2enc/</example>
|
1902
|
+
<param pos="0" name="service.component.vendor" value="Apache"/>
|
1903
|
+
<param pos="0" name="service.component.product" value="mod_xml2enc"/>
|
1904
|
+
</fingerprint>
|
1905
|
+
<fingerprint pattern="^Phusion_Passenger/(\S+)$">
|
1906
|
+
<description>Phusion passenger with version</description>
|
1907
|
+
<example service.component.version="1.1">Phusion_Passenger/1.1</example>
|
1908
|
+
<param pos="0" name="service.component.product" value="Phusion Passenger"/>
|
1909
|
+
<param pos="1" name="service.component.version"/>
|
1910
|
+
</fingerprint>
|
1911
|
+
</fingerprints>
|