CWE一覧に戻る
CWE-763

無効なポインタまたは参照の解放

Release of Invalid Pointer or Reference
脆弱性 作成中
JA

製品がメモリリソースをシステムに戻そうとしたが、間違ったリリース関数を呼び出したか、適切なリリース関数を間違って呼び出した。

このような弱点にはいくつかの形がある:

EN

The product attempts to return a memory resource to the system, but it calls the wrong release function or calls the appropriate release function incorrectly.

This weakness can take several forms, such as:

Scope: Integrity, Availability, Confidentiality / Impact: Modify Memory; DoS: Crash, Exit, or Restart; Execute Unauthorized Code or Commands
Only call matching memory management functions. Do not mix and match routines. For example, when you allocate a buffer with malloc(), dispose of the original pointer with free().
When programming in C++, consider using smart pointers provided by the boost library to help correctly and consistently manage memory.
Use a vetted library or framework that does not allow this weakness to occur or provides constructs that make this weakness easier to avoid.

For example, glibc in Linux provides protection against free of invalid pointers.
Use a language that provides abstractions for memory allocation and deallocation.
Use a tool that dynamically detects memory management problems, such as valgrind.
MITRE公式ページ — CWE-763