From 7df1e4f7de22b2074317b537724f5a042f696577 Mon Sep 17 00:00:00 2001 From: Danny Faught Date: Thu, 12 Jun 2025 10:59:25 -0700 Subject: [PATCH] fix: typos in error message --- unix-privesc-check | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unix-privesc-check b/unix-privesc-check index c5942ee..16fcaf6 100755 --- a/unix-privesc-check +++ b/unix-privesc-check @@ -659,7 +659,7 @@ PROGS="ls awk grep cat mount xargs file ldd strings" for PROG in $PROGS; do which $PROG 2>&1 > /dev/null if [ ! $? = "0" ]; then - echo "ERROR: Dependend program '$PROG' is mising. Can't run. Sorry!" + echo "ERROR: Dependent program '$PROG' is missing. Can't run. Sorry!" exit 1 fi done