HOMEVULNERABILITIESCVE-2026-53199
HIGH

CVE-2026-53199

Published: June 25, 2026· Updated: Jun 30, 2026

7.5
CVSS v3.1
EPSS:0.18%probability of exploitation in 30 daysPercentile:8.2th

Official Description

In the Linux kernel, the following vulnerability has been resolved:

hv_netvsc: use kmap_local_page in netvsc_copy_to_send_buf

netvsc_copy_to_send_buf() copies page buffer entries into the VMBus

send buffer using phys_to_virt() on the entry PFN. Entries for the

RNDIS header and the skb linear data come from kmalloc'd memory and

are always in the kernel direct map, but entries for skb fragments

reference page cache or user pages, which on 32-bit x86 with

CONFIG_HIGHMEM=y can live above the LOWMEM boundary. For such a page

phys_to_virt() returns an address outside the direct map and the

subsequent memcpy() faults on the transmit softirq path, which is

fatal.

Map the pages with kmap_local_page() instead, handling two properties

of the page buffer entries:

- pb[i].pfn is a Hyper-V PFN at HV_HYP_PAGE_SIZE (4K) granularity,

not a native PFN. Reconstruct the physical address first and derive

the native page from it, so the mapping stays correct where

PAGE_SIZE > HV_HYP_PAGE_SIZE (e.g. arm64 with 64K pages).

- Since commit 41a6328b2c55 ("hv_netvsc: Preserve contiguous PFN

grouping in the page buffer array"), an entry describes a full

physically contiguous fragment and pb[i].len can exceed PAGE_SIZE,

while kmap_local_page() maps a single page. Copy page by page,

splitting at native page boundaries.

The copy path only handles packets smaller than the send section size

(6144 bytes by default); larger packets take the cp_partial path where

only the RNDIS header is copied. So entries here are bounded by the

section size and a copy is split at most once on 4K-page systems. On

!CONFIG_HIGHMEM configs kmap_local_page() folds to page_address() and

no mapping work is added.

NVD Source

Technical Analysis

CVE-2026-53199 can be exploited remotely over the network without requiring physical or adjacent access, significantly expanding the attack surface for threat actors.

The vulnerability requires no privileges and no user interaction, making it a prime target for automated exploitation campaigns and worm-like propagation.

A successful exploit results in availability disruption (denial of service), with a CVSS base score of 7.5.

CVSS v3.1 Vector Breakdown

Exploitability
Attack VectorNetwork
Attack ComplexityLow
Privileges Req.None
User InteractionNone
ScopeUnchanged
Impact
ConfidentialityNone
IntegrityNone
AvailabilityHigh
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H

Affected Vendors & Products

Mentioned vendors (from description):
Linux
CPE data not yet available in NVD for this CVE.

Exploit & PoC Resources

NO KNOWN EXPLOITNo public exploit confirmed at this time
External links open in a new tab. Always verify in a controlled environment before use.

All References (8)

Quick Facts

CVE IDCVE-2026-53199
CVSS Score7.5 / 10
SeverityHIGH
CISA KEVNo
EPSS (30d)0.18%
PublishedJun 25, 2026

Recommended Actions

  • Apply vendor patches immediately
  • Monitor CVE-2026-53199 in threat intel feeds
  • Review IDS/IPS signatures for exploitation attempts
Data sourced from NVD (NIST), CISA KEV, and EPSS (FIRST). Analysis generated by CTIWATCH.COM. CVE data is provided under the NVD usage policy.