You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
706 B
Plaintext
26 lines
706 B
Plaintext
2 years ago
|
# slapd (Stand-alone LDAP Daemon) openldap daemon filter
|
||
|
#
|
||
|
# Detecting invalid credentials: error code 49
|
||
|
# http://www.openldap.org/doc/admin24/appendix-ldap-result-codes.html#invalidCredentials (49)
|
||
|
|
||
|
[INCLUDES]
|
||
|
|
||
|
# Read common prefixes. If any customizations available -- read them from
|
||
|
# common.local
|
||
|
before = common.conf
|
||
|
|
||
|
[Definition]
|
||
|
|
||
|
_daemon = slapd
|
||
|
|
||
|
failregex = ^(?P<__prefix>%(__prefix_line)s)conn=(?P<_conn_>\d+) fd=\d+ ACCEPT from IP=<HOST>:\d{1,5} \(IP=\S+\)\s*<SKIPLINES>(?P=__prefix)conn=(?P=_conn_) op=\d+ RESULT(?:\s(?!err)\S+=\S*)* err=49 text=[\w\s]*$
|
||
|
|
||
|
ignoreregex =
|
||
|
|
||
|
[Init]
|
||
|
|
||
|
# "maxlines" is number of log lines to buffer for multi-line regex searches
|
||
|
maxlines = 20
|
||
|
|
||
|
# Author: Andrii Melnyk
|