Information exposure through an error message¶
ID: java/error-message-exposureKind: problemSecurity severity: 5.4Severity: errorPrecision: highTags: - security - external/cwe/cwe-209Query suites: - java-code-scanning.qls - java-security-extended.qls - java-security-and-quality.qls
Click to see the query in the CodeQL repository
The error message at the top of a stack trace can include information such as server-side file names and SQL code that the application relies on, allowing an attacker to fine-tune a subsequent injection attack.
Recommendation¶
Send the user a more generic error message that reveals less information. Either suppress the error message entirely, or log it only on the server.
Example¶
In the following example, an exception is handled in two different ways. In the first version, labeled BAD, the exception is sent back to the remote user using thegetMessage() method. As such, the user is able to see a detailed error message, which may contain sensitive information. In the second version, the error message is logged only on the server. That way, the developers can still access and use the error log, but remote users will not see the information.
protectedvoiddoGet(HttpServletRequestrequest,HttpServletResponseresponse){try{doSomeWork();}catch(NullPointerExceptionex){// BAD: printing a exception message back to the responseresponse.sendError(HttpServletResponse.SC_INTERNAL_SERVER_ERROR,ex.getMessage());return;}try{doSomeWork();}catch(NullPointerExceptionex){// GOOD: log the exception message, and send back a non-revealing responselog("Exception occurred",ex.getMessage);response.sendError(HttpServletResponse.SC_INTERNAL_SERVER_ERROR,"Exception occurred");return;}}
References¶
OWASP:Improper Error Handling.
CERT Java Coding Standard:ERR01-J. Do not allow exceptions to expose sensitive information.
Common Weakness Enumeration:CWE-209.