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-21907 — Proof-of-concept exploit for CVE-2022-21907, a remote code execution vulnerability in the HTTP protocol stack (IIS). Includes a Python script and Nmap script for detection and exploitation. | Kitploit
Tools/GitHubGitHub/asepsaepdin/cve-2022-21907
Vulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingLearning & Education
GitHubasepsaepdin/cve-2022-21907

CVE-2022-21907

Proof-of-concept exploit for CVE-2022-21907, a remote code execution vulnerability in the HTTP protocol stack (IIS). Includes a Python script and Nmap script for detection and exploitation.

View Repository
13 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-2022-21907 - HTTP Protocol Stack Remote Code Execution Vulnerability

Python


⚠️ For educational and authorized security research purposes only

Original Exploit Authors

Very grateful to the original PoC author NU11SECURITY and michelep

Description:

HTTP Protocol Stack Remote Code Execution Vulnerability. This vulnerability would cause a denial-of-service attack to a target system that has an IIS web server.


Step Guides

  1. Install git, then clone the PoC from the github repository:

    root@kitploit:~
    sudo apt install git -y
    git clone https://github.com/asepsaepdin/CVE-2022-21907.git
    
  • Install the requirements using pip3 command:

    root@kitploit:~
    sudo apt install python3-pip -y
    cd CVE-2022-21907
    pip3 install -r requirements.txt
    
  • Check the presence of vulnerability of target machine using command:

    root@kitploit:~
    nmap -p 80 --script dos_iis_2022_21907 10.10.10.1
    
  • Then, run the PoC scripts using command:

    root@kitploit:~
    python3 CVE-2022-21907.py -i 10.10.1.10
    

    Notes: specify -i options with the target IP address


  • Credits

    • https://nvd.nist.gov/vuln/detail/CVE-2022-21907#match-8257502
    • https://www.exploit-db.com/exploits/51575
    • https://github.com/mauricelambert/CVE-2022-21907
    • https://github.com/michelep/CVE-2022-21907-Vulnerability-PoC

    Mitigations:

    • https://msrc.microsoft.com/update-guide/en-US/vulnerability/CVE-2022-21907

    Download Tool