nuclei-templates/http/technologies/apache/apache-detect.yaml

34 lines
582 B
YAML
Raw Normal View History

2021-08-08 14:44:24 +00:00
id: apache-detect
2020-09-22 22:16:37 +00:00
info:
2021-08-08 14:44:24 +00:00
name: Apache Detection
2020-09-22 22:16:37 +00:00
author: philippedelteil
severity: info
description: Some Apache servers have the version on the response header. The OpenSSL version can be also obtained
2021-08-08 14:44:54 +00:00
tags: tech,apache
metadata:
max-request: 1
2021-08-08 14:44:54 +00:00
http:
2020-09-22 22:16:37 +00:00
- method: GET
path:
- "{{BaseURL}}"
2021-08-08 14:44:24 +00:00
2020-09-22 22:16:37 +00:00
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:
- Server