Linux生成高强度密码
在撰写,自动化脚本。往往需要添加账户及密码。如何自动化填写随机密码,有点意思。。。。
01、openssl生成密码
[root@mvp ~]# openssl rand -base 14Usage: rand [options] num
where options are
-out file - write to file
-engine e - use engine e, possibly a hardware device.
-rand file:file:... - seed PRNG from files
-base64 - base64 encode output
-hex - hex encode output
openssl rand -base64 8
openssl rand -hex 3 -out pass.txt --6位
02、使用urandom 生成高强度密码
使用tr 条件来过滤/dev/urandom 的输出,从而删掉那些不想要的字符,并打印出第一个出现的 14位字符
< /dev/urandom tr -dc A-Za-z0-9 | head -c14; echo
< /dev/urandom tr -dc A-Za-z0-9 | head -c6;echo
03、设置快捷命令
vim /etc/bashrc
genpasswd() {
< /dev/urandom tr -dc '[:alnum:]' | head -c6;echo
}