nuclei-templates/technologies/nginx/nginx-version.yaml

31 lines
602 B
YAML
Raw Normal View History

2021-05-02 10:56:43 +00:00
id: nginx-version
2021-09-09 13:38:13 +00:00
2021-05-02 10:56:43 +00:00
info:
2022-05-06 10:11:26 +00:00
name: Nginx version detect
author: philippedelteil,daffainfo
2021-05-02 10:56:43 +00:00
severity: info
description: Some nginx servers have the version on the response header. Useful when you need to find specific CVEs on your targets.
2021-09-09 13:38:13 +00:00
tags: tech,nginx
2021-05-02 10:56:43 +00:00
requests:
- method: GET
path:
- "{{BaseURL}}"
2022-05-06 10:11:26 +00:00
2021-05-02 10:56:43 +00:00
matchers-condition: and
matchers:
- type: regex
part: header
regex:
2022-05-07 10:43:34 +00:00
- 'nginx/[0-9.]+'
2021-05-02 10:56:43 +00:00
- type: status
status:
- 200
extractors:
2022-05-06 10:11:26 +00:00
- type: regex
2021-05-02 10:56:43 +00:00
part: header
2022-05-06 10:11:26 +00:00
regex:
2022-05-07 10:43:34 +00:00
- 'nginx/[0-9.]+'