Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
CVE-2026-24061 — CVE-2026-24061 exploit PoC | Kitploit
Tools/GitHubGitHub/jacubes/cve-2026-24061
Vulnerability AnalysisExploitationPenetration TestingAuthenticationLearning & EducationRemote Access Tool
GitHubjacubes/cve-2026-24061

CVE-2026-24061

CVE-2026-24061 exploit PoC

View Repository
82315252 days agoReviewed by Kitploit

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

CVE-2026-24061-PoC

⚠ This tool is created solely for educational use only. Unauthorized use outside of controlled environments is strictly prohibited.

CVE-2026-24061 is a critical vulnerability (CVSS 9.8) in telnetd from GNU Inetutils (versions 1.9.3–2.7) that allows a remote attacker to bypass authentication and gain root access by passing -f root through the USER environment variable. This tool is created to simulate abuse of this vulnerability

Requirements

  • Windows OS/Linux
  • Python 3.4+

How To Use

This PoC expects a target host address. There are two ways to provide it.

1. Edit the payload.txt file

Simply insert your payload into target.txt.

root@kitploit:~
host

The script will use address from this file.

Second option: You can add the target address through CLI. Run rce.py with a target host.

root@kitploit:~
python rce.py <host> [-p <port>]

2. Run the code:

root@kitploit:~
python rce.py

How it works?

Download Tool

The vulnerability stems from improper handling of environment variables by telnetd. The service fails to sanitize the USER variable and allows injected command-line options to be interpreted as legitimate arguments.

This PoC connects to the target Telnet service and sends a crafted USER value containing the -f root option. When processed by the vulnerable telnetd instance, the daemon treats the injected parameter as a trusted login flag, bypassing authentication and granting a root shell if the target is vulnerable.

Disclaimer

This tool is created solely for educational use only. Unauthorized use outside of controlled environments is strictly prohibited.