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-31431 — Exploit for CVE-2026-31431 that escalates privileges to root, with a detection mode and C implementation for portability. | Kitploit
Tools/GitHubGitHub/361way/cve-2026-31431
Privilege EscalationExploit FrameworksVulnerability AnalysisExploitationPenetration Testing
GitHub361way/cve-2026-31431

CVE-2026-31431

Exploit for CVE-2026-31431 that escalates privileges to root, with a detection mode and C implementation for portability.

View Repository
24 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-31431

CVE-2026-31431 detection and testing

0x01 Quick Start

Some target environments do not have Python installed, so this privilege escalation logic was rewritten in C.

  1. Compile

Run the following command on your Linux machine or WSL (using -static is recommended to avoid GLIBC version issues):

root@kitploit:~
gcc -static exploit.c -o exploit

2. Deploy and Execute

Upload the generated binary to the target machine:

root@kitploit:~
chmod +x exploit
./exploit

If the exploit succeeds, the program will automatically execute su and spawn a root shell directly without requiring a password.

If you use python-ex.py version in some OS ,maybe you will met AttributeError: module 'os' has no attribute 'splice' error. so you can change to C lang version.

if you only check not exploit,you can run this command

root@kitploit:~
python3 -c 'import socket; s=socket.socket(38,5,0); (s.bind(("aead", "authencesn(hmac(sha256),cbc(aes))")) or print("未缓解")) if s else None' 2>/dev/null || echo "已缓解"
Download Tool