Verbose Error Messages
Description
Verbose Error Messages occur when an application reveals overly detailed information about its internal processes, configurations, or database schemas in error responses. While error reporting and debugging are essential during development, leaving them active in a production environment can expose sensitive details such as stack traces, SQL queries, server file paths, or system configuration settings. Attackers can leverage this information to identify potential vulnerabilities, refine their exploit attempts, or gain insights into the system's structure.
Excessive detail in error messages can arise from default framework configurations, unhandled exceptions, or logging/monitoring tools that are not tailored for production use. Ensuring that public-facing errors remain generic—while still logging useful data in a secure location—is crucial for preventing information leakage.
Examples
Unhandled Exception Stack Traces
An application might throw a runtime exception that returns a full stack trace to the user's browser. For instance, a .NET or Java error page shows class names, line numbers, and even library versions. Attackers can identify the framework in use, discover the file structure, or pinpoint the vulnerable method.
Database Query Errors
When a SQL query fails, an application may respond with a detailed message such as:
SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in
your SQL syntax near 'FROM users WHERE id= ' at line 1
This reveals the query structure (e.g., table names, SQL fragments), giving attackers a blueprint for SQL injection attempts.
Configuration or Path Leakage
In some error conditions, the application could reveal file system paths or server configuration details (e.g., /var/www/myapp/config.php
). Attackers can use these paths to probe for specific files or gather more details about the server's environment.
Remediation
-
Customize and Restrict Error Messages
- Display user-friendly, generic error messages in production environments that do not disclose technical details.
- Provide only high-level information such as "An unexpected error has occurred" or "Unable to process your request."
-
Secure Exception Handling
- Implement global exception handlers or middleware that catch errors and manage how they are displayed to end-users.
- Use structured logging to record the full stack trace or debug info internally but do not show it publicly.
-
Use Different Configurations for Development and Production
- In frameworks like Django, Rails, or Express, ensure that debug settings are disabled in production.
- Production mode typically suppresses verbose error messages and stack traces by default.