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

Goal: 1000 CNY · Raised: 1336 CNY

100%

CWE-233 (参数问题) — Vulnerability Class 23

23 vulnerabilities classified as CWE-233 (参数问题). AI Chinese analysis included.

CWE-233 represents a critical input validation weakness where software fails to adequately manage scenarios involving missing, undefined, or incorrect numbers of parameters and arguments. Attackers typically exploit this vulnerability by manipulating request structures, omitting expected fields, or injecting unexpected arguments to trigger unhandled exceptions, cause application crashes, or bypass security controls. Such exploitation can lead to denial of service, information disclosure, or further code execution if the system defaults to unsafe behaviors when encountering malformed input. To mitigate this risk, developers must implement rigorous input validation that explicitly checks for the presence, type, and count of all expected parameters before processing. Utilizing strict schema validation, default value assignments, and comprehensive error handling ensures the application gracefully rejects malformed requests, thereby maintaining stability and preventing attackers from leveraging parameter inconsistencies to compromise system integrity.

MITRE CWE Description
The product does not properly handle when the expected number of parameters, fields, or arguments is not provided in input, or if those parameters are undefined.
Common Consequences (1)
Integrity Unexpected State
Examples (1)
This Android application has registered to handle a URL when sent an intent:
... IntentFilter filter = new IntentFilter("com.example.URLHandler.openURL"); MyReceiver receiver = new MyReceiver(); registerReceiver(receiver, filter); ... public class UrlHandlerReceiver extends BroadcastReceiver { @Override public void onReceive(Context context, Intent intent) { if("com.example.URLHandler.openURL".equals(intent.getAction())) { String URL = intent.getStringExtra("URLToOpen"); int length = URL.length(); ... } } }
Bad · Java
CVE ID Title CVSS Severity Published
CVE-2026-0515 Insufficient parameter validation in the QNX Neutrino kernel impacts versions of the QNX Software Development Platform and QNX OS for Safety — QNX Software Development Platform 6.2 Medium 2026-07-14
CVE-2026-32998 Veeam Service Provider Console 安全漏洞 — Service Provider Console - - 2026-05-28
CVE-2026-33585 Arqit SKA-Platform Improper Handling of Parameters Vulnerability — Symmetric Key Agreement Platform 3.8 Low 2026-05-13
CVE-2018-25233 WebDrive 18.00.5057 Denial of Service via Secure WebDAV — WebDrive 6.2 Medium 2026-03-30
CVE-2026-2370 Improper Handling of Parameters in GitLab — GitLab 8.1 High 2026-03-29
CVE-2023-20514 AMD Secure Processor 安全漏洞 — AMD Radeon™ RX 6000 Series Graphics Products 6.7AI Medium AI 2026-02-11
CVE-2025-55080 Improper Parameter Check in ThreadX Syscall Implementation — ThreadX 9.1AI Critical AI 2025-10-15
CVE-2025-55078 Incomplete validation of kernel object pointers in system calls — ThreadX 7.5AI High AI 2025-10-14
CVE-2025-52970 Fortinet FortiWeb 安全漏洞 — FortiWeb 7.7 High 2025-08-12
CVE-2023-1419 Debezium: script injection via connector parameter — Red Hat build of Debezium 5.9 Medium 2024-11-17
CVE-2024-9329 Glassfish redirect to untrusted site — Glassfish 6.1 - 2024-09-30
CVE-2024-20306 Cisco IOS XE Software 安全漏洞 — Cisco IOS XE Software 6.0 Medium 2024-03-27
CVE-2024-25979 Msa-24-0002: forum search accepted random parameters in its url 5.3 Medium 2024-02-19
CVE-2023-28898 Head Unit Denial-of-Service via Apple CarPlay service — MIB3 Infotainment Unit 5.3 Medium 2024-01-12
CVE-2021-45478 IDOR in Yordam Library Automation System — Library Automation System 6.5 Medium 2023-03-02
CVE-2021-45477 IDOR in Yordam Library Automation System — Library Automation System 6.5 Medium 2023-03-02
CVE-2023-20076 Cisco IOx Application Hosting Environment Command Injection Vulnerability — Cisco IOS 7.2 High 2023-02-12
CVE-2022-3697 Ansible 安全漏洞 — ansible, ansible community.aws, ansible amazon.aws 6.5 - 2022-10-28
CVE-2022-32261 Siemens SINEMA Remote Connect Server 安全漏洞 — SINEMA Remote Connect Server 5.3 Medium 2022-06-14
CVE-2022-22792 MobiSoft - MobiPlus User Take Over and Improper Handling of url Parameters — eharmony 6.6 Medium 2022-02-16
CVE-2020-10069 Zephyr Bluetooth unchecked packet data results in denial of service — zephyr 4.3 Medium 2021-05-24
CVE-2021-0269 Junos OS: J-Web can be compromised through reflected client-side HTTP parameter pollution attacks. — Junos OS 8.8 High 2021-04-22
CVE-2021-1230 Cisco Nexus 9000 Series Fabric Switches ACI Mode BGP Route Installation Denial of Service Vulnerability — Cisco NX-OS System Software in ACI Mode 8.6 High 2021-02-24

Vulnerabilities classified as CWE-233 (参数问题) represent 23 CVEs. The CWE taxonomy describes the weakness; review individual CVEs for product-specific impact.