Cyber Resilience

CVE-2026-48689

CriticalPublic PoC

Published: 26 May 2026

Published
26 May 2026
Modified
27 May 2026
KEV Added
Patch
CVSS Score v3.1 9.8 CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
EPSS Score 0.0068 47.7th percentile
Risk Priority 70 floored blend · peak EPSS

Summary

CVE-2026-48689 is a critical-severity Out-of-bounds Write (CWE-787) vulnerability in Pavel-Odintsov Fastnetmon. Its CVSS base score is 9.8 (Critical).

Operationally, exploitation aligns with the MITRE ATT&CK technique Exploit Public-Facing Application (T1190); ranked at the 47.7th percentile by exploit likelihood (below the median); it is not currently listed in the CISA KEV catalog; a public proof-of-concept is referenced.

EU & UK References

Vulnerability details

FastNetMon Community Edition through 1.2.9 contains an off-by-one heap-based buffer overflow in the dynamic_binary_buffer_t class (src/dynamic_binary_buffer.hpp). Five methods (append_dynamic_buffer, append_data_as_pointer, append_data_as_object_ptr, memcpy_from_ptr, memcpy_from_object_ptr) use an incorrect bounds check of the form 'if (offset + length > maximum_internal_storage_size + 1)' instead…

more

of the correct 'if (offset + length > maximum_internal_storage_size)'. This allows writing exactly one byte past the end of the heap-allocated buffer. The class is used pervasively in BGP message encoding/decoding, NetFlow template processing, and Flow Spec NLRI construction. An attacker who can send network traffic (NetFlow, sFlow, IPFIX, or BGP) to a FastNetMon instance can trigger this overflow, potentially achieving arbitrary code execution by corrupting heap metadata. Notably, the append_byte() method uses the correct bounds check, confirming the inconsistency.

CWE(s)

Related Threats

MITRE ATT&CK Enterprise TechniquesAI

T1190 Exploit Public-Facing Application Initial Access
Adversaries may attempt to exploit a weakness in an Internet-facing host or system to initially access a network.
Why these techniques?

Remote heap buffer overflow in network-facing service (BGP/NetFlow/sFlow/IPFIX) directly enables remote code execution against a public-facing application.

Confidence: HIGH · MITRE ATT&CK Enterprise v19.0

CVEs Like This One

CVE-2026-48691Same product: Pavel-Odintsov Fastnetmon
CVE-2026-48686Same product: Pavel-Odintsov Fastnetmon
CVE-2026-48690Same product: Pavel-Odintsov Fastnetmon
CVE-2026-48692Same product: Pavel-Odintsov Fastnetmon
CVE-2026-48688Same product: Pavel-Odintsov Fastnetmon
CVE-2026-48687Same product: Pavel-Odintsov Fastnetmon
CVE-2026-48694Same product: Pavel-Odintsov Fastnetmon
CVE-2026-48697Same product: Pavel-Odintsov Fastnetmon
CVE-2026-48695Same product: Pavel-Odintsov Fastnetmon
CVE-2025-58447Shared CWE-122, CWE-787

Affected Assets

pavel-odintsov
fastnetmon
≤ 1.2.9

Mitigating Controls

Likely Mitigating Controls AI

Per-CVE control mapping for this CVE has not run yet; the list below is derived from the weakness types (CWEs) cited in the NVD entry.

addresses: CWE-787

Out-of-bounds writes that corrupt control flow or inject shellcode are rendered non-executable by the same memory protections.

References