From: Enrico204 Date: Mon, 10 Aug 2015 19:13:49 +0000 (+0200) Subject: Added better logging for fail2ban X-Git-Tag: v1.7.0~1^2~38^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=refs%2Fpull%2F296%2Fhead;p=gitblit.git Added better logging for fail2ban --- diff --git a/build.xml b/build.xml index 8544573b..65fc0432 100644 --- a/build.xml +++ b/build.xml @@ -513,6 +513,7 @@ + diff --git a/src/main/java/com/gitblit/transport/ssh/UsernamePasswordAuthenticator.java b/src/main/java/com/gitblit/transport/ssh/UsernamePasswordAuthenticator.java index c4e69dcd..d7c4fe5e 100644 --- a/src/main/java/com/gitblit/transport/ssh/UsernamePasswordAuthenticator.java +++ b/src/main/java/com/gitblit/transport/ssh/UsernamePasswordAuthenticator.java @@ -57,7 +57,7 @@ public class UsernamePasswordAuthenticator implements PasswordAuthenticator { return true; } - log.warn("could not authenticate {} for SSH using the supplied password", username); + log.warn("could not authenticate {} ({}) for SSH using the supplied password", username, client.getRemoteAddress()); return false; } } diff --git a/src/site/setup_fail2ban.mkd b/src/site/setup_fail2ban.mkd new file mode 100644 index 00000000..928f7a84 --- /dev/null +++ b/src/site/setup_fail2ban.mkd @@ -0,0 +1,20 @@ +## Configure fail2ban for Gitblit-SSH + +This procedure is based on a Debian installation of [fail2ban](http://www.fail2ban.org/), but it should works in any installation. + +First, create a new filter file `gitblit.conf` in filter directory (Debian: `/etc/fail2ban/filter.d/`) or into `filter.conf` file. Here an example: + + [Definition] + failregex = could not authenticate .*? \(/:[0-9]*\) for SSH using the supplied password$ + ignoreregex = + +Then edit `jail.conf` to add "gitblit" service (Debian: `/etc/fail2ban/jail.conf`). For example: + + [gitblit] + enabled = true + port = 22 + protocol = tcp + filter = gitblit + logpath = /var/log/gitblit.log + +Restart fail2ban to apply (Debian: `/etc/init.d/fail2ban restart`).