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-2019-18634 — My n-day exploit for CVE-2019-18634 (local privilege escalation) | Kitploit
Tools/GitHubGitHub/aesophor/cve-2019-18634
Privilege EscalationVulnerability AnalysisExploitationPenetration TestingRed TeamingBinary Exploitation
GitHubaesophor/cve-2019-18634

CVE-2019-18634

My n-day exploit for CVE-2019-18634 (local privilege escalation)

View Repository
5325 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

CVE-2019-18634 N-Day Exploit

Slides

https://docs.google.com/presentation/d/11DpUy9Ll_HeuPRSgzaTARHPwlq01v_yyqbnJURlG9Ss/edit?usp=sharing

Requirements

  • Ubuntu 20.04
  • sudo 1.8.25 (see below for how to build it manually)
  • Python3
  • pwntools

Enable pwfeedback

root@kitploit:~
sudo visudo

Change this line

root@kitploit:~
Defaults env_reset

To this

root@kitploit:~
Defaults env_reset,pwfeedback

Checkout sudo 1.8.25

root@kitploit:~
git clone https://github.com/sudo-project/sudo
cd sudo
git fetch --all --tags
git checkout SUDO_1_8_25

Install Pwntools

root@kitploit:~
sudo apt-get update
sudo apt-get install python3 python3-pip python3-dev git libssl-dev libffi-dev build-essential
sudo python3 -m pip install --upgrade pip
sudo python3 -m pip install --upgrade pwntools

Configure and Build

root@kitploit:~
./configure --prefix=/usr/local
make
sudo make install

Clone this repo and Run

root@kitploit:~
git clone https://github.com/aesophor/CVE-2019-18634
cd CVE-2019-18634
./exploit.py
Download Tool