CWE一覧に戻る
CWE-761

バッファの先頭でないポインタの解放

Free of Pointer not at Start of Buffer
脆弱性 作成中
JA

ヒープ上に確保されたメモリ・リソースへのポインタに対してfree()を呼び出したが、そのポインタがバッファの先頭になかった。

これにより、製品がクラッシュしたり、場合によっては重要なプログラム変数が変更されたり、コードが実行されたりする可能性がある。

この弱点は、malloc()ファミリーの関数の1つを使ってヒープ上にメモリを明示的に確保し、free()を呼び出したものの、ポインタ演算によってポインタがバッファの内部または終端にある場合によく発生します。

EN

The product calls free() on a pointer to a memory resource that was allocated on the heap, but the pointer is not at the start of the buffer.

This can cause the product to crash, or in some cases, modify critical program variables or execute code.

This weakness often occurs when the memory is allocated explicitly on the heap with one of the malloc() family functions and free() is called, but pointer arithmetic has caused the pointer to be in the interior or end of the buffer.

Scope: Integrity, Availability, Confidentiality / Impact: Modify Memory; DoS: Crash, Exit, or Restart; Execute Unauthorized Code or Commands
When utilizing pointer arithmetic to traverse a buffer, use a separate variable to track progress through memory and preserve the originally allocated address for later freeing.
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.
MITRE公式ページ — CWE-761