2014-08-26 17:33:55 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
#################################################################################
|
|
|
|
#
|
|
|
|
# Lynis
|
|
|
|
# ------------------
|
|
|
|
#
|
2015-07-22 17:37:11 +02:00
|
|
|
# Copyright 2007-2015, Michael Boelen, CISOfy (michael.boelen@cisofy.com)
|
2015-05-27 12:36:34 +02:00
|
|
|
# Web site: https://cisofy.com
|
2014-08-26 17:33:55 +02: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.
|
|
|
|
#
|
|
|
|
#################################################################################
|
|
|
|
#
|
|
|
|
# Virtualization
|
|
|
|
#
|
|
|
|
#################################################################################
|
|
|
|
#
|
|
|
|
InsertSection "Virtualization"
|
|
|
|
#
|
|
|
|
#################################################################################
|
|
|
|
#
|
|
|
|
# # 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
|
2014-09-15 12:01:09 +02:00
|
|
|
# Display --indent 2 --text "- Checking VMware guest status"
|
2015-07-22 17:37:11 +02:00
|
|
|
# # check memory driver file
|
|
|
|
# # check LKM list
|
|
|
|
# # check vmware tools
|
2014-08-26 17:33:55 +02:00
|
|
|
# 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
|
|
|
|
|
|
|
|
#
|
|
|
|
#================================================================================
|
2015-07-22 17:37:11 +02:00
|
|
|
# Lynis - Copyright 2007-2015, Michael Boelen, CISOfy - https://cisofy.com
|