19
edits
Changes
m
Getting your network password hash: OpenSSL 3 requires the legacy provider
printf 'YOUR-NETW-ORKP-SSWD' \
| iconv -f ASCII -t UTF-16LE \
| openssl dgst -md4 \
| cut -d ' ' -f 2
</pre>
If you are using OpenSSL 3, you will need to specify the legacy provider:
<pre>
| openssl dgst -md4 -provider legacy \
</pre>