Welcome to mirror list, hosted at ThFree Co, Russian Federation.

tests_solaris « include - github.com/CISOfy/lynis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 556444c68d1c3b9dfec0af6fc38708beb2c3253d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#!/bin/sh

#################################################################################
#
#   Lynis
# ------------------
#
# Copyright 2007-2014, 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.
#
#################################################################################
#
# 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
#	logtext "Test: Searching for a SSH daemon..."
#	# Check running processes
#	FIND=`${PSBINARY} ax | grep "sshd" | grep -v "grep"`
#	if [ ! "${FIND}" = "" ]; then
#	    SSH_DAEMON_RUNNING=1	    
#	    logtext "Result: Stop-A is disabled"
#	    Display --indent 2 --text "- Checking running SSH daemon..." --result FOUND --color GREEN
#	  else
#	    logtext "Result: Stop-A is NOT disabled"
#	    Display --indent 2 --text "- Checking running SSH daemon..." --result "NOT FOUND" --color WHITE
#	fi
#    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
#	logtext "Test: Searching for a SSH daemon..."
#	# Check running processes
#	FIND=`${PSBINARY} ax | grep "sshd" | grep -v "grep"`
#	if [ ! "${FIND}" = "" ]; then
#	    SSH_DAEMON_RUNNING=1	    
#	    logtext "Result: Stop-A is disabled"
#	    Display --indent 2 --text "- Checking running SSH daemon..." --result FOUND --color GREEN
#	  else
#	    logtext "Result: Stop-A is NOT disabled"
#	    Display --indent 2 --text "- Checking running SSH daemon..." --result "NOT FOUND" --color WHITE
#	fi
#    fi

#
#################################################################################
#

wait_for_keypress

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