​ 前面文章分享了Linux下常用命令以及Shell编程相关知识,本节继续学习Linux用户管理及文件权限控制。

​ Linux是多用户多任务操作系统,具有很好的稳定性和安全性。既然是多用户,那就意味着多个用户可以同时使用同一个Linux操作系统,因此就会涉及用户的添加、修改、删除等管理工作以及权限分配问题;平时使用Linux系统一般是用于信息处理,而文件是信息载体,因此也需要掌握文件相关的操作和权限。

​ 相信大家平时在使用windows操作系统时,为了不让别人轻易看到某些敏感文件,而把文件设置为隐藏文件,Linux下是否也能实现同样的操作?是否能通过隐藏权限让黑客最多只能查看某些日志文件但不能进行修改和删除操作?是否能够对某个用户或某个用户组进行特殊的权限设置,让其只有能满足工作需求的最小权限,从而降低安全风险?本篇文章将逐一解决这些疑问。

一、用户及用户组管理

1.1 用户相关命令

​ 针对初学者,在日常工作中,一般都是领导分配一个拥有一定权限的账号,然后开展各项工作,不会开放很高的权限。但初学阶段,正如前面系列文章所演示,都是直接用root账户进行操作,这样的目的是减少权限带来的干扰,让我们更专注于相应知识点的学习。但是在生产环境中建议慎用root,因为权限太大,控制不当会有安全隐患。

1.1.1 who命令

​ who命令用于查看登录用户信息,包括:who、whoami、who am i。

  • whoami

功能描述:查看当前登录用户的用户名

案例:

[root@heimatengyun test]# whoami
root
[root@heimatengyun test]# su - test
Last login: Sat Nov 30 22:55:38 CST 2019 on pts/0
[test@heimatengyun ~]$ whoami
test
[test@heimatengyun ~]$ exit
logout

可以看到,切换用户后,相应的结果发生变化,只显示当前登录的用户。

  • who am i

功能描述:显示最初登录时用的用户名(无论切换几次)

案例:

[root@heimatengyun test]# who am i
root pts/0 2019-12-17 22:23 (192.168.78.1)
[root@heimatengyun test]# su - test
Last login: Tue Dec 17 22:31:09 CST 2019 on pts/0
[test@heimatengyun ~]$ who am i
root pts/0 2019-12-17 22:23 (192.168.78.1)
[test@heimatengyun ~]$ exit
logout

​ 可以看到,切换后用户名还是显示最开始登录时的用户名称。

  • who

功能描述:显示当前有哪些用户真正登录到了本台机器(不会显示那些用su命令切换的用户)

案例:

[root@heimatengyun test]# who
(unknown) :0 2019-12-17 22:22 (:0)
root pts/0 2019-12-17 22:23 (192.168.78.1)
[root@heimatengyun test]# su - test
Last login: Tue Dec 17 22:34:44 CST 2019 on pts/0
[test@heimatengyun ~]$ who
(unknown) :0 2019-12-17 22:22 (:0)
root pts/0 2019-12-17 22:23 (192.168.78.1)
[test@heimatengyun ~]$ exit
logout

​ 可以看到用su命令切换用户后,显示结果中并咩有test用户,因此显示的知识真正登录到本机的所有用户。

1.1.2 id命令

语法:id 用户名

功能描述:判断用户是否存在

案例:

[root@heimatengyun test]# id test
uid=1000(test) gid=1000(test) groups=1000(test)
[root@heimatengyun test]# id lover
id: lover: no such user

​ 如果用户存在返回用户信息,如果用户不存在则提示no such user

1.1.3 useradd命令

语法:

​ useradd [选项] 用户名

功能描述:

​ 添加新用户,默认的用户家目录存放在/home目录中,默认的Shell解释器为 /bin/bash,同时会默认创建一个与该用户同名的基本用户组。在创建用户时,通过以下参数可以修改默认设置。

选项:

参数 作用
-d home-dir,指定用户的家目录,默认为/home/username
-e expiredate,账户到期时间,格式:YYYY-MM-DD
-u uid,指定用户默认的UID
-g gid,指定初始用户基本组,组必须已存在
-G groups,指定一个或多个扩展用户组
-N no-user-group,不创建与用户同名的基本用户组
-s shell,指定用户默认的Shell解释器

案例:

(1)采用默认参数创建用户

[root@heimatengyun test]# id lover
id: lover: no such user
[root@heimatengyun test]# useradd lover
[root@heimatengyun test]# id lover
uid=1001(lover) gid=1001(lover) groups=1001(lover)
[root@heimatengyun ~]# cat /etc/passwd
...省略部分内容
lover:x:1001:1001::/home/lover:/bin/bash

创建的用户保存在/etc/passwd文件中,可以通过此文件查看用户信息。

一行为一条用户记录,分为7个字段,每个字段用冒号分隔。每个字段分别对应:

用户名:密码:UID:GID:注释:家目录:伪用户

(2)创建用户指定家目录、UID以及Shell解释器

[root@heimatengyun ~]# useradd -d /home/heima -u 9988 -s /sbin/nologin heimage
[root@heimatengyun ~]# id heimage
uid=9988(heimage) gid=9988(heimage) groups=9988(heimage)
[root@heimatengyun ~]# ls /home/
heima test

/sbin/nologin是终端解释器中的一员,但是与Bash解释器不同,被设置为nologin后,用户将不能登录到系统中。

RHEL7(Centos7)系统中,用户身份有3种:管理员、系统用户、普通用户。系统的管理员用户UID为0;系统用户UID 为 1~999, Linux 系统为了避免因某个服务程序出现漏洞而被黑客提 权至整台服务器,默认服务程序会有独立的系统用户负责运行,进而有效控制被破坏 范围;普通用户 UID 从 1000 开始,是由管理员创建的用于日常工作的用户。

需要注意的是,UID 是不能冲突的,而且管理员创建的普通用户的 UID 默认是从 1000 开始的(即使前面有闲置的号码)。

另外,在 Linux 系统中创建每个用户时,将自动创建一个与其同名的基本用户组,而且 这个基本用户组只有该用户一个人。如果该用户以后被归纳入其他用户组,则这个其他用户 组称之为扩展用户组。一个用户只有一个基本用户组,但是可以有多个扩展用户组,从而满 足日常的工作需要。

1.1.4 passwd命令

语法:

​ passwd [选项] 用户名

功能描述:

​ 设置或修改用户密码、过期时间、认证信息等。

选项:

参数 作用
-l lock,锁定用户,禁止登录
-u unlock,解除锁定,允许用户登录
-e expire,强制用户在下次登录时修改密码
-S status,显示yoghurt的密码是否被锁定,以及密码采用的加密算法名称

案例:

(1)修改其他账户密码

[root@heimatengyun test]# passwd lover
Changing password for user lover.
New password:
Retype new password:
passwd: all authentication tokens updated successfully.

​ 修改的密码不能太简单,否则修改不成功。修改成功后,即可使用账户进行登录。在界面中登录后,即可查看当前登录用户

[root@heimatengyun test]# who
lover :0 2019-12-17 23:05 (:0)
root pts/0 2019-12-17 22:23 (192.168.78.1)

新建一个用户,如果没有设置密码,则用户无法直接登录,只能通过root用户使用su命令切换。因此,一般新建用户就会同时设置密码。也就是说useradd和passed命令一般是一起使用。

​ 无论是普通用户还是超级权限用户都可以运行passwd命令,但是如果是普通用户则只能修改自己的密码。配合选项参数可以实现更丰富的功能,具体用法可以通过man命令进行查看。

(2)锁定及解锁账户

假设你部门有一位同事要休假半年,那么可以通过-l参数锁定用户,禁止其登录,等休假完毕回来上班后再使用-u参数将其解锁。这样避免了删除用户、添加用户带来的麻烦同时也保证了这段时间内系统的安全。

[root@heimatengyun ~]# passwd -S test
test PS 2019-11-27 0 99999 7 -1 (Password set, SHA512 crypt.)
[root@heimatengyun ~]# passwd -l test
Locking password for user test.
passwd: Success
[root@heimatengyun ~]# passwd -S test
test LK 2019-11-27 0 99999 7 -1 (Password locked.)
[root@heimatengyun ~]# passwd -u test
Unlocking password for user test.
passwd: Success
[root@heimatengyun ~]# passwd -S test
test PS 2019-11-27 0 99999 7 -1 (Password set, SHA512 crypt.)
1.1.5 usermod命令

语法:

​ usermod [选项] 用户名

功能描述:

​ 修改用户信息

Linux系统一切皆文件,修改用户也就是修改配置文件。用户信息保存在/etc/passwd文件中,可以直接采用文本编辑器修改也可以通过usermod命令进行修改。

选项:

参数 作用
-e expiredate,账号到期时间,格式为YYYY-MM-DD
-g gid,变更所属用户组
-G groups,变更扩展用户组
-L lock,锁定用户禁止其登录
-U unlock,解锁用户,允许其登录
-u uid,修改用户的UID

案例:

​ 通过-G参数将上边创建的lover用户加入到root用户组

[root@heimatengyun test]# id lover
uid=1001(lover) gid=1001(lover) groups=1001(lover)
[root@heimatengyun test]# usermod -G root lover
[root@heimatengyun test]# id lover
uid=1001(lover) gid=1001(lover) groups=1001(lover),0(root)
1.1.5 userdel命令

语法:

​ userdel [选项] 用户名

功能描述:

​ 当用户不会再登录系统,则使用此命令删除用户

选项:

参数 作用
-f force,强制删除
-r remove,删除用户及用户家目录

案例:

​ 删除之前创建的lover用户,并删除目录

[root@heimatengyun home]# pwd
/home
[root@heimatengyun home]# ls
lover test
[root@heimatengyun home]# userdel -r lover
userdel: user lover is currently used by process 4419
[root@heimatengyun home]# userdel -rf lover
[root@heimatengyun home]# ls
test

​ 删除用户时默认会保留用户主目录,添加-r参数则会删除home目录下用户主目录。-f表示强制删除,由于前文通过界面上登录了lover用户,所以提示有进程在使用,通过-f强制删除用户。

1.2 用户组相关命令

1.2.1 groupadd命令

语法:

​ groupadd [选项] 组名

功能描述:

​ 添加用户组,有时候为了高效的管理系统中各个用户的权限,经常会将多个用户添加到一个指定组中。

案例:

添加heima用户组并查看组信息

[root@heimatengyun ~]# groupadd heima
[root@heimatengyun ~]# cat /etc/group
...省略部分内容
test:x:1000:test
heima:x:1001:

/etc/group文件包含所有组信息,可以查看到刚才添加的heima用户组。

/etc/group文件每行表示一条记录,标识一个用户组。每条记录分为四个字段,用冒号分割。第一字段:用户组名称;第二字段:用户组密码;第三字段:GID;第四字段:用户列表,每个用户之间用逗号分隔,本字段可以为空

1.2.2 groupmod命令

语法:

​ groupmod [选项] 新组名 老组名

功能描述:

选项:

参数 作用
-n 修改组名称

案例:

(1)修改heima组名称heimage

[root@heimatengyun ~]# groupmod -n heimage heima
[root@heimatengyun ~]# cat /etc/group
...省略部分内容
test:x:1000:test
heimage:x:1001:

(2)新建并添加用户到heimage组

[root@heimatengyun ~]# cat /etc/group
...省略部分内容
test:x:1000:test
heimage:x:1001:
[root@heimatengyun ~]# useradd -g 1001 heimagege
[root@heimatengyun ~]# id heimagege
uid=1001(heimagege) gid=1001(heimage) groups=1001(heimage)
[root@heimatengyun ~]# cat /etc/group
...省略部分内容
test:x:1000:test
heimage:x:1001:
[root@heimatengyun ~]# cat /etc/passwd
...省略部分内容
heimagege:x:1001:1001::/home/heimagege:/bin/bash
1.2.3 groupdel命令

语法:

​ groupdel 组名

功能描述:

​ 删除组,前提是组内没有用户才能删除

案例:

(1)删除用户组

[root@heimatengyun ~]# groupdel heimage
groupdel: cannot remove the primary group of user 'heimagege'
[root@heimatengyun ~]# userdel heimagege
[root@heimatengyun ~]# groupdel heimage

(2)查看组内用户

如案例1所示,如果组内有用户则无法直接删除组。可以通过/etc/group文件匹配对应的组名查看对应组内有哪些用户

[root@heimatengyun ~]# grep 'test' /etc/group
test:x:1000:test

查找之前建的test组内有哪些用户,第四个字段即为该组内所有用户列表。

二、文件及相关权限

2.1 文件权限

2.1.1 ll命令查看文件权限

Linux中一切皆文件,但是每个文件类型可能不同,如何区分文件类型呢?每个文件都有所有者和所有组以及其他人对文件拥有的读、写、执行权限,如何查看文件的这些权限呢?

当然是通过ls或ll命令就可以查看

[root@heimatengyun test]# ll
-rw-r--r--. 1 root root 9 Nov 30 20:43 test1.txt
drwxr-xr-x. 2 root root 6 Dec 20 11:32 test1

ll命令显示结果详解

以test1.txt文件为例,各部分代表的含义依次为如下

  • 文件类型:

    第一个字符“-”表示文件类型,此处表示test1.txt是一个普通文件。不同文件类型用不同字符表示,文件类型与字符对应关系如下
符号 文件类型
- 普通文件
d 目录文件
l 连接文件
b 块设备文件
c 字符设备文件
p 管理文件
s 套接字文件
  • 文件权限:

    “rw-r--r--.”,可以分为四段,前三段每三位为一段,最后一个点单独为一段。第一段rw-表示文件创建者/所有者对该文件所具有的权限,第二段r--表示创建者/所有者所在的组的其他用户所具有的权限,第三段r--表示其他组的其他用户所具有的权限。第四段.

字符 权限类型
r read,读取权限,数字表示为4。对文件而言,具有读取文件内容的权限;对目录来说,具有浏览目录的权限
w write,写入权限,数字表示为2。对文件而言,具有新增、修改文件内容的权限;对目录来说,具有删除、移动目录内文件的权限
x execute,执行权限,数字表示为1。对文件而言,具有执行文件的权限;对目录来说,该用户具有进入目录的权限。
s或S SUID,Set UID,可执行的文件搭配这个权限,便能得到特权,任意存取该文件的所有者能使用的全部系统资源。请注意具备SUID权限的文件,黑客经常利用这种权限,以SUID配上root帐号拥有者,无声无息地在系统中开扇后门,供日后进出使用。
t或T sticky,/tmp和 /var/tmp目录供所有用户暂时存取文件,亦即每位用户皆拥有完整的权限进入该目录,去浏览、删除和移动文件。
.或+ 如果为+表示设置了ACL

此处test1.txt文件,其创建者/所有者具有可读可写的权限,其创建者/所有者所在的组的其他用户具有可读权限,其他组的其他用户则具有可读权限。

文件权限除了可以使用rwx表示,也可以用数字表示。如777代表:rwxrwxrwx(r=4,w=2,x=1,4+2+1=7=rwx),由此可以看出数字表示会简洁一些。

  • 连接个数

    对于文件,表示指向它的链接文件的个数;对于目录文件,表示它的第一级子目录的个数。注意此处看到的值要减2才等于该目录下的子目录的实际个数,比如test1目录下其实并没有任何文件和目录,但此处显示为2,这是因为要加上.目录和..目录。在linux下,.目录表示当前目录,..目录表示上一级目录。

  • 所有者和所属组

    表示该文件的所有者/创建者(owner)及其所在的组(group)。

  • 文件大小

    如果是文件,则表示该文件的大小,单位为字节。如果是目录,则表示该目录符所占的大小,并不表示该目录下所有文件的大小。

  • 修改日期

    该文件最后修改的日期时间。

  • 文件名称

    文件或目录的名称。

不同的shell窗口,还能用颜色区分文件的属性,能一目了然通过颜色区分文件类型,普通文件、可执行文件、压缩文件、目录、连接文件都有不同的颜色区分。不同工具可以根据自己需要进行颜色方案的修改和配置,这里就不说了。

2.1.2 文件权限设置
2.1.2.1 chmod命令

语法:

​ chmod [选项] [ugoa] [+-=] [rwx或数字] 文件或目录

选项参数:

选项 含义
-R recursive,递归执行
属性符号 作用
u 文件拥有者
g 文件所属组
o 文件所属组外的其他用户
a 所有用户,相当于是ugo同时使用
操作符号 作用
+ 添加权限
- 删除权限
= 设置权限,未指定的部分将被清除
权限符号 作用
r 对于文件有查看权限,对于目录可以列出目录内容
w 对于文件有修改权限,对于目录可以在目录中创建和删除
x 对于文件有执行权限,对于目录可以进入目录

功能描述:

​ 改变文件或目录权限

案例:

(1)分别通过ugoa添加文件的可执行权限

[root@heimatengyun test1]# ll
total 8
-rw-r--r--. 1 root root 6 Dec 20 14:52 hello
-rw-r--r--. 1 root root 6 Dec 20 14:51 test
[root@heimatengyun test1]# chmod u+x hello
[root@heimatengyun test1]# ll
total 8
-rwxr--r--. 1 root root 6 Dec 20 14:52 hello
-rw-r--r--. 1 root root 6 Dec 20 14:51 test
[root@heimatengyun test1]# chmod g+x hello
[root@heimatengyun test1]# ll
total 8
-rwxr-xr--. 1 root root 6 Dec 20 14:52 hello
-rw-r--r--. 1 root root 6 Dec 20 14:51 test
[root@heimatengyun test1]# chmod o+x hello
[root@heimatengyun test1]# ll
total 8
-rwxr-xr-x. 1 root root 6 Dec 20 14:52 hello
-rw-r--r--. 1 root root 6 Dec 20 14:51 test
[root@heimatengyun test1]# chmod a+x test
[root@heimatengyun test1]# ll
total 8
-rwxr-xr-x. 1 root root 6 Dec 20 14:52 hello
-rwxr-xr-x. 1 root root 6 Dec 20 14:51 test

从示例可以看到可以通过u、g、o分别对不同部分赋予权限,也可以直接用o一次性赋值。根据实际需要灵活选择即可。

(2)移除所有者或所属组之外其他用户的执行权限

[root@heimatengyun test1]# ll
total 8
-rwxr-xr-x. 1 root root 6 Dec 20 14:52 hello
-rwxr-xr-x. 1 root root 6 Dec 20 14:51 test
[root@heimatengyun test1]# chmod o-x test
[root@heimatengyun test1]# ll
total 8
-rwxr-xr-x. 1 root root 6 Dec 20 14:52 hello
-rwxr-xr--. 1 root root 6 Dec 20 14:51 test

(3)用数字设置权限

[root@heimatengyun test1]# ll
total 8
-rwxr-xr-x. 1 root root 6 Dec 20 14:52 hello
-rwxr-xr--. 1 root root 6 Dec 20 14:51 test
[root@heimatengyun test1]# chmod 777 test
[root@heimatengyun test1]# ll
total 8
-rwxr-xr-x. 1 root root 6 Dec 20 14:52 hello
-rwxrwxrwx. 1 root root 6 Dec 20 14:51 test

(4)通过=号设置权限

[root@heimatengyun test1]# ll
total 8
-rwxr-xr-x. 1 root root 6 Dec 20 14:52 hello
-rwxrwxrwx. 1 root root 6 Dec 20 14:51 test
[root@heimatengyun test1]# chmod o=w test
[root@heimatengyun test1]# ll
total 8
-rwxr-xr-x. 1 root root 6 Dec 20 14:52 hello
-rwxrwx-w-. 1 root root 6 Dec 20 14:51 test

(5)改变目录下所有文件

[root@heimatengyun test]# chmod -R 777 test1
[root@heimatengyun test]# ll
drwxrwxrwx. 2 root root 29 Dec 20 14:52 test1
[root@heimatengyun test]# cd test1/
[root@heimatengyun test1]# ll
total 8
-rwxrwxrwx. 1 root root 6 Dec 20 14:52 hello
-rwxrwxrwx. 1 root root 6 Dec 20 14:51 test

可以看到内部的所有文件权限一次性被修改。

2.1.2.2 chown命令

语法:

​ chown [选项] 最终用户[:最终所属组] 文件或目录

参数:

参数 作用
-R 递归修改

功能描述:

​ 改变文件或目录的所有者

案例:

(1)修改文件所有者

[root@heimatengyun test1]# ll
total 8
-rwxrwxrwx. 1 root root 6 Dec 20 14:52 hello
-rwxrwxrwx. 1 root root 6 Dec 20 14:51 test
[root@heimatengyun test1]# chown test test
[root@heimatengyun test1]# ll
total 8
-rwxrwxrwx. 1 root root 6 Dec 20 14:52 hello
-rwxrwxrwx. 1 test root 6 Dec 20 14:51 test

(2)递归修改目录及其下所有文件所有者

[root@heimatengyun test]# chown -R test:test /root/test/test1
[root@heimatengyun test]# ll
drwxrwxrwx. 2 test test 29 Dec 20 14:52 test1
[root@heimatengyun test]# cd test1/
[root@heimatengyun test1]# ll
total 8
-rwxrwxrwx. 1 test test 6 Dec 20 14:52 hello
-rwxrwxrwx. 1 test test 6 Dec 20 14:51 test

这种用法在修改所有者时同时修改了所属组。注意,修改的当前目录及其下的所有文件都会修改,上级目录不会影响。如此处的/root/test目录不会变化,只会影响test1目录。

2.1.2.3 chgrp命令

语法:

​ chgrp 最终用户组 文件或目录

功能描述:

​ 改变文件或目录的所属组

案例:

[root@heimatengyun test1]# ll
total 8
-rwxrwxrwx. 1 test test 6 Dec 20 14:52 hello
-rwxrwxrwx. 1 test test 6 Dec 20 14:51 test
[root@heimatengyun test1]# chgrp root test
[root@heimatengyun test1]# ll
total 8
-rwxrwxrwx. 1 test test 6 Dec 20 14:52 hello
-rwxrwxrwx. 1 test root 6 Dec 20 14:51 test

2.2 文件特殊权限

​ 单纯设置文件的 rwx 一般权限无法满足我们对安全和灵活性的需求,因此便有了 SUID、SGID 与 SBIT 的特殊权限位。

​ 这是一种对文件权限进行设置的特殊功 能,可以与一般权限同时使用,以弥补一般权限不能实现的功能。

2.2.1 SUID

​ 针对二进制程序设置的特殊权限,可以让二进制程序的执行者临时拥有属主的权限(仅对拥有执行权限的二进制程序有效)。SUID是一种有条件的、临时的特殊权限授权方法,下文以passwd命令进行介绍。

​ 还记得1.1.4讲的passwd命令吗?该命令用于修改用户密码,所有用户都可以执行 passwd 命 令来修改自己的用户密码,而用户密码保存在/etc/shadow 文件中,执行passwd命令本质就是修改shadow文件。

​ 但仔细查看这个文件就会发 现它的默认权限是 000,也就是说除了 root 管理员以外,所有用户都没有查看或编辑该文件的权限。

[root@heimatengyun test1]# ll /etc/shadow
----------. 1 root root 1157 Dec 20 00:06 /etc/shadow

​ 既然没有此密码文件读写权限,那为何所有用户都可以执行命令修改密码呢?先不急,我们来看看passed命令的权限。

[root@heimatengyun test1]# ll /bin/passwd
-rwsr-xr-x. 1 root root 27832 Jun 10 2014 /bin/passwd

​ 可以看到所有者权限为rws,以前讲过可执行权限为x,此处为s。对,就是因为所有者的权限由 rwx变成了rws,其中x改变成s就意味着该文件被赋予了SUID 权限。在使用 passwd 命令时如果加上 SUID 特殊权限位,就可让普通用户临时获得程序所有者的身份,把变更的密码信息写入到 shadow 文件中。

说明:设置SUID后,如果原本没有执行权限,则为S,有执行权限则为s。如rwx将变为rws,rw-变为rwS。

设置SUID权限,就是使用之前介绍的chmod命令即可,针对命令或可执行二进制文件进行设置。

[root@heimatengyun test]# ll
-rwxrwxrwx. 1 root root 145 Dec 1 16:06 mypid.sh
[root@heimatengyun test]# chmod u+s mypid.sh
[root@heimatengyun test]# ll
-rwsrwxrwx. 1 root root 145 Dec 1 16:06 mypid.sh
2.2.2 SGID

主要应用场景和功能有:

(1)让执行者临时拥有所属组权限,对拥有执行权限的二进制程序进行设置。

(2)在某个目录中创建的文件自动继承该目录的用户组,只可以对目录进行设置。

SGID 的第一种功能是参考 SUID 而设计的,不同点在于执行程序的用户获取的不再是文 件所有者的临时权限,而是获取到文件所属组的权限。

针对第二种功能,我们知道,每个文件都有其归属的所有者和所属组,当创建或传送一个文件后,这个文件就会自动归属于执行这个操作的用户,即该用户就是文件的所有者。

假设有这样一种情况,需要在部门内创建一个共享目录,部门内所有人员都能读取目录中的内容。如果每个人都去建立各自的文件,所有者和所属组都是创建者自己,别人无法使用。SGID的出现就是为了解决这个问题,创建部门共享目录后,在该目录上设置 SGID 特殊权限位。这样,部门内的任何人员在里面创建的任何文件都会归属于该目录的所属组,而不再是自己的基本用户组。

SGID功能就是在某个目录中创建的文件自动继承该目录的用户组,只可以对目录进行设置。

下面演示在目录上创建SGID

[root@heimatengyun test]# mkdir sgid
[root@heimatengyun test]# ll
drwxr-xr-x. 2 root root 6 Dec 20 18:11 sgid
[root@heimatengyun test]# chmod 777 sgid/
[root@heimatengyun test]# ll
drwxrwxrwx. 2 root root 6 Dec 20 18:11 sgid
[root@heimatengyun test]# chmod g+s sgid/
[root@heimatengyun test]# ll
drwxrwsrwx. 2 root root 6 Dec 20 18:11 sgid

创建SGID后,就可以切换到普通用户,创建文件,观察文件的所属组

[root@heimatengyun test]# su - test
Last login: Fri Dec 20 17:26:36 CST 2019 on pts/0
[test@heimatengyun ~]$ cd sgid/
[test@heimatengyun sgid]$ echo 'hello'>hello
[test@heimatengyun sgid]$ ll
total 4
-rw-rw-r--. 1 test root 6 Dec 20 18:14 hello

可以看到test普通用户创建的文件所属组变为给上层文件夹一致属于root,不再属于test自己。这样针对所属组设置权限,其他用户就可以实现操作文件。

2.2.3 SBIT

SBIT 特殊权限位可确保用户只能删除自己的文件,而不能删除其他用户的文件。当对某个目录设置了 SBIT 粘滞位权限后,那么该目录中的文件就只能被其所有者执行删除操作了。

回到上文的例子,当一个部门共享一个目录后,如何避免用户删除其他用户的文件呢?显然用SBIT就可以保证用户不能删除别人的文件。

设置目录SBIT,同样用chmod命令

[root@heimatengyun test]# mkdir sbit
[root@heimatengyun test]# ll
drwxr-xr-x. 2 root root 6 Dec 20 18:26 sbit
[root@heimatengyun test]# chmod -R o+t sbit/
[root@heimatengyun test]# ll
drwxr-xr-t. 2 root root 6 Dec 20 18:26 sbit

与前面所讲的 SUID 和 SGID 权限显示方法不同,当目录被设置 SBIT 特殊权限位后,文件的其他人权限部分的 x 执行权限就会被替换成 t 或者 T,原本有 x 执行权限则会写成 t,原本没有 x 执行权限则会被写成 T。

我们仔细观察,就会发现/tmp目录其实就是默认设置了SBIT,它是一个共享目录,保证用户只能删除自己的文件。

[root@heimatengyun /]# ll -d /tmp/
drwxrwxrwt. 15 root root 4096 Dec 20 18:30 /tmp/

创建新用户并在tmp下创建文件,验证用其他用户去删除看能否删除,答案肯定是不能删除的。

[root@heimatengyun /]# useradd heimagege
[root@heimatengyun /]# su - heimagege
[heimagege@heimatengyun ~]$ cd /tmp/
[heimagege@heimatengyun tmp]$ echo 'heimagege'>heimagege
[heimagege@heimatengyun tmp]$ ll
-rw-rw-r--. 1 heimagege heimagege 10 Dec 20 18:34 heimagege
[root@heimatengyun /]# su - test
Last login: Fri Dec 20 18:29:10 CST 2019 on pts/0
[test@heimatengyun ~]$ cd /tmp/
[test@heimatengyun tmp]$ rm -f heimagege
rm: cannot remove ‘heimagege’: Operation not permitted

2.3 文件隐藏属性

​ Linux 系统中的文件除了具备一般权限和特殊权限之外,还有一种隐藏权限,即被隐藏起 来的权限,默认情况下不能直接被用户发觉。当你新接手一台服务器,碰到明明权限充足但却无法删除某个文件的情况,或者仅能在日志文件中追加内容而不能修改或删除内容,这肯you可能就是设置了文件隐藏属性。这种属性在一定程度上阻止了黑客篡改系统日志的图谋,因此这种“奇怪”的文件也保障了Linux 系统的安全性。

2.3.1 chattr命令

语法:

​ chattr [选项] [+-=参数] 文件

选项及参数:

选项 作用
R 递归
参数 作用
i 无法对文件进行修改;若对目录设置了该参数,则仅能修改其中的子文件内容 而不能新建或删除文件
a 仅允许补充(追加)内容,无法覆盖/删除内容(Append Only)
S 文件内容在变更后立即同步到硬盘(sync)
s 彻底从硬盘中删除,不可恢复(用 0 填充原文件所在硬盘区域)
A 不再修改这个文件或目录的最后访问时间(atime)
b 不再修改文件或目录的存取时间
d 使用 dump 命令备份时忽略本文件/目录
u 当删除该文件后依然保留其在硬盘中的数据,方便日后恢复

功能描述:

​ 设置文件的隐藏权限

案例:

通过隐藏属性,设置文件不能删除

[root@heimatengyun test]# echo 'test chattr'>testattr
[root@heimatengyun test]# chattr +a testattr
[root@heimatengyun test]# rm testattr
rm: remove regular file ‘testattr’? y
rm: cannot remove ‘testattr’: Operation not permitted
2.3.2 lsattr命令

语法:

​ lsattr 文件

功能描述:

​ 显示文件的隐藏权限

案例:

​ 查看文件隐藏属性,删除隐藏属性

[root@heimatengyun test]# lsattr testattr
-----a---------- testattr
[root@heimatengyun test]# chattr -a testattr
[root@heimatengyun test]# lsattr testattr
---------------- testattr
[root@heimatengyun test]# rm testattr
rm: remove regular file ‘testattr’? y
[root@heimatengyun test]#

​ 可以看到,删除隐藏属性后文件删除成功。

2.3 文件访问控制列表

前文讲解的一般权限、特殊权限、隐藏权限都是针对某一类用户设置的。如果希望对某个指定的用户进行单独的权限控制,就需要用到文件 的访问控制列表(ACL)了。

2.3.1 setfacl命令

基于普通文件或目录设置 ACL 其实就是针对指定的用户或用户组设置文件或目录的操作权限。另外,如果针对某个目录设置了 ACL,则目录中 的文件会继承其 ACL;若针对文件设置了 ACL,则文件不再继承其所在目录的 ACL。

文件的 ACL 提供的是在所有者、所属组、其他人的读/写/执行权限之外的特殊权限控制,使用 setfacl 命令可以针对单一用户或用户组、单一文件或目录来进行读/写/执行权限的控制。

语法:

​ setfacl [参数] 文件名称

参数选项:

参数 作用
-R 递归参数
-m modify修改目录或文件的ACL
-b 删除扩展ACL,保留原有的基础权限

功能描述:

​ 管理文件的 ACL 规则

案例:

让普通用户能访问root目录

[root@heimatengyun ~]# ll -d /root/
dr-xr-x---. 16 root root 4096 Dec 20 11:49 /root/
[root@heimatengyun ~]# su - test
Last login: Fri Dec 20 18:34:47 CST 2019 on pts/0
[test@heimatengyun ~]$ ls /root/
ls: cannot open directory /root/: Permission denied
[test@heimatengyun ~]$ exit
logout

未设置ACL前其他用户是不能访问root目录的,设置root目录ACL允许test访问。

[root@heimatengyun ~]# setfacl -Rm u:test:rwx /root/
[root@heimatengyun ~]# ll -d /root/
dr-xrwx---+ 16 root root 4096 Dec 20 11:49 /root/
[root@heimatengyun ~]# su - test
Last login: Fri Dec 20 22:10:26 CST 2019 on pts/0
[test@heimatengyun ~]$ ls /root/
anaconda-ks.cfg Documents initial-setup-ks.cfg Pictures Templates Videos Desktop Downloads Music Public test

同时通过ll命令可以看到权限后边的点变为了+。这个标识说明已经设置了ACL。

2.3.2 getfacl命令

语法:

​ getfacl 文件名称

功能描述:

​ 查看文件上设置的ACL信息

案例:

(1)查看文件上设置的ACL

[test@heimatengyun ~]$ getfacl /root/
getfacl: Removing leading '/' from absolute path names
# file: root/
# owner: root
# group: root
user::r-x
user:test:rwx
group::r-x
mask::rwx
other::---

(2)删除文件ACL

[root@heimatengyun ~]# ll -d /root/
dr-xrwx---+ 16 root root 4096 Dec 20 11:49 /root/
[root@heimatengyun ~]# setfacl -b /root/
[root@heimatengyun ~]# ll -d /root/
dr-xr-x---. 16 root root 4096 Dec 20 11:49 /root/

2.4 临时权限提升

​ 平时学习一般直接用root可以避免各种配置服务或权限导致的干扰问题,使得学习中心放在相应的知识点上。但是正式工作中,往往很少用root操作,因此可能会涉及用户切换以及用户提权问题。

2.4.1 su命令

​ su 命令可以解决切换用户身份的需求,使得当前用户在不退出登录的情况下,顺畅地切 换到其他用户。

​ 由于前文已经演示了su命令的用法,因此不再赘述。只是要注意su命令与用户名之间有一个减号(-),这意味着完全切 换到新的用户,即把环境变量信息也变更为新用户的相应信息,而不是保留原始的信息。强 烈建议在切换用户身份时添加这个减号(-)。另外,当从 root 管理员切换到普通用户时是不需要密码验证的,而从普通用户切换成 root 管理员就需要进行密码验证了;这也是一个必要的安全检查。

2.4.2 sudo命令

​ 尽管使用 su 命令后,普通用户可以完全切换到 root 管理员身份来完成相应工作,但这将暴露 root 管理员的密码,从而增大了系统密码被黑客获取的几率;这并不是最安全的方案。

​ sudo 命令可以把特定命令的执行权限赋予给指定用户而无需给出root密码, 这样既可保证普通用户能够完成特定的工作,也可以避免泄露 root 管理员密码。

语法格式:

​ sudo [参数] 命令

参数:

参数 作用
-l 列出当前用户可执行的命令

功能描述:

​ sudo 命令用于给普通用户提供额外的权限来完成原本 root 管理员才能完成的任务。

​ 使用sudo之前需要先配置sudo服务,配置文件为/etc/sudoers,可以直接编辑此文件,也可以使用visudo命令进行配置。

案例:

(1)为普通用户test添加sudo权限

​ 未为普通用户配置sudo服务时,通过sodo命令查看能执行的命令,将提升没有配置。

[root@heimatengyun ~]# su - test
Last login: Fri Dec 20 22:14:02 CST 2019 on pts/0
[test@heimatengyun ~]$ sudo -l
We trust you have received the usual lecture from the local System
Administrator. It usually boils down to these three things:
#1) Respect the privacy of others.
#2) Think before you type.
#3) With great power comes great responsibility.
[sudo] password for test:
Sorry, user test may not run sudo on heimatengyun.

​ 通过visudo命令,在“root ALL=(ALL) ALL”后仿照添加“test ALL=(ALL) ALL”,然后保存退出。操作方式跟vi编辑器一致。

配置内容解释:test ALL=(ALL) ALL 其中test为用户名,表示谁可以使用sudo,第一个ALL表示是运行使用的主机,等号之后括号内的ALL表示以谁的身份执行,最后的ALL表示可执行命令的列表。“谁可以使用 允许使用的主机=(以谁的身份) 可执行命令的列表”

配置后,再次使用test用户来查看,将得出如下结果:

[root@heimatengyun ~]# su - test
Last login: Fri Dec 20 22:41:52 CST 2019 on pts/0
[test@heimatengyun ~]$ sudo -l
[sudo] password for test:
Matching Defaults entries for test on this host:
requiretty, !visiblepw, always_set_home, env_reset, env_keep="COLORS
DISPLAY HOSTNAME HISTSIZE INPUTRC KDEDIR LS_COLORS", env_keep+="MAIL PS1
PS2 QTDIR USERNAME LANG LC_ADDRESS LC_CTYPE", env_keep+="LC_COLLATE
LC_IDENTIFICATION LC_MEASUREMENT LC_MESSAGES", env_keep+="LC_MONETARY
LC_NAME LC_NUMERIC LC_PAPER LC_TELEPHONE", env_keep+="LC_TIME LC_ALL
LANGUAGE LINGUAS _XKB_CHARSET XAUTHORITY",
secure_path=/sbin\:/bin\:/usr/sbin\:/usr/bin
User test may run the following commands on this host:
(ALL) ALL

表明针对test用户的sudo服务配置成功。配置成功之后,就可以采用sudo提升test用户的权限了。

[test@heimatengyun ~]$ ls /root/
ls: cannot open directory /root/: Permission denied
[test@heimatengyun ~]$ sudo ls /root/
anaconda-ks.cfg Documents initial-setup-ks.cfg Pictures Templates Videos
Desktop Downloads Music Public test
[test@heimatengyun ~]$

是不是很神奇,test用户通过sudo提权就可以看到root目录内容了。

(2)按需为用户配置sudo权限

我们前边直接给了ALL最大的权限,实际情况应该按需分配最小权限,比如我们只给test用户cat命令权限。

通过whereis命令查看cat所在路径,一定要给命令的绝对路径,不然系统无法识别命令。

[test@heimatengyun ~]$ whereis cat
cat: /usr/bin/cat /usr/share/man/man1/cat.1.gz /usr/share/man/man1p/cat.1p.gz

通过visudo命令修改之前添加的内容为:test ALL=(ALL) /usr/bin/cat。保存后切换到test普通用户查看效果

[root@heimatengyun ~]# visudo
...省略部分内容
## Allow root to run any commands anywhere
root ALL=(ALL) ALL
#test ALL=(ALL) ALL
test ALL=(ALL) /usr/bin/cat
...省略部分内容
[test@heimatengyun ~]$ sudo -l
[sudo] password for test:
Matching Defaults entries for test on this host:
requiretty, !visiblepw, always_set_home, env_reset, env_keep="COLORS
DISPLAY HOSTNAME HISTSIZE INPUTRC KDEDIR LS_COLORS", env_keep+="MAIL PS1
PS2 QTDIR USERNAME LANG LC_ADDRESS LC_CTYPE", env_keep+="LC_COLLATE
LC_IDENTIFICATION LC_MEASUREMENT LC_MESSAGES", env_keep+="LC_MONETARY
LC_NAME LC_NUMERIC LC_PAPER LC_TELEPHONE", env_keep+="LC_TIME LC_ALL
LANGUAGE LINGUAS _XKB_CHARSET XAUTHORITY",
secure_path=/sbin\:/bin\:/usr/sbin\:/usr/bin
User test may run the following commands on this host:
(ALL) /usr/bin/cat
[test@heimatengyun ~]$ cat /etc/shadow
cat: /etc/shadow: Permission denied
[test@heimatengyun ~]$ sudo cat /etc/shadow
...省略部分内容
heimagege:!!:18250:0:99999:7:::
[test@heimatengyun ~]$ ls /root/
ls: cannot open directory /root/: Permission denied
[test@heimatengyun ~]$

从实验结果可以看出,配置cat命令后,只能执行cat命令,再次使用ls命令就不能看到root目录内容。这样权限就得到了很好的控制。

学习完用户及文件相关权限知识后,下一篇文章我们将讲解防火墙相关知识。

linux入门系列9--用户管理及文件权限控制的更多相关文章

  1. linux入门系列13--磁盘管理之RAID、LVM技术

    前一篇文章学习了磁盘分区.格式化.挂载等相关知识,本文将讲解RAID和LVM技术. 磁盘管理操作主要是运维人员用的较多,如果只是单纯的开发人员,可以先略过本文.但是在很多小公司里往往都是一人多用,运维 ...

  2. 网卡配置文件详解 用户管理与文件权限篇 文件与目录权限 软连接 tar解压命令 killall命令 linux防火墙 dns解析设置 计划任务crond服务 软件包安装 阿里云 yum源 安装

    Linux系统基础优化及常用命令 Linux基础系统优化 引言没有,只有一张图. Linux的网络功能相当强悍,一时之间我们无法了解所有的网络命令,在配置服务器基础环境时,先了解下网络参数设定命令. ...

  3. linux用户管理和文件权限

    linux用户管理和文件权限 新建用户:useradd ftpuser      useradd -g gxx userxx修改密码:passwd ftpuser新增用户组:# groupadd gr ...

  4. Linux常用命令--用户管理,文件权限,打包命令等

    幕布链接 Linux常用命令--用户管理,文件权限,打包命令等

  5. Linux - 用户管理与文件权限

    目录 Linux - 用户管理与文件权限 创建普通用户 切换用户 userdel删除用户 sudo 命令 文件与目录权限 Linux权限的解读 目录权限 查看用户权限的命令 文件权限 修改权限的命令 ...

  6. Linux 用户管理 与 文件权限

    Linux 用户管理 与 文件权限 用户组操作 1.groupadd命令 groupadd [-g -o] gid group 各个选项具体含义如下: -g:指定新建用户组的GID号,该GID号必须唯 ...

  7. linux入门系列12--磁盘管理之分区、格式化与挂载

    前面系列文章讲解了VI编辑器.常用命令.防火墙及网络服务管理,本篇将讲解磁盘管理相关知识. 本文将会介绍大量的Linux命令,其中有一部分在"linux入门系列5--新手必会的linux命令 ...

  8. C 语言函数手册:涵盖字符测试、字符串操作、内存管理、时间换算、数学计算、文件操作、进程管理、文件权限控制、信号处理、接口处理、环境变量、终端控制

    1. 字符测试函数 函数 说明 isascii() 判断字符是否为ASCII码字符 2. 字符串操作 函数 说明 gcvt() 将浮点型数转换为字符串(四舍五入) index() 查找字符串并返回首次 ...

  9. linux入门系列10--firewalld防火墙管理

    上一篇文章学习了用户及文件相关权限,本篇继续学习防火墙技术. 防火墙作为公网与内网之间的保护屏障,对系统至关重要.防火墙又分为硬件防火墙和软件防火墙,主要功能都是依据设置的策略对穿越防火墙的流量进行过 ...

随机推荐

  1. POJ3252 Round Numbers 题解 数位DP

    题目大意: 求区间 \([x,y]\) 范围内有多少数的二进制表示中的'0'的个数 \(\ge\) '1'的个数. 解题思路: 使用 数位DP 解决这个问题. 我们设状态 f[pos][num0][n ...

  2. js动态改变下拉框内容

    今天为大家分享一篇js动态设置select下拉菜单的默认选中项实例,具有很好的参考价值,希望对大家有所帮助. 代码实例如下: <!DOCTYPE html> <html lang=& ...

  3. 25.xlrd、xlwt和openpyxl模块的比较和使用

    xlrd.xlwt和openpyxl模块的比较:1)xlrd:对xls.xlsx.xlsm文件进行读操作–读操作效率较高,推荐2)xlwt:对xls文件进行写操作–写操作效率较高,但是不能执行xlsx ...

  4. fastjson使用详解

    目录 二.fastjson使用 三.fastjson 常用 API 四.fastjson使用演示 测试类准备 1.java类转换为json字符串 2.json字符串转为java类 五.fastjson ...

  5. 【Think In Java笔记】第1章 对象导论

    1. 对象导论 OOP 面向对象编程 C.Basic等语言所在的抽象仍要求在解决问题时基于计算机的解决,而不是基于所解决问题的结构来考虑. 要建立起问题空间的元素和解空间的对象之间一一映射的关系 万物 ...

  6. vue根据选择的月份动态展示当前月份的每一天并展示每一天所对应的星期几

    我们在开发过程中所遇到的所有的奇奇怪怪的交互美其名曰用(奇)户(葩)体(需)验(求),而产品所谓的良好的交互效果,在我等开发人员眼里不值一提.不屑一顾.讨厌至极! 对于这样的需求,我通常都是: 但胳膊 ...

  7. 【转】利用Eclipse编辑中文资源文件(application_zh_CN.properties )

    既然生为中国人,就没有什么好抱怨的了,遇到编码的问题,那只有解决它了. 如果经常使用Struts,并做过国际化操作的人来说,对于中文资源文件的处理应该不会感到陌生的.比如下面两个文件,一个是英文的,一 ...

  8. python中super()

    super() : 获取当前类的父类 效果图: 代码: class Animal: def __init__(self,name): self._name = name @property def n ...

  9. vue+jest+vue-test-utils 单元测试

           jest是Facebook的一套开源的JavaScript测试框架,它集成了快照测试.断言.mock以及覆盖率报告等功能,很全面而且基本不需要太多的配置便可使用Vue-Test-Util ...

  10. redis 数据类型之字典

    1.hset hset(name, key, value) # 参数:     # name,redis的name     # key,name对应的hash中的key     # value,nam ...