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-POC — Proof-of-concept exploit for CVE-2026-24061 providing an interactive remote shell session with configurable timeouts for reliable exploitation. | Kitploit
Tools/GitHubGitHub/ms0x08-dev/cve-2026-24061-poc
Vulnerability AnalysisExploitationPenetration TestingCommand and ControlRemote Access Tool
GitHubms0x08-dev/cve-2026-24061-poc

CVE-2026-24061-POC

Proof-of-concept exploit for CVE-2026-24061 providing an interactive remote shell session with configurable timeouts for reliable exploitation.

View Repository
57 months agoNot yet reviewed

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

echo "cat /etc/passwd; id;" | python poc2.py TARGET 23

  1. Connection Timeout Location: Line 25 in establish_connection() method

python self.connection.settimeout(10) # <-- Adjustable connection timeout Purpose: Controls how long to wait for initial TCP connection to the target Recommended values:

Fast networks: 5-10 seconds

Slow/unreliable networks: 15-30 seconds

Default: 10 seconds

  1. Select Polling Timeout Location: Line 96 in execute_exploit() method

python ready_to_read, _, _ = select.select(read_fds, [], [], 5.0) # <-- Adjustable polling timeout Purpose: Controls how often to check for incoming data when idle Recommended values:

Interactive sessions: 1.0-2.0 seconds

Scripted automation: 0.1-0.5 seconds

Default: 5.0 seconds

  1. Total Session Timeout Location: Line 87 in execute_exploit() method

python session_timeout = 120 # <-- Adjustable total session duration Purpose: Maximum duration for the entire exploit session Recommended values:

Quick commands: 30-60 seconds

File transfers/long operations: 300-600 seconds

Default: 120 seconds (2 minutes)

Screenshot 2026-01-25 at 20 32 48
Download Tool