---
id: CVE-2026-52999
title: |-
  In the Linux kernel, the following vulnerability has been resolved:

  netfilter: nfnetlink_osf: fix out-of-bounds read on option matching

  In nf_osf_match(), the nf_osf_hdr_ctx structure is initialized once
  and passed by reference to nf_o…
summary: |-
  In the Linux kernel, the following vulnerability has been resolved:

  netfilter: nfnetlink_osf: fix out-of-bounds read on option matching

  In nf_osf_match(), the nf_osf_hdr_ctx structure is initialized once
  and passed by reference to nf_o…
severity: critical
cvss: 9.1
cvssVector: 'CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:H'
cwe:
  - CWE-125
vendor: linux
product: linux_kernel
affected:
  - 'linux_kernel >= 4.19.26, < 4.20'
  - 'linux_kernel >= 4.20.13, < 5.0'
  - 'linux_kernel >= 5.0.1, < 5.10.258'
  - 'linux_kernel >= 5.11, < 5.15.209'
  - 'linux_kernel >= 5.16, < 6.1.175'
  - 'linux_kernel >= 6.2, < 6.6.141'
  - 'linux_kernel >= 6.7, < 6.12.91'
  - 'linux_kernel >= 6.13, < 6.18.33'
  - 'linux_kernel >= 6.19, < 7.0.10'
  - linux_kernel = 5.0
patched:
  - linux_kernel 7.0.10
published: '2026-06-24'
updated: '2026-09-08'
sourceUpdated: '2026-09-08T09:18:12.990'
source: NVD
sourceUrl: 'https://nvd.nist.gov/vuln/detail/CVE-2026-52999'
references:
  - url: 'https://git.kernel.org/stable/c/0145548346c4a30981a870a8ca00eac46ba27e85'
    label: 416baaa9-dc9f-4396-8d5f-8c081fb06d67
  - url: 'https://git.kernel.org/stable/c/1c136f2c44a5913646bac85303612fd0825197a0'
    label: 416baaa9-dc9f-4396-8d5f-8c081fb06d67
  - url: 'https://git.kernel.org/stable/c/1e19a07291bb8682c14c39a64725a3ae54ab8ccc'
    label: 416baaa9-dc9f-4396-8d5f-8c081fb06d67
  - url: 'https://git.kernel.org/stable/c/21883587593d7c8bb519a79460a0b5bc5ffbdabd'
    label: 416baaa9-dc9f-4396-8d5f-8c081fb06d67
  - url: 'https://git.kernel.org/stable/c/32e50f92c7cf3f4eba29622179a5fcdc2aebab41'
    label: 416baaa9-dc9f-4396-8d5f-8c081fb06d67
  - url: 'https://git.kernel.org/stable/c/70a3f31d25cf2ec9d4ddfa408120171ead955623'
    label: 416baaa9-dc9f-4396-8d5f-8c081fb06d67
  - url: 'https://git.kernel.org/stable/c/edb78a142d2e5948e63647c0646aa7e7886935f0'
    label: 416baaa9-dc9f-4396-8d5f-8c081fb06d67
  - url: 'https://git.kernel.org/stable/c/f5ca450087c3baf3651055e7a6de92600f827af3'
    label: 416baaa9-dc9f-4396-8d5f-8c081fb06d67
  - url: 'https://cert-portal.siemens.com/productcert/html/ssa-019113.html'
    label: 0b142b55-0307-4c5a-b3c9-f314f3fb7c5e
tags:
  - nvd
  - cve.org
epss: 0.00823
epssPercentile: 0.55459
ingestedAt: '2026-07-11T14:13:28.129Z'
---

## Overview

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

netfilter: nfnetlink_osf: fix out-of-bounds read on option matching

In nf_osf_match(), the nf_osf_hdr_ctx structure is initialized once
and passed by reference to nf_osf_match_one() for each fingerprint
checked. During TCP option parsing, nf_osf_match_one() advances the
shared ctx->optp pointer.

If a fingerprint perfectly matches, the function returns early without
restoring ctx->optp to its initial state. If the user has configured
NF_OSF_LOGLEVEL_ALL, the loop continues to the next fingerprint.
However, because ctx->optp was not restored, the next call to
nf_osf_match_one() starts parsing from the end of the options buffer.
This causes subsequent matches to read garbage data and fail
immediately, making it impossible to log more than one match or logging
incorrect matches.

Instead of using a shared ctx->optp pointer, pass the context as a
constant pointer and use a local pointer (optp) for TCP option
traversal. This makes nf_osf_match_one() strictly stateless from the
caller's perspective, ensuring every fingerprint check starts at the
correct option offset.

## Affected

- `linux_kernel >= 4.19.26, < 4.20`
- `linux_kernel >= 4.20.13, < 5.0`
- `linux_kernel >= 5.0.1, < 5.10.258`
- `linux_kernel >= 5.11, < 5.15.209`
- `linux_kernel >= 5.16, < 6.1.175`
- `linux_kernel >= 6.2, < 6.6.141`
- `linux_kernel >= 6.7, < 6.12.91`
- `linux_kernel >= 6.13, < 6.18.33`
- `linux_kernel >= 6.19, < 7.0.10`
- `linux_kernel = 5.0`

## Remediation

Upgrade past the affected range:

- `linux_kernel 7.0.10`
