table of contents
- Tumbleweed 4.20.2-2.1
- Leap-16.0
- Leap-15.6
| CHPASSWD(8) | System Management Commands | CHPASSWD(8) |
NAME¶
chpasswd - update passwords in batch mode
SYNOPSIS¶
chpasswd [options]
DESCRIPTION¶
The chpasswd command reads a list of user name and password pairs from standard input and uses this information to update a group of existing users. Each line is of the format:
user_name:password
By default the passwords must be supplied in clear-text, and are encrypted by chpasswd. Also the password age will be updated, if present.
The default encryption algorithm can be defined for the system with the ENCRYPT_METHOD variable of /etc/login.defs, and can be overwritten with the -e or -c options.
chpasswd first updates all the passwords in memory, and then commits all the changes to disk if no errors occurred for any user.
This command is intended to be used in a large system environment where many accounts are created at a single time.
OPTIONS¶
The options which apply to the chpasswd command are:
-c, --crypt-method METHOD
The available methods are SHA256, SHA512, and NONE if your libc supports these methods.
By default (if none of the -c or -e options are specified), the encryption method is defined by the ENCRYPT_METHOD variable of /etc/login.defs.
-e, --encrypted
-h, --help
-R, --root CHROOT_DIR
-P, --prefix PREFIX_DIR
-s, --sha-rounds ROUNDS
You can only use this option with crypt method: SHA256 SHA512
By default, the number of rounds for SHA256 or SHA512 is defined by the SHA_CRYPT_MIN_ROUNDS and SHA_CRYPT_MAX_ROUNDS variables in /etc/login.defs.
A minimal value of 1000 and a maximal value of 999,999,999 will be enforced for SHA256 and SHA512. The default number of rounds is 5000.
CAVEATS¶
Remember to set permissions or umask to prevent readability of unencrypted files by other users.
CONFIGURATION¶
The following configuration variables in /etc/login.defs change the behavior of this tool:
ENCRYPT_METHOD (string)
It can take one of these values: SHA256, SHA512 (default), . See crypt(5) for recommendations.
History: This variable is used by other programs, which may still default to unsafe algorithms such as DES. To avoid using unsafe algorithms, the variable should always be specified.
SHA_CRYPT_MIN_ROUNDS (number), SHA_CRYPT_MAX_ROUNDS (number)
With a lot of rounds, it is more difficult to brute force the password. But note also that more CPU resources will be needed to authenticate users.
If not specified, the libc will choose the default number of rounds (5000), which is orders of magnitude too low for modern hardware.
The values must be inside the 1000-999,999,999 range.
If only one of the SHA_CRYPT_MIN_ROUNDS or SHA_CRYPT_MAX_ROUNDS values is set, then this value will be used.
If SHA_CRYPT_MIN_ROUNDS > SHA_CRYPT_MAX_ROUNDS, the highest value will be used.
FILES¶
/etc/passwd
/etc/shadow
/etc/login.defs
SEE ALSO¶
| 08/08/2026 | shadow-utils 4.20.2 |