checksuid.sh
Posted beavan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了checksuid.sh相关的知识,希望对你有一定的参考价值。
Linux中检查Suid脚本:
#!/bin/bash
find / -perm -4000 -perm -2000 > /tmp/setuid.check
for i in $(cat /tmp/setuid.check)
do
grep $i /root/suid.log > /dev/null
if ["$?" != "0"]
then
echo "$! isn‘t in listfile!" >> /root//root/suid_log_$(date +%F)
fi
done
rm -rf /tmp/setuid.check
以上是关于checksuid.sh的主要内容,如果未能解决你的问题,请参考以下文章