WebSocket & Real-time
WebSocket origin validation and message rate limiting — security for real-time communication channels.
2 vulnerabilities
WebSocket Missing Origin Validation
highA WebSocket server that does not check the Origin header accepts connections from any website, allowing cross-site WebSocket hijacking where a malicious page connects to your WS endpoint using the victim's authenticated session.
CWE-346OWASP A01:2021
WebSocket Flooding (No Rate Limit)
mediumA WebSocket server without message rate limiting allows a single client to send thousands of messages per second, exhausting server resources, degrading performance for all users, and potentially causing a denial-of-service.
CWE-770