mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-05-31 20:02:09 +00:00
Log IP on SSH authentication failure for Built-in SSH server (#13150)
* Log IP on SSH authentication failure fixes https://github.com/go-gitea/gitea/issues/13094 * include string 'Failed authentication attempt' in error * update fail2ban docs also match failed authentication over command line * better logging of authentication errors with IP addresses * format ... Co-authored-by: techknowlogick <techknowlogick@gitea.io> Co-authored-by: 6543 <6543@obermui.de>
This commit is contained in:
parent
42354dfe45
commit
abb9cffe4a
4 changed files with 12 additions and 3 deletions
|
@ -102,6 +102,7 @@ func HTTP(ctx *context.Context) {
|
|||
|
||||
owner, err := models.GetUserByName(username)
|
||||
if err != nil {
|
||||
log.Error("Attempted access of unknown user from %s", ctx.RemoteAddr())
|
||||
ctx.NotFoundOrServerError("GetUserByName", models.IsErrUserNotExist, err)
|
||||
return
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue