An open API service indexing awesome lists of open source software.

https://github.com/asad9711/websocket-proxy-server

To proxy and monitor outgoing websocket requests
https://github.com/asad9711/websocket-proxy-server

cobra-cli golang gorilla-websocket http-hijacking websocket

Last synced: 8 months ago
JSON representation

To proxy and monitor outgoing websocket requests

Awesome Lists containing this project

README

          

# to proxy incoming ws requests to a target server

2 Approaches:
1. Upgrade an incoming http request to WS and then perform 2 way read/write of data between client and target server
2. (low level approach) Hijack the incoming http request and create a tcp connection to target server, and then copy data between the 2 tcp connections