#!/bin/sh

#################################################################################
#
#   Lynis
# ------------------
#
# Copyright 2007-2008, Michael Boelen (michael@rootkit.nl), The Netherlands
# Web site: http://www.rootkit.nl
#
# 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
#
#################################################################################
#
    InsertSection "LDAP Services"
#
#################################################################################
#
    # Test        : LDAP-2219
    # Description : Check running OpenLDAP instance
    Register --test-no LDAP-2219 --weight L --network NO --description "Check running OpenLDAP instance"
    if [ ${SKIPTEST} -eq 0 ]; then
        FIND=`ps ax | grep "slapd" | grep -v "grep"`
        if [ "${FIND}" = "" ]; then
   	    Display --indent 2 --text "- Checking OpenLDAP instance..." --result NONE --color GREEN
	    logtext "Result: No running slapd process found."
          else
    	    Display --indent 2 --text "- Checking OpenLDAP instance..." --result FOUND --color GREEN
	    logtext "Result: Found running slapd process"
	    SLAPDFOUND=1
	fi
    fi
#
#################################################################################
#
    # Test        : LDAP-2224
    # Description : Search slapd.conf
    SLAPD_CONF_LOCS="/usr/local/etc/openldap /etc/ldap"
#
#################################################################################
#
    # Test        : LDAP-2228
    # Description : Check OpenLDAP slapd.conf file permissions
#
#################################################################################
#
    # Test        : LDAP-2232
    # Description : Check OpenLDAP ownership
#
#################################################################################
#
    # Test        : LDAP-2236
    # Description : Check OpenLDAP database permissions
#
#################################################################################
#
    # Test        : LDAP-2240
    # Description : Check OpenLDAP unencrypted RootDN password
#
#################################################################################
#

wait_for_keypress

#
#================================================================================
# Lynis - Copyright 2007-2008, Michael Boelen - www.rootkit.nl - The Netherlands
