csf plugin blank -- missing ../plugins/csf/exec/csf

JCM

New member
Joined
Apr 24, 2022
Messages
2
For some reason when I click the csf plugin from the admin level (or reseller level in the enhanced skin) the iframe is blank.

I tried reinstalling the plugin and csf, both manual and via da build.

The logs fail to chmod and chown /usr/local/directadmin/plugins/csf/exec/csf because it doesn't exist.

Bash:
chown: cannot access '/usr/local/directadmin/plugins/csf/exec/csf': No such file or directory
chmod: cannot access '/usr/local/directadmin/plugins/csf/exec/csf': No such file or directory

There is no /usr/local/directadmin/plugins/csf/exec/csf which the admin/index.raw is attempting to call. I know it's a perl script due to index.raw but that's all I know.

Perl:
cat /usr/local/directadmin/plugins/csf/admin/index.raw
#!/usr/bin/perl

$| = 1;

print "HTTP/1.1 200 OK\n";
print "Content-type: text/html\r\n\r\n";
system ("/usr/local/directadmin/plugins/csf/exec/csf");

I checked the csf source release and just like /usr/local/directadmin/plugins/csf/exec/ only da_csf.cgi and da_csf_reseller.cgi exist.

Bash:
 ll /usr/local/directadmin/plugins/csf/exec
total 24
-rwxr-xr-x 1 diradmin diradmin 8958 Sep 20 03:03 da_csf.cgi
-rwxr-xr-x 1 diradmin diradmin 8529 Sep 20 03:05 da_csf_reseller.cgi

I guess my question is, where can I get /usr/local/directadmin/plugins/csf/exec/csf from or is my index.raw out of date and how do I update it? Or perhaps I'm missing something else completely.
 
Back
Top