CVE-2015-5694: Designate does not enforce the DNS protocol limit concerning record set sizes
6.5
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.75238%
CWE
Published
5/24/2022
Updated
11/26/2024
KEV Status
No
Technology
Python
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
designate | pip | = 2015.1.0b2 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from improper handling of DNS record set sizes during response generation. The CWE-835 (infinite loop) and advisory descriptions explicitly mention the mDNS component entering an infinite loop when processing oversized records. The '_do_process_query' method in the mdns handler is the logical point where DNS query processing and response rendering occur. The absence of size checks and packet splitting logic in this function would directly cause the infinite loop described in CVE-2015-5694. While the exact code isn't shown, the component (designate-mdns) and attack pattern match this function's responsibilities.