ssh icon indicating copy to clipboard operation
ssh copied to clipboard

Easy SSH servers in Golang

Results 59 ssh issues
Sort by recently updated
recently updated
newest added

Is there a way to call a function just before the connection times out and closes?

question

I wonder if we could tunnel this thru rtcdatachannel? With the intention of supporting web browsers? Maybe the pion stuff could be useful?

invalid

I'm trying to create a installable binary that supports the `-T` option (no tty) so I can use it to connect to with VSCode's remote option. VSCode fails to connect...

``` ssh.Handle(func(s ssh.Session) { io.WriteString(s, "Hello world\n") }) log.Fatal(ssh.ListenAndServe(":2222", nil, ssh.PasswordAuth(func(ctx ssh.Context, pass string) bool { return pass == "123123" }), )) ``` ssh -vvv 127.0.0.1 -p 2222 ``` debug3:...

Cf golang/go#37278 Crypto already supports RSA SHA-2 (RFC8332) signatures Only need to upgrade mod to support RSA SHA-2 (RFC8332) signatures Thanks

We are seeing intermittent spikes in the time it takes for a user to establish a connection with our SSH Server. The delay is in between `PublicKeyHandler` and `Handler` starting....

The linux system have a `ulimit`, you can get the number of `open file`.So that try to `tcpip-forward`, if you create connect counts over the number of `open files`, listening...

tcpip.go line 114: addr := net.JoinHostPort(reqPayload.BindAddr, strconv.Itoa(int(reqPayload.BindPort))) when BindPort = 0, bind will success, but port is changed to random if there are more then 1 "tcpip-forward", h.forwards[addr] = ln...