1
1
Fork 1
mirror of https://github.com/go-gitea/gitea.git synced 2024-05-10 07:06:06 +02:00

Internal ssh server respect Ciphers, MACs and KeyExchanges settings (#14523)

This commit is contained in:
Stefan 2021-01-30 14:20:32 +01:00 committed by GitHub
parent 5e20fd6dbf
commit eea4197cd9
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -241,13 +241,17 @@ func publicKeyHandler(ctx ssh.Context, key ssh.PublicKey) bool {
// Listen starts a SSH server listens on given port.
func Listen(host string, port int, ciphers []string, keyExchanges []string, macs []string) {
// TODO: Handle ciphers, keyExchanges, and macs
srv := ssh.Server{
Addr: fmt.Sprintf("%s:%d", host, port),
PublicKeyHandler: publicKeyHandler,
Handler: sessionHandler,
ServerConfigCallback: func(ctx ssh.Context) *gossh.ServerConfig {
config := &gossh.ServerConfig{}
config.KeyExchanges = keyExchanges
config.MACs = macs
config.Ciphers = ciphers
return config
},
// We need to explicitly disable the PtyCallback so text displays
// properly.
PtyCallback: func(ctx ssh.Context, pty ssh.Pty) bool {