Linux系統隨機生成複雜密碼方法

使用 mkpasswd 命令生成隨機密碼

    首先須要安裝 mkpasswd 包,它包含在 expect 包裏,安裝方式爲:spa

yum install expect -y

安裝完成以後,就能夠使用 mkpasswd 命令來生成隨機密碼了。code

mkpasswd 支持的主要參數以下(區分大小寫):md5

  • -l   生成密碼的長度,默認是 9 位,不一樣版本的默認長度多是不同的。
  • -d  生成密碼中包含數字的位數,默認是 2 位。
  • -c  生成密碼中包含小寫字母的位數,默認是 2 位。
  • -C  生成密碼中包含大寫字母的位數,默認是 2 位。
  • -s   生成密碼中包含特殊字符的位數,默認是 1 位。

示例輸出:ssl

$ mkpasswd -l 20 -d 5 -c 5 -C 5 -s 2
9i'aR:iJSt03t5uU3Drl

使用 date 命令的 MD5SUM 值做爲隨機密碼

能夠經過 data 指令獲取時間後,計算 md5 值,而後截取其中的一部分當作隨機密碼。openssl

操做示例:base64

$ date | md5sum | cut -b 10-20
464dddf2644

使用 openssl 生成強密碼

能夠使用 openssl 生成強密碼。date

操做示例:密碼

$ openssl rand -base64 8
vZfr+eeIxeE=
# 生成 8 位隨機密碼
相關文章
相關標籤/搜索