O que significa bloquear uma senha usando 'passwd -l'?

1

É possível bloquear uma senha usando

$ passwd -l john

Mas o que isso realmente significa para bloquear uma senha?

    
por Yahya Uddin 02.12.2017 / 23:27

1 resposta

4

Por que você não lê apenas a página man de passwd ?

-l, --lock Lock the password of the named account. This option disables a password by changing it to a value which matches no possible encrypted value (it adds a ´!´ at the beginning of the password).

Note that this does not disable the account. The user may still be able to login using another authentication token (e.g. an SSH key). To disable the account, administrators should use usermod --expiredate 1 (this set the account's expire date to Jan 2, 1970). Users with a locked password are not allowed to change their password.

    
por 02.12.2017 / 23:32