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
path: root/lynis
diff options
context:
space:
mode:
authorMichael Boelen <michael.boelen@cisofy.com>2019-07-10 20:28:26 +0300
committerMichael Boelen <michael.boelen@cisofy.com>2019-07-10 20:28:26 +0300
commitd41b1d9c5fc265c327c65fc85d01a2430216f5c1 (patch)
treed8672bdd5c401e1f86778cd5de10aacff778f968 /lynis
parent09d8832a0b4b922e90b37c358afdeceda2b603c3 (diff)
Check if setuid bit is set
Diffstat (limited to 'lynis')
-rwxr-xr-xlynis3
1 files changed, 3 insertions, 0 deletions
diff --git a/lynis b/lynis
index e5faf06f..d486520a 100755
--- a/lynis
+++ b/lynis
@@ -67,6 +67,9 @@
#
#################################################################################
#
+ # Check setuid bit
+ if [ -u "$0" ]; then echo "The called binary has the set-user-id bit - As this is unusual, execution will be stopped."; exit 1; fi
+
# Work directory
WORKDIR=$(pwd)