Password

如何創建加密密碼

  • December 25, 2020

我想知道如何在 Ubuntu 14.04 LTS 中創建加密密碼。試過這個:

makepasswd --crypt-md5 password_here

它對我不起作用。它拋出這個錯誤:

sysadmin@localhost:~$ makepasswd --crypt-md5 admin123

makepasswd:  Non-argument options specified:  admin123
makepasswd:  For more information, type:  makepasswd --help

我想在其中一個安裝中添加這些加密密碼,所以我需要這樣做的方式。

# echo -n admin123 | makepasswd --crypt-md5 --clearfrom -
admin123     $1$ZUNNSLzQ$XsViFC1bhucsr3f8AzMPt/

正如下面評論的那樣,這個命令是不安全的。真正的方法 - 使用文本編輯器在文件中寫入密碼,並從文件中讀取密碼。

另一種方式是這樣的:openssl passwd -1 -stdin <<< password_here

這不會在程序列表中顯示密碼。有關更多選項,請參閱openssl passwd --help

引用自:https://unix.stackexchange.com/questions/134827