Lucene search
+L

346 matches found

ATTACKERKB
ATTACKERKB
added yesterday2 views

CVE-2026-64157

In the Linux kernel, the following vulnerability has been resolved: netfs: Fix partial invalidation of streaming-write folio In netfsinvalidatefolio, if the region of a partial invalidation overlaps the front but not all of a dirty write cached in a streaming write page dirty, but not uptodate,...

5.2AI score
Exploits0References5Affected Software1
ATTACKERKB
ATTACKERKB
added yesterday2 views

CVE-2026-64156

In the Linux kernel, the following vulnerability has been resolved: netfs, afs: Fix write skipping in dir/link writepages Fix netfswritesingle and afssinglewritepages to better handle a write that would be skipped due to lock contention and WBSYNCNONE by returning 1 from netfswritesingle if it...

5.2AI score
Exploits0References4Affected Software1
CVE
CVE
added yesterday5 views

CVE-2026-64157

The CVE pertains to the Linux kernel netfs subsystem, specifically a bug in netfs_invalidate_folio() that mishandled partial invalidations of streaming-write folios. When the invalidation region overlapped the front of a dirty, not-up-to-date write page tracked by netfs_folio, the code moved the ...

5.4AI score
Exploits0References4
EUVD
EUVD
added yesterday4 views

EUVD-2026-45841

In the Linux kernel, the following vulnerability has been resolved: netfs, afs: Fix write skipping in dir/link writepages Fix netfswritesingle and afssinglewritepages to better handle a write that would be skipped due to lock contention and WBSYNCNONE by returning 1 from netfswritesingle if it...

5.4AI score
Exploits0References3
Cvelist
Cvelist
added yesterday3 views

CVE-2026-64069 netfs: Fix cancellation of a DIO and single read subrequests

In the Linux kernel, the following vulnerability has been resolved: netfs: Fix cancellation of a DIO and single read subrequests When the preparation of a new subrequest for a read fails, if the subrequest has already been added to the stream-subrequests list, it can't simply be put and abandoned...

Exploits0References3
CVE
CVE
added yesterday4 views

CVE-2026-64069

CVE-2026-64069 affects the Linux kernel netfs subsystem. The issue arises when a new subrequest for a read fails to prepare: if already added to stream->subrequests, it cannot be simply abandoned; if not queued yet, it holds two references to release. The patch harmonizes and fixes cancellatio...

5.4AI score
Exploits0References3
CVE
CVE
added yesterday6 views

CVE-2026-64068

CVE-2026-64068 : In the Linux kernel’s netfs, a race condition was introduced by missing locking when retrying and adding new subrequests to stream->subrequests during read/write retries. The fix updates netfs_retry_read_subrequests() and netfs_retry_write_stream() to acquire the appropriate l...

5.4AI score
Exploits0References2
Cvelist
Cvelist
added yesterday4 views

CVE-2026-64068 netfs: Fix missing locking around retry adding new subreqs

In the Linux kernel, the following vulnerability has been resolved: netfs: Fix missing locking around retry adding new subreqs Fix netfsretryreadsubrequests and netfsretrywritestream to take the appropriate lock when adding extra subrequests into stream-subrequests...

Exploits0References2
EUVD
EUVD
added yesterday3 views

EUVD-2026-45642

In the Linux kernel, the following vulnerability has been resolved: netfs: Fix cancellation of a DIO and single read subrequests When the preparation of a new subrequest for a read fails, if the subrequest has already been added to the stream-subrequests list, it can't simply be put and abandoned...

5.4AI score
Exploits0References3
Cvelist
Cvelist
added yesterday3 views

CVE-2026-64067 netfs: Fix missing barriers when accessing stream->subrequests locklessly

In the Linux kernel, the following vulnerability has been resolved: netfs: Fix missing barriers when accessing stream-subrequests locklessly The list of subrequests attached to stream-subrequests is accessed without locks by netfscollectreadresults and netfscollectwriteresults, and then they acce...

Exploits0References2
Cvelist
Cvelist
added yesterday4 views

CVE-2026-64066 netfs: Fix netfs_read_to_pagecache() to pause on subreq failure

In the Linux kernel, the following vulnerability has been resolved: netfs: Fix netfsreadtopagecache to pause on subreq failure Fix netfsreadtopagecache so that it pauses the generation of new subrequests if an already-issued subrequest fails...

Exploits0References3
CVE
CVE
added yesterday4 views

CVE-2026-64067

The CVE-2026-64067 entry describes a Linux kernel netfs vulnerability where stream->subrequests is accessed locklessly, allowing potential data-race conditions on subreq->flags. The fix introduces barriers-based synchronization: (1) list_add_tail_release() uses a release barrier when append...

5.4AI score
Exploits0References2
CVE
CVE
added yesterday5 views

CVE-2026-64065

CVE-2026-64065 concerns a Linux kernel issue in the netfs path: a VM_BUG_ON_FOLIO() problem within netfs_write_begin() can trigger a kernel BUG at mm/filemap.c:1504 (observed as an Oops with a reproduction via generic/013). The provided descriptions indicate this is a resolved vulnerability in th...

5.3AI score
Exploits0References4
Cvelist
Cvelist
added yesterday5 views

CVE-2026-64065 netfs: fix VM_BUG_ON_FOLIO() issue in netfs_write_begin() call

In the Linux kernel, the following vulnerability has been resolved: netfs: fix VMBUGONFOLIO issue in netfswritebegin call The multiple runs of generic/013 test-case is capable to reproduce a kernel BUG at mm/filemap.c:1504 with probability of 30%. while true; do sudo ./check generic/013 done...

Exploits0References4
EUVD
EUVD
added yesterday5 views

EUVD-2026-45638

In the Linux kernel, the following vulnerability has been resolved: netfs: fix VMBUGONFOLIO issue in netfswritebegin call The multiple runs of generic/013 test-case is capable to reproduce a kernel BUG at mm/filemap.c:1504 with probability of 30%. while true; do sudo ./check generic/013 done...

5.3AI score
Exploits0References4
Cvelist
Cvelist
added yesterday4 views

CVE-2026-64064 netfs: Fix netfs_invalidate_folio() to clear dirty bit if all changes gone

In the Linux kernel, the following vulnerability has been resolved: netfs: Fix netfsinvalidatefolio to clear dirty bit if all changes gone If a streaming write is made, this will leave the relevant modified folio in a not-uptodate, but dirty state with a netfsfolio struct hung off of folio-privat...

Exploits0References4
CVE
CVE
added yesterday4 views

CVE-2026-64063

CVE-2026-64063 concerns the Linux kernel netfs subsystem, where streaming writes could partially overwrite dirty folios without correctly updating state. The issue occurred when a partially written streaming page was overwritten by a subsequent write: netfs_perform_write() could copy over the pag...

5.4AI score
Exploits0References4
Cvelist
Cvelist
added yesterday4 views

CVE-2026-64063 netfs: Fix streaming write being overwritten

In the Linux kernel, the following vulnerability has been resolved: netfs: Fix streaming write being overwritten In order to avoid reading whilst writing, netfslib will allow "streaming writes" in which dirty data is stored directly into folios without reading them first. Such folios are marked...

Exploits0References4
EUVD
EUVD
added yesterday3 views

EUVD-2026-45637

In the Linux kernel, the following vulnerability has been resolved: netfs: Fix netfsinvalidatefolio to clear dirty bit if all changes gone If a streaming write is made, this will leave the relevant modified folio in a not-uptodate, but dirty state with a netfsfolio struct hung off of folio-privat...

5.3AI score
Exploits0References4
EUVD
EUVD
added yesterday5 views

EUVD-2026-45636

In the Linux kernel, the following vulnerability has been resolved: netfs: Fix streaming write being overwritten In order to avoid reading whilst writing, netfslib will allow "streaming writes" in which dirty data is stored directly into folios without reading them first. Such folios are marked...

5.4AI score
Exploits0References4
Rows per page
Query Builder