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:
authormboelen <michael@cisofy.com>2015-07-22 19:28:34 +0300
committermboelen <michael@cisofy.com>2015-07-22 19:28:34 +0300
commitdd66273f413ebfa493c4e2dfadb3ddd420da6103 (patch)
treeb6b114e7eae3977208cad658f8130eef41f4ed5c
parentdb131518f0d72a52838165854fcc20ce0468c31f (diff)
Removed unused categories
-rw-r--r--include/tests_hardening_tools52
-rw-r--r--include/tests_tcpwrappers47
2 files changed, 0 insertions, 99 deletions
diff --git a/include/tests_hardening_tools b/include/tests_hardening_tools
deleted file mode 100644
index c148e9a0..00000000
--- a/include/tests_hardening_tools
+++ /dev/null
@@ -1,52 +0,0 @@
-#!/bin/sh
-
-#################################################################################
-#
-# Lynis
-# ------------------
-#
-# Copyright 2007-2015, 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.
-#
-#################################################################################
-#
-# InsertSection "Hardening tools"
-#
-#################################################################################
-#
- # Checking Solaris Security Toolkit (Jass)
- # Test : HRDN-7402
- # Description : Check jass hardening
- # Register --test-no HRDN-7402 --weight L --network NO --description "Check jass hardening"
- # if [ ${SKIPTEST} -eq 0 ]; then
- # if [ -d /opt/SUNWjass -o -d /var/opt/SUNWjass ]; then
- # logtext "Result: found Solaris Security Toolkit (Jass hardening tool)"
- # fi
- #
-#
-#################################################################################
-#
- # Test : HRDN-7410
- # Description : Check tiger hardening tool
-#
-#################################################################################
-#
- # Test : HRDN-7420
- # Description : Check Bastille Unix hardening tool
-#
-#################################################################################
-#
- # Checking Solaris Security Toolkit (ASET)
- # - Automated Security Enhancement Tool
-
- # AddHP 3 3
-
-#wait_for_keypress
-
-#
-#================================================================================
-# Lynis - Copyright 2007-2015, Michael Boelen - www.rootkit.nl - The Netherlands
diff --git a/include/tests_tcpwrappers b/include/tests_tcpwrappers
deleted file mode 100644
index ca610165..00000000
--- a/include/tests_tcpwrappers
+++ /dev/null
@@ -1,47 +0,0 @@
-#!/bin/sh
-
-#################################################################################
-#
-# Lynis
-# ------------------
-#
-# Copyright 2007-2015, 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.
-#
-#################################################################################
-#
-# TCP Wrappers
-# Run after: NFS checks
-#
-#################################################################################
-#
-#
-#################################################################################
-#
-# InsertSection "TCP Wrappers"
-#
-#################################################################################
-#
- # Test : TCPW-xxxx (YYY move to nameservices section)
- # Description : Basic nameserver configuration tests (connectivity)
-# Register --test-no TCPW-xxxx --weight L --network YES --description "Basic nameserver configuration tests"
-# if [ ${SKIPTEST} -eq 0 ]; then
-# Display --indent 2 --text "- Checking configured nameservers"
-# logtext "Test: Checking /etc/resolv.conf file"
-# Display --indent 8 --text "Nameserver: ${I}" --result OK --color GREEN
-# ReportSuggestion ${TEST_NO} "Check connection to this nameserver and make sure no outbound DNS queries are blocked (port 53 UDP and TCP)."
-# ReportWarning ${TEST_NO} "L" "Nameserver ${I} does not respond"
-# fi
-#
-#################################################################################
-#
-
-#wait_for_keypress
-
-#
-#================================================================================
-# Lynis - Copyright 2007-2015, Michael Boelen - www.rootkit.nl - The Netherlands