Lucene search
+L

59 matches found

Debian CVE
Debian CVE
added 2025/02/26 2:13 a.m.29 views

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.00255EPSS
SaveExploits0
Cvelist
Cvelist
added 2025/02/26 2:13 a.m.12 views

CVE-2022-49498 ALSA: pcm: Check for null pointer of pointer substream before dereferencing it

In the Linux kernel, the following vulnerability has been resolved: ALSA: pcm: Check for null pointer of pointer substream before dereferencing it Pointer substream is being dereferenced on the assignment of pointer card before substream is being null checked with the macro PCMRUNTIMECHECK...

0.00253EPSS
SaveExploits0References6
OSV
OSV
added 2025/02/26 2:13 a.m.9 views

CVE-2022-49498 ALSA: pcm: Check for null pointer of pointer substream before dereferencing it

In the Linux kernel, the following vulnerability has been resolved: ALSA: pcm: Check for null pointer of pointer substream before dereferencing it Pointer substream is being dereferenced on the assignment of pointer card before substream is being null checked with the macro PCMRUNTIMECHECK...

5.5CVSS5.3AI score0.00253EPSS
SaveExploits0References9
CVE
CVE
added 2025/02/26 1:56 a.m.158 views

CVE-2022-49291

The CVE-2022-49291 entry describes a Linux kernel flaw in ALSA: pcm where concurrent hw_params and hw_free ioctls could trigger a use-after-free. The fix introduces a dedicated mutex (runtime->buffer_mutex) and applies it to both hw_params and hw_free code paths, with small reordering (mmap_co...

7.8CVSS6.7AI score0.00291EPSS
SaveExploits0References8Affected Software1
Debian CVE
Debian CVE
added 2025/02/26 1:56 a.m.16 views

CVE-2022-49291

In the Linux kernel, the following vulnerability has been resolved: ALSA: pcm: Fix races among concurrent hwparams and hwfree calls Currently we have neither proper check nor protection against the concurrent calls of PCM hwparams and hwfree ioctls, which may result in a UAF. Since the existing P...

7.8CVSS5.4AI score0.00291EPSS
SaveExploits0
OSV
OSV
added 2025/02/26 1:56 a.m.11 views

CVE-2022-49288 ALSA: pcm: Fix races among concurrent prealloc proc writes

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.3AI score0.00267EPSS
SaveExploits0References11
Debian CVE
Debian CVE
added 2025/02/26 1:56 a.m.11 views

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.00267EPSS
SaveExploits0
Debian CVE
Debian CVE
added 2025/02/26 1:54 a.m.6 views

CVE-2022-49045

Removed by vendor...

5.6AI score
SaveExploits0
RedhatCVE
RedhatCVE
added 2025/01/13 8:25 a.m.17 views

CVE-2024-57800

In the Linux kernel, the following vulnerability has been resolved: ALSA: memalloc: prefer dmamappingerror over explicit address checking With CONFIGDMAAPIDEBUG enabled, the following warning is observed: DMA-API: sndhdaintel 0000:03:00.1: device driver failed to check map errordevice...

5.5CVSS6.8AI score0.00203EPSS
SaveExploits0References4
Cvelist
Cvelist
added 2025/01/11 12:39 p.m.20 views

CVE-2024-57800 ALSA: memalloc: prefer dma_mapping_error() over explicit address checking

In the Linux kernel, the following vulnerability has been resolved: ALSA: memalloc: prefer dmamappingerror over explicit address checking With CONFIGDMAAPIDEBUG enabled, the following warning is observed: DMA-API: sndhdaintel 0000:03:00.1: device driver failed to check map errordevice...

0.00203EPSS
SaveExploits0References2
CVE
CVE
added 2025/01/11 12:39 p.m.2462 views

CVE-2024-57800

CVE-2024-57800 affects the Linux kernel in ALSA memalloc handling. When DMA API debugging is enabled, it may warn about a device driver failing to check a DMA address map, e.g. device address 0x00000000ffff0000, due to explicit address checks instead of using dma_mapping_error(). The documented f...

5.5CVSS7AI score0.00203EPSS
SaveExploits0References2Affected Software1
NVD
NVD
added 2024/12/27 2:15 p.m.15 views

CVE-2024-53180

In the Linux kernel, the following vulnerability has been resolved: ALSA: pcm: Add sanity NULL check for the default mmap fault handler A driver might allow the mmap access before initializing its runtime-dmaarea properly. Add a proper NULL check before passing to virttopage for avoiding a panic...

5.5CVSS0.00235EPSS
SaveExploits0References7
Debian CVE
Debian CVE
added 2024/12/27 2:11 p.m.10 views

CVE-2024-56533

In the Linux kernel, the following vulnerability has been resolved: ALSA: usx2y: Use sndcardfreewhenclosed at disconnection The USB disconnect callback is supposed to be short and not too-long waiting. OTOH, the current code uses sndcardfree at disconnection, but this waits for the close of all...

5.5CVSS5.7AI score0.00209EPSS
SaveExploits0
CVE
CVE
added 2024/12/27 2:11 p.m.2277 views

CVE-2024-56533

The CVE-2024-56533 vulnerability affects the Linux kernel’s ALSA usx2y driver. It stems from using snd_card_free() during USB disconnection, which waits for all open fds to close and can delay release, potentially blocking USB IOCTLs and causing a soft lockup. The advisory notes replacing snd_car...

5.5CVSS6.7AI score0.00209EPSS
SaveExploits0References9Affected Software1
Cvelist
Cvelist
added 2024/12/27 2:11 p.m.29 views

CVE-2024-56533 ALSA: usx2y: Use snd_card_free_when_closed() at disconnection

In the Linux kernel, the following vulnerability has been resolved: ALSA: usx2y: Use sndcardfreewhenclosed at disconnection The USB disconnect callback is supposed to be short and not too-long waiting. OTOH, the current code uses sndcardfree at disconnection, but this waits for the close of all...

0.00209EPSS
SaveExploits0References7
OSV
OSV
added 2024/12/27 2:11 p.m.11 views

CVE-2024-56533 ALSA: usx2y: Use snd_card_free_when_closed() at disconnection

In the Linux kernel, the following vulnerability has been resolved: ALSA: usx2y: Use sndcardfreewhenclosed at disconnection The USB disconnect callback is supposed to be short and not too-long waiting. OTOH, the current code uses sndcardfree at disconnection, but this waits for the close of all...

5.5CVSS6.2AI score0.00209EPSS
SaveExploits0References12
Cvelist
Cvelist
added 2024/12/27 2:11 p.m.39 views

CVE-2024-56532 ALSA: us122l: Use snd_card_free_when_closed() at disconnection

In the Linux kernel, the following vulnerability has been resolved: ALSA: us122l: Use sndcardfreewhenclosed at disconnection The USB disconnect callback is supposed to be short and not too-long waiting. OTOH, the current code uses sndcardfree at disconnection, but this waits for the close of all...

0.00214EPSS
SaveExploits0References9
OSV
OSV
added 2024/12/27 2:11 p.m.8 views

CVE-2024-56532 ALSA: us122l: Use snd_card_free_when_closed() at disconnection

In the Linux kernel, the following vulnerability has been resolved: ALSA: us122l: Use sndcardfreewhenclosed at disconnection The USB disconnect callback is supposed to be short and not too-long waiting. OTOH, the current code uses sndcardfree at disconnection, but this waits for the close of all...

5.5CVSS6.2AI score0.00214EPSS
SaveExploits0References14
Cvelist
Cvelist
added 2024/12/27 2:11 p.m.19 views

CVE-2024-56531 ALSA: caiaq: Use snd_card_free_when_closed() at disconnection

In the Linux kernel, the following vulnerability has been resolved: ALSA: caiaq: Use sndcardfreewhenclosed at disconnection The USB disconnect callback is supposed to be short and not too-long waiting. OTOH, the current code uses sndcardfree at disconnection, but this waits for the close of all...

0.00214EPSS
SaveExploits0References9
CVE
CVE
added 2024/12/27 2:11 p.m.2533 views

CVE-2024-56531

CVE-2024-56531 : In the Linux kernel, ALSA: caiaq had a vulnerability where the USB disconnect callback could block USB ioctls due to using snd_card_free() (waiting for all fds to close). The fix replaces snd_card_free() with snd_card_free_when_closed(), enabling asynchronous resource release and...

5.5CVSS6.8AI score0.00214EPSS
SaveExploits0References11Affected Software1
Rows per page
Query Builder