Skip to content

Commit f7abce9

Browse files
authored
Merge pull request #757 from jimmy-ly00/master
New Module: Added Confluence Version Scan and CVE-2023-22515
2 parents fbc60a2 + 4a1c42f commit f7abce9

File tree

3 files changed

+149
-0
lines changed

3 files changed

+149
-0
lines changed
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
info:
2+
name: confluence_version_scan
3+
author: Jimmy Ly
4+
severity: 3
5+
description: Fetch Confluence version from target
6+
reference:
7+
profiles:
8+
- scan
9+
- http
10+
- backup
11+
- low_severity
12+
- confluence
13+
- atlassian
14+
15+
payloads:
16+
- library: http
17+
steps:
18+
- method: get
19+
timeout: 3
20+
headers:
21+
User-Agent: "{user_agent}"
22+
allow_redirects: false
23+
ssl: false
24+
url:
25+
nettacker_fuzzer:
26+
input_format: "{{schema}}://{target}:{{ports}}/dashboard.action"
27+
prefix: ""
28+
suffix: ""
29+
interceptors:
30+
data:
31+
schema:
32+
- "http"
33+
- "https"
34+
ports:
35+
- 80
36+
- 443
37+
response:
38+
condition_type: or
39+
conditions:
40+
content:
41+
regex: <span id=\'footer-build-information\'>(.+?)</span>
42+
reverse: false
43+
log: "response_dependent['content']"

0 commit comments

Comments
 (0)