HOMEVULNERABILITIESCVE-2026-45837
NONE

CVE-2026-45837

Published: May 27, 2026· Updated: May 27, 2026

EPSS:0.02%probability of exploitation in 30 daysPercentile:4.9th

Official Description

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

bpf: Fix use-after-free in arena_vm_close on fork

arena_vm_open() only bumps vml->mmap_count but never registers the

child VMA in arena->vma_list. The vml->vma always points at the

parent VMA, so after parent munmap the pointer dangles. If the child

then calls bpf_arena_free_pages(), zap_pages() reads the stale

vml->vma triggering use-after-free.

Fix this by preventing the arena VMA from being inherited across

fork with VM_DONTCOPY, and preventing VMA splits via the may_split

callback.

Also reject mremap with a .mremap callback returning -EINVAL. A

same-size mremap(MREMAP_FIXED) on the full arena VMA reaches

copy_vma() through the following path:

check_prep_vma() - returns 0 early: new_len == old_len

skips VM_DONTEXPAND check

prep_move_vma() - vm_start == old_addr and

vm_end == old_addr + old_len

so may_split is never called

move_vma()

copy_vma_and_data()

copy_vma()

vm_area_dup() - copies vm_private_data (vml pointer)

vm_ops->open() - bumps vml->mmap_count

vm_ops->mremap() - returns -EINVAL, rollback unmaps new VMA

The refcount ensures the rollback's arena_vm_close does not free

the vml shared with the original VMA.

NVD Source

Technical Analysis

CVE-2026-45837 requires local access, meaning attackers must already have a foothold on the target system.

Exploitation requires some privileges, which limits the exposure to scenarios where an attacker has already gained initial access.

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 (4)

Quick Facts

CVE IDCVE-2026-45837
SeverityNONE
CISA KEVNo
EPSS (30d)0.02%
PublishedMay 27, 2026

Recommended Actions

  • Apply vendor patches immediately
  • Monitor CVE-2026-45837 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.