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
Tools/GitHubGitHub/liveoverflow/pwnedit
Vulnerability AnalysisExploitationDebuggersFuzzingCTFLearning & EducationBinary ExploitationLabs & Practice
GitHubliveoverflow/pwnedit

pwnedit

CVE-2021-3156 - Sudo Baron Samedit

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

pwnedit

CVE-2021-3156 - Sudo Baron Samedit

Before heading into the technical details, you can watch a brief summary here: https://www.youtube.com/watch?v=TLa2VqcGGEQ

Episodes

  1. [Files | Blog | Video ] Why Pick sudo as Research Target?
  2. [Files | Blog | Video ] How Fuzzing with AFL works
  3. [Files | Blog | Video ] Troubleshooting AFL Fuzzing Problems
  4. [Files | Blog | Video ] Finding Buffer Overflow with Fuzzing
  5. [Files | Blog | Video ] Found a Crash Through Fuzzing? Minimize AFL Testcases
  6. [Files | Blog | Video ] Root Cause Analysis With AddressSanitizer (ASan)
  7. [Files | Blog | ] Understanding C Pointer Magic Arithmetic
Download Tool
Video
  • [Files | Blog | Video ] C Code Review - Reaching Vulnerable Code in sudo
  • [Files | Blog | Video ] Discussing Heap Exploit Strategies for sudo
  • [Files | Blog | Video ] Developing a Tool to Find Function Pointers on The Heap
  • [Files | Blog | Video ] Fuzzing Heap Layout to Overflow Function Pointers
  • [Files | Blog | Video ] Developing GDB Extension for Heap Exploitation
  • [Files | Blog | Video ] Can We Find a New Exploit Strategy?
  • [ Files | Blog | Video ] Learning about nss (Linux Name Service Switch) During Sudo Exploitation
    • ... coming soon

    Requirements

    Install Docker and make sure it is running with docker ps.

    Usage Instructions

    Each episode folder contains files and code snippets used in the video. Most important is the Dockerfile, which can be used to run an isolated system vulnerable to the sudoedit vulnerability.

    If you want to betetr understand how docker works, checkout these videos:

    • Introduction to Docker for CTFs
    • How Docker Works - Intro to Namespaces

    This project uses a Makefile in each episode, to easier work with docker. You can build and run a particular episode's docker container with thes follwing commands.

    root@kitploit:~
    cd episode01
    sudo make
    

    To get a root shell you can then run

    root@kitploit:~
    sudo make root
    

    Or be a regular user

    root@kitploit:~
    sudo make attach
    

    Feel free to check the Makefile and execute the docker commands directly.