mirror of
https://github.com/go-gitea/gitea
synced 2024-11-01 15:54:25 +00:00
f825f20d49
* Upgrade Gliderlabs SSH to 0.3.3 and add FailedConnectionCallback Following the merging of https://github.com/gliderlabs/ssh/pull/143 we can now report connections to the ssh server that have failed before public key exchange has completed using the standard fail2ban message. This PR updates Gliderlabs SSH and adds a callback that will provide this logging. Signed-off-by: Andrew Thornton <art27@cantab.net> * move the callback to its own function to make the logging appear little nicer Signed-off-by: Andrew Thornton <art27@cantab.net>
10 lines
240 B
Modula-2
Vendored
10 lines
240 B
Modula-2
Vendored
module github.com/gliderlabs/ssh
|
|
|
|
go 1.12
|
|
|
|
require (
|
|
github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be
|
|
golang.org/x/crypto v0.0.0-20210616213533-5ff15b29337e
|
|
golang.org/x/sys v0.0.0-20210616094352-59db8d763f22 // indirect
|
|
)
|