
Control Web Panel (CWP) vulnerability scenario related to CVE-2026-57517
This repository contains a Go-based proof-of-concept tool for testing a known Control Web Panel (CWP) vulnerability scenario related to CVE-2026-57517. The implementation targets a blind SQL injection path and includes optional webshell deployment and command execution flow for authorized security assessment purposes.
The project is designed to help security researchers and authorized testers:
exploit_cwp.go - main Go implementationgo.mod - module definition and Go versionREADME.md - project documentationFrom the repository root, run:
git clone https://github.com/gagaltotal/CVE-2026-57517-CWP
go mod init CVE-2026-57517-CWP
go mod tidy
go build -o exploit_cwp .
This will produce an executable binary named exploit_cwp.

./exploit_cwp -t target.example.com
./exploit_cwp -f targets.txt -o live.txt --json report.json
./exploit_cwp -t target.example.com --rce -u cwpsvc
-t : single target host or IP address-f : file containing targets, one per line-u : known username to use instead of auto enumeration-threads : number of concurrent workers-timeout : HTTP timeout in seconds-no-cleanup : leave the shell deployed on the target-rce : enable interactive shell mode-shell-url : use an existing shell URL directly-v : enable verbose output-o : path for the live text report--json : path for the JSON reportThe tool can generate:
This tool is intended solely for authorized security testing and research. Use it only on systems you are explicitly permitted to assess. The maintainers do not endorse or support unauthorized access or any unlawful activity.
The code in this repository is provided for educational and defensive security purposes. Misuse of this software may violate applicable laws and regulations.