Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Use when reviewing error handling middleware, API route handlers, or server responses for security-sensitive information disclosure.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-04 | ✗→✓ | ▲ Improved | -13% | 0% |
| case-14 | ✓→✓ | = Same ✓ | -7% | 0% |
| case-01 | ✓→✓ | = Same ✓ | -35% | 0% |
| case-02 | ✓→✓ | = Same ✓ | -7% | 0% |
| case-03 | ✓→✓ | = Same ✓ | -2% | 0% |
Stack traces reveal file paths, function names, library versions, and sometimes database schema or configuration details. An attacker uses this information to identify the exact version of a framework or ORM, look up known CVEs for that version, and craft a targeted exploit. OWASP lists "Security Logging and Monitoring Failures" (A09) as a top-10 risk partly because organisations often expose this information without realising it.
Check whether production API error responses include stack traces, file paths, or internal implementation details.
Implement a central error handler that logs full details server-side and returns only a sanitised, generic error message to the client.
Explain what information stack traces reveal and how attackers use that information to identify and exploit vulnerabilities.
Review error handlers, catch blocks, and API response code. Flag any location where error.stack, error.message (raw), or internal paths are serialised directly into a response body.
For full implementation details, code examples, and framework-specific guidance, see references/rule.md.
Rule page: https://frontendchecklist.io/en/rules/security/stack-trace-exposure
Other measured skills in the registry, with their headline benchmark lift.