# 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
优点:密码是看不到的,安全性高一些。
缺点:要输两次密码,容易输不一致,还容易输错(当键盘有卡的键)。
补救:在另外一台机器上用新的密码登录进行测试(修改密码的这台机器不要退出),如果登录有问题,可以用这台没有退出的机器进行补救工作。
,
# passwd root —stdin
Changing password for root
Axxxxvic–root01!@#$
passwd: password updated successfully
优点:密码是能看到的,安全性差一些,可以将整段文字放进日志中保存。
passwd root —stdin << EOF
Axxxxvic-root01!@#$
EOF
# passwd root —stdin << EOF
> Axxxxvic-root01!@#$
> 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进行投诉反馈,一经查实,立即删除!