Goal Reached Thanks to every supporter — we hit 100%!

Goal: 1000 CNY · Raised: 1000 CNY

100.0%

CWE-908 (对未经初始化资源的使用) — Vulnerability Class 129

129 vulnerabilities classified as CWE-908 (对未经初始化资源的使用). AI Chinese analysis included.

CWE-908 represents a critical software weakness where an application accesses or utilizes a resource that has not been properly initialized. This flaw typically arises when developers fail to set default values or allocate necessary memory before first use, leading to unpredictable system behavior. Attackers often exploit this vulnerability by triggering specific code paths that expose uninitialized data, potentially causing application crashes, invalid memory access errors, or information disclosure of sensitive residual data from previous operations. To mitigate this risk, developers must enforce strict initialization protocols, ensuring all variables, pointers, and objects are explicitly assigned valid states before any read or write operations occur. Implementing comprehensive static analysis tools and rigorous code reviews further helps identify these gaps, ensuring robust resource management and preventing the execution of undefined logic that could compromise system stability or security.

MITRE CWE Description
The product uses or accesses a resource that has not been initialized. When a resource has not been properly initialized, the product may behave unexpectedly. This may lead to a crash or invalid memory access, but the consequences vary depending on the type of resource and how it is used within the product.
Common Consequences (2)
ConfidentialityRead Memory, Read Application Data
When reusing a resource such as memory or a program variable, the original contents of that resource may not be cleared before it is sent to an untrusted party.
AvailabilityDoS: Crash, Exit, or Restart
The uninitialized resource may contain values that cause program flow to change in ways that the programmer did not intend.
Mitigations (4)
ImplementationExplicitly initialize the resource before use. If this is performed through an API function or standard procedure, follow all required steps.
ImplementationPay close attention to complex conditionals that affect initialization, since some branches might not perform the initialization.
ImplementationAvoid race conditions (CWE-362) during initialization routines.
Build and CompilationRun or compile the product with settings that generate warnings about uninitialized variables or data.
Examples (2)
Here, a boolean initiailized field is consulted to ensure that initialization tasks are only completed once. However, the field is mistakenly set to true during static initialization, so the initialization code is never reached.
private boolean initialized = true; public void someMethod() { if (!initialized) { // perform initialization tasks ... initialized = true; }
Bad · Java
The following code intends to limit certain operations to the administrator only.
$username = GetCurrentUser(); $state = GetStateData($username); if (defined($state)) { $uid = ExtractUserID($state); } # do stuff if ($uid == 0) { DoAdminThings(); }
Bad · Perl
CVE IDTitleCVSSSeverityPublished
CVE-2024-8178 Multiple issues in ctl(4) CAM Target Layer — FreeBSD 9.9 -2024-09-05
CVE-2024-38122 Microsoft Local Security Authority (LSA) Server Information Disclosure Vulnerability — Windows 10 Version 1809 5.5 Medium2024-08-13
CVE-2024-38118 Microsoft Local Security Authority (LSA) Server Information Disclosure Vulnerability — Windows 10 Version 1809 5.5 Medium2024-08-13
CVE-2024-38064 Windows TCP/IP Information Disclosure Vulnerability — Windows 10 Version 1809 7.5 High2024-07-09
CVE-2024-36503 Huawei 手机安全漏洞 — HarmonyOS 7.3 High2024-06-14
CVE-2021-35000 OpenBSD Kernel Multicast Routing Uninitialized Memory Information Disclosure Vulnerability — Kernel 5.5 -2024-05-07
CVE-2021-34999 OpenBSD Kernel Multicast Routing Uninitialized Memory Information Disclosure Vulnerability — Kernel 5.5 -2024-05-07
CVE-2024-26220 Windows Mobile Hotspot Information Disclosure Vulnerability — Windows 10 Version 1809 5.0 Medium2024-04-09
CVE-2024-26209 Microsoft Local Security Authority Subsystem Service Information Disclosure Vulnerability — Windows 10 Version 1809 5.5 Medium2024-04-09
CVE-2024-23314 BIG-IP HTTP/2 vulnerability — BIG-IP 7.5 High2024-02-14
CVE-2024-20694 Windows CoreMessaging Information Disclosure Vulnerability — Windows 10 Version 1809 5.5 Medium2024-01-09
CVE-2023-42797 Siemens CP-8031 安全漏洞 — CP-8031 MASTER MODULE 6.6 Medium2024-01-09
CVE-2023-36012 DHCP Server Service Information Disclosure Vulnerability — Windows Server 2019 5.3 Medium2023-12-12
CVE-2023-46100 Cert manager has a use of uninitialized resource vulnerability — OpenHarmony 6.2 Medium2023-11-20
CVE-2023-36398 Windows NTFS Information Disclosure Vulnerability — Windows 10 Version 1809 6.5 Medium2023-11-14
CVE-2023-38151 Microsoft Host Integration Server 2020 Remote Code Execution Vulnerability — Host Integration Server 2020 8.8 High2023-11-14
CVE-2023-45663 Disclosure of uninitialized memory in stbi__tga_load in stb_image — stb 5.3 Medium2023-10-20
CVE-2023-36567 Windows Deployment Services Information Disclosure Vulnerability — Windows 10 Version 1809 7.5 High2023-10-10
CVE-2023-36704 Windows Setup Files Cleanup Remote Code Execution Vulnerability — Windows 10 Version 1809 7.8 High2023-10-10
CVE-2023-36713 Windows Common Log File System Driver Information Disclosure Vulnerability — Windows 10 Version 1809 5.5 Medium2023-10-10
CVE-2023-38140 Windows Kernel Information Disclosure Vulnerability — Windows 10 Version 1809 5.5 Medium2023-09-12
CVE-2023-36913 Microsoft Message Queuing Information Disclosure Vulnerability — Windows 10 Version 1809 6.5 Medium2023-08-08
CVE-2023-3488 Uninitialized variable in Gecko Bootloader can leak secure stack — Gecko Bootloader 3.8 Low2023-07-28
CVE-2023-36836 Junos OS and Junos OS Evolved: In a MoFRR scenario an rpd core may be observed when a low privileged CLI command is executed — Junos OS 4.7 Medium2023-07-14
CVE-2023-35326 Windows CDP User Components Information Disclosure Vulnerability — Windows 10 Version 1809 5.5 Medium2023-07-11
CVE-2023-35325 Windows Print Spooler Information Disclosure Vulnerability — Windows 10 Version 1809 7.5 High2023-07-11
CVE-2023-32042 OLE Automation Information Disclosure Vulnerability — Windows 10 Version 1809 6.5 Medium2023-07-11
CVE-2023-32041 Windows Update Orchestrator Service Information Disclosure Vulnerability — Windows 10 Version 1809 5.5 Medium2023-07-11
CVE-2023-32016 Windows Installer Information Disclosure Vulnerability — Windows 10 Version 1809 5.5 Medium2023-06-13
CVE-2023-29367 iSCSI Target WMI Provider Remote Code Execution Vulnerability — Windows Server 2019 7.8 High2023-06-13

Vulnerabilities classified as CWE-908 (对未经初始化资源的使用) represent 129 CVEs. The CWE taxonomy describes the weakness; review individual CVEs for product-specific impact.