CWE-483Incorrect Block Delimitation

PUBLISHEDweakness recordLow
released 2006-07-19 · last modified 2025-12-11

Metadata

CWE ID:
CWE-483
摘要:
Base
结构:
Simple
状态:
Draft
发布日期:
2006-07-19
更新日期:
2025-12-11

名称

Incorrect Block Delimitation

描述

The code does not explicitly delimit a block that is intended to contain 2 or more statements, creating a logic error.

In some languages, braces (or other delimiters) are optional for blocks. When the delimiter is omitted, it is possible to insert a logic error in which a statement is thought to be in a block but is not. In some cases, the logic error can have security implications.

常见后果

范围:
Confidentiality, Integrity, Availability
影响:
Alter Execution Logic
注释:
This is a general logic error which will often lead to obviously-incorrect behaviors that are quickly noticed and fixed. In lightly tested or untested code, this error may be introduced it into a production environment and provide additional attack vectors by creating a control flow path leading to an unexpected state in the application. The consequences will depend on the types of behaviors that are being incorrectly executed.

相关 CWE