csfpost bug in version 4.12
Posted: 17 Oct 2008, 03:20
Looks like on line 327 in csf.pl in version 4.12 the line is:
and it should be:
The extra "\n" is causing the csfpost.sh script to not be found and not executed.
I compared this with version 4.11 and it looks like 4.11 has this correct.
Code: Select all
if (-e "/etc/csf/csfpost.sh\n") {
Code: Select all
if (-e "/etc/csf/csfpost.sh") {
I compared this with version 4.11 and it looks like 4.11 has this correct.