CWE-396: Declaration of Catch for Generic Exception

BaseDraft

Catching overly broad exceptions promotes complex error handling code that is more likely to contain security vulnerabilities.

View on MITRE
Back to CWE Lookup

Extended Description

Multiple catch blocks can get ugly and repetitive, but "condensing" catch blocks by catching a high-level class like Exception can obscure exceptions that deserve special treatment or that should not be caught at this point in the program. Catching an overly broad exception essentially defeats the purpose of a language's typed exceptions, and can become particularly dangerous if the program grows and begins to throw new types of exceptions. The new exception types will not receive any attention.

Technical Details

Structure
Simple

Applicable To

Languages
C++JavaC#Python
Platforms

Frequently Asked Questions

What is CWE-396: Declaration of Catch for Generic Exception?+

CWE-396: Declaration of Catch for Generic Exception is a Common Weakness Enumeration (CWE) entry maintained by MITRE. Catching overly broad exceptions promotes complex error handling code that is more likely to contain security vulnerabilities. Multiple catch blocks can get ugly and repetitive, but "condensing" catch blocks by catching a high-level class like Exception can obscure exceptions that deserve special treatment or that should not be caught at this point in the program. Catching an overly broad exception essentially defeats the purpose of a language's typed exceptions, and can become particularly dangerous if the program grows and begins to throw new types of exceptions. The new exception types will not receive any attention.

What are the security consequences of Declaration of Catch for Generic Exception?+

If exploited, CWE-396 (Declaration of Catch for Generic Exception) it can compromise Non-Repudiation and Other, leading to outcomes such as Hide Activities.

Which programming languages are affected by Declaration of Catch for Generic Exception?+

CWE-396 commonly affects C++, Java, C# and Python. Note that weaknesses are often language-agnostic patterns, so secure coding practices apply broadly.

What is the difference between a CWE and a CVE?+

A CWE (Common Weakness Enumeration) like CWE-396 describes a category of software weakness — the underlying flaw type. A CVE (Common Vulnerabilities and Exposures) identifies a specific, real-world vulnerability in a particular product. In short, a CWE is the kind of mistake, and a CVE is an instance of that mistake being found in software.

Learn More