Skip to main content

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

 

It seems Netskope now uses the endpoint security extension (as opposed to the Network extension), "systemextensionsctl list"

 

That being said, if you enable SIP, the netskope process is protected and cannot be terminated.


Reply