custom.regex.pm temporary value ignored

Post Reply
roi5432
Junior Member
Posts: 1
Joined: 27 Feb 2020, 13:08

custom.regex.pm temporary value ignored

Post by roi5432 »

So I've built this custom lfd in custom.regex.pm:

Code: Select all

if (($globlogs{CUSTOM9_LOG}{$lgfile}) and ($line =~ /^[A-Z][a-z]{2} \d{2} \d{2}:\d{2}:\d{2} Invalid user login booting from (\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})/)) {
	return ("Failed booting login from",$1,"booting",${LF_CUSTOMLOGIN},"80,443,8443",${LF_CUSTOMLOGIN_PERM});
}
In csf.conf I have these variables set:

Code: Select all

CUSTOM9_LOG = "/var/log/customsecure"
LF_CUSTOMLOGIN = "10"
LF_CUSTOMLOGIN_PERM = "300"
LF_TRIGGER = "0"
All works fine, the IP is being read by the regex and changing the LF_CUSTOMLOGIN value does change the trigger level but the temporary value is being ignored and the ban is set always as a permanent block. Changing the '${LF_CUSTOMLOGIN_PERM}' substitution in custom.regex.pm to a static number (be it "300" or "3600") doesn't affect it and still causes a permanent block.
Post Reply