How to find out the password stored in / etc / shadow such as Linux NAS box.
Password hash generation with python3
$ python3 >>> import crypt >>> crypt.crypt('<password>', crypt.mksalt()) '$.$..$...'
Recommended Posts