nuclei-templates/technologies/lotus-domino-version.yaml

35 lines
900 B
YAML
Raw Normal View History

id: lotus-domino-version
2021-09-09 13:38:13 +00:00
info:
name: Lotus Domino Version Extractor
author: CasperGN
severity: info
2021-09-09 13:38:13 +00:00
tags: tech,lotus
requests:
- method: GET
path:
- "{{BaseURL}}/homepage.nsf"
- "{{BaseURL}}/iNotes/Forms5.nsf"
- "{{BaseURL}}/iNotes/Forms6.nsf"
- "{{BaseURL}}/iNotes/Forms7.nsf"
- "{{BaseURL}}/iNotes/Forms8.nsf"
- "{{BaseURL}}/iNotes/Forms85.nsf"
- "{{BaseURL}}/iNotes/Forms9.nsf"
2020-09-09 08:43:16 +00:00
stop-at-first-match: true
matchers-condition: and
matchers:
- type: status
status:
- 200
- type: regex
part: body
regex:
2020-09-09 20:34:24 +00:00
- "((Domino\\s[A-Za-z]+\\s[0-9\\.]{1,3})|(Forms[0-9\\.]{1,3}\\.nsf\\?OpenDatabase))"
extractors:
- type: regex
part: body
name: version
regex:
2020-09-09 20:34:24 +00:00
- "((Domino\\s[A-Za-z]+\\s[0-9\\.]{1,3})|(Forms[0-9\\.]{1,3}\\.nsf\\?OpenDatabase))"