lynis/include/tests_mail_messaging

443 lines
21 KiB
Plaintext
Raw Normal View History

2014-08-26 17:33:55 +02:00
#!/bin/sh
#################################################################################
#
# Lynis
# ------------------
#
2016-03-13 16:00:39 +01:00
# Copyright 2007-2013, Michael Boelen
2020-03-20 14:50:25 +01:00
# Copyright 2007-2020, CISOfy
2016-03-13 16:00:39 +01:00
#
# Website : https://cisofy.com
# Blog : http://linux-audit.com
# GitHub : https://github.com/CISOfy/lynis
2014-08-26 17:33:55 +02:00
#
# Lynis comes with ABSOLUTELY NO WARRANTY. This is free software, and you are
# welcome to redistribute it under the terms of the GNU General Public License.
# See LICENSE file for usage of this software.
#
#################################################################################
#
# E-mail and messaging
#
#################################################################################
#
InsertSection "Software: e-mail and messaging"
#
#################################################################################
#
DOVECOT_RUNNING=0
EXIM_RUNNING=0
EXIM_TYPE=""
2016-09-10 16:12:44 +02:00
IMAP_DAEMON=""
OPENSMTPD_RUNNING=0
POP3_DAEMON=""
2014-08-26 17:33:55 +02:00
POSTFIX_RUNNING=0
QMAIL_RUNNING=0
SENDMAIL_RUNNING=0
2016-09-10 16:12:44 +02:00
SMTP_DAEMON=""
2014-08-26 17:33:55 +02:00
#
#################################################################################
#
# Test : MAIL-8802
# Description : Check Exim process status
Register --test-no MAIL-8802 --weight L --network NO --category security --description "Check Exim status"
2014-08-26 17:33:55 +02:00
if [ ${SKIPTEST} -eq 0 ]; then
LogText "Test: check Exim status"
if IsRunning "exim4" || IsRunning "exim"; then
LogText "Result: found running Exim process"
Display --indent 2 --text "- Exim status" --result "${STATUS_RUNNING}" --color GREEN
2014-08-26 17:33:55 +02:00
EXIM_RUNNING=1
SMTP_DAEMON="exim"
Report "smtp_daemon[]=exim"
2016-09-10 16:12:44 +02:00
else
LogText "Result: no running Exim processes found"
if IsVerbose; then Display --indent 2 --text "- Exim status" --result "${STATUS_NOT_FOUND}" --color WHITE; fi
2014-08-26 17:33:55 +02:00
fi
fi
#
#################################################################################
#
# Test : MAIL-8804
# Description : Exim configuration options
if [ ${EXIM_RUNNING} -eq 1 -a ! "${EXIMBINARY}" = "" ]; then PREQS_MET="YES"; else PREQS_MET="NO"; fi
2020-03-04 15:04:54 +01:00
Register --test-no MAIL-8804 --preqs-met ${PREQS_MET} --weight L --network NO --category security --description "Exim configuration options"
if [ ${SKIPTEST} -eq 0 -a ${EXIM_RUNNING} -eq 1 ]; then
LogText "Test: Exim configuration options"
2019-07-26 14:14:54 +02:00
EXIM_ROUTERS=$(${EXIMBINARY} -bP router_list)
unset FIND FIND2 FIND3 FIND4
# Local Only
FIND=$(echo "${EXIM_ROUTERS}" | ${EGREPBINARY} '^nonlocal')
# Internet Host
FIND2=$(echo "${EXIM_ROUTERS}" | ${EGREPBINARY} '^dnslookup_relay_to_domains')
# Smarthost or Satellite
FIND3=$(echo "${EXIM_ROUTERS}" | ${EGREPBINARY} '^smarthost')
2019-07-16 13:20:30 +02:00
if [ -n "${FIND}" ]; then
EXIM_TYPE="LOCAL ONLY"
2019-07-16 13:20:30 +02:00
elif [ -n "${FIND2}" ]; then
EXIM_TYPE="INTERNET HOST"
2019-07-16 13:20:30 +02:00
elif [ -n "${FIND3}" ]; then
FIND4=$(echo "${EXIM_ROUTERS}" | ${EGREPBINARY} '^hub_user_smarthost')
2019-07-16 13:20:30 +02:00
if [ -n "${FIND4}" ]; then
EXIM_TYPE="SATELLITE"
else
EXIM_TYPE="SMARTHOST"
fi
fi
2019-07-16 13:20:30 +02:00
if [ -n "${EXIM_TYPE}" ]; then
LogText "Result: Exim Type - ${EXIM_TYPE}"
Display --indent 4 --text "- Type" --result "${EXIM_TYPE}" --color GREEN
else
LogText "Result: Exim Type - Not Configured"
Display --indent 4 --text "- Type" --result "${STATUS_NOT_CONFIGURED}" --color WHITE
fi
if [ "${EXIM_TYPE}" = "INTERNET HOST" -o "${EXIM_TYPE}" = "SMARTHOST" ]; then
LogText "Test: Exim Public Interfaces"
2019-07-26 14:14:54 +02:00
EXIM_IP=$(${EXIMBINARY} -bP local_interfaces | ${CUTBINARY} -d '=' -f2 | ${SEDBINARY} -e 's/\s*<\s*\;\?//' -e 's/\s*::0\s*\;\?//' -e 's/\s*127.0.0.1\s*\;\?//' -e 's/^\s*//' -e 's/\s*$//')
2019-07-16 13:20:30 +02:00
if [ -n "${EXIM_IP}" ]; then
LogText "Result: ${EXIM_IP}"
Display --indent 4 --text "- Public Interface(s)" --result "${EXIM_IP}" --color GREEN
else
LogText "Result: None"
Display --indent 4 --text "- Public Interface(s)" --result "NONE" --color WHITE
fi
LogText "Test: Exim TLS State"
2019-07-26 14:14:54 +02:00
EXIM_TLS=$(${EXIMBINARY} -bP tls_advertise_hosts | ${CUTBINARY} -d '=' -f2 | ${SEDBINARY} -e 's/^\s*//' -e 's/\s*$//')
2019-07-16 13:20:30 +02:00
if [ -n "${EXIM_TLS}" ]; then
LogText "Result: Enabled"
Display --indent 4 --text "- TLS" --result "${STATUS_ENABLED}" --color GREEN
else
LogText "Result: Not enabled"
Display --indent 4 --text "- TLS" --result "${STATUS_DISABLED}" --color WHITE
fi
fi
2019-07-16 13:20:30 +02:00
if [ -n "${EXIM_TYPE}" -a "${EXIM_TYPE}" != "LOCAL ONLY" ]; then
LogText "Test: Exim Certificate and Private Key"
case "${EXIM_TYPE}" in
"INTERNET HOST" | "SMARTHOST" )
2019-07-26 14:14:54 +02:00
EXIM_CERTIFICATE=$(${EXIMBINARY} -bP tls_certificate | ${CUTBINARY} -d '=' -f2 | ${SEDBINARY} -e 's/^\s*//' -e 's/\s*$//')
EXIM_PRIVATEKEY=$(${EXIMBINARY} -bP tls_privatekey | ${CUTBINARY} -d '=' -f2 | ${SEDBINARY} -e 's/^\s*//' -e 's/\s*$//')
;;
"SATELLITE" )
2019-07-26 14:14:54 +02:00
EXIM_CERTIFICATE=$(${EXIMBINARY} -bP transport remote_smtp_smarthost | ${GREPBINARY} tls_certificate | ${CUTBINARY} -d '=' -f2 | ${SEDBINARY} -e 's/^\s*//' -e 's/\s*$//')
EXIM_PRIVATEKEY=$(${EXIMBINARY} -bP transport remote_smtp_smarthost | ${GREPBINARY} tls_privatekey | ${CUTBINARY} -d '=' -f2 | ${SEDBINARY} -e 's/^\s*//' -e 's/\s*$//')
;;
esac
2019-07-16 13:20:30 +02:00
if [ -n "${EXIM_CERTIFICATE}" ]; then
LogText "Result: ${EXIM_CERTIFICATE}"
if [ -f "${EXIM_CERTIFICATE}" ]; then
Display --indent 4 --text "- Certificate" --result "${STATUS_FOUND}" --color GREEN
LogText "Result: Certificate found"
else
Display --indent 4 --text "- Certificate" --result "${STATUS_NOT_FOUND}" --color YELLOW
LogText "Result: Certificate not found"
fi
else
LogText "Result: Certificate not set"
Display --indent 4 --text "- Certificate" --result "${STATUS_NOT_CONFIGURED}" --color WHITE
fi
2019-07-16 13:20:30 +02:00
if [ -n "${EXIM_PRIVATEKEY}" ]; then
LogText "Result: ${EXIM_PRIVATEKEY}"
if [ -f "${EXIM_PRIVATEKEY}" ]; then
LogText "Result: Private Key found"
Display --indent 4 --text "- Private Key" --result "${STATUS_FOUND}" --color GREEN
else
Display --indent 4 --text "- Private Key" --result "${STATUS_NOT_FOUND}" --color YELLOW
LogText "Result: Private Key not found"
fi
else
LogText "Result: Private Key not set"
Display --indent 4 --text "- Private Key" --result "${STATUS_NOT_CONFIGURED}" --color WHITE
fi
2019-05-23 22:31:36 +02:00
LogText "Test: Exim Verify Certificates"
case "${EXIM_TYPE}" in
"INTERNET HOST" | "SMARTHOST" )
2019-07-26 14:14:54 +02:00
EXIM_CERTIFICATES=$(${EXIMBINARY} -bP tls_verify_certificate | ${CUTBINARY} -d '=' -f2 | ${SEDBINARY} -e 's/^\s*//' -e 's/\s*$//')
2019-05-23 22:31:36 +02:00
;;
"SATELLITE" )
2019-07-26 14:14:54 +02:00
EXIM_CERTIFICATES=$(${EXIMBINARY} -bP transport remote_smtp_smarthost | ${GREPBINARY} tls_verify_certificate | ${CUTBINARY} -d '=' -f2 | ${SEDBINARY} -e 's/^\s*//' -e 's/\s*$//')
2019-05-23 22:31:36 +02:00
;;
esac
case "${EXIM_CERTIFICATES}" in
"")
2019-07-26 14:14:54 +02:00
# This condition results in a RED warning because it should never be hit
2019-05-23 22:31:36 +02:00
LogText "Result: Verify Certificates not set"
Display --indent 4 --text "- Verify Certificates not set" --result "${STATUS_WARNING}" --color RED
;;
"system")
2019-07-26 14:14:54 +02:00
# This is the default setting and should be the most common
2019-05-23 22:31:36 +02:00
LogText "Result: Verify Certificates set to system default"
Display --indent 4 --text "- Verify Certificates" --result "DEFAULT" --color WHITE
;;
*)
2019-07-26 14:14:54 +02:00
# This condition should only be hit when it has been set to a custom value
2019-05-23 22:31:36 +02:00
LogText "Result: Verify Certificates set to \"${EXIM_CERTIFICATES}\""
Display --indent 4 --text "- Verify Certificates" --result "CUSTOM" --color GREEN
;;
esac
case "${EXIM_TYPE}" in
"INTERNET HOST" | "SMARTHOST" )
2019-07-26 14:14:54 +02:00
EXIM_VERIFY_HOSTS=$(${EXIMBINARY} -bP tls_verify_hosts | ${CUTBINARY} -d '=' -f2 | ${SEDBINARY} -e 's/^\s*//' -e 's/\s*$//')
EXIM_TRY_VERIFY_HOSTS=$(${EXIMBINARY} -bP tls_try_verify_hosts | ${CUTBINARY} -d '=' -f2 | ${SEDBINARY} -e 's/^\s*//' -e 's/\s*$//')
2019-05-23 22:31:36 +02:00
;;
"SATELLITE" )
2019-07-26 14:14:54 +02:00
EXIM_VERIFY_HOSTS=$(${EXIMBINARY} -bP transport remote_smtp_smarthost | ${GREPBINARY} tls_verify_hosts | ${CUTBINARY} -d '=' -f2 | ${SEDBINARY} -e 's/^\s*//' -e 's/\s*$//')
EXIM_TRY_VERIFY_HOSTS=$(${EXIMBINARY} -bP transport remote_smtp_smarthost | ${GREPBINARY} tls_try_verify_hosts | ${CUTBINARY} -d '=' -f2 | ${SEDBINARY} -e 's/^\s*//' -e 's/\s*$//')
2019-05-23 22:31:36 +02:00
;;
esac
LogText "Test: Exim Try Verify Hosts"
2019-09-19 14:05:15 +02:00
if [ -n "${EXIM_TRY_VERIFY_HOSTS}" ]; then
LogText "Result: Try Verify Hosts enabled"
2019-05-23 22:31:36 +02:00
case "${EXIM_TYPE}" in
"INTERNET HOST" )
Display --indent 4 --text "- Try Verify Hosts" --result "${STATUS_ENABLED}" --color GREEN
2019-05-23 22:31:36 +02:00
;;
"SATELLITE" | "SMARTHOST" )
Display --indent 4 --text "- Try Verify Hosts" --result "${STATUS_ENABLED}" --color YELLOW
2019-05-23 22:31:36 +02:00
;;
esac
else
LogText "Result: Try Verify Hosts not enabled"
Display --indent 4 --text "- Try Verify Hosts" --result "${STATUS_DISABLED}" --color WHITE
2019-05-23 22:31:36 +02:00
fi
LogText "Test: Exim Verify Hosts"
2019-09-19 14:05:15 +02:00
if [ -n "${EXIM_VERIFY_HOSTS}" ]; then
LogText "Result: Verify Hosts enabled"
2019-05-23 22:31:36 +02:00
case "${EXIM_TYPE}" in
"INTERNET HOST" )
Display --indent 4 --text "- Verify Hosts" --result "${STATUS_ENABLED}" --color YELLOW
2019-05-23 22:31:36 +02:00
;;
"SATELLITE" | "SMARTHOST" )
Display --indent 4 --text "- Verify Hosts" --result "${STATUS_ENABLED}" --color GREEN
2019-05-23 22:31:36 +02:00
;;
esac
else
LogText "Result: Verify Hosts not enabled"
Display --indent 4 --text "- Verify Hosts" --result "${STATUS_DISABLED}" --color WHITE
2019-05-23 22:31:36 +02:00
fi
fi
fi
2014-08-26 17:33:55 +02:00
#
#################################################################################
#
# Test : MAIL-8814
# Description : Check Postfix process
# Notes : qmgr and pickup run under postfix uid, without full path to binary
Register --test-no MAIL-8814 --weight L --network NO --category security --description "Check postfix process status"
2014-08-26 17:33:55 +02:00
if [ ${SKIPTEST} -eq 0 ]; then
LogText "Test: check Postfix status"
2014-08-26 17:33:55 +02:00
# Some other processes also use master, therefore it should include both master and postfix
2016-09-10 16:12:44 +02:00
FIND1=$(${PSBINARY} ax | ${GREPBINARY} "master" | ${GREPBINARY} "postfix" | ${GREPBINARY} -v "grep")
2019-07-16 13:20:30 +02:00
if [ -n "${FIND1}" ]; then
LogText "Result: found running Postfix process"
Display --indent 2 --text "- Postfix status" --result "${STATUS_RUNNING}" --color GREEN
2014-08-26 17:33:55 +02:00
POSTFIX_RUNNING=1
SMTP_DAEMON="postfix"
Report "smtp_daemon[]=postfix"
2016-09-10 16:12:44 +02:00
else
LogText "Result: no running Postfix processes found"
if IsVerbose; then Display --indent 2 --text "- Postfix status" --result "${STATUS_NOT_FOUND}" --color WHITE; fi
2014-08-26 17:33:55 +02:00
fi
fi
#
#################################################################################
#
# Test : MAIL-8816
# Description : Check Postfix configuration
if [ ${POSTFIX_RUNNING} -eq 1 -a ! "${POSTFIXBINARY}" = "" ]; then PREQS_MET="YES"; else PREQS_MET="NO"; fi
Register --test-no MAIL-8816 --preqs-met ${PREQS_MET} --weight L --network NO --category security --description "Check Postfix configuration"
2014-08-26 17:33:55 +02:00
if [ ${SKIPTEST} -eq 0 ]; then
Display --indent 4 --text "- Postfix configuration" --result "${STATUS_FOUND}" --color GREEN
2016-09-10 16:12:44 +02:00
POSTFIX_CONFIGDIR=$(${POSTCONFBINARY} 2> /dev/null | ${GREPBINARY} '^config_directory' | ${AWKBINARY} '{ print $3 }')
2014-08-26 17:33:55 +02:00
POSTFIX_CONFIGFILE="${POSTFIX_CONFIGDIR}/main.cf"
LogText "Postfix configuration directory: ${POSTFIX_CONFIGDIR}"
LogText "Postfix configuration file: ${POSTFIX_CONFIGFILE}"
2014-08-26 17:33:55 +02:00
fi
#
#################################################################################
#
# Test : MAIL-8817
# Description : Check Postfix configuration for error
if [ ${POSTFIX_RUNNING} -eq 1 -a ! "${POSTFIXBINARY}" = "" ]; then PREQS_MET="YES"; else PREQS_MET="NO"; fi
Register --test-no MAIL-8817 --preqs-met ${PREQS_MET} --weight L --network NO --category security --description "Check Postfix configuration errors"
if [ ${SKIPTEST} -eq 0 ]; then
LogText "Test: using postconf to see if Postfix configuration has errors"
FIND=$(${POSTCONFBINARY} 2>&1 | ${GREPBINARY} "warning:")
2019-07-16 13:20:30 +02:00
if [ -n "${FIND}" ]; then
Report "postfix_config_error=1"
Display --indent 6 --text "- Postfix configuration errors" --result "${STATUS_WARNING}" --color RED
LogText "Result: found an error or warning in the Postfix configuration. Manual check suggested."
2019-12-18 12:17:46 +01:00
ReportSuggestion "${TEST_NO}" "Found a configuration error in Postfix" "${POSTFIX_CONFIGFILE}" "text:run postconf > /dev/null"
else
LogText "Result: all looks to be fine with Postfix configuration"
if IsVerbose; then Display --indent 6 --text "- Postfix configuration errors" --result "${STATUS_OK}" --color GREEN; fi
fi
fi
#
#################################################################################
2014-08-26 17:33:55 +02:00
#
# Test : MAIL-8818
# Description : Check Postfix configuration
if [ ${POSTFIX_RUNNING} -eq 1 -a ! "${POSTFIXBINARY}" = "" ]; then PREQS_MET="YES"; else PREQS_MET="NO"; fi
Register --test-no MAIL-8818 --preqs-met ${PREQS_MET} --weight L --network NO --category security --description "Check Postfix configuration: banner"
2014-08-26 17:33:55 +02:00
if [ ${SKIPTEST} -eq 0 ]; then
LogText "Test: Checking Postfix banner"
2016-08-25 15:31:33 +02:00
FIND1=$(${POSTCONFBINARY} 2> /dev/null | ${GREPBINARY} '^smtpd_banner' | ${GREPBINARY} 'postfix')
FIND2=$(${POSTCONFBINARY} 2> /dev/null | ${GREPBINARY} '^smtpd_banner' | ${GREPBINARY} '$mail_name')
FIND3=$(${POSTCONFBINARY} 2> /dev/null | ${GREPBINARY} '^mail_name' | ${GREPBINARY} -i 'postfix')
FIND4=$(${POSTCONFBINARY} 2> /dev/null | ${GREPBINARY} '^smtpd_banner' | ${GREPBINARY} -i "${OS}")
2019-07-16 13:20:30 +02:00
if [ -n "${LINUX_VERSION}" ]; then
FIND5=$(${POSTCONFBINARY} 2> /dev/null | ${GREPBINARY} '^smtpd_banner' | ${GREPBINARY} -i "${LINUX_VERSION}")
fi
2014-08-26 17:33:55 +02:00
SHOWWARNING=0
2017-01-28 15:48:26 +01:00
2019-07-16 13:20:30 +02:00
if [ -n "${FIND1}" ]; then
2014-08-26 17:33:55 +02:00
SHOWWARNING=1
2017-01-28 15:48:26 +01:00
Report "banner_software_disclosure[]=${FIND1}"
2019-07-16 13:20:30 +02:00
elif [ -n "${FIND2}" -a -n "${FIND3}" ]; then
2017-01-28 15:48:26 +01:00
SHOWWARNING=1
Report "banner_software_disclosure[]=${FIND2}"
2019-07-16 13:20:30 +02:00
elif [ -n "${FIND4}" ]; then
2017-01-28 15:48:26 +01:00
SHOWWARNING=1
Report "banner_os_disclosure[]=${FIND4}"
2019-07-16 13:20:30 +02:00
elif [ -n "${FIND5}" ]; then
SHOWWARNING=1
Report "banner_os_disclosure[]=${FIND5}"
2014-08-26 17:33:55 +02:00
fi
2017-01-28 15:48:26 +01:00
2014-08-26 17:33:55 +02:00
if [ ${SHOWWARNING} -eq 1 ]; then
Display --indent 6 --text "- Postfix banner" --result "${STATUS_WARNING}" --color RED
2017-01-28 15:48:26 +01:00
LogText "Result: found OS, or mail_name in SMTP banner, and/or mail_name contains 'Postfix'."
2019-12-18 12:17:46 +01:00
ReportWarning "${TEST_NO}" "Found some information disclosure in SMTP banner (OS or software name)"
ReportSuggestion "${TEST_NO}" "You are advised to hide the mail_name (option: smtpd_banner) from your postfix configuration. Use postconf -e or change your main.cf file (${POSTFIX_CONFIGFILE})"
2017-01-28 15:48:26 +01:00
else
if IsVerbose; then Display --indent 6 --text "- Postfix banner" --result "${STATUS_OK}" --color GREEN; fi
2014-08-26 17:33:55 +02:00
fi
fi
#
#################################################################################
2017-03-27 17:14:11 +02:00
#
# Test : MAIL-8820
Register --test-no MAIL-8820 --weight L --network NO --category security --description "Postfix configuration scan"
if [ ${SKIPTEST} -eq 0 ]; then
if [ "$(postconf -h inet_interfaces 2> /dev/null)" = "all" ]; then
if ! SkipAtomicTest "${TEST_NO}:disable_vrfy_command"; then
if [ "$(postconf -h disable_vrfy_command 2> /dev/null)" = "no" ]; then
ReportSuggestion "${TEST_NO}:disable_vrfy_command" "Disable the 'VRFY' command" "disable_vrfy_command=no" "text:run postconf -e disable_vrfy_command=yes to change the value"
fi
fi
fi
fi
#
#################################################################################
2014-08-26 17:33:55 +02:00
#
# Test : MAIL-8838
# Description : Check Dovecot process
Register --test-no MAIL-8838 --weight L --network NO --category security --description "Check dovecot process"
2014-08-26 17:33:55 +02:00
if [ ${SKIPTEST} -eq 0 ]; then
LogText "Test: check dovecot status"
if IsRunning "dovecot"; then
LogText "Result: found running dovecot process"
Display --indent 2 --text "- Dovecot status" --result "${STATUS_RUNNING}" --color GREEN
2014-08-26 17:33:55 +02:00
DOVECOT_RUNNING=1
IMAP_DAEMON="dovecot"
POP3_DAEMON="dovecot"
Report "pop3_daemon[]=dovecot"
Report "imap_daemon[]=dovecot"
2016-09-10 16:12:44 +02:00
else
LogText "Result: dovecot not found"
if IsVerbose; then Display --indent 2 --text "- Dovecot status" --result "${STATUS_NOT_FOUND}" --color WHITE; fi
2014-08-26 17:33:55 +02:00
fi
fi
#
#################################################################################
#
# Test : MAIL-8860
# Description : Check Qmail process status
Register --test-no MAIL-8860 --weight L --network NO --category security --description "Check Qmail status"
2014-08-26 17:33:55 +02:00
if [ ${SKIPTEST} -eq 0 ]; then
LogText "Test: check Qmail status"
if IsRunning "qmail-smtpd"; then
LogText "Result: found running Qmail process"
Display --indent 2 --text "- Qmail status" --result "${STATUS_RUNNING}" --color GREEN
2014-08-26 17:33:55 +02:00
QMAIL_RUNNING=1
2014-08-28 14:03:31 +02:00
SMTP_DAEMON="qmail"
Report "smtp_daemon[]=qmail"
2016-09-10 16:12:44 +02:00
else
LogText "Result: no running Qmail processes found"
if IsVerbose; then Display --indent 2 --text "- Qmail status" --result "${STATUS_NOT_FOUND}" --color WHITE; fi
2014-08-26 17:33:55 +02:00
fi
fi
#
#################################################################################
#
# Test : MAIL-8880
# Description : Check Sendmail process status
Register --test-no MAIL-8880 --weight L --network NO --category security --description "Check Sendmail status"
2014-08-26 17:33:55 +02:00
if [ ${SKIPTEST} -eq 0 ]; then
LogText "Test: check sendmail status"
if IsRunning "sendmail"; then
LogText "Result: found running Sendmail process"
Display --indent 2 --text "- Sendmail status" --result "${STATUS_RUNNING}" --color GREEN
2014-08-26 17:33:55 +02:00
SENDMAIL_RUNNING=1
SMTP_DAEMON="sendmail"
Report "smtp_daemon[]=sendmail"
2016-09-10 16:12:44 +02:00
else
LogText "Result: no running Sendmail processes found"
if IsVerbose; then Display --indent 2 --text "- Sendmail status" --result "${STATUS_NOT_FOUND}" --color WHITE; fi
2014-08-26 17:33:55 +02:00
fi
fi
#
#################################################################################
#
# Test : MAIL-8920
# Description : Check OpenSMTPD process status
2019-07-16 13:20:30 +02:00
if [ -n "${SMTPCTLBINARY}" ]; then PREQS_MET="YES"; else PREQS_MET="NO"; fi
Register --test-no MAIL-8920 --preqs-met ${PREQS_MET} --weight L --network NO --category security --description "Check OpenSMTPD status"
2014-08-26 17:33:55 +02:00
if [ ${SKIPTEST} -eq 0 ]; then
LogText "Test: check smtpd status"
2016-09-10 16:12:44 +02:00
FIND=$(${PSBINARY} ax | ${EGREPBINARY} "(/smtpd|smtpd: \[priv\]|smtpd: smtp)" | ${GREPBINARY} -v "grep")
2014-08-26 17:33:55 +02:00
if [ ! "${FIND}" = "" ]; then
LogText "Result: found running smtpd process"
Display --indent 2 --text "- OpenSMTPD status" --result "${STATUS_RUNNING}" --color GREEN
OPENSMTPD_RUNNING=1
Report "smtp_daemon[]=opensmtpd"
2016-09-10 16:12:44 +02:00
else
LogText "Result: smtpd not found"
if IsVerbose; then Display --indent 2 --text "- OpenSMTPD status" --result "${STATUS_NOT_FOUND}" --color WHITE; fi
2014-08-26 17:33:55 +02:00
fi
fi
#
#################################################################################
#
Report "imap_daemon=${IMAP_DAEMON}"
Report "pop3_daemon=${POP3_DAEMON}"
Report "smtp_daemon=${SMTP_DAEMON}"
2014-08-26 17:33:55 +02:00
WaitForKeyPress
2014-08-26 17:33:55 +02:00
#
#================================================================================
# Lynis - Security Auditing and System Hardening for Linux and UNIX - https://cisofy.com