42 lines
846 B
YAML
42 lines
846 B
YAML
id: confluence-detect
|
|
|
|
info:
|
|
name: Confluence Detect
|
|
author: philippedelteil
|
|
severity: info
|
|
description: Allows you to detect Atlassian Confluence instances
|
|
metadata:
|
|
shodan-query: http.component:"Atlassian Confluence"
|
|
tags: tech,confluence,atlassian
|
|
|
|
|
|
requests:
|
|
- method: GET
|
|
path:
|
|
- "{{BaseURL}}"
|
|
- "{{BaseURL}}/pages"
|
|
- "{{BaseURL}}/confluence"
|
|
- "{{BaseURL}}/wiki"
|
|
|
|
redirects: true
|
|
stop-at-first-match: true
|
|
matchers-condition: or
|
|
matchers:
|
|
- type: word
|
|
part: header
|
|
words:
|
|
- '-confluence-'
|
|
case-insensitive: true
|
|
|
|
- type: word
|
|
part: body
|
|
words:
|
|
- 'confluence-base-url'
|
|
|
|
extractors:
|
|
- type: regex
|
|
part: body
|
|
group: 1
|
|
regex:
|
|
- 'Atlassian Confluence ([a-z0-9-._]+)'
|