目标达成 感谢每一位支持者 — 我们达成了 100% 目标!

目标: 1000 元 · 已筹: 1336 元

100%

CWE-416 释放后使用 类漏洞列表 3703

CWE-416 释放后使用 类弱点 3703 条 CVE 漏洞汇总,含 AI 中文分析。

CWE-416 释放后使用是一种内存安全漏洞,指程序在释放内存后仍引用该内存区域。攻击者常利用此缺陷,通过重新分配内存并控制其内容,诱导程序执行恶意代码或读取敏感数据,从而引发远程代码执行或信息泄露。开发者应避免此类风险,确保在指针置空前彻底解除引用,采用智能指针等自动内存管理机制,并严格验证内存生命周期,防止悬空指针操作。

MITRE CWE 官方描述
CWE:CWE-416 Use After Free 英文:产品在内存被释放后重新使用或引用该内存。在此之后,该内存可能会被重新分配并保存到另一个指针中,而原始指针则指向新分配内存中的某个位置。由于内存“属于”操作新指针的代码,因此使用原始指针的任何操作均不再有效。
常见影响 (4)
Integrity Modify Memory
The use of previously freed memory may corrupt valid data, if the memory area in question has been allocated and used properly elsewhere.
Availability DoS: Crash, Exit, or Restart
If chunk consolidation occurs after the use of previously freed data, the process may crash when invalid data is used as chunk information.
Confidentiality Read Memory
Read operations on freed memory can sometimes leak sensitive information instead of causing a crash
Integrity, Confidentiality, Availability Execute Unauthorized Code or Commands
If malicious data is entered before chunk consolidation can take place, it may be possible to take advantage of a write-what-where primitive to execute arbitrary code. If the newly allocated data happens to hold a class, in C++ for example, various function pointers may be scattered within the heap …
缓解措施 (2)
Architecture and Design Choose a language that provides automatic memory management.
Implementation When freeing pointers, be sure to set them to NULL once they are freed. However, the utilization of multiple or complex data structures may lower the usefulness of this strategy.
Effectiveness: Defense in Depth
代码示例 (2)
The following example demonstrates the weakness.
#include <stdio.h> #include <unistd.h> #define BUFSIZER1 512 #define BUFSIZER2 ((BUFSIZER1/2) - 8) int main(int argc, char **argv) { char *buf1R1; char *buf2R1; char *buf2R2; char *buf3R2; buf1R1 = (char *) malloc(BUFSIZER1); buf2R1 = (char *) malloc(BUFSIZER1); free(buf2R1); buf2R2 = (char *) malloc(BUFSIZER2); buf3R2 = (char *) malloc(BUFSIZER2); strncpy(buf2R1, argv[1], BUFSIZER1-1); free(buf1R1); free(buf2R2); free(buf3R2); }
Bad · C
The following code illustrates a use after free error:
char* ptr = (char*)malloc (SIZE); if (err) { abrt = 1; free(ptr); } ... if (abrt) { logError("operation aborted before commit", ptr); }
Bad · C
CVE ID 标题 CVSS 风险等级 Published
CVE-2020-13531 Pixar OpenUSD 资源管理错误漏洞 — Pixar 7.8 - 2020-12-03
CVE-2020-14381 linux kernel 资源管理错误漏洞 — kernel 7.8 - 2020-12-03
CVE-2020-25656 Linux kernel资源管理错误漏洞 — kernel 4.7 - 2020-12-02
CVE-2019-2393 Mongodb Server 资源管理错误漏洞 — MongoDB Server 6.5 Medium 2020-11-23
CVE-2020-25725 Xpdf 资源管理错误漏洞 — xpdf 5.0 Medium 2020-11-21
CVE-2020-24438 Adobe Reader 资源管理错误漏洞 — Acrobat Reader 3.3 Low 2020-11-05
CVE-2020-24430 Adobe Reader 资源管理错误漏洞 — Acrobat Reader 7.8 High 2020-11-05
CVE-2020-24437 Adobe Reader 资源管理错误漏洞 — Acrobat Reader 7.8 High 2020-11-05
CVE-2020-1909 Facebook WhatsApp for iOS logging library 资源管理错误漏洞 — WhatsApp Business for iOS 9.8 - 2020-11-03
CVE-2020-17417 Foxit Reader 资源管理错误漏洞 — Reader 7.8 - 2020-10-13
CVE-2020-17410 Foxit PhantomPDF 资源管理错误漏洞 — PhantomPDF 7.8 - 2020-10-13
CVE-2020-6115 Nitro Software Nitro Pro 资源管理错误漏洞 — Nitro Pro 7.8 - 2020-09-17
CVE-2020-7068 PHP 资源管理错误漏洞 — PHP 4.8 Medium 2020-09-09
CVE-2020-14373 Artifex Software ghostscript 资源管理错误漏洞 — ghostscript 5.0 - 2020-09-03
CVE-2020-10720 Linux kernel 资源管理错误漏洞 — Kernel 5.5 - 2020-09-03
CVE-2020-5378 Dell G7 17 7790 BIOS 资源管理错误漏洞 — CPG BIOS 6.8 Medium 2020-09-02
CVE-2020-5376 Dell Inspiron 7347 BIOS 资源管理错误漏洞 — CPG BIOS 6.8 Medium 2020-09-02
CVE-2020-15637 Foxit Reader和PhantomPDF 资源管理错误漏洞 — PhantomPDF 3.3 - 2020-08-19
CVE-2020-7827 DaviewIndy 资源管理错误漏洞 — DavieIndy 7.8 High 2020-07-30
CVE-2020-4060 Semtech LoRa Basics Station 资源管理错误漏洞 — LoRa Basics Station 4.1 Medium 2020-06-22
CVE-2020-4031 FreeRDP 资源管理错误漏洞 — FreeRDP 3.5 Low 2020-06-22
CVE-2019-19162 Tobesoft Xplatform 资源管理错误漏洞 — XPLATFORM 7.8 High 2020-05-11
CVE-2020-10690 Linux kernel 资源管理错误漏洞 — kernel 6.5 Medium 2020-05-08
CVE-2020-10700 Samba 资源管理错误漏洞 — samba 5.3 Medium 2020-05-04
CVE-2020-1752 GNU C Library 资源管理错误漏洞 — glibc 7.0 High 2020-04-30
CVE-2020-10906 Foxit Reader和PhantomPDF 资源管理错误漏洞 — Reader 7.8 - 2020-04-22
CVE-2020-10907 Foxit Reader和PhantomPDF 资源管理错误漏洞 — Reader 7.8 - 2020-04-22
CVE-2020-10900 Foxit Reader和PhantomPDF 资源管理错误漏洞 — Reader 7.8 - 2020-04-22
CVE-2020-10899 Foxit Reader和PhantomPDF 资源管理错误漏洞 — Reader 7.8 - 2020-04-22
CVE-2020-1983 libslirp 资源管理错误漏洞 — libslirp 7.5 High 2020-04-22

CWE-416(释放后使用) 是常见的弱点类别,本平台收录该类弱点关联的 3703 条 CVE 漏洞。