Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
SOC235---Atlassian-Confluence-Broken-Access-Control-0-Day-CVE-2023-22515 — SOC analyst walkthrough triaging a Confluence CVE-2023-22515 broken access control exploitation attempt, covering log analysis, MITRE ATT&CK mapping, and incident escalation. | Kitploit
Tools/GitHubGitHub/borsch-appreciator/soc235---atlassian-confluence-broken-access-control-0-day-cve-2023-22515
Defensive ToolsVulnerability AnalysisWeb SecurityPenetration TestingThreat IntelligenceLearning & EducationIncident ResponseLog Analysis

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
GitHub
borsch-appreciator/soc235---atlassian-confluence-broken-access-control-0-day-cve-2023-22515

SOC235---Atlassian-Confluence-Broken-Access-Control-0-Day-CVE-2023-22515

SOC analyst walkthrough triaging a Confluence CVE-2023-22515 broken access control exploitation attempt, covering log analysis, MITRE ATT&CK mapping, and incident escalation.

View Repository
11 month agoNot yet reviewed
Share

EVENTID-197

fieldValue
EventID197
Event TimeNov, 09, 2023, 09:47 AM
RuleSOC235 - Atlassian Confluence Broken Access Control 0-Day CVE-2023-22515
LevelSecurity Analyst
HostnameConfluence Data Center
Destination IP Address172.16.17.234
Source IP Address43.130.1.222
HTTP Request MethodGET
Requested URL/server-info.action?bootstrapStatusProvider.applicationConfig.setupComplete=false
User-Agentcurl/7.88.1
Alert Trigger ReasonThis activity may be indicative of an attempt to exploit the CVE-2023-22515 vulnerability, which could potentially lead to create a new administrator user.
Device ActionAllowed

Initial alert first look

When beginning this investigation, I immediately noticed the alert referenced CVE-2023-22515. According to CVE.org, this vulnerability has a CVSS score of 10.0 (Critical) with the following vector: Plain Text1CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:HShow more lines Breaking down the CVSS score:

MetricValueAttack Vector (AV)NetworkAttack Complexity (AC)LowPrivileges Required (PR)NoneUser Interaction (UI)NoneScope (S)ChangedConfidentiality (C)HighIntegrity (I)HighAvailability (A)High Overall, if this vulnerability is actively being exploited, it would be considered a high-priority incident that should be escalated quickly. The first thing I wanted to determine was whether the source IP had targeted only this endpoint or if it had attempted communication with multiple systems across the environment. Searching the logs for the source address 43[.]130[.]1[.]222 returned three events, all targeting the same host: 172[.]16[.]17[.]234 (Confluence Data Center) This suggests the activity was specifically focused on this server rather than broad network scanning.

Initial Investigation

Network Event #1

FieldValue
Source Address43[.]130[.]1[.]222
Source Port42312
Destination Address172[.]16[.]17[.]234
Destination Port80
TimeNov 09, 2023, 09:47 AM
ValueProxy
Request URL/server-info.action?bootstrapStatusProvider.applicationConfig.setupComplete=false
Request MethodGET
Response Code200
User-Agentcurl/7.88.1

Network Event #2

FieldValue
Source Address43[.]130[.]1[.]222
Source Port4323
Destination Address172[.]16[.]17[.]234
Destination Port80
TimeNov 09, 2023, 09:47 AM
ValueProxy
Request URL/setup/setupadministrator.action
Request MethodPOST
Response Code302
User-Agentcurl/7.88.1

Network Event #3

FieldValue
Source Address43[.]130[.]1[.]222
Source Port45321
Destination Address172[.]16[.]17[.]234
Destination Port80
TimeNov 09, 2023, 09:48 AM
ValueProxy
Request URL/setup/finishsetup.action
Request MethodPOST
Response Code200
User-Agentcurl/7.88.1

Analysis

The sequence of requests immediately stood out:

server-info.action?bootstrapStatusProvider.applicationConfig.setupComplete=false setup/setupadministrator.action setup/finishsetup.action

These URLs closely align with publicly documented exploitation activity associated with CVE-2023-22515. What is particularly concerning is that the requests completed successfully:

RequestResponseserver-info.action200setupadministrator.action302finishsetup.action200 The successful HTTP response codes indicate that the requests were processed by the Confluence server rather than blocked outright. Additionally, the use of: curl/7.88.1

as the User-Agent is suspicious. Legitimate users typically access Confluence through a web browser, whereas attackers frequently use command-line tools such as curl to automate exploitation attempts. Based on the evidence collected so far:

The source IP is directly targeting the vulnerable Confluence server. The requests match known exploitation paths associated with CVE-2023-22515. The requests were accepted and processed successfully. The User-Agent suggests automated activity rather than a normal user interaction.

At this point, I would consider the likelihood of compromise to be extremely high. Given the severity of the vulnerability and the evidence observed during the investigation, I would immediately escalate the incident and recommend quarantining the affected Confluence server to prevent any additional malicious activity.

Recommended actions:

Isolate the affected Confluence host from the network. Review authentication logs for unauthorized administrator account creation. Examine audit logs for configuration changes. Search for additional indicators of compromise tied to the source IP. Verify whether the vulnerable Confluence version is installed. Apply vendor-recommended remediation and security updates. Perform a full scope assessment to determine whether any persistence mechanisms were established.

This alert appears to be a true positive and a likely attempt to exploit CVE-2023-22515, a critical Atlassian Confluence vulnerability that can allow unauthorized administrator account creation. The attack originated from 43[.]130[.]1[.]222 and targeted a single Confluence Data Center server. The observed requests closely match known exploitation behavior, and the successful HTTP response codes suggest the requests were processed by the application. Based on the available evidence, I would treat this as a high-priority security incident and initiate containment and escalation procedures immediately. Provide your feedback on BizChat

It looks like the commands /server-info.action?bootstrapStatusProvider.applicationConfig.setupComplete=false, /setup/setupadministrator.action Request Method, and /setup/setupadministrator.action all posted without issue which is alarming. With these findings I'd escalate and recommend immediate quaranting of the affected serv. Switching to the EndPoint Security

MITRE ATT&CK Mapping

TacticInitial Access
TechniqueT1190 - Exploit Public-Facing Application
EvidenceAttempted exploitation of Confluence CVE-2023-22515.
TacticPersistence
TechniqueT1098 - Account Manipulation
EvidenceExploit chain was attempting to create a new administrator account.
TacticPrivilege Escalation
TechniqueT1078 - Valid Accounts
EvidenceSuccessful creation of an unauthorized administrator account would provide elevated privileges.
Download Tool