Lucene search
+L

4771 matches found

FreeBSD
FreeBSD
added 2025/10/29 12:00 a.m.13 views

OpenEXR < 3.4.3 -- multiple vulnerabilities

Cary Phillips reports: Patch release that addresses several bugs, primarily involving properly rejecting corrupt input data. He goes on to report various relevant items including heap buffer overflows, use-after-free, use of uninitialized memory and other bugs, several of them found by OSS-fuzz,...

5.8AI score
SaveExploits0References1
CNNVD
CNNVD
added 2025/10/28 12:00 a.m.8 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 the Linux kernel that stems from a failure to validate parameters on packet data, which could lead to the handling of uninitialized memory...

5.8AI score0.00293EPSS
SaveExploits0References7
Zero Day Initiative
Zero Day Initiative
added 2025/10/27 12:00 a.m.11 views

Oracle VirtualBox Virtio-net Uninitialized Memory Information Disclosure Vulnerability

This vulnerability allows local attackers to disclose sensitive information on affected installations of Oracle VirtualBox. An attacker must first obtain the ability to execute low-privileged code on the target guest system in order to exploit this vulnerability. The specific flaw exists within t...

6.5CVSS6.4AI score0.0018EPSS
SaveExploits0References1
OSV
OSV
added 2025/10/23 5:26 p.m.8 views

JLSEC-2025-187 Mbed TLS before 2.28.10 and 3.x before 3.6.3, in some cases of failed memory allocation or hardware...

Mbed TLS before 2.28.10 and 3.x before 3.6.3, in some cases of failed memory allocation or hardware errors, uses uninitialized stack memory to compose the TLS Finished message, potentially leading to authentication bypasses such as replays...

4.8CVSS5.7AI score0.00286EPSS
SaveExploits0References2
EUVD
EUVD
added 2025/10/22 5:08 p.m.8 views

EUVD-2025-35610

ncurses exposes uninitialized memory in string reading functions...

6.4AI score
SaveExploits0References3
OSV
OSV
added 2025/10/22 5:08 p.m.8 views

GHSA-X77X-7MMH-CXV3 ncurses exposes uninitialized memory in string reading functions

Multiple string reading functions expose uninitialized memory by setting length to capacity when no null terminator is found. This allows reading uninitialized memory which may contain sensitive data from previous allocations. The ncurses-rs repository is archived and unmaintained...

6.9CVSS5.9AI score
SaveExploits0References3
EUVD
EUVD
added 2025/10/22 4:35 p.m.6 views

EUVD-2025-35597

Borrowck Scarifices exposes uninitialized memory in anyasu8slice...

6.4AI score
SaveExploits0References4
Github Security Blog
Github Security Blog
added 2025/10/22 4:35 p.m.18 views

Borrowck Scarifices exposes uninitialized memory in any_as_u8_slice

The safe function anyasu8slice can create byte slices that reference uninitialized memory when used with types containing padding bytes. The function uses slice::fromrawparts to create a &u8 covering the entire size of a type, including padding bytes. According to Rust's documentation, fromrawpar...

7.2AI score
SaveExploits0References4Affected Software1
OSV
OSV
added 2025/10/22 4:35 p.m.13 views

GHSA-XCPM-76HF-C9CC Borrowck Scarifices exposes uninitialized memory in any_as_u8_slice

The safe function anyasu8slice can create byte slices that reference uninitialized memory when used with types containing padding bytes. The function uses slice::fromrawparts to create a &u8 covering the entire size of a type, including padding bytes. According to Rust's documentation, fromrawpar...

5.1CVSS7.2AI score
SaveExploits0References4
OSV
OSV
added 2025/10/22 2:15 p.m.5 views

DEBIAN-CVE-2023-53707

In the Linux kernel, the following vulnerability has been resolved: drm/amdgpu: Fix integer overflow in amdgpucspass1 The type of size is unsigned int, if size is 0x40000000, there will be an integer overflow, size will be zero after size = sizeofuint32t, will cause uninitialized memory to be...

7.8CVSS5.2AI score0.00151EPSS
SaveExploits0References1
OSV
OSV
added 2025/10/22 1:23 p.m.7 views

CVE-2023-53707 drm/amdgpu: Fix integer overflow in amdgpu_cs_pass1

In the Linux kernel, the following vulnerability has been resolved: drm/amdgpu: Fix integer overflow in amdgpucspass1 The type of size is unsigned int, if size is 0x40000000, there will be an integer overflow, size will be zero after size = sizeofuint32t, will cause uninitialized memory to be...

7.8CVSS6.7AI score
SaveExploits0References6
Cvelist
Cvelist
added 2025/10/22 1:23 p.m.27 views

CVE-2023-53707 drm/amdgpu: Fix integer overflow in amdgpu_cs_pass1

In the Linux kernel, the following vulnerability has been resolved: drm/amdgpu: Fix integer overflow in amdgpucspass1 The type of size is unsigned int, if size is 0x40000000, there will be an integer overflow, size will be zero after size = sizeofuint32t, will cause uninitialized memory to be...

7.8CVSS0.00151EPSS
SaveExploits0References3
CVE
CVE
added 2025/10/22 1:23 p.m.32 views

CVE-2023-53707

CVE-2023-53707 concerns the Linux kernel DRM/AMDGPU driver: amdgpu_cs_pass1 contains an unsigned int overflow when size equals 0x40000000, causing size to become 0 after size *= sizeof(uint32_t) and potentially referencing uninitialized memory. The issue is in the amdgpu_cs_pass1 path of the AMDG...

7.8CVSS6.3AI score0.00151EPSS
SaveExploits0References3
CNNVD
CNNVD
added 2025/10/22 12:00 a.m.11 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 the Linux kernel that stems from an integer overflow in the amdgpucspass1 function, which could lead to references to uninitialized memory...

6.1AI score0.00151EPSS
SaveExploits0References4
OSV
OSV
added 2025/10/21 9:57 p.m.8 views

GHSA-FP5X-7M4Q-449F Direct Ring Buffer has uninitialized memory exposure in create_ring_buffer

The safe function createringbuffer allocates a buffer using Vec::withcapacity followed by setlen, creating a Box containing uninitialized memory. This leads to undefined behavior when functions like writeslices create typed slices e.g., &mut bool over the uninitialized memory, violating Rust's...

5.1CVSS7AI score
SaveExploits0References4
OSV
OSV
added 2025/10/21 12:00 p.m.7 views

RUSTSEC-2025-0105 Uninitialized memory exposure in create_ring_buffer

The safe function createringbuffer allocates a buffer using Vec::withcapacity followed by setlen, creating a Box containing uninitialized memory. This leads to undefined behavior when functions like writeslices create typed slices e.g., &mut bool over the uninitialized memory, violating Rust's...

7AI score
SaveExploits0References4
RustSec
RustSec
added 2025/10/21 12:00 p.m.15 views

Uninitialized memory exposure in string reading functions

Multiple string reading functions expose uninitialized memory by setting length to capacity when no null terminator is found. This allows reading uninitialized memory which may contain sensitive data from previous allocations. The ncurses-rs repository is archived and unmaintained...

6.9AI score
SaveExploits0
RustSec
RustSec
added 2025/10/21 12:00 p.m.17 views

Uninitialized memory exposure in create_ring_buffer

The safe function createringbuffer allocates a buffer using Vec::withcapacity followed by setlen, creating a Box containing uninitialized memory. This leads to undefined behavior when functions like writeslices create typed slices e.g., &mut bool over the uninitialized memory, violating Rust's...

7AI score
SaveExploits0Affected Software1
RustSec
RustSec
added 2025/10/21 12:00 p.m.14 views

Uninitialized memory exposure in any_as_u8_slice

The safe function anyasu8slice can create byte slices that reference uninitialized memory when used with types containing padding bytes. The function uses slice::fromrawparts to create a &u8 covering the entire size of a type, including padding bytes. According to Rust's documentation, fromrawpar...

7.2AI score
SaveExploits0Affected Software1
OSV
OSV
added 2025/10/21 12:00 p.m.9 views

RUSTSEC-2025-0108 Uninitialized memory exposure in string reading functions

Multiple string reading functions expose uninitialized memory by setting length to capacity when no null terminator is found. This allows reading uninitialized memory which may contain sensitive data from previous allocations. The ncurses-rs repository is archived and unmaintained...

6.9AI score
SaveExploits0References3
Rows per page
Query Builder