I'm looking for a way to change a root user's password on a Linux system through a bash script, without booting the system. The only things I have found so far are to either remove the password, or to use a chroot, which I prefer not to use.
I know how to empty the root password, but I need to change it to a different password defined earlier in the script.
I have root access to the entire file system.
The system is using shadow passwords, is there a way to generate an encrypted shadow password without logging in/chrooting?
Any other ways to change the root password from script?
|
|
|||||||
|
|
The password hash is in
So a shadow password string might look like this: In this case the first $5$ part indicates it's a SHA-256 hash, the middle part is the salt and the rest is the actual hash. To generate one, best use the system's crypt(3) function, for example with a minimal C program:
Compile with
The second form may not be supported on older Linux systems. Best look at the existing string in your shadow file and use the same hash type (from the $id$ list at the top). |
|||
|
|