Lucene search
+L

79 matches found

OSV
OSV
added 2025/02/27 3:15 a.m.2 views

DEBIAN-CVE-2024-54456

In the Linux kernel, the following vulnerability has been resolved: NFS: Fix potential buffer overflowin nfssysfslinkrpcclient name is char64 where the size of clnt-clprogram-name remains unknown. Invoking strcat directly will also lead to potential buffer overflow. Change them to strscpy and...

7.8CVSS6.5AI score0.00223EPSS
SaveExploits0References1
OSV
OSV
added 2025/02/27 3:15 a.m.8 views

UBUNTU-CVE-2024-54456

In the Linux kernel, the following vulnerability has been resolved: NFS: Fix potential buffer overflowin nfssysfslinkrpcclient name is char64 where the size of clnt-clprogram-name remains unknown. Invoking strcat directly will also lead to potential buffer overflow. Change them to strscpy and...

7.8CVSS6.9AI score0.00223EPSS
SaveExploits0References16
SUSE CVE
SUSE CVE
added 2025/02/27 3:14 a.m.5 views

SUSE CVE-2021-47642

In the Linux kernel, the following vulnerability has been resolved: video: fbdev: nvidiafb: Use strscpy to prevent buffer overflow Coverity complains of a possible buffer overflow. However, given the 'static' scope of nvidiasetupi2cbus it looks like that can't happen after examiniing the call...

5.3CVSS7.8AI score0.00281EPSS
SaveExploits0References9
Cvelist
Cvelist
added 2025/02/27 2:18 a.m.17 views

CVE-2024-54456 NFS: Fix potential buffer overflowin nfs_sysfs_link_rpc_client()

In the Linux kernel, the following vulnerability has been resolved: NFS: Fix potential buffer overflowin nfssysfslinkrpcclient name is char64 where the size of clnt-clprogram-name remains unknown. Invoking strcat directly will also lead to potential buffer overflow. Change them to strscpy and...

0.00223EPSS
SaveExploits0References4
CVE
CVE
added 2025/02/27 2:18 a.m.115 views

CVE-2024-54456

CVE-2024-54456 : Linux kernel NFS path vulnerability in nfs_sysfs_link_rpc_client() leading to potential buffer overflow due to strcat on cl_program->name; fix replaces with strscpy() and strncat() (kernel-side patch). Affected: Linux kernel NFS subsystem; root cause: unbounded name field size...

7.8CVSS5.5AI score0.00223EPSS
SaveExploits0References4Affected Software1
OSV
OSV
added 2025/02/27 2:18 a.m.10 views

CVE-2024-54456 NFS: Fix potential buffer overflowin nfs_sysfs_link_rpc_client()

In the Linux kernel, the following vulnerability has been resolved: NFS: Fix potential buffer overflowin nfssysfslinkrpcclient name is char64 where the size of clnt-clprogram-name remains unknown. Invoking strcat directly will also lead to potential buffer overflow. Change them to strscpy and...

7.8CVSS6.7AI score0.00223EPSS
SaveExploits0References7
NVD
NVD
added 2025/02/26 7:1 a.m.28 views

CVE-2022-49401

In the Linux kernel, the following vulnerability has been resolved: mm/pageowner: use strscpy instead of strlcpy current-comm is not a string no guarantee for a zero byte in it. strlcpys1, s2, l is calling strlens2, potentially causing out-of-bound access, as reported by syzbot: detected buffer...

7.1CVSS0.00257EPSS
SaveExploits0References2
OSV
OSV
added 2025/02/26 7:1 a.m.3 views

DEBIAN-CVE-2022-49401

In the Linux kernel, the following vulnerability has been resolved: mm/pageowner: use strscpy instead of strlcpy current-comm is not a string no guarantee for a zero byte in it. strlcpys1, s2, l is calling strlens2, potentially causing out-of-bound access, as reported by syzbot: detected buffer...

7.1CVSS5.7AI score0.00257EPSS
SaveExploits0References1
OSV
OSV
added 2025/02/26 7:1 a.m.11 views

UBUNTU-CVE-2022-49401

In the Linux kernel, the following vulnerability has been resolved: mm/pageowner: use strscpy instead of strlcpy current-comm is not a string no guarantee for a zero byte in it. strlcpys1, s2, l is calling strlens2, potentially causing out-of-bound access, as reported by syzbot: detected buffer...

7.1CVSS6.4AI score0.00257EPSS
SaveExploits0References5
NVD
NVD
added 2025/02/26 6:37 a.m.13 views

CVE-2021-47642

In the Linux kernel, the following vulnerability has been resolved: video: fbdev: nvidiafb: Use strscpy to prevent buffer overflow Coverity complains of a possible buffer overflow. However, given the 'static' scope of nvidiasetupi2cbus it looks like that can't happen after examiniing the call...

7.8CVSS0.00281EPSS
SaveExploits0References9
OSV
OSV
added 2025/02/26 6:37 a.m.11 views

CVE-2021-47642

In the Linux kernel, the following vulnerability has been resolved: video: fbdev: nvidiafb: Use strscpy to prevent buffer overflow Coverity complains of a possible buffer overflow. However, given the 'static' scope of nvidiasetupi2cbus it looks like that can't happen after examiniing the call...

7.8CVSS6.9AI score
SaveExploits0References9
OSV
OSV
added 2025/02/26 6:37 a.m.4 views

UBUNTU-CVE-2021-47642

In the Linux kernel, the following vulnerability has been resolved: video: fbdev: nvidiafb: Use strscpy to prevent buffer overflow Coverity complains of a possible buffer overflow. However, given the 'static' scope of nvidiasetupi2cbus it looks like that can't happen after examiniing the call...

7.8CVSS6.7AI score0.00281EPSS
SaveExploits0References12
CVE
CVE
added 2025/02/26 2:12 a.m.164 views

CVE-2022-49401

CVE-2022-49401 pertains to the Linux kernel, where a fault in mm/page_owner handling was fixed: current->comm[] is not guaranteed to be a proper string, and using strlcpy(s1, s2, l) may call strlen(s2) and trigger out-of-bounds access. The fix replaces strlcpy with strscpy() in mm/page_owner.c...

7.1CVSS5.7AI score0.00257EPSS
SaveExploits0References2Affected Software1
Cvelist
Cvelist
added 2025/02/26 2:12 a.m.31 views

CVE-2022-49401 mm/page_owner: use strscpy() instead of strlcpy()

In the Linux kernel, the following vulnerability has been resolved: mm/pageowner: use strscpy instead of strlcpy current-comm is not a string no guarantee for a zero byte in it. strlcpys1, s2, l is calling strlens2, potentially causing out-of-bound access, as reported by syzbot: detected buffer...

0.00257EPSS
SaveExploits0References2
Debian CVE
Debian CVE
added 2025/02/26 2:12 a.m.53 views

CVE-2022-49401

In the Linux kernel, the following vulnerability has been resolved: mm/pageowner: use strscpy instead of strlcpy current-comm is not a string no guarantee for a zero byte in it. strlcpys1, s2, l is calling strlens2, potentially causing out-of-bound access, as reported by syzbot: detected buffer...

7.1CVSS5.7AI score0.00257EPSS
SaveExploits0
OSV
OSV
added 2025/02/26 2:12 a.m.15 views

CVE-2022-49401 mm/page_owner: use strscpy() instead of strlcpy()

In the Linux kernel, the following vulnerability has been resolved: mm/pageowner: use strscpy instead of strlcpy current-comm is not a string no guarantee for a zero byte in it. strlcpys1, s2, l is calling strlens2, potentially causing out-of-bound access, as reported by syzbot: detected buffer...

7.1CVSS6.2AI score0.00257EPSS
SaveExploits0References5
CVE
CVE
added 2025/02/26 1:54 a.m.101 views

CVE-2021-47642

CVE-2021-47642: in the Linux kernel’s video fbdev/nvidiafb path, a fixed-size buffer overrun could occur by copying a channel name with strcpy into chan->adapter.name. The defect arises from copying into a 48-char buffer without length checks; fix is to use strscpy() to prevent overflows. The ...

7.8CVSS5.5AI score0.00281EPSS
SaveExploits0References9Affected Software1
Cvelist
Cvelist
added 2025/02/26 1:54 a.m.18 views

CVE-2021-47642 video: fbdev: nvidiafb: Use strscpy() to prevent buffer overflow

In the Linux kernel, the following vulnerability has been resolved: video: fbdev: nvidiafb: Use strscpy to prevent buffer overflow Coverity complains of a possible buffer overflow. However, given the 'static' scope of nvidiasetupi2cbus it looks like that can't happen after examiniing the call...

0.00281EPSS
SaveExploits0References9
Debian CVE
Debian CVE
added 2025/02/26 1:54 a.m.10 views

CVE-2021-47642

In the Linux kernel, the following vulnerability has been resolved: video: fbdev: nvidiafb: Use strscpy to prevent buffer overflow Coverity complains of a possible buffer overflow. However, given the 'static' scope of nvidiasetupi2cbus it looks like that can't happen after examiniing the call...

7.8CVSS6.1AI score0.00281EPSS
SaveExploits0
CNNVD
CNNVD
added 2025/02/26 12:0 a.m.9 views

Linux kernel 安全漏洞

Linux kernel is the kernel used by Linux, the open source operating system of the Linux Foundation in the United States. A security vulnerability exists in Linux kernel that stems from the use of strlcpy instead of strscpy by mm/pageowner...

7.1CVSS6.3AI score0.00257EPSS
SaveExploits0References3
Rows per page
Query Builder