Linux禁止非WHEEL用户使用SU命令
Posted claireyuancy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux禁止非WHEEL用户使用SU命令相关的知识,希望对你有一定的参考价值。
通常情况下,一般用户通过运行“su -”命令、输入正确的rootpassword。能够登录为root用户来对系统进行管理员级别的配置。
可是。为了更进一步加强系统的安全性,有必要建立一个管理员的 组,仅仅同意这个组的用户来运行“su -”命令登录为root用户。而让其它组的用户即使运行“su -”、输入了正确的rootpassword,也无法登录为root用户。在UNIX和Linux下。这个组的名称通常为“wheel”。
一、禁止非whell组用户切换到root
1、 改动/etc/pam.d/su配置
[[email protected] ~]# vi /etc/pam.d/su ← 打开这个配置文件 #auth required /lib/security/$ISA/pam_wheel.so use_uid ← 找到此行,去掉行首的“#”
2、 改动/etc/login.defs文件
[[email protected] ~]# echo “SU_WHEEL_ONLY yes” >> /etc/login.defs ← 加入语句到行末以上操作完毕后,能够再建立一个新用户。然后用这个新建的用户測试会发现,没有加入到wheel组的用户,运行“su -”命令。即使输入了正确的rootpassword,也无法登录为root用户
3、 加入一个用户woo,測试能否够切换到root
[[email protected] ~]# useradd woo [[email protected] ~]# passwd woo Changing password for user woo. New UNIX password: BAD PASSWORD: it is WAY too short Retype new UNIX password: passwd: all authentication tokens updated successfull
4、通过woo用户登录尝试切换到root
[[email protected] ~]$ su - root ← 即使密码输入正确也无法切换 Password: su: incorrect password [[email protected] ~]$
5: 把root用户增加wheel组再尝试切换,能够切换
[[email protected] ~]# usermod -G wheel woo ← 将普通用户woo加在管理员组wheel组中 [[email protected] ~]# su - woo [[email protected] ~]$ su - root ← 这时候我们看到是能够切换了 Password: [[email protected] ~]#
二、加入用户到管理员,禁止普通用户su到root
6、加入用户,并加入管理员组。禁止普通用户su到root。以配合之后安装OpenSSH/OpenSSL提升远程管理安全
[[email protected] ~]# useradd admin [[email protected] ~]# passwd admin Changing password for user admin. New UNIX password: BAD PASSWORD: it is too short Retype new UNIX password: passwd: all authentication tokens updated successfully. [[email protected] ~]# usermod -G wheel admin (usermod -G wheel admin 或 usermod -G10 admin(10是wheel组的ID号)) [[email protected] ~]# su - admin [[email protected] ~]$ su - root Password: [[email protected] ~]#
方法一:wheel组也可指定为其他组。编辑/etc/pam.d/su加入例如以下两行
[[email protected] ~]# vi /etc/pam.d/su auth sufficient /lib/security/pam_rootok.so debug auth required /lib/security/pam_wheel.so group=wheel
方法二:编辑/etc/pam.d/su将例如以下行#符号去掉
[[email protected] ~]# vi /etc/pam.d/su #RedHat#auth required /lib/security/$ISA/pam_wheel.so use_uid ← 找到此行。去掉行首的“#” #CentOS5#auth required pam_wheel.so use_uid ← 找到此行,去掉行首的“#”
#保存退出就可以============
[[email protected] ~]# echo "SU_WHEEL_ONLY yes" >> /etc/login.defs ← 加入语句到行末
(实际測试这步操作可省略)
以上是关于Linux禁止非WHEEL用户使用SU命令的主要内容,如果未能解决你的问题,请参考以下文章
检查是否使用PAM认证模块禁止wheel组之外的用户su为root
linux 禁止普通用户使用su切换到root用户和禁止 root ssh登陆