X7ROOT File Manager
Current Path:
/etc/fail2ban/filter.d
etc
/
fail2ban
/
filter.d
/
π
..
π
3proxy.conf
(467 B)
π
apache-auth.conf
(3.15 KB)
π
apache-badbots.conf
(2.76 KB)
π
apache-botsearch.conf
(1.24 KB)
π
apache-common.conf
(1.58 KB)
π
apache-fakegooglebot.conf
(324 B)
π
apache-modsecurity.conf
(511 B)
π
apache-nohome.conf
(596 B)
π
apache-noscript.conf
(1.22 KB)
π
apache-overflows.conf
(2.13 KB)
π
apache-pass.conf
(362 B)
π
apache-shellshock.conf
(1020 B)
π
assp.conf
(3.41 KB)
π
asterisk.conf
(2.31 KB)
π
bitwarden.conf
(427 B)
π
botsearch-common.conf
(522 B)
π
centreon.conf
(307 B)
π
common.conf
(2.71 KB)
π
counter-strike.conf
(244 B)
π
courier-auth.conf
(429 B)
π
courier-smtp.conf
(512 B)
π
cyrus-imap.conf
(444 B)
π
directadmin.conf
(338 B)
π
domino-smtp.conf
(2.06 KB)
π
dovecot.conf
(2.4 KB)
π
dropbear.conf
(1.69 KB)
π
drupal-auth.conf
(557 B)
π
ejabberd-auth.conf
(1.54 KB)
π
exim-common.conf
(516 B)
π
exim-spam.conf
(2.11 KB)
π
exim.conf
(2.81 KB)
π
freeswitch.conf
(1.88 KB)
π
froxlor-auth.conf
(1.18 KB)
π
gitlab.conf
(236 B)
π
grafana.conf
(388 B)
π
groupoffice.conf
(236 B)
π
gssftpd.conf
(322 B)
π
guacamole.conf
(1.41 KB)
π
haproxy-http-auth.conf
(1.14 KB)
π
horde.conf
(404 B)
π
ignorecommands
π
kerio.conf
(938 B)
π
lighttpd-auth.conf
(333 B)
π
mongodb-auth.conf
(2.23 KB)
π
monit.conf
(787 B)
π
murmur.conf
(927 B)
π
mysqld-auth.conf
(953 B)
π
nagios.conf
(400 B)
π
named-refused.conf
(1.46 KB)
π
nginx-botsearch.conf
(681 B)
π
nginx-http-auth.conf
(485 B)
π
nginx-limit-req.conf
(1.42 KB)
π
nsd.conf
(760 B)
π
openhab.conf
(452 B)
π
openwebmail.conf
(495 B)
π
oracleims.conf
(1.89 KB)
π
pam-generic.conf
(947 B)
π
perdition.conf
(568 B)
π
php-url-fopen.conf
(891 B)
π
phpmyadmin-syslog.conf
(278 B)
π
portsentry.conf
(242 B)
π
postfix.conf
(3.09 KB)
π
proftpd.conf
(1.14 KB)
π
pure-ftpd.conf
(2.35 KB)
π
qmail.conf
(795 B)
π
recidive.conf
(1.34 KB)
π
roundcube-auth.conf
(1.46 KB)
π
screensharingd.conf
(821 B)
π
selinux-common.conf
(538 B)
π
selinux-ssh.conf
(570 B)
π
sendmail-auth.conf
(776 B)
π
sendmail-reject.conf
(2.88 KB)
π
sieve.conf
(371 B)
π
slapd.conf
(706 B)
π
softethervpn.conf
(451 B)
π
sogo-auth.conf
(722 B)
π
solid-pop3d.conf
(1.07 KB)
π
squid.conf
(260 B)
π
squirrelmail.conf
(191 B)
π
sshd.conf
(7.34 KB)
π
stunnel.conf
(363 B)
π
suhosin.conf
(649 B)
π
tine20.conf
(890 B)
π
traefik-auth.conf
(2.33 KB)
π
uwimap-auth.conf
(374 B)
π
vsftpd.conf
(637 B)
π
webmin-auth.conf
(444 B)
π
wuftpd.conf
(520 B)
π
xinetd-fail.conf
(521 B)
π
znc-adminlog.conf
(912 B)
π
zoneminder.conf
(524 B)
Editing: mongodb-auth.conf
# Fail2Ban filter for unsuccesfull MongoDB authentication attempts # # Logfile /var/log/mongodb/mongodb.log # # add setting in /etc/mongodb.conf # logpath=/var/log/mongodb/mongodb.log # # and use of the authentication # auth = true # [Definition] #failregex = ^\s+\[initandlisten\] connection accepted from <HOST>:\d+ \#(?P<__connid>\d+) \(1 connection now open\)<SKIPLINES>\s+\[conn(?P=__connid)\] Failed to authenticate\s+ failregex = ^\s+\[conn(?P<__connid>\d+)\] Failed to authenticate [^\n]+<SKIPLINES>\s+\[conn(?P=__connid)\] end connection <HOST> ignoreregex = [Init] maxlines = 10 # DEV Notes: # # Regarding the multiline regex: # # There can be a nunber of non-related lines between the first and second part # of this regex maxlines of 10 is quite generious. # # Note the capture __connid, includes the connection ID, used in second part of regex. # # The first regex is commented out (but will match also), because it is better to use # the host from "end connection" line (uncommented above): # - it has the same prefix, searching begins directly with failure message # (so faster, because ignores success connections at all) # - it is not so vulnerable in case of possible race condition # # Log example: # 2016-10-20T09:54:27.108+0200 [initandlisten] connection accepted from 127.0.0.1:53276 #1 (1 connection now open) # 2016-10-20T09:54:27.109+0200 [conn1] authenticate db: test { authenticate: 1, nonce: "xxx", user: "root", key: "xxx" } # 2016-10-20T09:54:27.110+0200 [conn1] Failed to authenticate root@test with mechanism MONGODB-CR: AuthenticationFailed UserNotFound Could not find user root@test # 2016-11-09T09:54:27.894+0100 [conn1] end connection 127.0.0.1:53276 (0 connections now open) # 2016-11-09T11:55:58.890+0100 [initandlisten] connection accepted from 127.0.0.1:54266 #1510 (1 connection now open) # 2016-11-09T11:55:58.892+0100 [conn1510] authenticate db: admin { authenticate: 1, nonce: "xxx", user: "root", key: "xxx" } # 2016-11-09T11:55:58.892+0100 [conn1510] Failed to authenticate root@admin with mechanism MONGODB-CR: AuthenticationFailed key mismatch # 2016-11-09T11:55:58.894+0100 [conn1510] end connection 127.0.0.1:54266 (0 connections now open) # # Authors: Alexander FinkhΓ€user # Sergey G. Brester (sebres)
Upload File
Create Folder