|
Status: Draft Weakness ID: 392 (Weakness Base)Description Summary The software encounters an error but does not return a status code or return value to indicate that an error has occurred. Demonstrative Examples In the following snippet from a doPost() servlet method, the server returns "200 OK" (default) even if an error occurs. Java Example: try { // Something that may throw an exception. ... } catch (Throwable t) { logger.error("Caught: " + t.toString()); return; }
Observed Examples
Other Notes May be primary or resultant. Relationships
Taxonomy Mappings
Applicable Platforms Languages All Time of Introduction Architecture and Design ImplementationContent History Submissions PLOVER. (Externally Mined) Modifications Sean Eidemiller. Cigital. 2008-07-01. (External) added/updated demonstrative examples Eric Dalci. Cigital. 2008-07-01. (External) updated Time_of_Introduction CWE Content Team. MITRE. 2008-09-08. (Internal) updated Relationships, Other_Notes, Taxonomy_Mappings Previous Entry Names Missing Error Status Code (changed 2008-04-11) |
|
|
|||