2014-08-26 15:33:55 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
|
|
#################################################################################
|
|
|
|
|
#
|
|
|
|
|
# Lynis
|
|
|
|
|
# ------------------
|
|
|
|
|
#
|
2016-03-13 15:00:39 +00:00
|
|
|
# Copyright 2007-2013, Michael Boelen
|
2017-02-09 12:35:40 +00:00
|
|
|
# Copyright 2007-2017, CISOfy
|
2016-03-13 15:00:39 +00:00
|
|
|
#
|
|
|
|
|
# Website : https://cisofy.com
|
|
|
|
|
# Blog : http://linux-audit.com
|
|
|
|
|
# GitHub : https://github.com/CISOfy/lynis
|
2014-08-26 15:33:55 +00: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
|
2016-07-24 15:22:00 +00:00
|
|
|
# Register --test-no SOL-xxxx --weight L --network NO --category security --description "Check for running SSH daemon"
|
2014-08-26 15:33:55 +00:00
|
|
|
# if [ ${SKIPTEST} -eq 0 ]; then
|
2015-12-21 20:17:15 +00:00
|
|
|
# LogText "Test: Searching for a SSH daemon"
|
2014-09-15 10:01:09 +00:00
|
|
|
# # Check running processes
|
2017-03-06 07:41:21 +00:00
|
|
|
# FIND=$(${PSBINARY} ax | ${GREPBINARY} "sshd" | ${GREPBINARY} -v "grep")
|
2014-09-15 10:01:09 +00:00
|
|
|
# if [ ! "${FIND}" = "" ]; then
|
|
|
|
|
# SSH_DAEMON_RUNNING=1
|
2015-12-21 20:17:15 +00:00
|
|
|
# LogText "Result: Stop-A is disabled"
|
2016-06-18 09:14:01 +00:00
|
|
|
# Display --indent 2 --text "- Checking running SSH daemon" --result "${STATUS_FOUND}" --color GREEN
|
2014-09-15 10:01:09 +00:00
|
|
|
# else
|
2015-12-21 20:17:15 +00:00
|
|
|
# LogText "Result: Stop-A is NOT disabled"
|
2016-06-18 09:14:01 +00:00
|
|
|
# Display --indent 2 --text "- Checking running SSH daemon" --result "${STATUS_NOT_FOUND}" --color WHITE
|
2014-09-15 10:01:09 +00:00
|
|
|
# fi
|
2014-08-26 15:33:55 +00:00
|
|
|
# fi
|
|
|
|
|
#
|
|
|
|
|
#################################################################################
|
|
|
|
|
#
|
|
|
|
|
# Test : SOL-xxxx
|
|
|
|
|
# Description : Check if vold is disabled, to disallow unaudited mounts
|
2016-07-24 15:22:00 +00:00
|
|
|
# Register --test-no SOL-xxxx --weight L --network NO --category security --description "Check for running SSH daemon"
|
2014-08-26 15:33:55 +00:00
|
|
|
# if [ ${SKIPTEST} -eq 0 ]; then
|
2015-12-21 20:17:15 +00:00
|
|
|
# LogText "Test: Searching for a SSH daemon"
|
2014-09-15 10:01:09 +00:00
|
|
|
# # Check running processes
|
2017-03-06 07:41:21 +00:00
|
|
|
# FIND=$(${PSBINARY} ax | ${GREPBINARY} "sshd" | ${GREPBINARY} -v "grep")
|
2014-09-15 10:01:09 +00:00
|
|
|
# if [ ! "${FIND}" = "" ]; then
|
|
|
|
|
# SSH_DAEMON_RUNNING=1
|
2015-12-21 20:17:15 +00:00
|
|
|
# LogText "Result: Stop-A is disabled"
|
2016-06-18 09:14:01 +00:00
|
|
|
# Display --indent 2 --text "- Checking running SSH daemon" --result "${STATUS_FOUND}" --color GREEN
|
2014-09-15 10:01:09 +00:00
|
|
|
# else
|
2015-12-21 20:17:15 +00:00
|
|
|
# LogText "Result: Stop-A is NOT disabled"
|
2016-06-18 09:14:01 +00:00
|
|
|
# Display --indent 2 --text "- Checking running SSH daemon" --result "${STATUS_NOT_FOUND}" --color WHITE
|
2014-09-15 10:01:09 +00:00
|
|
|
# fi
|
2014-08-26 15:33:55 +00:00
|
|
|
# fi
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
#################################################################################
|
|
|
|
|
#
|
|
|
|
|
|
2016-04-28 10:31:57 +00:00
|
|
|
WaitForKeyPress
|
2014-08-26 15:33:55 +00:00
|
|
|
|
|
|
|
|
#
|
|
|
|
|
#================================================================================
|
2016-03-13 15:03:46 +00:00
|
|
|
# Lynis - Security Auditing and System Hardening for Linux and UNIX - https://cisofy.com
|