nuclei-templates/technologies/hugo-detect.yaml

36 lines
674 B
YAML
Raw Normal View History

2022-10-05 12:29:44 +00:00
id: hugo-detect
info:
2022-10-05 14:24:46 +00:00
name: Hugo Detect
2022-10-05 12:29:44 +00:00
author: daffainfo
severity: info
description: Hugo is a fast and modern static site generator written in Go
2022-10-05 14:24:46 +00:00
metadata:
verified: true
shodan-query: http.html:'Hugo'
2022-10-05 12:29:44 +00:00
tags: tech,hugo
requests:
- method: GET
path:
2022-10-05 12:31:14 +00:00
- "{{BaseURL}}"
2022-10-05 12:29:44 +00:00
2022-10-05 12:31:14 +00:00
redirects: true
max-redirects: 2
2022-10-05 12:29:44 +00:00
matchers-condition: and
matchers:
- type: word
part: body
words:
- '<meta name=generator content="Hugo'
2022-10-05 12:31:14 +00:00
2022-10-05 14:24:46 +00:00
- type: status
status:
- 200
2022-10-05 12:31:14 +00:00
extractors:
- type: regex
group: 1
regex:
- '(?m)<meta name=generator content="Hugo ([0-9.]+)">'