Lucene search
+L

582 matches found

OSV
OSV
added 2024/04/17 10:27 a.m.13 views

CVE-2024-26862 packet: annotate data-races around ignore_outgoing

In the Linux kernel, the following vulnerability has been resolved: packet: annotate data-races around ignoreoutgoing ignoreoutgoing is read locklessly from devqueuexmitnit and packetgetsockopt Add appropriate READONCE/WRITEONCE annotations. syzbot reported: BUG: KCSAN: data-race in devqueuexmitn...

6.1AI score
SaveExploits0References12
RedHat Linux
RedHat Linux
added 2023/11/14 3:46 p.m.6 views

kernel: cipso: Fix data-races around sysctl.

In the Linux kernel, the following vulnerability has been resolved: cipso: Fix data-races around sysctl. While reading cipso sysctl variables, they can be changed concurrently. So, we need to add READONCE to avoid data-races...

4.7CVSS6.3AI score0.00175EPSS
SaveExploits0References5
RedHat Linux
RedHat Linux
added 2023/05/16 8:56 a.m.5 views

kernel: udp: Fix a data-race around sysctl_udp_l3mdev_accept.

In the Linux kernel, the following vulnerability has been resolved: udp: Fix a data-race around sysctludpl3mdevaccept. While reading sysctludpl3mdevaccept, it can be changed concurrently. Thus, we need to add READONCE to its reader...

4.7CVSS6.2AI score0.00185EPSS
SaveExploits0References5
RedHat Linux
RedHat Linux
added 2023/05/09 10:4 a.m.4 views

kernel: bpf: Fix a data-race around bpf_jit_limit.

In the Linux kernel, the following vulnerability has been resolved: bpf: Fix a data-race around bpfjitlimit. While reading bpfjitlimit, it can be changed concurrently via sysctl, WRITEONCE in doprocdoulongvecminmax. The size of bpfjitlimit is long, so we need to add a paired READONCE to avoid...

4.7CVSS5.7AI score0.00123EPSS
SaveExploits0References5
RedHat Linux
RedHat Linux
added 2023/05/09 10:4 a.m.5 views

kernel: cipso: Fix data-races around sysctl.

In the Linux kernel, the following vulnerability has been resolved: cipso: Fix data-races around sysctl. While reading cipso sysctl variables, they can be changed concurrently. So, we need to add READONCE to avoid data-races...

4.7CVSS6.3AI score0.00175EPSS
SaveExploits0References5
RedHat Linux
RedHat Linux
added 2023/05/09 10:4 a.m.5 views

kernel: nexthop: Fix data-races around nexthop_compat_mode.

In the Linux kernel, the following vulnerability has been resolved: nexthop: Fix data-races around nexthopcompatmode. While reading nexthopcompatmode, it can be changed concurrently. Thus, we need to add READONCE to its readers...

4.7CVSS6.3AI score0.00176EPSS
SaveExploits0References5
RedHat Linux
RedHat Linux
added 2023/05/09 10:4 a.m.6 views

kernel: tcp/dccp: Fix a data-race around sysctl_tcp_fwmark_accept.

In the Linux kernel, the following vulnerability has been resolved: tcp/dccp: Fix a data-race around sysctltcpfwmarkaccept. While reading sysctltcpfwmarkaccept, it can be changed concurrently. Thus, we need to add READONCE to its reader...

4.7CVSS6.3AI score0.00186EPSS
SaveExploits0References5
RedHat Linux
RedHat Linux
added 2023/05/09 10:4 a.m.5 views

kernel: ip: Fix a data-race around sysctl_ip_autobind_reuse.

In the Linux kernel, the following vulnerability has been resolved: ip: Fix a data-race around sysctlipautobindreuse. While reading sysctlipautobindreuse, it can be changed concurrently. Thus, we need to add READONCE to its reader...

4.7CVSS6.3AI score0.00188EPSS
SaveExploits0References5
RedHat Linux
RedHat Linux
added 2023/05/09 10:4 a.m.5 views

kernel: tcp: Fix data-races around sysctl_tcp_mtu_probing.

In the Linux kernel, the following vulnerability has been resolved: tcp: Fix data-races around sysctltcpmtuprobing. While reading sysctltcpmtuprobing, it can be changed concurrently. Thus, we need to add READONCE to its readers...

4.7CVSS6.3AI score0.00186EPSS
SaveExploits0References5
RedHat Linux
RedHat Linux
added 2023/05/09 10:4 a.m.4 views

kernel: tcp: Fix a data-race around sysctl_tcp_probe_interval.

In the Linux kernel, the following vulnerability has been resolved: tcp: Fix a data-race around sysctltcpprobeinterval. While reading sysctltcpprobeinterval, it can be changed concurrently. Thus, we need to add READONCE to its reader...

4.7CVSS6.3AI score0.00186EPSS
SaveExploits0References5
RedHat Linux
RedHat Linux
added 2023/05/09 10:4 a.m.7 views

kernel: tcp: Fix data-races around sysctl_tcp_slow_start_after_idle.

In the Linux kernel, the following vulnerability has been resolved: tcp: Fix data-races around sysctltcpslowstartafteridle. While reading sysctltcpslowstartafteridle, it can be changed concurrently. Thus, we need to add READONCE to its readers...

4.7CVSS6.3AI score0.00186EPSS
SaveExploits0References5
RedHat Linux
RedHat Linux
added 2023/05/09 10:4 a.m.7 views

kernel: tcp: Fix data-races around sysctl_tcp_fastopen_blackhole_timeout.

In the Linux kernel, the following vulnerability has been resolved: tcp: Fix data-races around sysctltcpfastopenblackholetimeout. While reading sysctltcpfastopenblackholetimeout, it can be changed concurrently. Thus, we need to add READONCE to its readers...

4.7CVSS6.3AI score0.00185EPSS
SaveExploits0References5
RedHat Linux
RedHat Linux
added 2023/05/09 10:4 a.m.6 views

kernel: sysctl: Fix data-races in proc_dou8vec_minmax().

In the Linux kernel, the following vulnerability has been resolved: sysctl: Fix data-races in procdou8vecminmax. A sysctl variable is accessed concurrently, and there is always a chance of data-race. So, all readers and writers need some basic protection to avoid load/store-tearing. This patch...

4.7CVSS6.3AI score0.00183EPSS
SaveExploits0References5
RedHat Linux
RedHat Linux
added 2023/05/09 10:4 a.m.3 views

kernel: igmp: Fix data-races around sysctl_igmp_llm_reports.

In the Linux kernel, the following vulnerability has been resolved: igmp: Fix data-races around sysctligmpllmreports. While reading sysctligmpllmreports, it can be changed concurrently. Thus, we need to add READONCE to its readers. This test can be packed into a helper, so such changes will be in...

4.7CVSS6.3AI score0.00186EPSS
SaveExploits0References5
RedHat Linux
RedHat Linux
added 2023/05/09 10:4 a.m.5 views

kernel: tcp: Fix data-races around sysctl_tcp_migrate_req.

In the Linux kernel, the following vulnerability has been resolved: tcp: Fix data-races around sysctltcpmigratereq. While reading sysctltcpmigratereq, it can be changed concurrently. Thus, we need to add READONCE to its readers...

4.7CVSS6.3AI score0.00181EPSS
SaveExploits0References5
RedHat Linux
RedHat Linux
added 2023/05/09 10:4 a.m.6 views

kernel: udp: Fix a data-race around sysctl_udp_l3mdev_accept.

In the Linux kernel, the following vulnerability has been resolved: udp: Fix a data-race around sysctludpl3mdevaccept. While reading sysctludpl3mdevaccept, it can be changed concurrently. Thus, we need to add READONCE to its reader...

4.7CVSS6.2AI score0.00185EPSS
SaveExploits0References5
RedHat Linux
RedHat Linux
added 2023/05/09 10:4 a.m.4 views

kernel: tcp: Fix data-races around sysctl_tcp_recovery.

In the Linux kernel, the following vulnerability has been resolved: tcp: Fix data-races around sysctltcprecovery. While reading sysctltcprecovery, it can be changed concurrently. Thus, we need to add READONCE to its readers...

4.7CVSS6.3AI score0.00186EPSS
SaveExploits0References5
RedHat Linux
RedHat Linux
added 2023/05/09 10:4 a.m.5 views

kernel: ipv4: Fix a data-race around sysctl_fib_sync_mem.

In the Linux kernel, the following vulnerability has been resolved: ipv4: Fix a data-race around sysctlfibsyncmem. While reading sysctlfibsyncmem, it can be changed concurrently. So, we need to add READONCE to avoid a data-race...

4.7CVSS6.3AI score0.00176EPSS
SaveExploits0References5
RedHat Linux
RedHat Linux
added 2023/05/09 10:4 a.m.6 views

kernel: tcp: Fix a data-race around sysctl_tcp_ecn_fallback.

In the Linux kernel, the following vulnerability has been resolved: tcp: Fix a data-race around sysctltcpecnfallback. While reading sysctltcpecnfallback, it can be changed concurrently. Thus, we need to add READONCE to its reader...

4.7CVSS6.3AI score0.00174EPSS
SaveExploits0References5
RedHat Linux
RedHat Linux
added 2023/05/09 10:4 a.m.3 views

kernel: ip: Fix data-races around sysctl_ip_fwd_use_pmtu.

In the Linux kernel, the following vulnerability has been resolved: ip: Fix data-races around sysctlipfwdusepmtu. While reading sysctlipfwdusepmtu, it can be changed concurrently. Thus, we need to add READONCE to its readers...

4.7CVSS6.3AI score0.00188EPSS
SaveExploits0References5
Rows per page
Query Builder