← Back to sandbox
Backend & API Intermediate 6 possible tests

Logging Failures

Security events that should be logged — failed logins, access violations, server errors. Two events are silently swallowed. Check the log panel to find which ones are missing.

What is this?

Logging failures occur when security-relevant events — authentication failures, authorization violations, critical errors — are not recorded. Without logs, incidents become undetectable, and forensic investigation is impossible after an attack.

What is hidden here

BugFailed login triggered → no log entry created
BugAccess violation (403) triggered → no log entry created
CorrectSuccessful login → log entry created with user and IP
CorrectServer error → log entry created with error detail

Event Triggers


Log Panel
No logs yet — trigger some events above
Suggested Test Inputs
  • Trigger each action and check the log panel
  • Try a failed login — does it appear in the logs?
  • Try an access violation — does it appear?
  • Compare logged vs not-logged actions