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-42533-nginx — CVE-2026-42533 Nginx | Kitploit
Tools/GitHubGitHub/gagaltotal/cve-2026-42533-nginx
Static AnalysisVulnerability ScannersCode AnalysisConfiguration AuditingWeb SecurityMisconfiguration
GitHubgagaltotal/cve-2026-42533-nginx

CVE-2026-42533-nginx

CVE-2026-42533 Nginx

View Repository
28 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-42533 nginx

This repository contains a Go-based scanner for identifying nginx configuration patterns associated with the complex_value two-pass capture-clobbering issue described in CVE-2026-42533.

Overview

The tool analyzes nginx configuration files and directories to detect risky configurations where regex captures and regex map variables can share the same request buffer. In such cases, the parser may produce a length/value mismatch that can lead to heap out-of-bounds writes or information disclosure.

Features

  • Scans nginx configuration files and directories recursively
  • Follows included configuration files by default
  • Supports JSON output for automation and downstream tooling
  • Reports vulnerable directives and the related capture/map variables
  • Provides remediation guidance for identified findings

Requirements

  • Go 1.21 or newer

Build

From the project root, run:

root@kitploit:~
go build -o exploit .

Usage

Screen Capture

Show help:

root@kitploit:~
./exploit --help

Scan a single configuration file:

root@kitploit:~
./exploit /etc/nginx/nginx.conf

Scan a directory:

root@kitploit:~
./exploit /etc/nginx/

Scan without following includes:

root@kitploit:~
./exploit conf --no-includes

Output JSON:

root@kitploit:~
./exploit conf --json

Exit Codes

  • 0: no vulnerabilities found
  • 1: vulnerable configuration(s) found
  • 2: usage error or no config files found

Project Structure

root@kitploit:~
.
├── images
├── exploit.go
├── go.mod
├── README.md
└── .gitignore

Notes

This project is intended for defensive analysis and security research. Use it responsibly and only on systems you are authorized to assess.

Download Tool