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

github.com/CISOfy/lynis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Boelen <michael.boelen@cisofy.com>2017-04-23 21:19:30 +0300
committerMichael Boelen <michael.boelen@cisofy.com>2017-04-23 21:19:30 +0300
commitf39e72dbd559551799312079eaf91ab04bf4e63e (patch)
tree10851678f7538de5e1408dcf6d24ceee7a5e6a43
parent2340e7bbbc6b3e955c7df0069686c016e40d0a6d (diff)
Remove unused file
-rw-r--r--include/tests_solaris73
1 files changed, 0 insertions, 73 deletions
diff --git a/include/tests_solaris b/include/tests_solaris
deleted file mode 100644
index d7416b41..00000000
--- a/include/tests_solaris
+++ /dev/null
@@ -1,73 +0,0 @@
-#!/bin/sh
-
-#################################################################################
-#
-# Lynis
-# ------------------
-#
-# Copyright 2007-2013, Michael Boelen
-# Copyright 2007-2017, CISOfy
-#
-# Website : https://cisofy.com
-# Blog : http://linux-audit.com
-# GitHub : https://github.com/CISOfy/lynis
-#
-# 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 --category security --description "Check for running SSH daemon"
-# if [ ${SKIPTEST} -eq 0 ]; then
-# LogText "Test: Searching for a SSH daemon"
-# # Check running processes
-# FIND=$(${PSBINARY} ax | ${GREPBINARY} "sshd" | ${GREPBINARY} -v "grep")
-# if [ ! "${FIND}" = "" ]; then
-# SSH_DAEMON_RUNNING=1
-# LogText "Result: Stop-A is disabled"
-# Display --indent 2 --text "- Checking running SSH daemon" --result "${STATUS_FOUND}" --color GREEN
-# else
-# LogText "Result: Stop-A is NOT disabled"
-# Display --indent 2 --text "- Checking running SSH daemon" --result "${STATUS_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 --category security --description "Check for running SSH daemon"
-# if [ ${SKIPTEST} -eq 0 ]; then
-# LogText "Test: Searching for a SSH daemon"
-# # Check running processes
-# FIND=$(${PSBINARY} ax | ${GREPBINARY} "sshd" | ${GREPBINARY} -v "grep")
-# if [ ! "${FIND}" = "" ]; then
-# SSH_DAEMON_RUNNING=1
-# LogText "Result: Stop-A is disabled"
-# Display --indent 2 --text "- Checking running SSH daemon" --result "${STATUS_FOUND}" --color GREEN
-# else
-# LogText "Result: Stop-A is NOT disabled"
-# Display --indent 2 --text "- Checking running SSH daemon" --result "${STATUS_NOT_FOUND}" --color WHITE
-# fi
-# fi
-
-#
-#################################################################################
-#
-
-WaitForKeyPress
-
-#
-#================================================================================
-# Lynis - Security Auditing and System Hardening for Linux and UNIX - https://cisofy.com