nuclei-templates/technologies/apache-detect.yaml

27 lines
537 B
YAML
Raw Normal View History

2020-09-22 22:16:37 +00:00
id: apache-version-detect
info:
2020-09-24 18:16:21 +00:00
name: Apache Version
2020-09-22 22:16:37 +00:00
author: philippedelteil
description: Some Apache servers have the version on the response header. The OpenSSL version can be also obtained
severity: info
requests:
- method: GET
path:
- "{{BaseURL}}"
matchers-condition: and
matchers:
2020-09-24 18:16:21 +00:00
- type: regex
part: header
regex:
- "Apache+"
- type: status
status:
- 200
2020-09-22 22:16:37 +00:00
extractors:
- type: kval
part: header
kval:
2020-09-24 18:16:21 +00:00
- Server