nuclei-templates/technologies/tomcat-detect.yaml

26 lines
642 B
YAML
Raw Normal View History

2020-09-22 21:26:52 +00:00
id: tomcat-version-detect
info:
name: Detect Tomcat Version
author: philippedelteil
description: If an Tomcat instance is deployed on the target URL, when we send a request for
a non existent resource we receive a Tomcat error page with version.
severity: info
requests:
- method: GET
path:
- "{{BaseURL}}/something_not_existing_"
matchers-condition: and
matchers:
- type: word
words:
- "Apache Tomcat"
- type: status
status:
- 404
extractors:
- type: regex
part: body
name: version
regex:
- '[0-9]+\.[0-9]+\.[0-9]+'