CVE-2026-52999
In the Linux kernel, the following vulnerability has been resolved:
netfilter: nfnetlink_osf: fix out-of-bounds read on option matching
In nfosfmatch(), the nfosfhdr_ctx structure is initialized once
and passed by reference to nfosfmatch_one() for each fingerprint
checked. During TCP option parsing, nfosfmatch_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
NFOSFLOGLEVEL_ALL, the loop continues to the next fingerprint.
However, because ctx->optp was not restored, the next call to
nfosfmatch_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 nfosfmatch_one() strictly stateless from the
caller's perspective, ensuring every fingerprint check starts at the
correct option offset.
Package Versions Affected
Automatically patch vulnerabilities without upgrading
CVSS Version



Related Resources
References
https://git.kernel.org/stable/c/0145548346c4a30981a870a8ca00eac46ba27e85, https://git.kernel.org/stable/c/1c136f2c44a5913646bac85303612fd0825197a0, https://git.kernel.org/stable/c/1e19a07291bb8682c14c39a64725a3ae54ab8ccc, https://git.kernel.org/stable/c/21883587593d7c8bb519a79460a0b5bc5ffbdabd, https://git.kernel.org/stable/c/32e50f92c7cf3f4eba29622179a5fcdc2aebab41, https://git.kernel.org/stable/c/70a3f31d25cf2ec9d4ddfa408120171ead955623, https://git.kernel.org/stable/c/edb78a142d2e5948e63647c0646aa7e7886935f0, https://git.kernel.org/stable/c/f5ca450087c3baf3651055e7a6de92600f827af3, https://github.com/CVEProject/cvelistV5/tree/main/cves/2026/52xxx/CVE-2026-52999.json, https://nvd.nist.gov/vuln/detail/CVE-2026-52999, https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git