Skip to content
KitploitKITPLOIT
工具博客
提交
工具博客
提交

黑客、渗透测试和网络安全工具,武装您的安全武器库!

Kitploit 是一个黑客、网络安全和渗透测试工具的目录。发现最新的项目更新,查找漏洞、分析系统、自动化测试并加强你的安全。

··订阅源·联系·隐私·© 2026 Kitploit

工具目录

分类

查看所有分类
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
工具/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.

查看仓库
24个月前尚未审核

最受欢迎

查看全部 →

发现我们社区最常用的工具。

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

CVE-2026-31431

CVE-2026-31431检测和测试

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 "已缓解"
下载工具