BETA Shoulder está en beta — Los hallazgos a veces pueden ser incorrectos. Tu feedback da forma a lo que arreglamos a continuación. Compartir comentarios
#10 A10:2025

Mishandling of Exceptional Conditions

A new category containing 24 CWEs focusing on improper error handling, logical errors, failing open, and other scenarios stemming from abnormal conditions that systems may encounter.

Resumen

New category for 2025. Focuses on how applications handle errors, edge cases, and exceptional conditions. Improper handling can lead to information disclosure, denial of service, or security control bypass.

Cómo los Atacantes Explotan Esto

Entender los patrones de ataque te ayuda a construir mejores defensas. Estas son las técnicas que los equipos de seguridad vigilan.

Fail-open bypass

Security controls fail open when exceptions occur, allowing unauthorized access when the system encounters unexpected conditions.

Señal de detección: Access granted after system errors, security checks bypassed during high load

Error-based information disclosure

Detailed error messages reveal internal system information, database schemas, or file paths to attackers.

Señal de detección: Stack traces, SQL errors, or file paths in error responses

Resource exhaustion

Triggering exceptional conditions repeatedly causes resource exhaustion or denial of service.

Señal de detección: Repeated requests causing errors, memory or CPU spikes during error handling

Cómo Prevenir

  • Implement consistent error handling across the application
  • Design systems to fail securely (fail closed, not fail open)
  • Handle all exception types explicitly, never use catch-all silently
  • Return generic error messages to users, log detailed errors internally
  • Test error handling paths with invalid, unexpected, and malicious input
  • Implement timeouts and circuit breakers for external dependencies
  • Validate assumptions about inputs and system state

CWEs con Detección Shoulder (6)

Estos CWEs tienen reglas de detección Shoulder. Haz clic para ver vulnerabilidades específicas y correcciones.

Otros CWEs Mapeados (18)

Estos CWEs están mapeados a esta categoría pero aún no tienen reglas Shoulder.