2014-08-26 17:33:55 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
#################################################################################
|
|
|
|
#
|
|
|
|
# Lynis
|
|
|
|
# ------------------
|
|
|
|
#
|
2016-03-13 16:00:39 +01:00
|
|
|
# Copyright 2007-2013, Michael Boelen
|
2021-01-07 15:22:19 +01:00
|
|
|
# Copyright 2007-2021, 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.
|
|
|
|
#
|
|
|
|
#################################################################################
|
|
|
|
#
|
|
|
|
# LDAP Services
|
|
|
|
#
|
|
|
|
#################################################################################
|
|
|
|
#
|
2020-10-22 00:13:42 +02:00
|
|
|
InsertSection "${SECTION_LDAP_SERVICES}"
|
2014-08-26 17:33:55 +02:00
|
|
|
#
|
|
|
|
#################################################################################
|
|
|
|
#
|
2016-09-10 16:12:44 +02:00
|
|
|
SLAPD_CONF_LOCS="${ROOTDIR}etc/ldap ${ROOTDIR}etc/openldap ${ROOTDIR}usr/local/etc/openldap"
|
2014-08-26 17:33:55 +02:00
|
|
|
SLAPD_CONF_LOCATION=""
|
|
|
|
SLAPD_RUNNING=0
|
|
|
|
#
|
|
|
|
#################################################################################
|
|
|
|
#
|
|
|
|
# Test : LDAP-2219
|
|
|
|
# Description : Check running OpenLDAP instance
|
2016-07-24 17:22:00 +02:00
|
|
|
Register --test-no LDAP-2219 --weight L --network NO --category security --description "Check running OpenLDAP instance"
|
2014-08-26 17:33:55 +02:00
|
|
|
if [ ${SKIPTEST} -eq 0 ]; then
|
2019-07-26 11:32:48 +02:00
|
|
|
if IsRunning "slapd"; then
|
2016-06-18 11:14:01 +02:00
|
|
|
Display --indent 2 --text "- Checking OpenLDAP instance" --result "${STATUS_FOUND}" --color GREEN
|
2015-12-21 21:17:15 +01:00
|
|
|
LogText "Result: Found running slapd process"
|
2014-09-15 12:01:09 +02:00
|
|
|
SLAPDFOUND=1
|
|
|
|
SLAPD_RUNNING=1
|
2019-09-20 02:14:06 +02:00
|
|
|
else
|
|
|
|
Display --indent 2 --text "- Checking OpenLDAP instance" --result "${STATUS_NOT_FOUND}" --color WHITE
|
|
|
|
LogText "Result: No running slapd process found."
|
2014-09-15 12:01:09 +02:00
|
|
|
fi
|
2014-08-26 17:33:55 +02:00
|
|
|
fi
|
|
|
|
#
|
|
|
|
#################################################################################
|
|
|
|
#
|
|
|
|
# Test : LDAP-2224
|
|
|
|
# Description : Search slapd.conf
|
|
|
|
if [ ${SLAPD_RUNNING} -eq 1 ]; then PREQS_MET="YES"; else PREQS_MET="NO"; fi
|
2016-07-24 17:22:00 +02:00
|
|
|
Register --test-no LDAP-2224 --preqs-met ${PREQS_MET} --weight L --network NO --category security --description "Check presence slapd.conf"
|
2014-08-26 17:33:55 +02:00
|
|
|
if [ ${SKIPTEST} -eq 0 ]; then
|
2015-12-21 21:17:15 +01:00
|
|
|
LogText "Test: Searching slapd.conf"
|
2014-09-15 12:01:09 +02:00
|
|
|
for I in ${SLAPD_CONF_LOCS}; do
|
|
|
|
if [ -f ${I}/slapd.conf ]; then
|
2015-12-21 21:17:15 +01:00
|
|
|
LogText "Result: found ${I}/slapd.conf"
|
2014-09-15 12:01:09 +02:00
|
|
|
SLAPD_CONF_LOCATION="${I}/slapd.conf"
|
2016-09-10 16:12:44 +02:00
|
|
|
else
|
2015-12-21 21:17:15 +01:00
|
|
|
LogText "Result: ${I} does not contain slapd.conf"
|
2014-09-15 12:01:09 +02:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
# Check if we found a valid location
|
2019-07-16 13:20:30 +02:00
|
|
|
if [ -n "${SLAPD_CONF_LOCATION}" ]; then
|
2016-06-18 11:14:01 +02:00
|
|
|
Display --indent 4 --text "- Checking slapd.conf" --result "${STATUS_FOUND}" --color GREEN
|
2016-09-10 16:12:44 +02:00
|
|
|
else
|
2016-06-18 11:14:01 +02:00
|
|
|
Display --indent 4 --text "- Checking slapd.conf" --result "${STATUS_NOT_FOUND}" --color YELLOW
|
2014-09-15 12:01:09 +02:00
|
|
|
fi
|
2014-08-26 17:33:55 +02:00
|
|
|
fi
|
|
|
|
#
|
|
|
|
#################################################################################
|
|
|
|
#
|
|
|
|
# Test : LDAP-2228
|
|
|
|
# Description : Check OpenLDAP slapd.conf file permissions
|
|
|
|
#
|
|
|
|
#################################################################################
|
|
|
|
#
|
|
|
|
# Test : LDAP-2232
|
|
|
|
# Description : Check OpenLDAP ownership on files/directories
|
|
|
|
#
|
|
|
|
#################################################################################
|
|
|
|
#
|
|
|
|
# Test : LDAP-2236
|
|
|
|
# Description : Check OpenLDAP database permissions
|
|
|
|
#
|
|
|
|
#################################################################################
|
|
|
|
#
|
|
|
|
# Test : LDAP-2240
|
2019-09-21 16:31:06 +02:00
|
|
|
# Description : Check OpenLDAP plaintext RootDN password
|
2014-08-26 17:33:55 +02:00
|
|
|
#
|
|
|
|
#################################################################################
|
|
|
|
#
|
|
|
|
# Test : LDAP-2244
|
|
|
|
# Description : Check for LDAP configured client (and inform about LDAPS)
|
|
|
|
#
|
|
|
|
#################################################################################
|
|
|
|
#
|
|
|
|
|
2016-04-28 12:31:57 +02:00
|
|
|
WaitForKeyPress
|
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
|