nuclei-templates/technologies/gitea-detect.yaml

33 lines
525 B
YAML
Raw Normal View History

2021-09-16 04:18:34 +00:00
id: gitea-detect
info:
name: Gitea Detect
author: pikpikcu
severity: info
tags: tech,gitea
requests:
- method: GET
path:
- "{{BaseURL}}"
- "{{BaseURL}}/user/login"
2021-09-16 12:13:04 +00:00
stop-at-first-match: true
2021-09-16 04:18:34 +00:00
matchers-condition: and
matchers:
- type: word
part: body
words:
- "Powered by Gitea"
- type: status
status:
- 200
2021-09-16 12:13:04 +00:00
extractors:
- type: regex
part: body
regex:
- "Powered by Gitea Version: ([0-9.]+)"