nuclei-templates/technologies/confluence-detect.yaml

41 lines
911 B
YAML
Raw Normal View History

id: confluence-detect
2021-09-09 04:28:04 +00:00
info:
name: Confluence Detect
author: philippedelteil
2021-09-09 04:28:04 +00:00
severity: info
description: Allows you to detect Atlassian Confluence instances
2021-10-14 10:52:58 +00:00
metadata:
shodan-query: http.component:"Atlassian Confluence"
tags: tech,confluence,atlassian
2021-09-09 04:28:04 +00:00
requests:
- method: GET
path:
- "{{BaseURL}}"
- "{{BaseURL}}/pages"
- "{{BaseURL}}/confluence"
- "{{BaseURL}}/wiki"
host-redirects: true
2021-09-09 04:28:04 +00:00
stop-at-first-match: true
matchers-condition: or
2021-09-09 04:28:04 +00:00
matchers:
- type: word
part: header
2021-09-09 04:28:04 +00:00
words:
- '-confluence-'
case-insensitive: true
2021-09-09 04:28:04 +00:00
- type: word
part: body
2021-09-09 04:28:04 +00:00
words:
- 'confluence-base-url'
2021-09-09 04:28:04 +00:00
extractors:
- type: regex
part: body
group: 1
regex:
- '<meta name="ajs-version-number" content="(.*)">'
- 'Atlassian Confluence ([a-z0-9-._]+)'