Server Version#: 1.18.9.2578
I’m trying to decrypt the plex.direct certificate. I was told that it’s stored in the servers Cache folder, and the key is equal to SHA512("plex" + id), where ID is equal to the ProcessedMachineIdentifier in preferences. However, when I run the following commands to attempt to decrypt the key and certificate:
echo "plex$machineID" | sha512sum
openssl pkcs12 -in certificate.p12 -out plex.cert -clcerts -nokeys -passin "pass:<that hash>"
openssl pkcs12 -in certificate.p12 -out plex.key -nocerts -nodes -passin "pass:<that hash>"
I just get an invalid password error from OpenSSL.
Am I doing something wrong? I’m using the exact cases that are spit out from the preferences file, and sha512sum, and I’ve tried uppercase, lowercase, etc.
Thanks!