EXE
WinGet
Drip
Gouryella · 0.5.2 · x64
Before deploying, verify this file with VirusTotal ↗
Silent Commands
Portable application — no installation required. Run the executable directly from any location.
File Identity
Filename
drip-v0.5.2-windows-amd64.exe
Signature
Status
Upload installer to verify signature
Installer Selection
WinGet Package
Package ID
Gouryella.Drip
Version
0.5.2
Description
Self-hosted tunneling solution to expose localhost securely - unlimited bandwidth, no third-party servers
License
BSD-3-Clause
↗
Homepage
https://github.com/Gouryella/drip
Installer URL
https://github.com/Gouryella/drip/releases/download/v0.5.2/drip-v0.5.2-windows-amd64.exe
Release Notes
Bug Fixes
- Fixed WebSocket connections being terminated immediately after handshake
The WebSocket proxy was experiencing premature disconnections due to two issues:
1. Server-side context cancellation: The HTTP request context (r.Context()) was being used for the WebSocket pipe goroutine. When the HTTP handler returned after hijacking the connection, Go's HTTP server cancelled the request context, causing the WebSocket pipe to terminate immediately. Changed to use context.Background() for l…