Linux下面提供mkpasswd這個小工具,可以簡單的生成比較安全的密碼。
比如: mkpasswd -l 15 這樣的命令就可以輸出oUm9Eskhen2xxn~這樣的密碼。
同時可以通過參數指定密碼中最少含有的數字,大小寫字母等。
說明書上給出的例子如下:
The following example creates a 15-character password that contains at least 3 digits and 5 uppercase characters.
mkpasswd -l 15 -d 3 -C 5