运维大世界我爱编程

第05章高级权限

2018-04-16  本文已影响11人  fe8478c7ba2a

特殊位 suid,sgid,sticky

#高级权限的类型
        suid=4  
        sgid=2
        sticky=1
            suid,sgid针对文件程序时,具备临时提升权限。
            sgid针对目录时,该目录具备继承属组的特性。
            sticky针对目录设置,该目录中的内容只有root和属主能够删除。
请思考
    问题1
        问题1: 为什么会失败!
        [root@localhost ~]# ll /root/file1.txt 
             -rw-r--r-- 1 root root 4 7月  27 14:14 /root/file1.txt
        [alice@localhost ~]$ cat /root/file1.txt
             cat: /root/file1.txt: 权限不够

         分析:root运行是超管的权限,普通用户运行时是普通用户的权限。
#案例1:suid   普通用户通过suid提权     <针对文件>
       在进程文件(二进制,可执行)上增加suid权限
        [root@tianyun ~]# chmod u+s /usr/bin/cat
        [alice@tianyun ~]$ cat /root/file1.txt
             #请在试验后,将cat的suid权限除去。
    示例2suid(passwd)

#案例2:sgid 新建文件继承目录属组   <针对目录>
        [root@tianyun ~]# mkdir /home/hr
        [root@tianyun ~]# groupadd  hr
        [root@tianyun ~]# chgrp hr /home/hr/
        [root@tianyun ~]# chmod g+s /home/hr
        [root@tianyun ~]# ll -d /home/hr/
               drwxr-sr-x. 2 root hr 4096 Dec  5 16:03 /home/hr/

        [root@tianyun ~]# touch /home/hr/file9
        [root@tianyun ~]# ll /home/hr/
                -rw-r--r--. 1 root hr   0 Dec  5 16:03 file9
#案例3(sticky)
     示例:sticky 用户只能删除自己的文件  <针对目录>
        [root@tianyun ~]# mkdir /home/dir1
        [root@tianyun ~]# chmod 777 /home/dir1
            测试:user1在/home/dir1建立文件, user2尝试删除!
        [root@tianyun ~]# chmod o+t /home/dir1
        [root@tianyun ~]# ll -d /home/dir1
            rwxrwxrwt 2 root root 4096 09-02 02:26 /home/dir1
          谁可以删除:
              root
              文件的所有者
              目录的所有者
  =========================

 =========================
设置特殊权限
#字符
    chmod u+s file
    chmod g+s dir
    chmod o+t dir
 #数字
    chmod 4777 file
    chmod 2770 dir
    chmod 1770 dir
文件属性chattr
    用途
        常用于锁定某个文件,拒绝修改      
    注意
        设置文件属性(权限),针对所有用户,包括root
    案例
        文件权限管理之: 文件属性
        注:设置文件属性(权限),针对所有用户,包括root
         1. 先创建三个文件进行对比。查看默认权限。
          [root@tianyun ~]# touch file100 file200 file300 file400
          [root@tianyun ~]# lsattr file100 file200 file300 
                           -------------- file100
                           -------------- file200
                           -------------- file300
         2. 加上不同属性。
          [root@tianyun ~]# man chattr
          [root@tianyun ~]# chattr +a file100           //只能追加
          [root@tianyun ~]# chattr +i file200           //不能更改,重命名,删除
          [root@tianyun ~]# chattr +A file300           //不能更改访问时间。
         3. 查看不同属性
          [root@tianyun ~]# lsattr file100 file200 file300 
                            -----a-------e- file100
                            ----i--------e- file200
                            -------A-----e- file300
         4. 尝试追加,删除,更改。100不能覆盖,200不能删除,300改了不计时间。
           [root@tianyun ~]# echo 111 > file100              //以覆盖的方式写入
                  bash: file100: Operation not permitted
           [root@tianyun ~]# rm -rf file100 
                  rm: cannot remove `file100': Operation not permitted
           [root@tianyun ~]# echo 111 >> file100                //以追加的方式写入,例如日志文件

           [root@tianyun ~]# echo 111 > file200
                  bash: file200: Permission denied
           [root@instructor ~]# echo 111 >> file200
                  bash: file200: Permission denied
           [root@tianyun ~]# rm -rf file200 
                  rm: cannot remove `file200': Operation not permitted


          ===========================================
         5. 记录file300 和file400 访问时间
           [root@localhost ~]# stat file300 file400

         6. 更改和访问文件。
           [root@localhost ~]# date 06010000
                 2018年 06月 01日 星期五 00:00:00 CST
           [root@localhost ~]# echo 111 >> file300
           [root@localhost ~]# echo 111 >> file400
           [root@localhost ~]# cat file300  file400

         7. 观察file300 和file400 访问变化时间
           [root@localhost ~]# stat file300 file400
          #对比第五步文件访问的信息。300没有变化,400有变化。#
          #理解-A锁定了访问时间。#
         8. 将属性还原。
           [root@tianyun ~]# chattr -a file100
           [root@tianyun ~]# chattr -i file200
           [root@tianyun ~]# chattr -A file300   

==========================================

进程掩码 mask umask
概述
        新建文件、目录的默认权限会受到umask的影响,umask表示要减掉的权限
用途
        shell (vim,touch) =======umask======> 新文件或目录权限
        vsftpd =======umask======> 新文件或目录权限 
        samba =======umask======> 新文件或目录权限 
        useradd =======umask======> 用户HOME

#示例1:观察系统默认掩码
   示例1: 在shell进程中创建文件
        [root@tianyun ~]# umask                                     //查看当前用户的umask权限
                            0022
        [root@tianyun ~]# touch file800
        [root@tianyun ~]# mkdir dir800
        [root@tianyun ~]# ll -d dir800 file800 
             drwxr-xr-x. 2 root root 4096 3月  11 19:40 dir800
             -rw-r--r--. 1 root root    0 3月  11 19:40 file800
 #示例2:修改shell umask值(临时)
        [root@tianyun ~]# umask 000
        [root@tianyun ~]# mkdir dir900
        [root@tianyun ~]# touch file900
        [root@tianyun ~]# ll -d dir900 file900 
             drwxrwxrwx. 2 root root 4096 3月  11 19:44 dir900
             -rw-rw-rw-. 1 root root    0 3月  11 19:44 file900
 #示例3:修改shell umask值(永久 建议不要)
        [root@tianyun ~]# vim /etc/profile   
            if [ $UID -gt 199 ] && [ "`id -gn`" = "`id -un`" ]; then
               umask 002
               else
               umask 022
            fi
        [root@tianyun ~]# source /etc/profile       //立即在当前shell中生效

 #示例4:通过umask决定新建用户HOME目录的权限
        [root@tianyun ~]# vim /etc/login.defs 
               UMASK           077
        [root@tianyun ~]# useradd gougou
        [root@tianyun ~]# ll -d /home/gougou/
              drwx------. 4 gougou gougou 4096 3月  11 19:50 /home/gougou/

        [root@tianyun ~]# vim /etc/login.defs
                     UMASK           000
        [root@tianyun ~]# useradd yangyang
        [root@tianyun ~]# ll -d /home/yangyang/
             drwxrwxrwx. 4 yangyang yangyang 4096 3月  11 19:53 /home/yangyang/

 #示例5:例如vsftpd进程 /etc/vsftpd/vsftpd.conf 【了解】
        [root@tianyun ~]# yum -y install vsftpd
        [root@tianyun ~]# man vsftpd.conf
             anon_umask
             local_umask
上一篇 下一篇

猜你喜欢

热点阅读