CWE-1071: Empty Code Block
The source code contains a block that does not contain any code, i.e., the block is empty.
How it's found
Empty Code Block is typically found by tracing untrusted input from where it enters the system to the point where it is used without the check or neutralization this weakness describes, combining manual code review with dynamic testing.
Empty code blocks can occur in the bodies of conditionals, function or method definitions, exception handlers, etc. While an empty code block might be intentional, it might also indicate incomplete implementation, accidental code deletion, unexpected macro expansion, etc. For some programming languages and constructs, an empty block might be allowed by the syntax, but the lack of any behavior within the block might violate a convention or API in such a way that it is an error.
Vulnerable vs. safe
c = a / b;int a = 1;int b = 0;int c = 0;try {} catch(ArithmeticException ae) {}
public static void main(String[] args) {}public class Main {}c = a / b;
log.error("Divided by zero detected, setting to -1.");c = -1;int a = 1;int b = 0;int c = 0;try {} catch(ArithmeticException ae) {}
public static void main(String[] args) {}public class Main {}Consequences
- Reduce Reliability
Where this fits in a TurboPentest engagement
TurboPentest's agentic pentest is powerful and covers a broad range of issues automatically. This particular class is best confirmed in a manual IntegSec engagement, where human pentesters apply deeper methodology and a larger context window than any automated pass.
Frequently asked questions
What is CWE-1071?
The source code contains a block that does not contain any code, i.e., the block is empty.
How do you find Empty Code Block?
Empty Code Block is typically found by tracing untrusted input from where it enters the system to the point where it is used without the check or neutralization this weakness describes, combining manual code review with dynamic testing.
What is the impact of CWE-1071?
Reduce Reliability
Does TurboPentest test for Empty Code Block?
TurboPentest's agentic pentest is powerful and covers a broad range of issues automatically. This particular class is best confirmed in a manual IntegSec engagement, where human pentesters apply deeper methodology and a larger context window than any automated pass.
Related CWEs
Find these issues before an attacker does
TurboPentest runs an agentic AI pentest against your target and reports findings with proof, from $99 per target.
Start a $99 pentest