This script is designed to exploit the CVE-2023-22515 vulnerability in Confluence, which allows for unauthorized access to Confluence Server and Confluence Data Center instances. The vulnerability is categorized as a Broken Access Control issue and has a CVSS base score of 10.0.
Before using this script, make sure you have the following prerequisites in place:
- Python 3.x installed 🐍
- Required Python packages (
requests
,fire
,rich
, andalive-progress
) installed. You can install them usingpip
:
pip install -r requirements.txt
The script provides two main commands for exploiting the vulnerability:
In normal mode, you can exploit the Confluence vulnerability using a single target URL. Run the following command:
python3 exploit.py normal [TARGET_URL]
Replace [TARGET_URL]
with the URL of the Confluence instance you want to target.
Example:
python3 exploit.py normal https://example.com/confluence
In mass mode, you can exploit the vulnerability using a list of target URLs from a file. Create a text file with one target URL per line and run the following command:
python3 exploit.py mass [FILE_NAME]
Replace [FILE_NAME]
with the name of the file containing the list of target URLs.
Example:
python3 exploit.py mass targets.txt
The script will provide information about the exploitation process, such as whether the vulnerability was successfully triggered, whether a new administrator was created, and whether authentication was successful.
[INFO] Successfully exploited https://example.com/confluence and logged in as admin!
This script is provided for educational and informational purposes only. Use it responsibly and only on systems that you have permission to test. Unauthorized access to computer systems is illegal and unethical. 🚫