Created
December 27, 2013 04:13
-
-
Save zeropointdevelopment/8142489 to your computer and use it in GitHub Desktop.
[WordPress] Code for out blog post - Installing Linux Malware Detect on a CentOS 6 VPS - http://www.limecanvas.com/installing-linux-malware-detect-centos-6-vps/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# [ EMAIL ALERTS ] | |
## | |
# The default email alert toggle | |
# [0 = disabled, 1 = enabled] | |
email_alert=1 | |
# The subject line for email alerts | |
email_subj="maldet alert from $(hostname)" | |
# The destination addresses for email alerts | |
# [ values are comma (,) spaced ] | |
email_addr="[email protected]" | |
# Ignore e-mail alerts for reports in which all hits have been cleaned. | |
# This is ideal on very busy servers where cleaned hits can drown out | |
# other more actionable reports. | |
email_ignore_clean=0 | |
## | |
# [ QUARANTINE OPTIONS ] | |
## | |
# The default quarantine action for malware hits | |
# [0 = alert only, 1 = move to quarantine & alert] | |
quar_hits=1 | |
# Try to clean string based malware injections | |
# [NOTE: quar_hits=1 required] | |
# [0 = disabled, 1 = clean] | |
quar_clean=1 | |
# The default suspend action for users wih hits | |
# Cpanel suspend or set shell /bin/false on non-Cpanel | |
# [NOTE: quar_hits=1 required] | |
# [0 = disabled, 1 = suspend account] | |
quar_susp=0 | |
# minimum userid that can be suspended | |
quar_susp_minuid=500 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment