2014-08-26 17:33:55 +02:00
#!/bin/sh
#################################################################################
#
# Lynis
# ------------------
#
2016-03-13 16:00:39 +01:00
# Copyright 2007-2013, Michael Boelen
2019-01-31 14:47:35 +01:00
# Copyright 2007-2019, 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.
#
#################################################################################
#
# Time
#
#################################################################################
#
InsertSection "Time and Synchronization"
#
#################################################################################
#
2017-04-23 20:06:24 +02:00
CRON_DIRS="${ROOTDIR}etc/cron.d ${ROOTDIR}etc/cron.hourly ${ROOTDIR}etc/cron.daily ${ROOTDIR}etc/cron.weekly ${ROOTDIR}etc/cron.monthly ${ROOTDIR}var/spool/crontabs"
2016-10-19 11:28:20 +02:00
CHRONY_CONF_FILE=""
2014-08-26 17:33:55 +02:00
NTP_DAEMON=""
NTP_DAEMON_RUNNING=0
NTP_CONFIG_FOUND=0
NTP_CONFIG_TYPE_DAEMON=0
NTP_CONFIG_TYPE_SCHEDULED=0
NTP_CONFIG_TYPE_EVENTBASED=0
NTP_CONFIG_TYPE_STARTUP=0
2015-07-22 17:37:11 +02:00
NTPD_RUNNING=0 # Specific for ntpd
2015-05-25 17:33:51 +02:00
SYSTEMD_NTP_ENABLED=0
2014-08-26 17:33:55 +02:00
#
#################################################################################
#
# Test : TIME-3104
# Description : Check for a running NTP daemon
if [ -f /sys/hypervisor/type ]; then
2016-10-19 11:28:20 +02:00
# TODO: Skip NTP tests if we are in a DomU xen instance
2016-09-01 17:33:18 +02:00
FIND=$(cat /sys/hypervisor/type)
if [ "${FIND}" = "xen" ]; then PREQS_MET="NO"; else PREQS_MET="YES"; fi
2017-03-06 08:41:21 +01:00
elif [ -f /sbin/sysctl ] && [ "$(/sbin/sysctl -n security.jail.jailed 2>/dev/null || echo 0)" -eq 1 ]; then
2016-09-22 11:39:55 +02:00
# Skip NTP tests if we're in a FreeBSD jail
PREQS_MET="NO"
2016-09-01 17:33:18 +02:00
else
PREQS_MET="YES"
2014-08-26 17:33:55 +02:00
fi
2016-07-24 17:22:00 +02:00
Register --test-no TIME-3104 --preqs-met ${PREQS_MET} --weight L --network NO --category security --description "Check for running NTP daemon or client"
2014-08-26 17:33:55 +02:00
if [ ${SKIPTEST} -eq 0 ]; then
2015-05-25 17:33:51 +02:00
# Linux/FreeBSD (ntpdate), OpenBSD (ntpd, rdate), Chrony, systemd-timesyncd
2015-12-21 21:17:15 +01:00
LogText "Test: Searching for a running NTP daemon or available client"
2014-08-26 17:33:55 +02:00
FOUND=0
2016-10-19 11:28:20 +02:00
SEARCH_FILES="${ROOTDIR}etc/chrony.conf ${ROOTDIR}etc/chrony/chrony.conf"
for FILE in ${SEARCH_FILES}; do
if [ -f ${FILE} ]; then LogText "result: found chrony configuration: ${FILE}"; CHRONY_CONF_FILE="${FILE}"; fi
done
if [ ! -z "${CHRONY_CONF_FILE}" ]; then
2015-05-25 17:45:41 +02:00
IsRunning chronyd
if [ ${RUNNING} -eq 1 ]; then
FOUND=1; NTP_DAEMON_RUNNING=1; NTP_CONFIG_TYPE_DAEMON=1; NTP_DAEMON="chronyd"
2016-06-18 11:14:01 +02:00
Display --indent 2 --text "- NTP daemon found: chronyd" --result "${STATUS_FOUND}" --color GREEN
2016-10-19 11:28:20 +02:00
else
LogText "Result: found chrony configuration, but no running daemon"
2015-05-25 17:45:41 +02:00
fi
2016-10-19 11:28:20 +02:00
else
LogText "Result: no chrony configuration found"
2015-05-25 17:33:51 +02:00
fi
# Check time daemon (eg DragonFly BSD)
IsRunning dntpd
if [ ${RUNNING} -eq 1 ]; then
FOUND=1; NTP_DAEMON_RUNNING=1; NTP_CONFIG_TYPE_DAEMON=1; NTP_DAEMON="dntpd"
2016-06-18 11:14:01 +02:00
Display --indent 2 --text "- NTP daemon found: dntpd" --result "${STATUS_FOUND}" --color GREEN
2015-05-25 17:33:51 +02:00
fi
2014-08-26 17:33:55 +02:00
# Check running processes
2016-09-05 19:48:23 +02:00
FIND=$(${PSBINARY} ax | ${GREPBINARY} "ntpd" | ${GREPBINARY} -v "dntpd" | ${GREPBINARY} -v "grep")
2017-03-13 11:59:05 +01:00
if [ ! -z "${FIND}" ]; then
2014-08-26 17:33:55 +02:00
FOUND=1; NTPD_RUNNING=1; NTP_DAEMON_RUNNING=1; NTP_CONFIG_TYPE_DAEMON=1
NTP_DAEMON="ntpd"
2015-12-21 21:17:15 +01:00
LogText "Result: found running NTP daemon in process list"
2016-06-18 11:14:01 +02:00
Display --indent 2 --text "- NTP daemon found: ntpd" --result "${STATUS_FOUND}" --color GREEN
2014-08-26 17:33:55 +02:00
fi
# Check time daemon (eg NetBSD)
IsRunning timed
if [ ${RUNNING} -eq 1 ]; then
FOUND=1; NTP_DAEMON_RUNNING=1; NTP_CONFIG_TYPE_DAEMON=1; NTP_DAEMON="timed"
2016-06-18 11:14:01 +02:00
Display --indent 2 --text "- NTP daemon found: timed" --result "${STATUS_FOUND}" --color GREEN
2014-08-26 17:33:55 +02:00
fi
2014-09-12 17:24:29 +02:00
# Check timedate daemon (systemd)
2016-09-05 19:48:23 +02:00
if [ ! -z "${TIMEDATECTL}" ]; then
2017-11-29 15:59:07 +01:00
FIND=$(${TIMEDATECTL} status | ${EGREPBINARY} "(NTP|System clock) synchronized: yes")
2017-03-13 11:59:05 +01:00
if [ ! -z "${FIND}" ]; then
2015-05-25 17:33:51 +02:00
# Check for systemd-timesyncd
2018-09-19 13:19:57 +02:00
if [ -f ${ROOTDIR}etc/systemd/timesyncd.conf ]; then
LogText "Result: found ${ROOTDIR}etc/systemd/timesyncd.conf"
2015-05-25 17:33:51 +02:00
FOUND=1; NTP_DAEMON_RUNNING=1; NTP_CONFIG_TYPE_DAEMON=1; NTP_DAEMON="systemd-timesyncd"
2016-06-18 11:14:01 +02:00
Display --indent 2 --text "- NTP daemon found: systemd (timesyncd)" --result "${STATUS_FOUND}" --color GREEN
2015-05-25 17:33:51 +02:00
SYSTEMD_NTP_ENABLED=1
2018-09-19 13:19:57 +02:00
else
LogText "Result: ${ROOTDIR}etc/systemd/timesyncd.conf does not exist"
2015-05-25 17:33:51 +02:00
fi
2016-09-05 19:48:23 +02:00
else
2015-12-21 21:17:15 +01:00
LogText "Result: time sychronization not performed according timedatectl command"
2014-09-12 17:24:29 +02:00
fi
2018-09-19 13:19:57 +02:00
else
LogText "Result: timedatectl command not available on this system"
2014-08-26 17:33:55 +02:00
fi
# Check crontab for OpenBSD/FreeBSD
# Check anacrontab for Linux
CRONTAB_FILES="/etc/anacrontab /etc/crontab"
for I in ${CRONTAB_FILES}; do
if [ -f ${I} ]; then
2015-12-21 21:17:15 +01:00
LogText "Test: checking for ntpdate or rdate in crontab file ${I}"
2016-09-01 17:33:18 +02:00
FIND=$(${EGREPBINARY} "ntpdate|rdate" ${I} | ${GREPBINARY} -v '^#')
2017-03-13 11:59:05 +01:00
if [ ! -z "${FIND}" ]; then
2014-10-13 19:19:40 +02:00
FOUND=1; NTP_CONFIG_TYPE_SCHEDULED=1
2016-06-18 11:14:01 +02:00
Display --indent 2 --text "- Checking NTP client in crontab file (${I})" --result "${STATUS_FOUND}" --color GREEN
2015-12-21 21:17:15 +01:00
LogText "Result: found ntpdate or rdate reference in crontab file ${I}"
2016-09-01 17:33:18 +02:00
else
2016-06-18 11:14:01 +02:00
#Display --indent 2 --text "- Checking NTP client in crontab file (${I})" --result "${STATUS_NOT_FOUND}" --color WHITE
2015-12-21 21:17:15 +01:00
LogText "Result: no ntpdate or rdate reference found in crontab file ${I}"
2014-08-26 17:33:55 +02:00
fi
2016-09-01 17:33:18 +02:00
else
2015-12-21 21:17:15 +01:00
LogText "Result: crontab file ${I} not found"
2015-05-25 17:45:41 +02:00
fi
2014-08-26 17:33:55 +02:00
done
# Don't run check in cron job directory on Solaris
# /etc/cron.d/FIFO is a special file and test get stuck at this file
FOUND_IN_CRON=0
# Check cron jobs
for I in ${CRON_DIRS}; do
if [ -d ${I} ]; then
2017-03-13 11:59:05 +01:00
if FileIsReadable ${I}; then
FIND=$(${LSBINARY} ${I} | ${GREPBINARY} -v FIFO)
if [ ! -z "${FIND}" ]; then
for J in ${FIND}; do
LogText "Test: checking for ntpdate or rdate in ${I}/${J}"
FIND2=$(${EGREPBINARY} "rdate|ntpdate" ${I}/${J} | ${GREPBINARY} -v "^#")
if [ ! -z "${FIND2}" ]; then
LogText "Positive match found: ${FIND2}"
FOUND=1; FOUND_IN_CRON=1; NTP_CONFIG_TYPE_SCHEDULED=1
fi
done
else
LogText "Result: ${I} is empty, skipping search in directory"
fi
2016-09-01 17:33:18 +02:00
else
2017-03-13 11:59:05 +01:00
LogText "Result: could not search in directory due to permissions"
2014-08-26 17:33:55 +02:00
fi
fi
done
if [ ${FOUND_IN_CRON} -eq 1 ]; then
2016-06-18 11:14:01 +02:00
Display --indent 2 --text "- Checking NTP client in cron files" --result "${STATUS_FOUND}" --color GREEN
2015-12-21 21:17:15 +01:00
LogText "Result: found ntpdate or rdate in cron directory"
2016-09-01 17:33:18 +02:00
else
2015-12-21 21:17:15 +01:00
LogText "Result: no ntpdate or rdate found in cron directories"
2014-08-26 17:33:55 +02:00
fi
# Checking if ntpdate is performed by event
2015-12-21 21:17:15 +01:00
LogText "Test: checking for file /etc/network/if-up.d/ntpdate"
2014-08-26 17:33:55 +02:00
if [ -f /etc/network/if-up.d/ntpdate ]; then
2015-12-21 21:17:15 +01:00
LogText "Result: found ntpdate action when network interface comes up"
2014-08-26 17:33:55 +02:00
FOUND=1
NTP_CONFIG_TYPE_EVENTBASED=1
2016-06-18 11:14:01 +02:00
Display --indent 2 --text "- Checking event based ntpdate (if-up)" --result "${STATUS_FOUND}" --color GREEN
2016-09-01 17:33:18 +02:00
else
2015-12-21 21:17:15 +01:00
LogText "Result: file /etc/network/if-up.d/ntpdate does not exist"
2014-08-26 17:33:55 +02:00
fi
2014-12-08 23:57:47 +01:00
# Configuration file for *BSD
if [ -f /etc/rc.conf ]; then
2016-09-01 17:33:18 +02:00
LogText "Test: Checking if ntpdate is enabled at startup in *BSD"
FIND=$(${GREPBINARY} 'ntpdate_enable="YES"' /etc/rc.conf)
2017-03-13 11:59:05 +01:00
if [ ! -z "${FIND}" ]; then
2016-09-01 17:33:18 +02:00
LogText "Result: ntpdate is enabled in rc.conf"
FOUND=1
NTP_CONFIG_TYPE_STARTUP=1
# Only show suggestion when ntpdate is enabled, however ntpd is not running
if [ ${NTP_DAEMON_RUNNING} -eq 0 ]; then
ReportSuggestion ${TEST_NO} "Although ntpdate is enabled in rc.conf, it is advised to run it at least daily or use a NTP daemon"
2014-08-26 17:33:55 +02:00
fi
2016-09-01 17:33:18 +02:00
else
LogText "Result: ntpdate is not enabled in rc.conf"
fi
2014-08-26 17:33:55 +02:00
fi
if [ ${FOUND} -eq 0 ]; then
2014-12-08 23:57:47 +01:00
if [ ${ISVIRTUALMACHINE} -eq 1 ]; then
2015-12-21 21:17:15 +01:00
LogText "Result: Skipping display warning, as virtual machines usually don't need time synchronization in the VM itself"
2016-09-01 17:33:18 +02:00
else
2016-06-18 11:14:01 +02:00
Display --indent 2 --text "- Checking for a running NTP daemon or client" --result "${STATUS_WARNING}" --color RED
2015-12-21 21:17:15 +01:00
LogText "Result: Could not find a NTP daemon or client"
2014-12-08 23:57:47 +01:00
ReportSuggestion ${TEST_NO} "Use NTP daemon or NTP client to prevent time issues."
AddHP 0 2
fi
2016-09-01 17:33:18 +02:00
else
2016-06-18 11:14:01 +02:00
Display --indent 2 --text "- Checking for a running NTP daemon or client" --result "${STATUS_OK}" --color GREEN
2015-12-21 21:17:15 +01:00
LogText "Result: Found a time syncing daemon/client."
2014-08-26 17:33:55 +02:00
AddHP 3 3
fi
fi
#
#################################################################################
2015-05-25 17:33:51 +02:00
#
# Test : TIME-3106
# Description : Check status of systemd time synchronization
2017-03-13 11:59:05 +01:00
if [ ${SYSTEMD_NTP_ENABLED} -eq 1 -a ! -z "${TIMEDATECTL}" ]; then PREQS_MET="YES"; else PREQS_MET="NO"; fi
2016-07-24 17:22:00 +02:00
Register --test-no TIME-3106 --preqs-met ${PREQS_MET} --weight L --network NO --category security --description "Check systemd NTP time synchronization status"
2015-05-25 17:33:51 +02:00
if [ ${SKIPTEST} -eq 0 ]; then
2015-12-21 21:17:15 +01:00
LogText "Test: Check the status of time synchronization via timedatectl"
2017-11-29 15:59:07 +01:00
FIND=$(${TIMEDATECTL} status | ${EGREPBINARY} "(NTP|System clock) synchronized: yes")
2016-09-01 17:33:18 +02:00
if [ -z "${FIND}" ]; then
2015-12-21 21:17:15 +01:00
LogText "Result: time not synchronized via NTP"
2015-05-25 17:33:51 +02:00
ReportSuggestion "${TEST_NO}" "Check timedatectl output. Sychronization via NTP is enabled, but status reflects it is not synchronized"
fi
fi
#
#################################################################################
2014-08-26 17:33:55 +02:00
#
# Test : TIME-3112
# Description : Check for valid associations from ntpq peers list
2017-03-13 11:59:05 +01:00
if [ ${NTPD_RUNNING} -eq 1 -a ! -z "${NTPQBINARY}" ]; then PREQS_MET="YES"; else PREQS_MET="NO"; fi
2016-07-24 17:22:00 +02:00
Register --test-no TIME-3112 --preqs-met ${PREQS_MET} --weight L --network NO --category security --description "Check active NTP associations ID's"
2014-08-26 17:33:55 +02:00
if [ ${SKIPTEST} -eq 0 ]; then
2015-12-21 21:17:15 +01:00
LogText "Test: Checking for NTP association ID's from ntpq peers list"
2016-09-01 17:33:18 +02:00
FIND=$(${NTPQBINARY} -p -n | ${GREPBINARY} "No association ID's returned")
if [ -z "${FIND}" ]; then
2016-06-18 11:14:01 +02:00
Display --indent 2 --text "- Checking valid association ID's" --result "${STATUS_FOUND}" --color GREEN
2015-12-21 21:17:15 +01:00
LogText "Result: Found one or more association ID's"
2016-09-01 17:33:18 +02:00
else
2016-06-18 11:14:01 +02:00
Display --indent 2 --text "- Checking valid association ID's" --result "${STATUS_WARNING}" --color RED
2014-08-26 17:33:55 +02:00
ReportSuggestion ${TEST_NO} "Check ntp.conf for properly configured NTP servers and a correctly functioning name service."
fi
fi
#
#################################################################################
#
# Test : TIME-3116
# Description : Check for stratum 16 peers
2017-03-13 11:59:05 +01:00
if [ ${NTPD_RUNNING} -eq 1 -a ! -z "${NTPQBINARY}" ]; then PREQS_MET="YES"; else PREQS_MET="NO"; fi
2016-07-24 17:22:00 +02:00
Register --test-no TIME-3116 --preqs-met ${PREQS_MET} --weight L --network NO --category security --description "Check peers with stratum value of 16"
2014-08-26 17:33:55 +02:00
if [ ${SKIPTEST} -eq 0 ]; then
2017-04-30 17:59:35 +02:00
COUNT=0
2015-12-21 21:17:15 +01:00
LogText "Test: Checking stratum 16 sources from ntpq peers list"
2017-02-18 14:28:56 +01:00
FIND=$(${NTPQBINARY} -p -n | ${AWKBINARY} '{ if ($2!=".POOL." && $3=="16") { print $1 }}')
2017-03-13 11:59:05 +01:00
if [ -z "${FIND}" ]; then
2016-06-18 11:14:01 +02:00
Display --indent 2 --text "- Checking high stratum ntp peers" --result "${STATUS_OK}" --color GREEN
2015-12-21 21:17:15 +01:00
LogText "Result: All peers are lower than stratum 16"
2016-09-01 17:33:18 +02:00
else
2017-04-30 17:59:35 +02:00
for ITEM in ${FIND}; do
LogText "Found stratum 16 peer: ${ITEM}"
2018-01-23 15:00:34 +01:00
FIND2=$(${EGREPBINARY} "^ntp-ignore-stratum-16-peer=${ITEM}" ${PROFILE})
2017-04-30 17:59:35 +02:00
if IsEmpty "${FIND2}"; then
COUNT=$((COUNT + 1))
Report "ntp_stratum_16_peer[]=${ITEM}"
2016-09-01 17:33:18 +02:00
else
2017-04-30 17:59:35 +02:00
LogText "Output: host ${ITEM} ignored by profile"
2014-08-26 17:33:55 +02:00
fi
done
# Check if one or more high stratum time servers are found
2017-04-30 17:59:35 +02:00
if [ ${COUNT} -eq 0 ]; then
2016-06-18 11:14:01 +02:00
Display --indent 2 --text "- Checking high stratum ntp peers" --result "${STATUS_OK}" --color GREEN
2015-12-21 21:17:15 +01:00
LogText "Result: all non local servers are lower than stratum 16, or whitelisted within the scan profile"
2016-09-01 17:33:18 +02:00
else
2016-06-18 11:14:01 +02:00
Display --indent 2 --text "- Checking high stratum ntp peers" --result "${STATUS_WARNING}" --color RED
2017-04-30 17:59:35 +02:00
LogText "Result: Found ${COUNT} high stratum (16) peers)"
2017-03-06 08:41:21 +01:00
ReportSuggestion ${TEST_NO} "Check ntpq peers output for stratum 16 peers"
2014-08-26 17:33:55 +02:00
fi
fi
fi
#
#################################################################################
#
# Test : TIME-3120
# Description : Check unreliable peers from peer list
# Notes : Items with # are too far away (network distance)
2017-03-06 08:41:21 +01:00
# Items with - are not chosen due clustering algorithm
2017-03-13 11:59:05 +01:00
if [ ${NTPD_RUNNING} -eq 1 -a ! -z "${NTPQBINARY}" ]; then PREQS_MET="YES"; else PREQS_MET="NO"; fi
2016-07-24 17:22:00 +02:00
Register --test-no TIME-3120 --preqs-met ${PREQS_MET} --weight L --network NO --category security --description "Check unreliable NTP peers"
2014-08-26 17:33:55 +02:00
if [ ${SKIPTEST} -eq 0 ]; then
2015-12-21 21:17:15 +01:00
LogText "Test: Checking unreliable ntp peers"
2017-03-06 08:41:21 +01:00
FIND=$(${NTPQBINARY} -p -n | ${EGREPBINARY} "^(-|#)" | ${AWKBINARY} '{ print $1 }' | ${SEDBINARY} 's/^-//g')
2017-03-13 11:59:05 +01:00
if [ -z "${FIND}" ]; then
2016-06-18 11:14:01 +02:00
Display --indent 2 --text "- Checking unreliable ntp peers" --result "${STATUS_NONE}" --color GREEN
2015-12-21 21:17:15 +01:00
LogText "Result: No unreliable peers found"
2017-03-13 11:59:05 +01:00
else
2016-06-18 11:14:01 +02:00
Display --indent 2 --text "- Checking unreliable ntp peers" --result "${STATUS_FOUND}" --color YELLOW
2015-12-21 21:17:15 +01:00
LogText "Result: Found one or more unreliable peers (marked with a minus or dash sign)"
2014-08-26 17:33:55 +02:00
for I in ${FIND}; do
2015-12-21 21:17:15 +01:00
LogText "Unreliable peer: ${I}"
2016-04-28 08:51:43 +02:00
Report "ntp_unreliable_peer[]=${I}"
2014-08-26 17:33:55 +02:00
done
ReportSuggestion ${TEST_NO} "Check ntpq peers output for unreliable ntp peers and correct/replace them"
fi
fi
#
#################################################################################
#
# Test : TIME-3124
# Description : Check selected time source
2017-04-23 20:06:24 +02:00
if [ ${NTPD_RUNNING} -eq 1 -a ! -z "${NTPQBINARY}" ]; then PREQS_MET="YES"; else PREQS_MET="NO"; fi
2016-07-24 17:22:00 +02:00
Register --test-no TIME-3124 --preqs-met ${PREQS_MET} --weight L --network NO --category security --description "Check selected time source"
2014-08-26 17:33:55 +02:00
if [ ${SKIPTEST} -eq 0 ]; then
2015-12-21 21:17:15 +01:00
LogText "Test: Checking selected time source"
2016-09-01 17:33:18 +02:00
FIND=$(${NTPQBINARY} -p -n | ${GREPBINARY} '^*' | ${AWKBINARY} '{ if ($4=="l") { print $1 } }')
FIND2=$(${NTPQBINARY} -p -n | ${GREPBINARY} '^*' | ${AWKBINARY} '{ print $1 }')
if [ -z "${FIND}" -a ! -z "${FIND2}" ]; then
2016-06-18 11:14:01 +02:00
Display --indent 2 --text "- Checking selected time source" --result "${STATUS_OK}" --color GREEN
2017-03-06 08:41:21 +01:00
FIND2=$(echo ${FIND2} | ${SEDBINARY} 's/*//g')
2015-12-21 21:17:15 +01:00
LogText "Result: Found selected time source (value: ${FIND2})"
2016-09-01 17:33:18 +02:00
else
2016-06-18 11:14:01 +02:00
Display --indent 2 --text "- Checking selected time source" --result "${STATUS_WARNING}" --color RED
2015-12-21 21:17:15 +01:00
LogText "Result: Found local source as selected time source. This could indicate that no external sources are available to sync with."
LogText "Local source: ${FIND}"
2014-08-26 17:33:55 +02:00
ReportSuggestion ${TEST_NO} "Check ntpq peers output for selected time source"
fi
fi
#
#################################################################################
#
# Test : TIME-3128
# Description : Check time source candidates
2017-03-13 11:59:05 +01:00
if [ ${NTPD_RUNNING} -eq 1 -a ! -z "${NTPQBINARY}" ]; then PREQS_MET="YES"; else PREQS_MET="NO"; fi
2016-10-19 11:17:33 +02:00
Register --test-no TIME-3128 --preqs-met ${PREQS_MET} --weight L --network NO --category security --description "Check preferred time source"
2014-08-26 17:33:55 +02:00
if [ ${SKIPTEST} -eq 0 ]; then
2015-12-21 21:17:15 +01:00
LogText "Test: Checking preferred time source"
2016-09-01 17:33:18 +02:00
FIND=$(${NTPQBINARY} -p -n | ${GREPBINARY} '^+' | ${AWKBINARY} '{ print $1 }')
if [ -z "${FIND}" ]; then
2016-06-18 11:14:01 +02:00
Display --indent 2 --text "- Checking time source candidates" --result "${STATUS_NONE}" --color YELLOW
2015-12-21 21:17:15 +01:00
LogText "Result: No other time source candidates found"
2014-08-26 17:33:55 +02:00
ReportSuggestion ${TEST_NO} "Check ntpq peers output for time source candidates"
2016-09-01 17:33:18 +02:00
else
2016-06-18 11:14:01 +02:00
Display --indent 2 --text "- Checking time source candidates" --result "${STATUS_OK}" --color GREEN
2015-12-21 21:17:15 +01:00
LogText "Result: Found one or more candidates to synchronize time with."
2016-09-01 17:33:18 +02:00
for I in ${FIND}; do
2016-09-08 21:04:17 +02:00
I=$(echo ${I} | ${SEDBINARY} 's/+//g')
2015-12-21 21:17:15 +01:00
LogText "Candidate found: ${I}"
2014-08-26 17:33:55 +02:00
done
fi
fi
#
#################################################################################
#
# Test : TIME-3132
# Description : Check ntpq falsetickers
2017-03-13 11:59:05 +01:00
if [ ${NTPD_RUNNING} -eq 1 -a ! -z "${NTPQBINARY}" ]; then PREQS_MET="YES"; else PREQS_MET="NO"; fi
2016-07-24 17:22:00 +02:00
Register --test-no TIME-3132 --preqs-met ${PREQS_MET} --weight L --network NO --category security --description "Check NTP falsetickers"
2014-08-26 17:33:55 +02:00
if [ ${SKIPTEST} -eq 0 ]; then
2015-12-21 21:17:15 +01:00
LogText "Test: Checking preferred time source"
2016-09-01 17:33:18 +02:00
FIND=$(${NTPQBINARY} -p -n | ${EGREPBINARY} '^x')
if [ -z "${FIND}" ]; then
2016-06-18 11:14:01 +02:00
Display --indent 2 --text "- Checking falsetickers" --result "${STATUS_OK}" --color GREEN
2018-04-23 10:54:44 +02:00
LogText "Result: No falsetickers found (items preceding with an 'x')"
2016-09-01 17:33:18 +02:00
else
2016-06-18 11:14:01 +02:00
Display --indent 2 --text "- Checking falsetickers" --result "${STATUS_NONE}" --color YELLOW
2018-04-23 10:54:44 +02:00
LogText "Result: Found one or more falsetickers (items preceding with an 'x')"
2014-08-26 17:33:55 +02:00
for I in ${FIND}; do
2016-09-08 21:04:17 +02:00
I=$(echo ${I} | ${SEDBINARY} 's/x//g')
2015-12-21 21:17:15 +01:00
LogText "Falseticker found: ${I}"
2016-04-28 08:51:43 +02:00
Report "ntp_falseticker[]=${I}"
2014-08-26 17:33:55 +02:00
done
ReportSuggestion ${TEST_NO} "Check ntpq peers output for falsetickers"
fi
fi
#
#################################################################################
#
# Test : TIME-3136
# Description : Check ntpq reported ntp version (Linux)
2017-03-13 11:59:05 +01:00
if [ ${NTPD_RUNNING} -eq 1 -a ! -z "${NTPQBINARY}" ]; then PREQS_MET="YES"; else PREQS_MET="NO"; fi
2016-07-24 17:22:00 +02:00
Register --test-no TIME-3136 --os Linux --preqs-met ${PREQS_MET} --weight L --network NO --category security --description "Check NTP protocol version"
2014-08-26 17:33:55 +02:00
if [ ${SKIPTEST} -eq 0 ]; then
2015-12-21 21:17:15 +01:00
LogText "Test: Checking NTP protocol version (ntpq -c ntpversion)"
2016-09-01 17:33:18 +02:00
FIND=$(${NTPQBINARY} -c ntpversion | ${AWKBINARY} '{ if ($1=="NTP" && $2=="version" && $5=="is") { print $6 } }')
if [ -z "${FIND}" ]; then
2016-06-18 11:14:01 +02:00
Display --indent 2 --text "- Checking NTP version" --result "${STATUS_UNKNOWN}" --color YELLOW
2015-12-21 21:17:15 +01:00
LogText "Result: No NTP version found"
2014-08-26 17:33:55 +02:00
ReportSuggestion ${TEST_NO} "Check ntpq output for NTP protocol version"
2016-09-01 17:33:18 +02:00
else
2016-06-18 11:14:01 +02:00
Display --indent 2 --text "- Checking NTP version" --result "${STATUS_FOUND}" --color GREEN
2015-12-21 21:17:15 +01:00
LogText "Result: Found NTP version ${FIND}"
Report "ntp_version=${FIND}"
2014-08-26 17:33:55 +02:00
fi
fi
#
#################################################################################
#
# Test : TIME-3146
# Description : Check /etc/default/ntpdate (Linux)
# Notes : ntpdate-debian binary
2017-03-13 11:59:05 +01:00
#if [ ${NTPD_RUNNING} -eq 1 -a ! -z "${NTPQBINARY}" ]; then PREQS_MET="YES"; else PREQS_MET="NO"; fi
2016-07-24 17:22:00 +02:00
#Register --test-no TIME-3146 --os Linux --preqs-met ${PREQS_MET} --weight L --network NO --category security --description "Check /etc/default/ntpdate"
2014-08-26 17:33:55 +02:00
#if [ ${SKIPTEST} -eq 0 ]; then
#
#################################################################################
2017-02-22 15:06:19 +01:00
#
# Test : TIME-3148
# Description : Check if TZ variable is set (Linux)
# Notes : without TZ variable set, a lot of unneeded calls might be performed.
Register --test-no TIME-3148 --os Linux --weight L --network NO --category performance --description "Check TZ variable"
if [ ${SKIPTEST} -eq 0 ]; then
2017-04-23 20:06:24 +02:00
LogText "Test: testing for TZ variable"
FIND="${TZ:=notset}"
LogText "Result: found TZ variable with value ${FIND}"
if [ "${FIND}" = "notset" ]; then
2017-02-22 15:06:19 +01:00
Report "tz_variable_empty=1"
fi
fi
#
#################################################################################
2014-08-26 17:33:55 +02:00
#
# Test : TIME-3160
# Description : Check empty NTP step-tickers
# Notes : Mostly applies to Red Hat and clones
2018-03-10 12:26:09 +01:00
FILE="${ROOTDIR}etc/ntp/step-tickers"
if [ "${NTPD_RUNNING}" -eq 1 -a ! -z "${NTPQBINARY}" -a -f "${FILE}" ]; then PREQS_MET="YES"; else PREQS_MET="NO"; fi
2016-07-24 17:22:00 +02:00
Register --test-no TIME-3160 --os Linux --preqs-met ${PREQS_MET} --weight L --network NO --category security --description "Check empty NTP step-tickers"
2014-08-26 17:33:55 +02:00
if [ ${SKIPTEST} -eq 0 ]; then
FOUND=0
2018-03-10 12:26:09 +01:00
OUTPUT=$(${AWKBINARY} '/^[a-z0-9]/ { print $1 }' ${FILE})
if [ -z "${OUTPUT}" ]; then
2018-06-06 13:59:07 +02:00
if [ ${OS_REDHAT_OR_CLONE} -eq 1 -a -f "${FILE}" ]; then
# On RedHat if step-ticker file exists but is empty, the ntpdate start script uses the servers listed in ntp.conf for the initial time synchronization
LogText "Result: ${FILE} exists and it is empty. On RedHat the initial time synchronization will be done with the servers listed in ntp.conf."
Display --indent 2 --text "- Checking NTP step-tickers file" --result "${STATUS_OK}" --color GREEN
else
LogText "Result: ${FILE} is empty. The step-tickers contain no configured NTP servers"
Display --indent 2 --text "- Checking NTP step-tickers file" --result "EMPTY FILE" --color YELLOW
ReportSuggestion ${TEST_NO} "Use step-tickers file for quicker time synchronization"
fi
2018-03-10 12:26:09 +01:00
else
LogText "Result: ${FILE} is not empty, which is fine"
Display --indent 2 --text "- Checking NTP step-tickers file" --result "${STATUS_OK}" --color GREEN
sFIND=$(${AWKBINARY} '/^[a-z0-9]/ { print $1 }' ${FILE} | ${EGREPBINARY} -v "^127." | ${EGREPBINARY} -v "^::1")
for I in ${sFIND}; do
FIND=$(${GREPBINARY} ^${I} ${FILE} | wc -l)
if [ ${FIND} -gt 0 ]; then
LogText "Result: $I exist in ${FILE}"
2016-09-01 17:33:18 +02:00
else
2018-03-10 12:26:09 +01:00
LogText "Result: ${I} does NOT exist in ${FILE}"
FOUND=1
2014-08-26 17:33:55 +02:00
fi
2018-03-10 12:26:09 +01:00
done
if [ ${FOUND} -eq 1 ]; then
Display --indent 4 --text "- Checking step-tickers ntp servers entries" --result "SOME MISSING" --color YELLOW
ReportSuggestion ${TEST_NO} "Some time servers missing in step-tickers file"
AddHP 3 4
else
Display --indent 4 --text "- Checking step-tickers ntp servers entries" --result "${STATUS_OK}" --color GREEN
LogText "Result: all time servers are in step-tickers file"
AddHP 4 4
2014-08-26 17:33:55 +02:00
fi
fi
2018-03-10 12:26:09 +01:00
LogText "Information: step-tickers is used by ntpdate where as ntp.conf is the configuration file for the ntpd daemon. ntpdate is initially run to set the clock before ntpd to make sure time is within 1000 sec."
LogText "Risk: ntp will not run at boot if the time difference between the server and client by more then 1000 sec."
2014-08-26 17:33:55 +02:00
fi
#
#################################################################################
#
2015-12-21 21:17:15 +01:00
# Test : TIME-3170
# Description : Check file permissions and ownership of configuration files
# Notes : Files should be owned by root, or the user running
# Group owner should have only read access
# Other should preferably have no access, or read-only at max
2014-08-26 17:33:55 +02:00
2018-01-18 20:14:38 +01:00
FILE_ARRAY="${ROOTDIR}etc/chrony.conf ${ROOTDIR}usr/pkg/etc/chrony.conf \
${ROOTDIR}etc/inet/ntp.conf ${ROOTDIR}etc/ntp.conf ${ROOTDIR}usr/local/etc/ntp.conf"
2016-07-24 17:22:00 +02:00
Register --test-no TIME-3170 --weight L --network NO --category security --description "Check configuration files"
2015-12-21 21:17:15 +01:00
if [ ${SKIPTEST} -eq 0 ]; then
for FILE in ${FILE_ARRAY}; do
if [ -f ${FILE} ]; then
LogText "Result: found ${FILE}"
if IsWorldWritable ${FILE}; then
2016-09-01 17:33:18 +02:00
ReportWarning "${TEST_NO}" "Found world writable configuration file" "${FILE}" ""
2015-12-21 21:17:15 +01:00
fi
Report "ntp_config_file[]=${FILE}"
fi
done
fi
#
#################################################################################
#
Report "ntp_config_found=${NTP_CONFIG_FOUND}"
Report "ntp_config_type_daemon=${NTP_CONFIG_TYPE_DAEMON}"
Report "ntp_config_type_eventbased=${NTP_CONFIG_TYPE_EVENTBASED}"
Report "ntp_config_type_scheduled=${NTP_CONFIG_TYPE_SCHEDULED}"
Report "ntp_config_type_startup=${NTP_CONFIG_TYPE_STARTUP}"
Report "ntp_daemon=${NTP_DAEMON}"
Report "ntp_daemon_running=${NTP_DAEMON_RUNNING}"
#
#################################################################################
#
2017-04-23 20:06:24 +02:00
# For VMs check ntpd.conf : tinker panic 0
2017-02-22 15:06:19 +01:00
2014-08-26 17:33:55 +02:00
# OS Time daemons Configuration file
# --------------------------------------------
# AIX xntpd /etc/ntp.conf
# HP
# Linux ntpd /etc/ntp.conf
2015-12-21 21:17:15 +01:00
# chrony /etc/chrony.conf
2014-08-26 17:33:55 +02:00
# OpenBSD ntpd /etc/ntpd.conf
# Solaris xntpd /etc/inet/ntp.conf
2017-04-23 20:06:24 +02:00
WaitForKeyPress
2017-02-22 15:06:19 +01:00
2014-08-26 17:33:55 +02:00
#
#================================================================================
2016-03-13 16:03:46 +01:00
# Lynis - Security Auditing and System Hardening for Linux and UNIX - https://cisofy.com