即使目錄被賦予了SGID權(quán)限,并且目錄是775,普通文件也無法在目錄下創(chuàng)建文件。普通用戶必須對目錄有寫文件,也就三目錄必須是777,才能在目錄下面新建文件。
2018-02-12
#!/bin/bash
find / -perm -4000 -o -perm -2000 > /root/suid_temp
for i in $(cat /root/suid_temp)
do
grep $i /root/suid.log > /dev/null
if [ "$?" != "0" ];then
echo "$i wrong suid add now" >> /root/suid.wrong.log_$(date +%F)
fi
done
find / -perm -4000 -o -perm -2000 > /root/suid_temp
for i in $(cat /root/suid_temp)
do
grep $i /root/suid.log > /dev/null
if [ "$?" != "0" ];then
echo "$i wrong suid add now" >> /root/suid.wrong.log_$(date +%F)
fi
done
2018-02-11
sudo權(quán)限講的好詳細,舉得例子也很生動,一下子就get到重點了。。。謝謝老師的分享
2017-11-10