-
Notifications
You must be signed in to change notification settings - Fork 672
Open
Description
Bug Name
Unhandled print() Statements in Production Code
Attack Scenario
Two print() statements exist in production code that bypass the logging framework and cannot be filtered or redirected.
Impact
Debug output mixed with application output, cannot be suppressed via logging configuration.
Components
Files: utils.py:806 -- print(f'Failed to parse {event_name}: {e}'), websocket.py:427 -- print(f'Reconnected WebSocket {close_old_connection}').
Reproduction
- Trigger a WebSocket reconnection or event parsing failure.
- Observe print() output on stdout regardless of logging configuration.
Fix
Replace with logging.warning() or logging.info() calls.
Details
Finding ID: SEC-08
Severity: Informational
Researcher: Independent Security Researcher -- Mefai Security Team
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels