337 vulnerabilities classified as CWE-404 (不恰当的资源关闭或释放). AI Chinese analysis included.
CWE-404 represents a critical resource management weakness where software fails to properly release or incorrectly frees allocated resources, such as memory, file handles, or network connections, before they are reused. This flaw typically leads to resource exhaustion, causing application crashes, denial of service, or system instability as available resources dwindle. Attackers often exploit this by triggering repeated allocations without corresponding releases, effectively starving the system of necessary assets. To mitigate this risk, developers must implement rigorous lifecycle management, ensuring every allocated resource has a corresponding release mechanism. This involves using structured cleanup routines, leveraging language-specific garbage collection or smart pointers, and accounting for all execution paths, including error conditions and timeouts, to guarantee resources are consistently returned to the pool for safe reuse.
private void processFile(string fName) { BufferReader fil = new BufferReader(new FileReader(fName)); String line; while ((line = fil.ReadLine()) != null) { processLine(line); } }private void processFile(string fName) { BufferReader fil = new BufferReader(new FileReader(fName)); String line; while ((line = fil.ReadLine()) != null) { processLine(line); } fil.Close(); }try { Connection con = DriverManager.getConnection(some_connection_string); } catch ( Exception e ) { log( e ); }| CVE ID | Title | CVSS | Severity | Published |
|---|---|---|---|---|
| CVE-2019-0042 | Incorrect messages from Juniper Identity Management Service (JIMS) can trigger Denial of Service or firewall bypass conditions for SRX series devices — Juniper Identity Management Service | 4.2 | - | 2019-04-10 |
| CVE-2019-0043 | Junos OS: RPD process crashes upon receipt of a specific SNMP packet — Junos OS | 7.5 | - | 2019-04-10 |
| CVE-2019-0044 | Junos OS: SRX5000 series: Kernel crash (vmcore) upon receipt of a specific packet on fxp0 interface — Junos OS | 7.5 | - | 2019-04-10 |
| CVE-2019-0019 | BGP packets can trigger rpd crash when BGP tracing is enabled. — Junos OS | 7.5 | - | 2019-04-10 |
| CVE-2019-0028 | Junos OS: RPD process crashes due to specific BGP peer restarts condition. — Junos OS | 7.5 | - | 2019-04-10 |
| CVE-2018-8836 | WAGO 750 Series PLCs 安全漏洞 — WAGO 750 Series | 5.3 | - | 2018-04-03 |
| CVE-2017-11480 | Elasticsearch Packetbeat PostgreSQL protocol handler 安全漏洞 — Packetbeat | 7.5 | - | 2017-12-08 |
Vulnerabilities classified as CWE-404 (不恰当的资源关闭或释放) represent 337 CVEs. The CWE taxonomy describes the weakness; review individual CVEs for product-specific impact.