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>2014-08-26 19:33:55 +0400
committermboelen <michael@cisofy.com>2014-08-26 19:33:55 +0400
commitc0ae2e217b7f1fb0171017ce5afb8eb8898470db (patch)
tree545aa150c35c5fb74d7bb4c2d3b0ae41cfa7b4e5 /include/tests_virtualization
Initial import
Diffstat (limited to 'include/tests_virtualization')
-rw-r--r--include/tests_virtualization97
1 files changed, 97 insertions, 0 deletions
diff --git a/include/tests_virtualization b/include/tests_virtualization
new file mode 100644
index 00000000..4afd6d03
--- /dev/null
+++ b/include/tests_virtualization
@@ -0,0 +1,97 @@
+#!/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.
+#
+#################################################################################
+#
+# Virtualization
+#
+#################################################################################
+#
+ InsertSection "Virtualization"
+#
+#################################################################################
+#
+ # Test : VIRT-1902
+ # Description : Query running Solaris zones
+ if [ -x /usr/sbin/zoneadm ]; then PREQS_MET="YES"; else PREQS_MET="NO"; fi
+ Register --test-no VIRT-1902 --os Solaris --weight L --network NO --description "Query running Solaris zones"
+ if [ ${SKIPTEST} -eq 0 ]; then
+ logtext "Test: query zoneadm to list all running zones"
+ FIND=`/usr/sbin/zoneadm list -p | awk -F: '{ if ($2!="global") print $0 }'`
+ if [ ! "${FIND}" = "" ]; then
+ N=0
+ for I in ${FIND}; do
+ N=`expr ${N} + 1`
+ ZONEID=`echo ${I} | cut -d ':' -f1`
+ ZONENAME=`echo ${I} | cut -d ':' -f2`
+ logtext "Result: found zone ${ZONENAME} (running)"
+ report "solaris_running_zone[]=${ZONENAME} [id:${ZONEID}]"
+ done
+ logtext "Result: total of ${N} running zones"
+ Display --indent 2 --text "- Checking Solaris Zones..." --result "FOUND ${N} zones" --color GREEN
+ else
+ logtext "Result: no running zones found"
+ Display --indent 2 --text "- Checking Solaris Zones..." --result NONE --color WHITE
+ fi
+ fi
+#
+#################################################################################
+#
+ # Test : VIRT-1906
+ # Description : Query running Xen zones
+ #if [ -x /usr/bin/xm ]; then PREQS_MET="YES"; else PREQS_MET="NO"; fi
+ #Register --test-no VIRT-1906 --weight L --network NO --description "Query Xen guests"
+ #if [ ${SKIPTEST} -eq 0 ]; then
+ # Show Xen guests
+ #FIND=`xm list | awk '$1 != "Name|Domain-0" {print $1","$2}'`
+ #for I in ${FIND}; do
+ #XENGUESTNAME=`echo ${I} | cut -d ':' -f1`
+ #XENGUESTID=`echo ${I} | cut -d ':' -f2`
+ #logtext "Result: found Xen guest ${XENGUESTNAME} (ID: ${XENGUESTID})"
+ #done
+ #fi
+#
+#################################################################################
+#
+
+# # Test : VIRT-1920
+# # Description : Checking VMware
+# Register --test-no VIRT-1920 --weight L --network NO --description "Checking VMware guest status"
+# if [ ${SKIPTEST} -eq 0 ]; then
+# # Initialise
+# VMWARE_GUEST=0
+# Display --indent 2 --text "- Checking VMware guest status..."
+# #YYY check memory driver file
+# #YYY check LKM list
+# #YYY check vmware tools
+# logtext "Test: checking VMware tools daemon presence"
+# if [ ! "${VMWARETOOLSBINARY}" = "" ]; then
+# logtext "Result: VMware tools binary found"
+# VMWARE_GUEST=1
+# Display --indent 4 --text "- Checking VMware tools daemon" --result FOUND --color GREEN
+# else
+# Display --indent 4 --text "- Checking VMware tools daemon" --result "NOT FOUND" --color WHITE
+# fi
+#
+# fi
+#
+#################################################################################
+#
+
+
+wait_for_keypress
+
+#
+#================================================================================
+# Lynis - Copyright 2007-2014, Michael Boelen - www.rootkit.nl - The Netherlands