CVE-2026-88370
Received Received - Intake

Heap Out-of-Bounds Write in libconfini

Vulnerability report for CVE-2026-88370, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.

Publication date: 2026-09-24

Last updated on: 2026-09-24

Assigner: MITRE

Description

libconfini 1.16.4 contains a heap out-of-bounds write condition involving the bundled load_ini_buffer.h utility and strip_ini_cache(). The bundled utility allocates exactly ini_length bytes, while strip_ini_cache() unconditionally writes a NUL terminator at ini_source[ini_length], requiring an additional writable byte. Applications using the bundled allocation pattern can trigger deterministic heap memory corruption when processing any non-empty INI input, resulting in denial of service.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-09-24
Last Modified
2026-09-24
Generated
2026-09-24
AI Q&A
2026-09-24
EPSS Evaluated
N/A
NVD
EUVD

Affected Vendors & Products

Showing 1 associated CPE
Vendor Product Version / Range
madmurphy libconfini 1.16.4

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-UNKNOWN

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Executive Summary

libconfini 1.16.4 has a heap out-of-bounds write in the strip_ini_cache() function. The function writes a null terminator one byte past the allocated buffer when processing non-empty INI input, causing heap memory corruption. This happens because the bundled utility allocates exactly ini_length bytes instead of the required ini_length + 1 bytes.

Detection Guidance

To detect this vulnerability, you can use tools like AddressSanitizer (ASan) or Valgrind to monitor heap memory corruption. Compile the application using libconfini 1.16.4 with ASan enabled and run it against non-empty INI input files. If heap-buffer-overflow errors are reported, the vulnerability is likely present.

Impact Analysis

This vulnerability can cause denial of service by corrupting heap memory. It may also lead to other security issues depending on the application's use of the libconfini library. The impact is deterministic for any non-empty input processed by vulnerable applications.

Mitigation Strategies

Immediately update libconfini to a patched version where the bundled utility allocates ini_length + 1 bytes. If an update is unavailable, modify the application to allocate an extra byte for the null terminator. Additionally, add input validation to ensure ini_length does not exceed buffer size.

Chat Assistant

Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-88370. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70

EPSS Chart