Hello,
Today I discovery a user executing a script to kill process Netskope.
He´s Admin local of computer (Macbook). Exist some way of block this script through of panel?
if f "$EUID" -ne 0 ]
then echo "Please run as root"
exit
fi
NETSKOPE_PIDS="`ps aux | grep -i /opt/netskope | awk '{print $2}' | sed '$d'`"
for line in $NETSKOPE_PIDS
do
kill -9 $line
done