awesome-repositories.com
Blog
awesome-repositories.com

Entdecke die besten Open-Source-Repositories mit KI-gestützter Suche.

EntdeckenKuratierte SuchenOpen-Source-AlternativenSelf-hosted SoftwareBlogSitemap
ProjektÜber unsRanking-MethodikPresseMCP-Server
RechtlichesDatenschutzAGB
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

3 Repos

Awesome GitHub RepositoriesWebSocket Handshake Authentications

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.

Awesome WebSocket Handshake Authentications GitHub Repositories

Finde die besten Repos mit KI.Wir suchen mit KI nach den am besten passenden Repositories.
  • django/channelsAvatar von django

    django/channels

    6,352Auf GitHub ansehen↗

    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.

    Python
    Auf GitHub ansehen↗6,352
  • sta/websocket-sharpAvatar von sta

    sta/websocket-sharp

    6,067Auf GitHub ansehen↗

    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.

    C#
    Auf GitHub ansehen↗6,067
  • websockets/wscatAvatar von websockets

    websockets/wscat

    2,675Auf GitHub ansehen↗

    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.

    JavaScript
    Auf GitHub ansehen↗2,675
  1. Home
  2. Security & Cryptography
  3. Basic Authentication
  4. WebSocket Handshake Authentications

Unter-Tags erkunden

  • WebSocket Authentication and TestingVerifies user identity on WebSocket connections and simulates real-time connections in automated tests. **Distinct from WebSocket Handshake Authentications:** Distinct from WebSocket Handshake Authentications: adds testing simulation of real-time connections, not just credential injection.