1 頁 (共 1 頁)

find SUID SGID

發表於 : 2015-04-18 14:36:35
yehlu

代碼: 選擇全部

find  / -type f -perm +6000 -exec ls -l {} \; 2> /dev/null > suid.list.1
less  suid.list.1
chmod u+s /bin/cat
目錄
X 無法寫入
wx 可以寫入

目錄
刪除

目錄加上 sgid
test2 群組為 root

chmod g+s /tmp/test
chmod u+s /bin/touch

可建立,不能改,可以刪

chmod o+t /tmp/test

srwt
可建立,不能改,不能刪


yehlu@ms:/sbin$ ls -ld /tmp
drwxrwxrwt 5 root root 204800 2015-04-18 14:29 /tmp
1777

groupadd test
chgrp test /tmp/test
能建能砍
chmod 2770 /tmp/test

能建不能砍
chmod 3770 /tmp/test
chmod g+s /tmp/test


yehlu@ms:/sbin$ umask
0022

touch new file