3 Repos
Attaches authentication credentials to the initial WebSocket handshake request for access control.
Distinct from Basic Authentication: Distinct from Basic Authentication: specifically injects credentials into the WebSocket upgrade handshake, not general HTTP requests.
Explore 3 awesome GitHub repositories matching security & cryptography · WebSocket Handshake Authentications. Refine with filters or upvote what's useful.
Channels is an extension for the Django web framework that adds native support for WebSockets, background tasks, and long-running connections alongside standard HTTP requests. It provides a channel layer abstraction for passing messages between different parts of a Django application across processes, along with a protocol router that inspects incoming connections and dispatches them to the correct handler for HTTP, WebSocket, or custom protocols. The project introduces an async consumer abstraction that wraps protocol-specific handling into a single callable, and a background worker pool tha
Verifies user identity on WebSocket connections and simulates real-time connections in automated tests.
websocket-sharp ist eine C#-Bibliotheksimplementierung des WebSocket-Protokolls, die für den Aufbau bidirektionaler Client- und Serveranwendungen verwendet wird. Sie ermöglicht den Echtzeit-Datenaustausch zwischen Endpunkten über persistente Verbindungen. Die Bibliothek bietet spezialisierte Netzwerkfunktionen, einschließlich SSL-verschlüsselter Netzwerkkommunikation für sicheren Transport und Zertifikatsvalidierung. Sie bietet zudem HTTP-Proxy-Tunneling, um Datenverkehr über Zwischenserver unter Verwendung von Basic- oder Digest-Authentifizierung zu leiten. Das Projekt deckt ein breites Spektrum an Funktionen ab, einschließlich der Implementierung von WebSocket-Clients und -Servern, pfadbasiertem Service-Routing und der Möglichkeit, Nachrichten an mehrere Clients zu senden. Es umfasst Unterstützung für die Verwaltung von Handshake-Metadaten und Payload-Kompression, um die Datentransfergröße zu reduzieren.
Provides mechanisms to attach Basic or Digest authentication credentials to the initial WebSocket upgrade handshake.
wscat is a command-line WebSocket client and server tool that provides an interactive terminal interface for connecting to WebSocket endpoints, sending and receiving text messages in real time, and managing WebSocket control frames through typed slash commands. It supports basic HTTP authentication by injecting credentials into the initial WebSocket handshake request, and can route connections through an HTTP proxy using the CONNECT tunneling method. The tool includes a built-in WebSocket server mode that listens on a specified port, accepts incoming client connections, and relays messages be
Attaches basic HTTP authentication headers to the initial WebSocket handshake request for credential-based access.