
Working DoS for CVE-2025-15467 and a docker container to test against
Stack-Pufferüberlauf in der OpenSSL CMS AuthEnvelopedData-Analyse.
Ein Stack-Pufferüberlauf existiert in evp_cipher_get_asn1_aead_params() beim Parsen von AEAD-Chiffreparametern (z.B. AES-GCM) in CMS AuthEnvelopedData-Inhalten. Ein überdimensionierter IV überläuft einen 16-Byte-Stack-Puffer, was Denial-of-Service und potenziell Remote-Code-Ausführung ermöglicht.
| Branch | Anfällig | Behoben |
|---|---|---|
| 3.6.x | 3.6.0 | 3.6.1+ |
| 3.5.x | 3.5.0-3.5.4 | 3.5.5+ |
| 3.4.x | 3.4.0-3.4.3 | 3.4.4+ |
| 3.3.x | 3.3.0-3.3.5 | 3.3.6+ |
| 3.0.x | 3.0.0-3.0.18 | 3.0.19+ |
OpenSSL 1.x ist nicht betroffen.
.
├── README.md
├── dos.py # DoS-Exploit
└── vulnerable_service/
├── Dockerfile # Erstellt anfälligen Testdienst
├── entrypoint.sh # Container-Einstiegspunkt
└── cms_server.c # Anfälliger HTTP-CMS-Parser
cd vulnerable_service
docker build -t vuln-cms .
docker run --rm -p 8080:8080 --privileged vuln-cms
python3 dos.py <host> <port>
# Example:
python3 dos.py localhost 8080