Lucene search
+L

41867 matches found

Cvelist
Cvelist
added 2025/02/26 2:57 p.m.25 views

CVE-2022-49732 sock: redo the psock vs ULP protection check

In the Linux kernel, the following vulnerability has been resolved: sock: redo the psock vs ULP protection check Commit 8a59f9d1e3d4 "sock: Introduce sk-skprot-psockupdateskprot" has moved the inetcskhasulpsk check from skpsockinit to the new tcpbpfupdateproto function. I'm guessing that this was...

0.00202EPSS
SaveExploits0References3
CVE
CVE
added 2025/02/26 2:57 p.m.172 views

CVE-2022-49732

The CVE-2022-49732 issue in the Linux kernel concerns psock handling and ULP protection. A change moved the inet_csk_has_ulp(sk) check from sk_psock_init() to tcp_bpf_update_proto(), enabling psocks for non-inet sockets. The destruction path of psock includes the ULP unwind, so sk_psock_init() mu...

5.5CVSS5.4AI score0.00202EPSS
SaveExploits0References3Affected Software1
Schneier on Security
Schneier on Security
added 2025/02/26 12:07 p.m.11 views

UK Demanded Apple Add a Backdoor to iCloud

Last month, the UK government demanded that Apple weaken the security of iCloud for users worldwide. On Friday, Apple took steps to comply for users in the United Kingdom. But the British law is written in a way that requires Apple to give its government access to anyone, anywhere in the world. I...

6.9AI score
SaveExploits0
NVD
NVD
added 2025/02/26 7:01 a.m.12 views

CVE-2022-49578

In the Linux kernel, the following vulnerability has been resolved: ip: Fix data-races around sysctlipprotsock. sysctlipprotsock 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...

4.7CVSS0.00185EPSS
SaveExploits0References4
OSV
OSV
added 2025/02/26 7:01 a.m.4 views

DEBIAN-CVE-2022-49538

In the Linux kernel, the following vulnerability has been resolved: ALSA: jack: Access inputdev under mutex It is possible when using ASoC that inputdev is unregistered while calling sndjackreport, which causes NULL pointer dereference. In order to prevent this serialize access to inputdev using...

5.5CVSS5.1AI score0.00266EPSS
SaveExploits0References1
NVD
NVD
added 2025/02/26 7:01 a.m.32 views

CVE-2022-49456

In the Linux kernel, the following vulnerability has been resolved: bonding: fix missed rcu protection When removing the rcureadlock in bondethtoolgettsinfo as discussed 1, I didn't notice it could be called via setsockopt, which doesn't hold rcu lock, as syzbot pointed: stack backtrace: CPU: 0...

7.8CVSS0.00267EPSS
SaveExploits0References3
OSV
OSV
added 2025/02/26 7:01 a.m.7 views

DEBIAN-CVE-2022-49456

In the Linux kernel, the following vulnerability has been resolved: bonding: fix missed rcu protection When removing the rcureadlock in bondethtoolgettsinfo as discussed 1, I didn't notice it could be called via setsockopt, which doesn't hold rcu lock, as syzbot pointed: stack backtrace: CPU: 0...

5.5CVSS5.5AI score0.00267EPSS
SaveExploits0References1
OSV
OSV
added 2025/02/26 7:01 a.m.3 views

DEBIAN-CVE-2022-49443

In the Linux kernel, the following vulnerability has been resolved: list: fix a data-race around ep-rdllist eppoll first calls epeventsavailable with no lock held and checks if ep-rdllist is empty by listemptycareful, which reads rdllist-prev. Thus all accesses to it need some protection to avoid...

4.7CVSS5.5AI score0.00178EPSS
SaveExploits0References1
OSV
OSV
added 2025/02/26 7:01 a.m.5 views

DEBIAN-CVE-2022-49402

In the Linux kernel, the following vulnerability has been resolved: ftrace: Clean up hash directfunctions on register failures We see the following GPF when registerftracedirect fails: general protection fault, probably for non-canonical address \ 0x200000000000010: 0000 1 PREEMPT SMP...

5.5CVSS5.5AI score0.00281EPSS
SaveExploits0References1
NVD
NVD
added 2025/02/26 7:01 a.m.13 views

CVE-2022-49402

In the Linux kernel, the following vulnerability has been resolved: ftrace: Clean up hash directfunctions on register failures We see the following GPF when registerftracedirect fails: general protection fault, probably for non-canonical address \ 0x200000000000010: 0000 1 PREEMPT SMP...

5.5CVSS0.00281EPSS
SaveExploits0References5
OSV
OSV
added 2025/02/26 7:01 a.m.7 views

DEBIAN-CVE-2022-49288

In the Linux kernel, the following vulnerability has been resolved: ALSA: pcm: Fix races among concurrent prealloc proc writes We have no protection against concurrent PCM buffer preallocation changes via proc files, and it may potentially lead to UAF or some weird problem. This patch applies the...

7.8CVSS5.4AI score0.00279EPSS
SaveExploits0References1
OSV
OSV
added 2025/02/26 7:01 a.m.6 views

DEBIAN-CVE-2022-49278

In the Linux kernel, the following vulnerability has been resolved: remoteproc: Fix count check in rproccoredumpwrite Check count for 0, to avoid a potential underflow. Make the check the same as the one in rprocrecoverywrite...

7.1CVSS5.6AI score0.00263EPSS
SaveExploits0References1
OSV
OSV
added 2025/02/26 7:01 a.m.8 views

UBUNTU-CVE-2022-49402

In the Linux kernel, the following vulnerability has been resolved: ftrace: Clean up hash directfunctions on register failures We see the following GPF when registerftracedirect fails: general protection fault, probably for non-canonical address \ 0x200000000000010: 0000 1 PREEMPT SMP...

5.5CVSS6.2AI score0.00281EPSS
SaveExploits0References8
OSV
OSV
added 2025/02/26 7:01 a.m.10 views

UBUNTU-CVE-2022-49538

In the Linux kernel, the following vulnerability has been resolved: ALSA: jack: Access inputdev under mutex It is possible when using ASoC that inputdev is unregistered while calling sndjackreport, which causes NULL pointer dereference. In order to prevent this serialize access to inputdev using...

5.5CVSS6.1AI score0.00266EPSS
SaveExploits0References12
OSV
OSV
added 2025/02/26 7:01 a.m.7 views

UBUNTU-CVE-2022-49634

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
SaveExploits0References7
NVD
NVD
added 2025/02/26 7:00 a.m.20 views

CVE-2022-49202

In the Linux kernel, the following vulnerability has been resolved: Bluetooth: hciuart: add missing NULL check in h5enqueue Syzbot hit general protection fault in pmruntimeresume. The problem was in missing NULL check. hu-serdev can be NULL and we should not blindly pass &serdev-dev somewhere,...

5.5CVSS0.00256EPSS
SaveExploits0References4
OSV
OSV
added 2025/02/26 7:00 a.m.5 views

DEBIAN-CVE-2022-49134

In the Linux kernel, the following vulnerability has been resolved: mlxsw: spectrum: Guard against invalid local ports When processing events generated by the device's firmware, the driver protects itself from events reported for non-existent local ports, but not for the CPU port local port 0,...

5.5CVSS5.7AI score0.00231EPSS
SaveExploits0References1
OSV
OSV
added 2025/02/26 7:00 a.m.4 views

DEBIAN-CVE-2022-49089

In the Linux kernel, the following vulnerability has been resolved: IB/rdmavt: add lock to call to rvterrorqp to prevent a race condition The documentation of the function rvterrorqp says both rlock and slock need to be held when calling that function. It also asserts using lockdep that both of...

4.7CVSS5.3AI score0.0019EPSS
SaveExploits0References1
OSV
OSV
added 2025/02/26 7:00 a.m.3 views

DEBIAN-CVE-2022-49069

In the Linux kernel, the following vulnerability has been resolved: drm/amd/display: Fix by adding FPU protection for dcn30internalvalidatebw Why Below general protection fault observed when WebGL Aquarium is run for longer duration. If drm debug logs are enabled and set to 0x1f then the issue is...

5.5CVSS5.4AI score0.00255EPSS
SaveExploits0References1
OSV
OSV
added 2025/02/26 7:00 a.m.19 views

AZL-68462 CVE-2022-49069 affecting package kernel for versions less than 5.15.54.1-1

In the Linux kernel, the following vulnerability has been resolved: drm/amd/display: Fix by adding FPU protection for dcn30internalvalidatebw Why Below general protection fault observed when WebGL Aquarium is run for longer duration. If drm debug logs are enabled and set to 0x1f then the issue is...

5.5CVSS5.8AI score0.00255EPSS
SaveExploits0References1
Rows per page
Query Builder