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

Goal: 1000 CNY · Raised: 1000 CNY

100.0%

CWE-94 (对生成代码的控制不恰当(代码注入)) — Vulnerability Class 1335

1335 vulnerabilities classified as CWE-94 (对生成代码的控制不恰当(代码注入)). AI Chinese analysis included.

CWE-94 represents a critical code injection weakness where software constructs executable code using untrusted input without proper sanitization. Attackers typically exploit this vulnerability by injecting malicious scripts or commands into user-supplied fields, such as web forms or API parameters, which the application then executes directly. This allows adversaries to bypass security controls, steal sensitive data, or gain unauthorized administrative access to the underlying system. To prevent such exploits, developers must rigorously validate and sanitize all external inputs, ensuring that only expected characters are processed. Implementing strict allow-listing strategies, utilizing parameterized queries for database interactions, and avoiding dynamic code execution functions like eval() are essential defensive measures. By treating all user input as potentially hostile and applying robust encoding techniques, organizations can effectively neutralize injection vectors and maintain application integrity.

MITRE CWE Description
The product constructs all or part of a code segment using externally-influenced input from an upstream component, but it does not neutralize or incorrectly neutralizes special elements that could modify the syntax or behavior of the intended code segment.
Common Consequences (4)
Access ControlBypass Protection Mechanism
In some cases, injectable code controls authentication; this may lead to a remote vulnerability.
Access ControlGain Privileges or Assume Identity
Injected code can access resources that the attacker is directly prevented from accessing.
Integrity, Confidentiality, AvailabilityExecute Unauthorized Code or Commands
When a product allows a user's input to contain code syntax, it might be possible for an attacker to craft the code in such a way that it will alter the intended control flow of the product. As a result, code injection can often result in the execution of arbitrary code. Code injection attacks can…
Non-RepudiationHide Activities
Often the actions performed by injected control code are unlogged.
Mitigations (5)
Architecture and DesignRefactor your program so that you do not have to dynamically generate code.
Architecture and DesignRun your code in a "jail" or similar sandbox environment that enforces strict boundaries between the process and the operating system. This may effectively restrict which code can be executed by your product. Examples include the Unix chroot jail and AppArmor. In general, managed code may provide some protection. This may not be a feasible solution, and it only limits the impact to the operating s…
ImplementationAssume all input is malicious. Use an "accept known good" input validation strategy, i.e., use a list of acceptable inputs that strictly conform to specifications. Reject any input that does not strictly conform to specifications, or transform it into something that does. When performing input validation, consider all potentially relevant properties, including length, type of input, the full range…
TestingUse dynamic tools and techniques that interact with the product using large test suites with many diverse inputs, such as fuzz testing (fuzzing), robustness testing, and fault injection. The product's operation may slow down, but it should not become unstable, crash, or generate incorrect results.
OperationRun the code in an environment that performs automatic taint propagation and prevents any command execution that uses tainted variables, such as Perl's "-T" switch. This will force the program to perform validation steps that remove the taint, although you must be careful to correctly validate your inputs so that you do not accidentally mark dangerous inputs as untainted (see CWE-183 and CWE-184).
Examples (2)
This example attempts to write user messages to a message file and allow users to view them.
$MessageFile = "messages.out"; if ($_GET["action"] == "NewMessage") { $name = $_GET["name"]; $message = $_GET["message"]; $handle = fopen($MessageFile, "a+"); fwrite($handle, "<b>$name</b> says '$message'<hr>\n"); fclose($handle); echo "Message Saved!<p>\n"; } else if ($_GET["action"] == "ViewMessages") { include($MessageFile); }
Bad · PHP
name=h4x0r message=%3C?php%20system(%22/bin/ls%20-l%22);?%3E
Attack
edit-config.pl: This CGI script is used to modify settings in a configuration file.
use CGI qw(:standard); sub config_file_add_key { my ($fname, $key, $arg) = @_; # code to add a field/key to a file goes here } sub config_file_set_key { my ($fname, $key, $arg) = @_; # code to set key to a particular file goes here } sub config_file_delete_key { my ($fname, $key, $arg) = @_; # code to delete key from a particular file goes here } sub handleConfigAction { my ($fname, $action) = @_; my $key = param('key'); my $val = param('val'); # this is super-efficient code, especially if you have to invoke # any one of dozens of different functions! my $code = "config_file_$action_key(\$fnam
Bad · Perl
add_key(",","); system("/bin/ls");
Attack
CVE IDTitleCVSSSeverityPublished
CVE-2024-43388 Phoenix Contact: SNMP reconfiguration due to improper input validation in MGUARD devices — FL MGUARD 2102 8.8 High2024-09-10
CVE-2024-8258 Insecure Electron Fuses in Logitech Options Plus Allowing Arbitrary Code Execution on macOS — Logitech Options Plus 8.4AIHighAI2024-09-10
CVE-2024-6596 Endress+Hauser: Multiple products are vulnerable to code injection — Echo Curve Viewer 9.8 Critical2024-09-10
CVE-2024-8478 Affiliate Super Assistent <= 1.5.3 - Unauthenticated Arbitrary Shortcode Execution — Affiliate Super Assistent 7.3 High2024-09-10
CVE-2024-8268 Frontend Dashboard <= 2.2.4 - Authenticated (Subscriber+) Arbitrary Function Call — Frontend Dashboard 8.8 High2024-09-10
CVE-2024-8523 lmxcms SQL Command Execution Module admin.php formatData code injection — lmxcms 4.7 Medium2024-09-07
CVE-2024-7627 Bit File Manager 6.0 - 6.5.5 - Unauthenticated Remote Code Execution via Race Condition — Bit File Manager – 100% Free & Open Source File Manager and Code Editor for WordPress 8.1 High2024-09-05
CVE-2024-45390 @blakeembrey/template vulnerable to code injection when attacker controls template input — js-template 7.3 High2024-09-03
CVE-2024-7345 Direct local client connections to MS Agents can bypass authentication — OpenEdge 8.3 High2024-09-03
CVE-2024-8374 Arbitrary Code Injection in Cura — Cura 7.8 High2024-09-03
CVE-2024-43922 WordPress NitroPack plugin <= 1.16.7 - Unauthenticated Arbitrary Shortcode Execution vulnerability — NitroPack 4.8 Medium2024-08-29
CVE-2024-7656 Image Hotspot by DevVN <= 1.2.5 - Authenticated (Author+) PHP Object Injection — Image Hotspot by DevVN 8.8 High2024-08-24
CVE-2024-5466 Remote Code Execution — OpManager, Remote Monitoring and Management 8.8 High2024-08-23
CVE-2024-7559 File Manager Pro <= 8.3.7 - Authenticated (Subscriber+) Arbitrary File Upload — File Manager Pro 8.8 High2024-08-23
CVE-2024-43202 Apache DolphinScheduler: Remote Code Execution Vulnerability — Apache DolphinScheduler 9.8AICriticalAI2024-08-20
CVE-2024-7899 InnoCMS Backend edit code injection — InnoCMS 4.7 Medium2024-08-17
CVE-2024-37287 Kibana arbitrary code execution via prototype pollution — Kibana 9.1 Critical2024-08-13
CVE-2024-43128 WordPress WooCommerce Product Table Lite plugin <= 3.5.1 - Arbitrary Code Execution vulnerability — WooCommerce Product Table Lite 6.5 Medium2024-08-13
CVE-2024-7094 JS Help Desk – The Ultimate Help Desk & Support Plugin <= 2.8.6 - Unauthenticated PHP Code Injection to Remote Code Execution — JS Help Desk – AI-Powered Support & Ticketing System 9.8 Critical2024-08-13
CVE-2024-5651 Fence-agents-remediation: fence agent command line options leads to remote code execution 8.8 High2024-08-12
CVE-2024-22123 Zabbix Arbitrary File Read — Zabbix 2.7 Low2024-08-09
CVE-2024-22116 Remote code execution within ping script — Zabbix 9.9 Critical2024-08-09
CVE-2024-3958 Improper Control of Generation of Code ('Code Injection') in GitLab — GitLab 5.3 Medium2024-08-08
CVE-2024-6891 Journyx Authenticated Remote Code Execution — Journyx (jtime) 8.8AIHighAI2024-08-07
CVE-2024-34344 Remote code execution via the browser when running the test locally in nuxt — nuxt 8.8 High2024-08-05
CVE-2024-22169 Misconfiguration in node.js causing a code execution in WD Discovery — WD Discovery 7.3AIHighAI2024-08-02
CVE-2024-36268 Apache InLong TubeMQ Client: Remote Code Execution vulnerability — Apache InLong TubeMQ Client 9.8AICriticalAI2024-08-02
CVE-2024-7093 Server-Side Template Injection in Dispatch Message Templates — Dispatch 8.8AIHighAI2024-08-01
CVE-2024-41961 Elektra vulnerable to remote code execution in universal search — elektra 9.2 Critical2024-08-01
CVE-2024-6726 Remote Code Execution (RCE) in Delphix — Delphix Engine 8.8 High2024-07-29

Vulnerabilities classified as CWE-94 (对生成代码的控制不恰当(代码注入)) represent 1335 CVEs. The CWE taxonomy describes the weakness; review individual CVEs for product-specific impact.