Skip to content

leetcrypt/telnet_scan

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 

Repository files navigation

Telnet Vulnerability Scanner (CVE-2026-24061 & CVE-2026-32746)

License:ek0ms

A Python-based security assessment tool that detects and (where applicable) exploits two critical vulnerabilities in GNU InetUtils telnetd:

  • CVE-2026-24061 – Authentication bypass via USER environment variable injection (CVSS 9.8)
  • CVE-2026-32746 – Pre-authentication buffer overflow in LINEMODE SLC handler (CVSS 9.8)

Important Disclaimer

This tool is for authorized security testing and educational purposes only.
Unauthorized use against systems you do not own or have explicit permission to test is illegal. The authors assume no liability for misuse or damage caused by this tool. Use at your own risk.

image1(1)

Features

  • Single target scanning – Enter IP addresses or domain names at runtime
  • Batch scanning – Upload a file containing multiple targets (one per line)
  • Selective testing – Test either vulnerability individually or both
  • CVE-2026-24061 exploitation – If vulnerable, the tool drops you into an interactive root shell directly in the same terminal
  • CVE-2026-32746 detection – Identifies vulnerable systems via controlled crash detection
  • Clean terminal handling – Raw mode shell with proper restoration on exit
  • Connection validation – Distinguishes between filtered ports, offline services, and actual vulnerabilities

Installation

git clone https://github.com/ekomsSavior/telnet_scan.git
cd telnet_scan
chmod +x telnet_scanner.py

Usage

Basic Execution

python3 telnet_scanner.py

IMG_2498

Single Target Workflow!

  1. Choose option 1
  2. Enter target (IP or domain, e.g., 192.168.1.100 or example.com)
  3. Specify port (default is 23 if left empty)
  4. Select test type:
    • 1 – Both vulnerabilities
    • 2 – Only CVE-2026-24061 (authentication bypass)
    • 3 – Only CVE-2026-32746 (buffer overflow)

Batch Scanning Workflow

  1. Create a file with targets (one per line) Example targets.txt:
    192.168.1.100
    192.168.1.101
    10.0.0.50
    example.com
    # This is a comment line - ignored
    
  2. Choose option 2
  3. Enter the filename
  4. Specify port (default is 23)
  5. Select test type (1, 2, or 3)
  6. The scanner will:
    • Show progress for each target
    • Display results as they complete
    • Provide a summary table at the end

When a Shell is Obtained

If CVE-2026-24061 succeeds:

  1. The vulnerability is detected
  2. An interactive root shell appears directly in the same terminal window
  3. Type commands and see output immediately (e.g., id, whoami, ls)
  4. Press Ctrl+C to exit the shell and return to the scanner menu
  5. For batch scans, you'll be prompted whether to interact with the shell or continue scanning

No separate terminal or extra steps required.

How It Works

CVE-2026-24061 – Authentication Bypass

  • Negotiates the NEW_ENVIRON Telnet option (RFC 1572)
  • Sends a subnegotiation setting USER="-f root"
  • Vulnerable telnetd passes this to /usr/bin/login, bypassing authentication
  • Grants immediate root shell access

CVE-2026-32746 – Buffer Overflow Detection

  • Negotiates the LINEMODE option (RFC 1184)
  • Sends 500+ SLC triplets to overflow the fixed-size buffer
  • Monitors for connection drops/crashes to confirm vulnerability

Connection Validation

  • Pre-scans to verify service availability before attempting exploits
  • Distinguishes between:
    • Filtered ports (firewall blocking)
    • Offline services (no service running)
    • Vulnerable services (successful exploit)

Sample Output

Single Target

=== Telnet Vulnerability Scanner ===
1. Scan a single target
2. Scan targets from file (one IP/hostname per line)
3. Exit

Choose option: 1
Port (default 23): 

Which tests to run?
1. Both
2. Only CVE-2026-24061 (auth bypass - gives shell if vulnerable)
3. Only CVE-2026-32746 (buffer overflow detection)
Choice [1-3]: 1
Target (IP or domain): 192.168.1.100

[*] Resolved 192.168.1.100 -> 192.168.1.100
[*] Scanning 192.168.1.100:23...

[*] Checking if service is reachable...
[+] Service reachable

[*] Testing CVE-2026-24061 (authentication bypass)...
[!] CVE-2026-24061: VULNERABLE – shell obtained!

============================================================
[+] ROOT SHELL OBTAINED! You are now in an interactive root shell.
[+] Type commands directly here. Press Ctrl+C to exit shell.
============================================================

id
uid=0(root) gid=0(root) groups=0(root)

Batch Scan

=== Telnet Vulnerability Scanner ===
1. Scan a single target
2. Scan targets from file (one IP/hostname per line)
3. Exit

Choose option: 2
Port (default 23): 
Enter filename with targets (one per line): targets.txt

Which tests to run?
1. Both
2. Only CVE-2026-24061 (auth bypass - gives shell if vulnerable)
3. Only CVE-2026-32746 (buffer overflow detection)
Choice [1-3]: 1

[*] Loaded 3 targets from targets.txt

==================================================
[1/3] Scanning 192.168.1.100:23
==================================================
[*] Resolved 192.168.1.100 -> 192.168.1.100
[+] Service reachable

[*] Testing CVE-2026-24061...
[!] CVE-2026-24061: VULNERABLE – shell obtained!

[?] Shell obtained! Interact now? (y/N): n

[*] Testing CVE-2026-32746...
[+] Server did not crash; likely not vulnerable

==================================================
[2/3] Scanning 192.168.1.101:23
==================================================
[-] Service not reachable on 192.168.1.101:23

==================================================
[3/3] Scanning example.com:23
==================================================
[*] Resolved example.com -> 93.184.216.34
[+] Service reachable

[*] Testing CVE-2026-24061...
[+] No response received; may still be vulnerable

[*] Testing CVE-2026-32746...
[!] CVE-2026-32746: VULNERABLE (server crashed)

============================================================
SCAN SUMMARY
============================================================
192.168.1.100: VULNERABLE to CVE-2026-24061
192.168.1.101: Service unreachable
example.com: VULNERABLE to CVE-2026-32746
============================================================

Mitigation

If you discover vulnerable systems, apply these fixes:

  1. Upgrade GNU InetUtils to version 2.8 or later
  2. Disable telnetd and block TCP/23 at network boundaries
  3. Restrict access to trusted networks only
  4. Monitor logs for connections with NEW_ENVIRON USER values starting with -f

Known Limitations

  • The overflow test (CVE-2026-32746) may crash the target telnetd service
  • Arrow keys and terminal resizing are not fully supported in the interactive shell
  • Some firewalls or network configurations may interfere with Telnet option negotiation
  • Windows users: The interactive shell requires a Unix-like terminal (WSL, Cygwin, or Linux/macOS) image0(2)

About

scanner/exploiter CVE-2026-24061 & CVE-2026-32746

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Python 100.0%