《安全篇》自动修改root密码

  1. 自动修改root密码,并每分钟更新一次
  2. 脚本具体如下:
  3. #!/bin/bash
    echoopenssl passwd $RANDOM|tee /etc/password/randompasswd |passwd root --stdin >/dev/null
    #echo $(openssl passwd -in /etc/password/passssl | sort -R |head -n1) |tee /etc/password/randompasswd |passwd root --stdin >/dev/null
    chmod 400 randompasswd
  4. 保存脚本为chgpasswd.sh,并给予执行权限
  5. 再将脚本添加到定时任务中:
  6. crontab -uroot -e
  7. * * * * * sh /etc/password/chgpasswd.sh
  8. 自己登陆的时候记得用密钥登陆即可。

你可能感兴趣的:(阅读随笔)