Admin Live Feed
Login to access the real-time admin event stream.
Hint
The WebSocket endpoint /ws sends the flag immediately on connection,
before checking the auth token. Connect directly with any WebSocket client.
python3 -c "
import websocket, json
ws = websocket.create_connection('ws://localhost:PORT/ws')
print(ws.recv()) # flag arrives before auth check
"