CVE-2026-52761
Owasp Modsecurity 3.0.0 – 3.0.15
Raw vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:NSummary
CVE-2026-52761 is a medium-severity Use of sizeof() on a Pointer Type (CWE-467) vulnerability in Owasp Modsecurity. Its CVSS base score is 5.8 (Medium).
Operationally, exploitation aligns with the MITRE ATT&CK technique Exploitation for Privilege Escalation (T1068); ranked at the 34th percentile by exploit likelihood (below the median); it is not currently listed in the CISA KEV catalog.
The strongest mitigations our analysis identified map to SA-11 (Developer Testing and Evaluation) and AT-3 (Role-based Training) — see the control section below for these in your framework.
EU & UK References
- 🇪🇺 ENISA EUVD: EUVD-2026-43113
Vulnerability Data
ModSecurity is an open source, cross platform web application firewall (WAF) engine for Apache, IIS and Nginx. From 3.0.0 through 3.0.15, the t:utf8toUnicode transformation in src/actions/transformations/utf8_to_unicode.cc produces wrong output on i386 architecture because snprintf uses sizeof on a char pointer…
more
rather than the length of the unicode buffer, allowing rules that use this transformation to be bypassed on i386 architecture. This issue is fixed in version 3.0.16.
- CWE(s)
Related Threats
MITRE ATT&CK Enterprise Techniques
CVEs Like This One
Affected Assets
Mitigating Controls
Mitigating Controls (NIST 800-53 r5) AI
Developer testing and evaluation can discover incorrect sizeof(pointer) usage via static analysis or test cases that expose wrong buffer sizes.
Role-based secure-coding training teaches developers to use sizeof on the target object rather than the pointer.
Requiring documented development standards and tools can embed coding rules and checkers that forbid sizeof on pointer types.
Mitigating Controls (NIST CSF 2.0) AI
Derived directly from the weakness types (CWEs) cited in the NVD entry via our AI-authored CWE→CSF cross-walk (authority under review) — links open the control.
Secure SDLC practices directly prevent pointer-sizeof mistakes via static analysis and code review while this single weakness addresses only a narrow slice of the control.
Mitigating Controls (ISO/IEC 27001:2022 Annex A) AI
Derived directly from the weakness types (CWEs) cited in the NVD entry via our AI-authored CWE→ISO cross-walk (authority under review) — links open the control.
Security testing can detect sizeof(pointer) errors but does not prevent them at source.
Secure SDLC processes include coding standards that reduce this class of defect.
Secure coding rules directly forbid sizeof(pointer) mistakes that produce incorrect buffer sizes.