2014-08-26 17:33:55 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
#################################################################################
|
|
|
|
#
|
|
|
|
# Lynis
|
|
|
|
# ------------------
|
|
|
|
#
|
2016-03-13 16:00:39 +01:00
|
|
|
# Copyright 2007-2013, Michael Boelen
|
|
|
|
# Copyright 2013-2016, CISOfy
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
#################################################################################
|
|
|
|
#
|
|
|
|
# Solaris
|
|
|
|
#
|
|
|
|
#################################################################################
|
|
|
|
#
|
|
|
|
InsertSection "Solaris"
|
|
|
|
#
|
|
|
|
#################################################################################
|
|
|
|
#
|
|
|
|
# Test : SOL-xxxx
|
|
|
|
# Description : Check if Stop-A is disabled
|
|
|
|
# Register --test-no SOL-xxxx --weight L --network NO --description "Check for running SSH daemon"
|
|
|
|
# if [ ${SKIPTEST} -eq 0 ]; then
|
2015-12-21 21:17:15 +01:00
|
|
|
# LogText "Test: Searching for a SSH daemon"
|
2014-09-15 12:01:09 +02:00
|
|
|
# # Check running processes
|
|
|
|
# FIND=`${PSBINARY} ax | grep "sshd" | grep -v "grep"`
|
|
|
|
# if [ ! "${FIND}" = "" ]; then
|
|
|
|
# SSH_DAEMON_RUNNING=1
|
2015-12-21 21:17:15 +01:00
|
|
|
# LogText "Result: Stop-A is disabled"
|
2014-09-15 12:01:09 +02:00
|
|
|
# Display --indent 2 --text "- Checking running SSH daemon" --result FOUND --color GREEN
|
|
|
|
# else
|
2015-12-21 21:17:15 +01:00
|
|
|
# LogText "Result: Stop-A is NOT disabled"
|
2014-09-15 12:01:09 +02:00
|
|
|
# Display --indent 2 --text "- Checking running SSH daemon" --result "NOT FOUND" --color WHITE
|
|
|
|
# fi
|
2014-08-26 17:33:55 +02:00
|
|
|
# fi
|
|
|
|
#
|
|
|
|
#################################################################################
|
|
|
|
#
|
|
|
|
# Test : SOL-xxxx
|
|
|
|
# Description : Check if vold is disabled, to disallow unaudited mounts
|
|
|
|
# Register --test-no SOL-xxxx --weight L --network NO --description "Check for running SSH daemon"
|
|
|
|
# if [ ${SKIPTEST} -eq 0 ]; then
|
2015-12-21 21:17:15 +01:00
|
|
|
# LogText "Test: Searching for a SSH daemon"
|
2014-09-15 12:01:09 +02:00
|
|
|
# # Check running processes
|
|
|
|
# FIND=`${PSBINARY} ax | grep "sshd" | grep -v "grep"`
|
|
|
|
# if [ ! "${FIND}" = "" ]; then
|
|
|
|
# SSH_DAEMON_RUNNING=1
|
2015-12-21 21:17:15 +01:00
|
|
|
# LogText "Result: Stop-A is disabled"
|
2014-09-15 12:01:09 +02:00
|
|
|
# Display --indent 2 --text "- Checking running SSH daemon" --result FOUND --color GREEN
|
|
|
|
# else
|
2015-12-21 21:17:15 +01:00
|
|
|
# LogText "Result: Stop-A is NOT disabled"
|
2014-09-15 12:01:09 +02:00
|
|
|
# Display --indent 2 --text "- Checking running SSH daemon" --result "NOT FOUND" --color WHITE
|
|
|
|
# fi
|
2014-08-26 17:33:55 +02:00
|
|
|
# fi
|
|
|
|
|
|
|
|
#
|
|
|
|
#################################################################################
|
|
|
|
#
|
|
|
|
|
|
|
|
wait_for_keypress
|
|
|
|
|
|
|
|
#
|
|
|
|
#================================================================================
|
2015-12-21 21:17:15 +01:00
|
|
|
# Lynis - Copyright 2007-2016, Michael Boelen, CISOfy - https://cisofy.com
|