✅ Install ConfigServer Tools + Imunify360 Integration

For cPanel/WHM on AlmaLinux 8/9 or CloudLinux 8/9


📦 1. Install ConfigServer ModSecurity Control (cmc)

rm -fv cmc.tgz
wget http://www.configserver.com/free/cmc.tgz
tar -xzf cmc.tgz
cd cmc
sh install.sh
cd ~

📬 2. Install ConfigServer Mail Manage (cmm)

rm -fv cmm.tgz
wget https://download.configserver.com/cmm.tgz
tar -xzf cmm.tgz
cd cmm
sh install.sh
cd ~

📨 3. Install ConfigServer Mail Queues (cmq)

rm -fv cmq.tgz
wget https://download.configserver.com/cmq.tgz
tar -xzf cmq.tgz
cd cmq
sh install.sh
cd ~

📁 4. Install ConfigServer Explorer (cse)

rm -fv cse.tgz
wget https://download.configserver.com/cse.tgz
tar -xzf cse.tgz
cd cse
sh install.sh
cd ~

🔁 5. Setup Daily Auto-Update for All ConfigServer Scripts

Edit crontab:

crontab -e

Add the following line:

0 0 * * * curl -sL https://download.configserver.com/csupdate | perl > /dev/null 2>&1

🛡️ 6. Integrate with Imunify360

If Imunify360 is already installed, you can enable Imunify360 integration with CSF/LFD using the following steps:

Enable Imunify360 Integration with CSF

  1. Open the CSF configuration file:
nano /etc/csf/csf.conf
  1. Find the line:
IMUNIFY360 = "0"

Change it to:

IMUNIFY360 = "1"
  1. Save and restart CSF & LFD:
csf -r
systemctl restart lfd

✅ This allows CSF/LFD to defer certain actions to Imunify360, reducing false positives and improving threat detection coordination.


🧪 7. Test Installation

All ConfigServer tools will now appear inside WHM:

  • WHM » Plugins » ConfigServer Security & Firewall (CSF)
  • WHM » Plugins » ConfigServer Explorer (CSE)
  • WHM » Plugins » Mail Queue (CMQ)
  • WHM » Plugins » Mail Manage (CMM)
  • WHM » Plugins » ModSecurity Control (CMC)

You can also verify that Imunify360 integration is working by checking /var/log/lfd.log or WHM » Imunify360 interface for synced actions.

Scroll to Top