本文介绍: 补救:在另外一台机器上用新的密码登录进行测试修改密码的这台机器不要退出),如果登录问题可以用这台没有退出的机器进行补救工作。优点:密码是能看到的,安全性差一些,可以将整段文字放进日志保存。优点:密码是能看到的,安全性差一些,可以将整段文字放进日志保存。,第3种方式有很大的安全隐患密码是暴露在history命令中的。缺点:要输两次密码,容易输不一致,还容易输错(当键盘有卡的键)。缺点:不需要输入两次密码,不会出现输错的情况,安全性上有大问题。缺点:不需要输入两次密码,不会出现输错的情况。

我们修改密码有下列三种方式

1、交互式修改密码

# passwd root
Changing password for root

You can now choose the new password or passphrase.

A valid password should be a mix of upper and lower case letters,
digits, and other characters.  You can use a 7 character long
password with characters from at least 3 of these 4 classes, or
a 6 character long password containing characters from all the
classes.  An upper case letter that begins the password and a
digit that ends it do not count towards the number of character
classes used.

A passphrase should be of at least 3 words, 8 to 40 characters
long, and contain enough different characters.

Alternatively, if no one else can see your terminal now, you can
pick this as your password: “Ear&choir=Fold”.

Enter new password
Re-type new password
passwd: password updated successfully
优点:密码是看不到的,安全性高一些。

缺点:要输两次密码,容易输不一致,还容易输错(当键盘有卡的键)。

补救:在另外一台机器上用新的密码登录进行测试修改密码的这台机器不要退出),如果登录问题可以用这台没有退出的机器进行补救工作

2、交互式修改密码

# passwd rootstdin 
Changing password for root
Axxxxvicroot01!@#$
passwd: password updated successfully

优点:密码是能看到的,安全性差一些,可以将整段文字放进日志保存

缺点:不需要输入两次密码,不会出现输错的情况。

3、脚本修改密码

passwd root —stdin << EOF
Axxxxvic-root01!@#$
EOF

# passwd root —stdin << EOF
&gt; Axxxxvic-root01!@#$
&gt; EOF
Changing password for root
passwd: password updated successfully
 

可以将上面的一段文本直接黏贴到命令执行,就可以实现全自动修改密码。

优点:密码是能看到的,安全性差一些,可以将整段文字放进日志保存

缺点:不需要输入两次密码,不会出现输错的情况,安全性上有大问题

比较上面三种方式第2种方式最好,第3种方式有很大的安全隐患,密码是暴露在history命令中的。

原文地址:https://blog.csdn.net/weixin_40191861/article/details/130321894

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。

如若转载,请注明出处:http://www.7code.cn/show_9411.html

如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注