Details |
Last modification |
View Log
| RSS feed
Rev |
Author |
Line No. |
Line |
87 |
- |
1 |
# slapd (Stand-alone LDAP Daemon) openldap daemon filter
|
|
|
2 |
#
|
|
|
3 |
# Detecting invalid credentials: error code 49
|
|
|
4 |
# http://www.openldap.org/doc/admin24/appendix-ldap-result-codes.html#invalidCredentials (49)
|
|
|
5 |
|
|
|
6 |
[INCLUDES]
|
|
|
7 |
|
|
|
8 |
# Read common prefixes. If any customizations available -- read them from
|
|
|
9 |
# common.local
|
|
|
10 |
before = common.conf
|
|
|
11 |
|
|
|
12 |
[Definition]
|
|
|
13 |
|
|
|
14 |
_daemon = slapd
|
|
|
15 |
|
|
|
16 |
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]*$
|
|
|
17 |
|
|
|
18 |
ignoreregex =
|
|
|
19 |
|
|
|
20 |
[Init]
|
|
|
21 |
|
|
|
22 |
# "maxlines" is number of log lines to buffer for multi-line regex searches
|
|
|
23 |
maxlines = 20
|
|
|
24 |
|
|
|
25 |
# Author: Andrii Melnyk
|