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-Chwoot-POC | Kitploit
Tools/GitHubGitHub/krypton-0x00/cve-2025-32463-chwoot-poc
Privilege EscalationVulnerability AnalysisExploitationPenetration TestingBinary Exploitation
GitHubkrypton-0x00/cve-2025-32463-chwoot-poc

CVE-2025-32463-Chwoot-POC

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 Sudo EoP Exploit PoC (Rust)

Using Prebuild Binary

1. Clone the repository and run the binary in the target machine.

root@kitploit:~
git clone https://github.com/krypton-0x00/CVE-2025-32463-Chwoot-POC.git

cd CVE-2025-32463-Chwoot-POC

./exploit

Build From Source

1. Clone the repository (if not done already)

root@kitploit:~
git clone https://github.com/krypton-0x00/CVE-2025-32463-Chwoot-POC.git
cd CVE-2025-32463-Chwoot-POC

2. Build the Rust binary in release mode

root@kitploit:~
cargo build --release

The compiled binary will be located at:

root@kitploit:~
./target/release/CVE-2025-32463-Chwoot-POC

Usage

Run the exploit binary with optional command arguments:

  • To spawn an interactive root shell:
root@kitploit:~
sudo ./target/release/CVE-2025-32463-Chwoot-POC
  • To run a specific command as root (for example, id):
root@kitploit:~
sudo ./target/release/CVE-2025-32463-Chwoot-POC "id"

Docker Usage

Alternatively, use the provided Docker container for an isolated vulnerable environment with all dependencies installed.

  1. Build the Docker image
root@kitploit:~
docker build -t sudo-chwoot .
  1. Run the container interactively (if it didnt work , then try using the image id instead of sudo-chwoot. You can get thata using sudo docker images)
root@kitploit:~
docker run --rm -it --privileged sudo-chwoot 
  1. Inside the container, run the exploit
root@kitploit:~
cd /home/pwn/CVE-2025-32463-Rust-POC
./target/release/CVE-2025-32463-Chwoot-POC
Download Tool