File Permissions
find / -not -type l -perm -o+w
# Search the entire filesystem (/) for files that are not symbolic links (-not -type l) and are world-writable (-perm -o+w).
openssl passwd -1 -salt abc password
# Generate an MD5 hashed password using OpenSSL, with the salt abc and the plaintext password password. The -1 flag specifies the MD5 hash algorithm.
# We switch to the root user using our ‘password’Last updated