linux中的强制位与冒险位
----------------------------
强制位:uid,gid;主要用于文件及目录
冒险位:sticky 只用于目录,多数是共享目录.
目录也是文件,严格意思上讲文件应该有四组权限(12位)
强制/冒险 | 宿主 | 组 | 其它
===========================================
sst rwx rwx rwx
强制位:使普通用户也能使用超级用户的命令(相当于尚方宝剑)
用于文件的:
[root@clone bin]# find / -perm 4555
/usr/sbin/sendmail
/sbin/pwdb_chkpwd
/sbin/unix_chkpwd
[root@clone bin]# ls -l /usr/sbin/sendmail
-r-sr-xr-x 1 root root 452204 Sep 17 2003 /usr/sbin/sendmail
用于组的:
[root@clone bin]# find / -perm 2555
/usr/bin/wall
[root@clone bin]# ls -l /usr/bin/wall
-r-xr-sr-x 1 root tty 6444 Aug 29 2001 /usr/bin/wall
冒险位:防止用户删除其它用户资料(自己的资料自己删除,超级用户除外)
[root@clone bin]# ls -l /
drwxrwxrwt 10 root root 4096 Oct 18 14:27 tmp
注:
S:表示该位没有x位;
s: 表示该位有x位
T:表示该位没有x位;
t: 表示该位有x位
阅读(1152) | 评论(0) | 转发(0) |