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-2025-15467 — Working DoS for CVE-2025-15467 and a docker container to test against | Kitploit
Tools/GitHubGitHub/balgan/cve-2025-15467
Vulnerability AnalysisExploitationCryptographyLearning & EducationBinary Exploitation
GitHubbalgan/cve-2025-15467

CVE-2025-15467

Working DoS for CVE-2025-15467 and a docker container to test against

View Repository
86 months 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-2025-15467

Stack buffer overflow in OpenSSL CMS AuthEnvelopedData parsing.

Vulnerability

A stack buffer overflow exists in evp_cipher_get_asn1_aead_params() when parsing AEAD cipher parameters (e.g., AES-GCM) in CMS AuthEnvelopedData content. An oversized IV overflows a 16-byte stack buffer, allowing denial of service and potentially remote code execution.

Affected Versions

BranchVulnerableFixed
3.6.x3.6.03.6.1+
3.5.x3.5.0-3.5.43.5.5+
3.4.x3.4.0-3.4.33.4.4+
3.3.x3.3.0-3.3.53.3.6+
3.0.x3.0.0-3.0.183.0.19+

OpenSSL 1.x is not affected.

Files

root@kitploit:~
.
├── README.md
├── dos.py                    # DoS exploit
└── vulnerable_service/
    ├── Dockerfile            # Builds vulnerable test service
    ├── entrypoint.sh         # Container entrypoint
    └── cms_server.c          # Vulnerable HTTP CMS parser

Usage

1. Start Vulnerable Service

root@kitploit:~
cd vulnerable_service
docker build -t vuln-cms .
docker run --rm -p 8080:8080 --privileged vuln-cms

2. Run DoS Exploit

root@kitploit:~
python3 dos.py <host> <port>

# Example:
python3 dos.py localhost 8080

References

  • OpenSSL Security Advisory
  • Fix Commit
Download Tool