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

Goal: 1000 CNY · Raised: 1325 CNY

100%

CWE-457 (使用未经初始化的变量) — Vulnerability Class 151

151 vulnerabilities classified as CWE-457 (使用未经初始化的变量). AI Chinese analysis included.

CWE-457 represents a critical code quality weakness where software utilizes a variable before assigning it a defined value, resulting in unpredictable behavior or unintended execution paths. In languages like C and C++, uninitialized stack variables often retain residual data from previous operations, creating a source of non-deterministic state. Attackers typically exploit this by manipulating memory contents to influence program flow, potentially leading to information disclosure, privilege escalation, or denial of service through crashes. To mitigate this risk, developers must rigorously initialize all variables at the point of declaration or immediately before first use. Employing static analysis tools to detect uninitialized reads and adhering to strict coding standards that enforce explicit initialization practices are essential strategies for preventing this vulnerability and ensuring application stability and security.

MITRE CWE Description
The code uses a variable that has not been initialized, leading to unpredictable or unintended results. In some languages such as C and C++, stack variables are not initialized by default. They generally contain junk data with the contents of stack memory before the function was invoked. An attacker can sometimes control or read these contents. In other languages or conditions, a variable that is not explicitly initialized can be given a default value that has security implications, depending on the logic of the program. The presence of an uninitialized variable can sometimes indicate a typographic error in the code.
Common Consequences (2)
Availability, Integrity, OtherOther
Initial variables usually contain junk, which can not be trusted for consistency. This can lead to denial of service conditions, or modify control flow in unexpected ways. In some cases, an attacker can "pre-initialize" the variable using previous actions, which might enable code execution. This can…
Authorization, OtherOther
Strings that are not initialized are especially dangerous, since many functions expect a null at the end -- and only at the end -- of a string.
Mitigations (5)
ImplementationEnsure that critical variables are initialized before first use [REF-1485].
Build and CompilationMost compilers will complain about the use of uninitialized variables if warnings are turned on.
Implementation, OperationWhen using a language that does not require explicit declaration of variables, run or compile the software in a mode that reports undeclared or unknown variables. This may indicate the presence of a typographic error in the variable's name.
RequirementsChoose a language that is not susceptible to these issues.
Architecture and DesignMitigating technologies such as safe string libraries and container abstractions could be introduced.
Examples (2)
This code prints a greeting using information stored in a POST request:
if (isset($_POST['names'])) { $nameArray = $_POST['names']; } echo "Hello " . $nameArray['first'];
Bad · PHP
The following switch statement is intended to set the values of the variables aN and bN before they are used:
int aN, Bn; switch (ctl) { case -1: aN = 0; bN = 0; break; case 0: aN = i; bN = -i; break; case 1: aN = i + NEXT_SZ; bN = i - NEXT_SZ; break; default: aN = -1; aN = -1; break; } repaint(aN, bN);
Bad · C
CVE IDTitleCVSSSeverityPublished
CVE-2026-13030 Chrome Android < 149.0.7827.197 显存未初始化用 — Chrome--2026-06-24
CVE-2026-13023 Chrome <149.0.7827.197 GPU未初始化使用漏洞 — Chrome--2026-06-24
CVE-2026-12469 Google Chrome 异常处理不当漏洞 — Chrome--2026-06-17
CVE-2026-9754 Stack memory disclosure in filemd5 command — MongoDB 6.5 Medium2026-06-09
CVE-2026-11696 Google Chrome 安全漏洞 — Chrome--2026-06-08
CVE-2026-11668 Google Chrome 安全漏洞 — Chrome--2026-06-08
CVE-2026-11268 Google Chrome 安全漏洞 — Chrome--2026-06-04
CVE-2026-11159 Google Chrome 安全漏洞 — Chrome--2026-06-04
CVE-2026-11141 Google Chrome 安全漏洞 — Chrome--2026-06-04
CVE-2026-11137 Google Chrome 安全漏洞 — Chrome--2026-06-04
CVE-2026-11138 Google Chrome 安全漏洞 — Chrome--2026-06-04
CVE-2026-11123 Google Chrome 安全漏洞 — Chrome--2026-06-04
CVE-2026-11110 Google Chrome 安全漏洞 — Chrome--2026-06-04
CVE-2026-11109 Google Chrome 安全漏洞 — Chrome--2026-06-04
CVE-2026-11104 Google Chrome 安全漏洞 — Chrome--2026-06-04
CVE-2026-11101 Google Chrome 安全漏洞 — Chrome--2026-06-04
CVE-2026-11089 Google Chrome 安全漏洞 — Chrome--2026-06-04
CVE-2026-11090 Google Chrome 安全漏洞 — Chrome--2026-06-04
CVE-2026-11087 Google Chrome 安全漏洞 — Chrome--2026-06-04
CVE-2026-11067 Google Chrome 安全漏洞 — Chrome--2026-06-04
CVE-2026-11064 Google Chrome 安全漏洞 — Chrome--2026-06-04
CVE-2026-11057 Google Chrome 安全漏洞 — Chrome--2026-06-04
CVE-2026-11039 Google Chrome 安全漏洞 — Chrome--2026-06-04
CVE-2026-11033 Google Chrome 安全漏洞 — Chrome--2026-06-04
CVE-2026-10994 Google Chrome 安全漏洞 — Chrome--2026-06-04
CVE-2026-10977 Google Chrome 安全漏洞 — Chrome--2026-06-04
CVE-2026-10976 Google Chrome 安全漏洞 — Chrome--2026-06-04
CVE-2026-10973 Google Chrome 安全漏洞 — Chrome--2026-06-04
CVE-2026-10960 Google Chrome 安全漏洞 — Chrome--2026-06-04
CVE-2026-10008 Google Chrome 安全漏洞 — Chrome--2026-05-28

Vulnerabilities classified as CWE-457 (使用未经初始化的变量) represent 151 CVEs. The CWE taxonomy describes the weakness; review individual CVEs for product-specific impact.