Error-Handling Security
SkillDatabases & dataDecide what an error tells the client and what stays server-side: no stack traces, SQL, or paths in responses, no silent suppression, and no distinction between outcomes that would reveal protected state. Use when generating HTTP, GraphQL, or RPC error handlers, exception, panic, or rescue blocks, or configuring production error pages.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Error-Handling Security skill
What this skill tells your AI
The instructions your AI receives, as published by shieldnet-360/secure-vibe in skills/error-handling-security/SKILL.md and read by ahel’s review.
Rules (for AI agents)
ALWAYS
- Catch exceptions at the boundary — HTTP handler, RPC method, message consumer —
and decide there what crosses to the client and what stays server-side. Record
the failure with a correlation ID under
logging-security's policy; do not bypass its redaction rules to attach "full context", which is how request bodies, cookies and tokens end up in logs. - Put only client-actionable information in an external error: a stable error code, a short human-readable message, and the correlation ID. Anything the caller cannot act on belongs in the log entry that shares that ID.
- Keep responses consistent within an error class, and make security-equivalent
outcomes externally indistinguishable. Different classes may and should differ —
400 VALIDATION_FAILED,401,403,409,429are not a finding. What must not differ is a pair of outcomes whose distinction reveals protected state: whether an account exists, whether a record the caller may not see is present.auth-securityowns making the login paths cost the same; this rule owns what they return. - Disable developer error pages and detailed exception rendering in every
non-development environment, and route unhandled errors through the framework's
production error handler. This is a wiring decision, not the same thing as an
environment variable reading
production— the setting and its name differ per framework, andreferences/framework-error-pages.mdhas them. - Render every external error through one helper, so the sanitization rules live in a single place instead of being re-derived at each handler.
- Consult
api-securityfor the status code and response envelope,logging-securityfor the internal record, andauth-securityfor making two authentication failures cost the same. This skill owns one decision — what crosses the boundary.
NEVER
- Serialize exception or debug internals into an external response: stack traces, SQL fragments and constraint names, filesystem paths, internal hostnames, dependency or framework versions.
- Silently swallow an unexpected exception — a bare
except: pass,catch {},rescue nil. Let it reach the nearest designated error boundary, which logs it and converts it to a sanitized response. A narrowly-typed, commented suppression of an expected condition is fine; the finding is the broad or unexplained one. - Withhold client-actionable validation detail in order to make the API harder to
explore, or smuggle server state into it. Which field failed and why is the
public contract — that is what RFC 9457 problem details and the GraphQL
errorsarray are for — and it belongs in the response. Record existence, authorization state, and SQL or schema internals are not the contract and do not.
KNOWN FALSE POSITIVES
- Developer diagnostics in an explicitly local development environment that no
untrusted caller can reach. The safety comes from the deployment, not from the
hostname:
localhostand*.localare not security boundaries, and a debug console that executes code is dangerous wherever it is reachable. - An authenticated, authorized diagnostic or admin endpoint returning more detail than a public one. It still may not return secrets, credentials or PII — authenticating the caller does not make that data less sensitive, and a health check should answer with status, not with internals.
Context (for humans)
CWE-209 is small text with large consequences: it is how an attacker moves from "this
service exists" to "this service runs Spring 5.2 on Tomcat 9 with a PostgreSQL table
called users and a column called email_normalized". Every extra detail lowers the
cost of the next attack.
The line this skill draws is client-actionable versus internal, not
detailed-versus-generic. Those get confused, and the confusion is expensive in both
directions: an API that flattens every validation failure into an opaque 400 is
hostile to its own callers without being meaningfully safer, while one that returns a
database constraint name has handed over its schema. email must be a valid address
is the public contract. users.email_normalized violates users_email_key is not.
Ownership is deliberately narrow. What a log entry may contain belongs to
logging-security; making two authentication paths take the same amount of work
belongs to auth-security; HTTP status semantics and the response envelope belong to
api-security. This skill owns one decision — what crosses the boundary — and the
handler that enforces it.
References
references/verifying-findings.md— confirm or refute a finding, then lock itreferences/framework-error-pages.md— turning off developer error pages per framework, and why the environment variable is not the switchrules/error_response_template.json- OWASP Error Handling Cheat Sheet.
- RFC 9457 — Problem Details for HTTP APIs.
- CWE-209 · CWE-755.
Signals
- GitHub stars
- 22
- Last commit
- Aug 2026
Advanced
- Catalog kind
- skill
- Gateway key
error-handling-security- Source
- github.com/shieldnet-360/secure-vibe