I'm trying to understand how to crack passwords from shadow file and I see the root user contains the following content on /etc/shadow:
root:!:17888:0:99999:7:::
What does It mean? How can I crack this password using john?
I'm trying to understand how to crack passwords from shadow file and I see the root user contains the following content on /etc/shadow:
root:!:17888:0:99999:7:::
What does It mean? How can I crack this password using john?
The ! indicates that the account has no usable password. You cannot crack it.
This information can be obtained from the documentation installed on your system. See man 5 shadow and search for !
Many systems intentionally disable password based login as root. This is what the ! is for.
To become root on these systems one may use sudo.