You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm running an http proxy like reverse dynamic forward, but the http method works but only https doesn't work.
When I specify the listener I created by listening with ssh client and start the Proxy with http.Serve, I am having a hard time because the CONNECT method and subsequent methods do not work.
Upon investigation, it appears that the program is getting stuck at the execution of http.Hijacker's Hijack() function. It behaves as if it's waiting, resembling a buffer-like behavior, but it's not clear exactly what's happening.
hello!
Thank you for the nice library!
I'm running an http proxy like reverse dynamic forward, but the http method works but only https doesn't work.
When I specify the listener I created by listening with ssh client and start the Proxy with http.Serve, I am having a hard time because the CONNECT method and subsequent methods do not work.
https://github.com/blacknon/go-sshlib/blob/c11e670601125a5d7d9b33a760b4062388ede9b2/forward.go#L331-L356
If you use net.Listen on the local side instead of on the ssh server side, it will work fine with https.
Is something missing?
I would be grateful if you could give me some advice.
The version used is the master branch as of 2024/04/27.
The text was updated successfully, but these errors were encountered: