Display when pentesting mode is used

This commit is contained in:
mboelen 2014-09-08 15:42:12 +02:00
parent f5ec6027b9
commit 6d1531a920
1 changed files with 21 additions and 22 deletions

43
lynis
View File

@ -243,10 +243,23 @@
#
#################################################################################
#
if [ ${QUIET} -eq 0 ]; then
echo ""
echo "${WHITE}[ ${PROGRAM_name} ${PROGRAM_version} ]${NORMAL}"
echo ""
echo "################################################################################"
echo " ${PROGRAM_license}"
echo ""
echo " ${PROGRAM_copyright}"
echo " ${PROGRAM_extrainfo}"
echo "################################################################################"
fi
if [ "${PROGRAM_releasetype}" = "beta" ]; then
echo "${YELLOW}"
echo "${WHITE}"
echo " #########################################################"
echo " # BETA SOFTWARE #"
echo " # ${YELLOW}BETA VERSION${WHITE} #"
echo " #########################################################"
echo ""
echo " Thank you for testing a beta release. Make sure to read"
@ -261,26 +274,15 @@
if [ ${NEVERBREAK} -eq 0 ]; then read void; fi
fi
if [ ${QUIET} -eq 0 ]; then
echo ""
echo "${WHITE}[ ${PROGRAM_name} ${PROGRAM_version} ]${NORMAL}"
echo ""
echo "################################################################################"
echo " ${PROGRAM_license}"
echo ""
echo " ${PROGRAM_copyright}"
echo " ${PROGRAM_extrainfo}"
echo "################################################################################"
fi
if [ ${PENTESTINGMODE} -eq 1 ]; then
echo "${PURPLE}"
echo "${WHITE}"
echo " #########################################################"
echo " # NON-PRIVILEGED mode (e.g. pentesting) #"
echo " # ${PURPLE}NON-PRIVILEGED mode (e.g. pentesting)${WHITE} #"
echo " #########################################################"
echo ""
echo " Some tests will require root permissions"
echo " Logging is disabled (no log and no report)"
echo "${NORMAL}"
echo " ${WHITE}NOTES:${NORMAL}"
echo " * Some tests will require root permissions"
echo " * Logging is disabled (no log and no report)"
echo ""
echo " Press [ENTER] to continue or [CTRL] + C to break"
echo ""
@ -288,9 +290,6 @@
echo "${NORMAL}"; echo ""
if [ ${NEVERBREAK} -eq 0 ]; then read void; fi
fi
#
#################################################################################
#