forked from kenzuya/unshackle
Compare commits
8 Commits
1244141df2
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b308669221 | ||
|
|
dfd3cdb8a2 | ||
|
|
b61135175d | ||
|
|
528a62c243 | ||
|
|
81661a44b9 | ||
|
|
b22c422408 | ||
|
|
f4152bc777 | ||
|
|
9c7af72cad |
4
.gitignore
vendored
4
.gitignore
vendored
@@ -6,8 +6,6 @@ update_check.json
|
|||||||
*.exe
|
*.exe
|
||||||
*.dll
|
*.dll
|
||||||
*.crt
|
*.crt
|
||||||
*.wvd
|
|
||||||
*.prd
|
|
||||||
*.der
|
*.der
|
||||||
*.pem
|
*.pem
|
||||||
*.bin
|
*.bin
|
||||||
@@ -21,8 +19,6 @@ device_vmp_blob
|
|||||||
unshackle/cache/
|
unshackle/cache/
|
||||||
unshackle/cookies/
|
unshackle/cookies/
|
||||||
unshackle/certs/
|
unshackle/certs/
|
||||||
unshackle/WVDs/
|
|
||||||
unshackle/PRDs/
|
|
||||||
temp/
|
temp/
|
||||||
logs/
|
logs/
|
||||||
Temp/
|
Temp/
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
BIN
unshackle/WVDs/hisense_msd6a648_4.10.2891.0_2a621b99_7110_l1.wvd
Normal file
BIN
unshackle/WVDs/hisense_msd6a648_4.10.2891.0_2a621b99_7110_l1.wvd
Normal file
Binary file not shown.
BIN
unshackle/WVDs/hisense_vidaa_tv_14.0.0_92747e74_7110_l1.wvd
Normal file
BIN
unshackle/WVDs/hisense_vidaa_tv_14.0.0_92747e74_7110_l1.wvd
Normal file
Binary file not shown.
BIN
unshackle/WVDs/ktc_tv358dvb_17.0.0_6b8f3314_12063_l3.wvd
Normal file
BIN
unshackle/WVDs/ktc_tv358dvb_17.0.0_6b8f3314_12063_l3.wvd
Normal file
Binary file not shown.
BIN
unshackle/WVDs/lg_50ut73006la.cekukh_17.0.0_22163355_7110_l1.wvd
Normal file
BIN
unshackle/WVDs/lg_50ut73006la.cekukh_17.0.0_22163355_7110_l1.wvd
Normal file
Binary file not shown.
Binary file not shown.
BIN
unshackle/WVDs/samsung_sm-g975f_16.0.0_1e7c5ba2_22589_l3.wvd
Normal file
BIN
unshackle/WVDs/samsung_sm-g975f_16.0.0_1e7c5ba2_22589_l3.wvd
Normal file
Binary file not shown.
BIN
unshackle/WVDs/xiaomi_m2102j20sg_16.0.0_b007be8e_22590_l3.wvd
Normal file
BIN
unshackle/WVDs/xiaomi_m2102j20sg_16.0.0_b007be8e_22590_l3.wvd
Normal file
Binary file not shown.
@@ -10,7 +10,7 @@ import time
|
|||||||
import zlib
|
import zlib
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
from io import BytesIO
|
from io import BytesIO
|
||||||
from typing import Optional, Any
|
from typing import Any, Optional
|
||||||
|
|
||||||
import jsonpickle
|
import jsonpickle
|
||||||
import requests
|
import requests
|
||||||
@@ -19,15 +19,18 @@ from Cryptodome.Hash import HMAC, SHA256
|
|||||||
from Cryptodome.PublicKey import RSA
|
from Cryptodome.PublicKey import RSA
|
||||||
from Cryptodome.Random import get_random_bytes
|
from Cryptodome.Random import get_random_bytes
|
||||||
from Cryptodome.Util import Padding
|
from Cryptodome.Util import Padding
|
||||||
|
from pywidevine import PSSH, Cdm, Key
|
||||||
|
|
||||||
from unshackle.core.cacher import Cacher
|
from unshackle.core.cacher import Cacher
|
||||||
|
|
||||||
from .MSLKeys import MSLKeys
|
from .MSLKeys import MSLKeys
|
||||||
from .schemes import EntityAuthenticationSchemes # noqa: F401
|
from .schemes import (
|
||||||
from .schemes import KeyExchangeSchemes
|
EntityAuthenticationSchemes, # noqa: F401
|
||||||
|
KeyExchangeSchemes,
|
||||||
|
)
|
||||||
from .schemes.EntityAuthentication import EntityAuthentication
|
from .schemes.EntityAuthentication import EntityAuthentication
|
||||||
from .schemes.KeyExchangeRequest import KeyExchangeRequest
|
from .schemes.KeyExchangeRequest import KeyExchangeRequest
|
||||||
from pywidevine import Cdm, PSSH, Key
|
|
||||||
|
|
||||||
class MSL:
|
class MSL:
|
||||||
log = logging.getLogger("MSL")
|
log = logging.getLogger("MSL")
|
||||||
@@ -41,7 +44,16 @@ class MSL:
|
|||||||
self.message_id = message_id
|
self.message_id = message_id
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def handshake(cls, scheme: KeyExchangeSchemes, session: requests.Session, endpoint: str, sender: str, cache: Cacher, cdm: Optional[Cdm] = None, config: Any = None):
|
def handshake(
|
||||||
|
cls,
|
||||||
|
scheme: KeyExchangeSchemes,
|
||||||
|
session: requests.Session,
|
||||||
|
endpoint: str,
|
||||||
|
sender: str,
|
||||||
|
cache: Cacher,
|
||||||
|
cdm: Optional[Cdm] = None,
|
||||||
|
config: Any = None,
|
||||||
|
):
|
||||||
cache = cache.get(sender)
|
cache = cache.get(sender)
|
||||||
message_id = random.randint(0, pow(2, 52))
|
message_id = random.randint(0, pow(2, 52))
|
||||||
msl_keys = MSL.load_cache_data(cache)
|
msl_keys = MSL.load_cache_data(cache)
|
||||||
@@ -53,20 +65,18 @@ class MSL:
|
|||||||
if scheme != KeyExchangeSchemes.Widevine:
|
if scheme != KeyExchangeSchemes.Widevine:
|
||||||
msl_keys.rsa = RSA.generate(2048)
|
msl_keys.rsa = RSA.generate(2048)
|
||||||
|
|
||||||
|
|
||||||
if scheme == KeyExchangeSchemes.Widevine:
|
if scheme == KeyExchangeSchemes.Widevine:
|
||||||
if not cdm:
|
if not cdm:
|
||||||
raise Exception('Key exchange scheme Widevine but CDM instance is None.')
|
raise Exception("Key exchange scheme Widevine but CDM instance is None.")
|
||||||
|
|
||||||
session_id = cdm.open()
|
session_id = cdm.open()
|
||||||
msl_keys.cdm_session = session_id
|
msl_keys.cdm_session = session_id
|
||||||
cdm.set_service_certificate(session_id, config["certificate"])
|
cdm.set_service_certificate(session_id, config["certificate"])
|
||||||
challenge = cdm.get_license_challenge(
|
challenge = cdm.get_license_challenge(
|
||||||
session_id=session_id,
|
session_id,
|
||||||
pssh=PSSH("AAAANHBzc2gAAAAA7e+LqXnWSs6jyCfc1R0h7QAAABQIARIQAAAAAAPSZ0kAAAAAAAAAAA=="),
|
PSSH("AAAANHBzc2gAAAAA7e+LqXnWSs6jyCfc1R0h7QAAABQIARIQAAAAAAPSZ0kAAAAAAAAAAA=="),
|
||||||
license_type="OFFLINE",
|
"OFFLINE",
|
||||||
privacy_mode=True,
|
True,
|
||||||
|
|
||||||
)
|
)
|
||||||
keyrequestdata = KeyExchangeRequest.Widevine(challenge)
|
keyrequestdata = KeyExchangeRequest.Widevine(challenge)
|
||||||
entityauthdata = EntityAuthentication.Unauthenticated(sender)
|
entityauthdata = EntityAuthentication.Unauthenticated(sender)
|
||||||
@@ -76,47 +86,48 @@ class MSL:
|
|||||||
keyrequestdata = KeyExchangeRequest.AsymmetricWrapped(
|
keyrequestdata = KeyExchangeRequest.AsymmetricWrapped(
|
||||||
keypairid="superKeyPair",
|
keypairid="superKeyPair",
|
||||||
mechanism="JWK_RSA",
|
mechanism="JWK_RSA",
|
||||||
publickey=msl_keys.rsa.publickey().exportKey(format="DER")
|
publickey=msl_keys.rsa.publickey().exportKey(format="DER"),
|
||||||
)
|
)
|
||||||
|
|
||||||
data = jsonpickle.encode({
|
data = jsonpickle.encode(
|
||||||
"entityauthdata": entityauthdata,
|
{
|
||||||
"headerdata": base64.b64encode(MSL.generate_msg_header(
|
"entityauthdata": entityauthdata,
|
||||||
message_id=message_id,
|
"headerdata": base64.b64encode(
|
||||||
sender=sender,
|
MSL.generate_msg_header(
|
||||||
is_handshake=True,
|
message_id=message_id, sender=sender, is_handshake=True, keyrequestdata=keyrequestdata
|
||||||
keyrequestdata=keyrequestdata
|
).encode("utf-8")
|
||||||
).encode("utf-8")).decode("utf-8"),
|
).decode("utf-8"),
|
||||||
"signature": ""
|
"signature": "",
|
||||||
}, unpicklable=False)
|
},
|
||||||
data += json.dumps({
|
unpicklable=False,
|
||||||
"payload": base64.b64encode(json.dumps({
|
)
|
||||||
"messageid": message_id,
|
data += json.dumps(
|
||||||
"data": "",
|
{
|
||||||
"sequencenumber": 1,
|
"payload": base64.b64encode(
|
||||||
"endofmsg": True
|
json.dumps({"messageid": message_id, "data": "", "sequencenumber": 1, "endofmsg": True}).encode(
|
||||||
}).encode("utf-8")).decode("utf-8"),
|
"utf-8"
|
||||||
"signature": ""
|
)
|
||||||
})
|
).decode("utf-8"),
|
||||||
|
"signature": "",
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
r = session.post(
|
r = session.post(url=endpoint, data=data)
|
||||||
url=endpoint,
|
|
||||||
data=data
|
|
||||||
)
|
|
||||||
except requests.HTTPError as e:
|
except requests.HTTPError as e:
|
||||||
raise Exception(f"- Key exchange failed, response data is unexpected: {e.response.text}")
|
raise Exception(f"- Key exchange failed, response data is unexpected: {e.response.text}")
|
||||||
|
|
||||||
key_exchange = r.json() # expecting no payloads, so this is fine
|
key_exchange = r.json() # expecting no payloads, so this is fine
|
||||||
if "errordata" in key_exchange:
|
if "errordata" in key_exchange:
|
||||||
raise Exception("- Key exchange failed: " + json.loads(base64.b64decode(
|
raise Exception(
|
||||||
key_exchange["errordata"]
|
"- Key exchange failed: "
|
||||||
).decode())["errormsg"])
|
+ json.loads(base64.b64decode(key_exchange["errordata"]).decode())["errormsg"]
|
||||||
|
)
|
||||||
|
|
||||||
# parse the crypto keys
|
# parse the crypto keys
|
||||||
key_response_data = json.JSONDecoder().decode(base64.b64decode(
|
key_response_data = json.JSONDecoder().decode(base64.b64decode(key_exchange["headerdata"]).decode("utf-8"))[
|
||||||
key_exchange["headerdata"]
|
"keyresponsedata"
|
||||||
).decode("utf-8"))["keyresponsedata"]
|
]
|
||||||
|
|
||||||
if key_response_data["scheme"] != str(scheme):
|
if key_response_data["scheme"] != str(scheme):
|
||||||
raise Exception("- Key exchange scheme mismatch occurred")
|
raise Exception("- Key exchange scheme mismatch occurred")
|
||||||
@@ -133,14 +144,14 @@ class MSL:
|
|||||||
encryption_key = MSL.get_widevine_key(
|
encryption_key = MSL.get_widevine_key(
|
||||||
kid=base64.b64decode(key_data["encryptionkeyid"]),
|
kid=base64.b64decode(key_data["encryptionkeyid"]),
|
||||||
keys=keys,
|
keys=keys,
|
||||||
permissions=["allow_encrypt", "allow_decrypt"]
|
permissions=["allow_encrypt", "allow_decrypt"],
|
||||||
)
|
)
|
||||||
msl_keys.encryption = encryption_key
|
msl_keys.encryption = encryption_key
|
||||||
cls.log.debug(f"Encryption key: {encryption_key}")
|
cls.log.debug(f"Encryption key: {encryption_key}")
|
||||||
sign = MSL.get_widevine_key(
|
sign = MSL.get_widevine_key(
|
||||||
kid=base64.b64decode(key_data["hmackeyid"]),
|
kid=base64.b64decode(key_data["hmackeyid"]),
|
||||||
keys=keys,
|
keys=keys,
|
||||||
permissions=["allow_sign", "allow_signature_verify"]
|
permissions=["allow_sign", "allow_signature_verify"],
|
||||||
)
|
)
|
||||||
cls.log.debug(f"Sign key: {sign}")
|
cls.log.debug(f"Sign key: {sign}")
|
||||||
msl_keys.sign = sign
|
msl_keys.sign = sign
|
||||||
@@ -148,27 +159,21 @@ class MSL:
|
|||||||
elif scheme == KeyExchangeSchemes.AsymmetricWrapped:
|
elif scheme == KeyExchangeSchemes.AsymmetricWrapped:
|
||||||
cipher_rsa = PKCS1_OAEP.new(msl_keys.rsa)
|
cipher_rsa = PKCS1_OAEP.new(msl_keys.rsa)
|
||||||
msl_keys.encryption = MSL.base64key_decode(
|
msl_keys.encryption = MSL.base64key_decode(
|
||||||
json.JSONDecoder().decode(cipher_rsa.decrypt(
|
json.JSONDecoder().decode(
|
||||||
base64.b64decode(key_data["encryptionkey"])
|
cipher_rsa.decrypt(base64.b64decode(key_data["encryptionkey"])).decode("utf-8")
|
||||||
).decode("utf-8"))["k"]
|
)["k"]
|
||||||
)
|
)
|
||||||
msl_keys.sign = MSL.base64key_decode(
|
msl_keys.sign = MSL.base64key_decode(
|
||||||
json.JSONDecoder().decode(cipher_rsa.decrypt(
|
json.JSONDecoder().decode(
|
||||||
base64.b64decode(key_data["hmackey"])
|
cipher_rsa.decrypt(base64.b64decode(key_data["hmackey"])).decode("utf-8")
|
||||||
).decode("utf-8"))["k"]
|
)["k"]
|
||||||
)
|
)
|
||||||
|
|
||||||
msl_keys.mastertoken = key_response_data["mastertoken"]
|
msl_keys.mastertoken = key_response_data["mastertoken"]
|
||||||
|
|
||||||
MSL.cache_keys(msl_keys, cache)
|
MSL.cache_keys(msl_keys, cache)
|
||||||
cls.log.info("MSL handshake successful")
|
cls.log.info("MSL handshake successful")
|
||||||
return cls(
|
return cls(session=session, endpoint=endpoint, sender=sender, keys=msl_keys, message_id=message_id)
|
||||||
session=session,
|
|
||||||
endpoint=endpoint,
|
|
||||||
sender=sender,
|
|
||||||
keys=msl_keys,
|
|
||||||
message_id=message_id
|
|
||||||
)
|
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def load_cache_data(cacher: Cacher):
|
def load_cache_data(cacher: Cacher):
|
||||||
@@ -184,9 +189,24 @@ class MSL:
|
|||||||
# to an RsaKey :)
|
# to an RsaKey :)
|
||||||
msl_keys.rsa = RSA.importKey(msl_keys.rsa)
|
msl_keys.rsa = RSA.importKey(msl_keys.rsa)
|
||||||
# If it's expired or close to, return None as it's unusable
|
# If it's expired or close to, return None as it's unusable
|
||||||
if msl_keys.mastertoken and ((datetime.utcfromtimestamp(int(json.JSONDecoder().decode(
|
if (
|
||||||
base64.b64decode(msl_keys.mastertoken["tokendata"]).decode("utf-8")
|
msl_keys.mastertoken
|
||||||
)["expiration"])) - datetime.now()).total_seconds() / 60 / 60) < 10:
|
and (
|
||||||
|
(
|
||||||
|
datetime.utcfromtimestamp(
|
||||||
|
int(
|
||||||
|
json.JSONDecoder().decode(
|
||||||
|
base64.b64decode(msl_keys.mastertoken["tokendata"]).decode("utf-8")
|
||||||
|
)["expiration"]
|
||||||
|
)
|
||||||
|
)
|
||||||
|
- datetime.now()
|
||||||
|
).total_seconds()
|
||||||
|
/ 60
|
||||||
|
/ 60
|
||||||
|
)
|
||||||
|
< 10
|
||||||
|
):
|
||||||
return None
|
return None
|
||||||
return msl_keys
|
return msl_keys
|
||||||
|
|
||||||
@@ -204,8 +224,9 @@ class MSL:
|
|||||||
msl_keys.rsa = RSA.importKey(msl_keys.rsa)
|
msl_keys.rsa = RSA.importKey(msl_keys.rsa)
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def generate_msg_header(message_id, sender, is_handshake, userauthdata=None, keyrequestdata=None,
|
def generate_msg_header(
|
||||||
compression="GZIP"):
|
message_id, sender, is_handshake, userauthdata=None, keyrequestdata=None, compression="GZIP"
|
||||||
|
):
|
||||||
"""
|
"""
|
||||||
The MSL header carries all MSL data used for entity and user authentication, message encryption
|
The MSL header carries all MSL data used for entity and user authentication, message encryption
|
||||||
and verification, and service tokens. Portions of the MSL header are encrypted.
|
and verification, and service tokens. Portions of the MSL header are encrypted.
|
||||||
@@ -228,7 +249,7 @@ class MSL:
|
|||||||
"capabilities": {
|
"capabilities": {
|
||||||
"compressionalgos": [compression] if compression else [],
|
"compressionalgos": [compression] if compression else [],
|
||||||
"languages": ["en-US"], # bcp-47
|
"languages": ["en-US"], # bcp-47
|
||||||
"encoderformats": ["JSON"]
|
"encoderformats": ["JSON"],
|
||||||
},
|
},
|
||||||
"timestamp": int(time.time()),
|
"timestamp": int(time.time()),
|
||||||
# undocumented or unused:
|
# undocumented or unused:
|
||||||
@@ -272,33 +293,42 @@ class MSL:
|
|||||||
|
|
||||||
def create_message(self, application_data, userauthdata=None):
|
def create_message(self, application_data, userauthdata=None):
|
||||||
self.message_id += 1 # new message must ue a new message id
|
self.message_id += 1 # new message must ue a new message id
|
||||||
headerdata = self.encrypt(self.generate_msg_header(
|
headerdata = self.encrypt(
|
||||||
message_id=self.message_id,
|
self.generate_msg_header(
|
||||||
sender=self.sender,
|
message_id=self.message_id, sender=self.sender, is_handshake=False, userauthdata=userauthdata
|
||||||
is_handshake=False,
|
)
|
||||||
userauthdata=userauthdata
|
)
|
||||||
))
|
|
||||||
|
|
||||||
header = json.dumps({
|
header = json.dumps(
|
||||||
"headerdata": base64.b64encode(headerdata.encode("utf-8")).decode("utf-8"),
|
{
|
||||||
"signature": self.sign(headerdata).decode("utf-8"),
|
"headerdata": base64.b64encode(headerdata.encode("utf-8")).decode("utf-8"),
|
||||||
"mastertoken": self.keys.mastertoken
|
"signature": self.sign(headerdata).decode("utf-8"),
|
||||||
})
|
"mastertoken": self.keys.mastertoken,
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
payload_chunks = [self.encrypt(json.dumps({
|
payload_chunks = [
|
||||||
"messageid": self.message_id,
|
self.encrypt(
|
||||||
"data": self.gzip_compress(json.dumps(application_data).encode("utf-8")).decode("utf-8"),
|
json.dumps(
|
||||||
"compressionalgo": "GZIP",
|
{
|
||||||
"sequencenumber": 1, # todo ; use sequence_number from master token instead?
|
"messageid": self.message_id,
|
||||||
"endofmsg": True
|
"data": self.gzip_compress(json.dumps(application_data).encode("utf-8")).decode("utf-8"),
|
||||||
}))]
|
"compressionalgo": "GZIP",
|
||||||
|
"sequencenumber": 1, # todo ; use sequence_number from master token instead?
|
||||||
|
"endofmsg": True,
|
||||||
|
}
|
||||||
|
)
|
||||||
|
)
|
||||||
|
]
|
||||||
|
|
||||||
message = header
|
message = header
|
||||||
for payload_chunk in payload_chunks:
|
for payload_chunk in payload_chunks:
|
||||||
message += json.dumps({
|
message += json.dumps(
|
||||||
"payload": base64.b64encode(payload_chunk.encode("utf-8")).decode("utf-8"),
|
{
|
||||||
"signature": self.sign(payload_chunk).decode("utf-8")
|
"payload": base64.b64encode(payload_chunk.encode("utf-8")).decode("utf-8"),
|
||||||
})
|
"signature": self.sign(payload_chunk).decode("utf-8"),
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
return message
|
return message
|
||||||
|
|
||||||
@@ -316,9 +346,7 @@ class MSL:
|
|||||||
payload_chunk = json.loads(base64.b64decode(payload_chunk["payload"]).decode("utf-8"))
|
payload_chunk = json.loads(base64.b64decode(payload_chunk["payload"]).decode("utf-8"))
|
||||||
# decrypt the payload
|
# decrypt the payload
|
||||||
payload_decrypted = AES.new(
|
payload_decrypted = AES.new(
|
||||||
key=self.keys.encryption,
|
key=self.keys.encryption, mode=AES.MODE_CBC, iv=base64.b64decode(payload_chunk["iv"])
|
||||||
mode=AES.MODE_CBC,
|
|
||||||
iv=base64.b64decode(payload_chunk["iv"])
|
|
||||||
).decrypt(base64.b64decode(payload_chunk["ciphertext"]))
|
).decrypt(base64.b64decode(payload_chunk["ciphertext"]))
|
||||||
payload_decrypted = Padding.unpad(payload_decrypted, 16)
|
payload_decrypted = Padding.unpad(payload_decrypted, 16)
|
||||||
payload_decrypted = json.loads(payload_decrypted.decode("utf-8"))
|
payload_decrypted = json.loads(payload_decrypted.decode("utf-8"))
|
||||||
@@ -335,9 +363,9 @@ class MSL:
|
|||||||
error_detail = re.sub(r" \(E3-[^)]+\)", "", error.get("detail", ""))
|
error_detail = re.sub(r" \(E3-[^)]+\)", "", error.get("detail", ""))
|
||||||
|
|
||||||
if error_display:
|
if error_display:
|
||||||
self.log.critical(f"- {error_display}")
|
self.log.critical(f"- {error_display}")
|
||||||
if error_detail:
|
if error_detail:
|
||||||
self.log.critical(f"- {error_detail}")
|
self.log.critical(f"- {error_detail}")
|
||||||
|
|
||||||
if not (error_display or error_detail):
|
if not (error_display or error_detail):
|
||||||
self.log.critical(f"- {error}")
|
self.log.critical(f"- {error}")
|
||||||
@@ -391,22 +419,19 @@ class MSL:
|
|||||||
:return: Serialized JSON String of the encryption Envelope
|
:return: Serialized JSON String of the encryption Envelope
|
||||||
"""
|
"""
|
||||||
iv = get_random_bytes(16)
|
iv = get_random_bytes(16)
|
||||||
return json.dumps({
|
return json.dumps(
|
||||||
"ciphertext": base64.b64encode(
|
{
|
||||||
AES.new(
|
"ciphertext": base64.b64encode(
|
||||||
self.keys.encryption,
|
AES.new(self.keys.encryption, AES.MODE_CBC, iv).encrypt(Padding.pad(plaintext.encode("utf-8"), 16))
|
||||||
AES.MODE_CBC,
|
).decode("utf-8"),
|
||||||
iv
|
"keyid": "{}_{}".format(
|
||||||
).encrypt(
|
self.sender,
|
||||||
Padding.pad(plaintext.encode("utf-8"), 16)
|
json.loads(base64.b64decode(self.keys.mastertoken["tokendata"]).decode("utf-8"))["sequencenumber"],
|
||||||
)
|
),
|
||||||
).decode("utf-8"),
|
"sha256": "AA==",
|
||||||
"keyid": "{}_{}".format(self.sender, json.loads(
|
"iv": base64.b64encode(iv).decode("utf-8"),
|
||||||
base64.b64decode(self.keys.mastertoken["tokendata"]).decode("utf-8")
|
}
|
||||||
)["sequencenumber"]),
|
)
|
||||||
"sha256": "AA==",
|
|
||||||
"iv": base64.b64encode(iv).decode("utf-8")
|
|
||||||
})
|
|
||||||
|
|
||||||
def sign(self, text):
|
def sign(self, text):
|
||||||
"""
|
"""
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -19,11 +19,13 @@ playready_kdekdh:
|
|||||||
esn_map:
|
esn_map:
|
||||||
# key map of CDM WVD `SystemID = 'ESN you want to use for that CDM WVD'`
|
# key map of CDM WVD `SystemID = 'ESN you want to use for that CDM WVD'`
|
||||||
8159: "NFANDROID1-PRV-P-GOOGLEPIXEL"
|
8159: "NFANDROID1-PRV-P-GOOGLEPIXEL"
|
||||||
8131: "HISETVK84500000000000000000000000007401422"
|
12603: "HISETVK84500000000000000000000000007401422"
|
||||||
|
22589: "NFANDROID1-PRV-P-SAMSUNG-SM-G975F-22589-RYFPGCV4K7QNZJFT5EK3YZ25TYOC1B1MSFEXR4L8JM99YOFXKZLFLOBTATE2AA2UJ"
|
||||||
22590: "NFANDROID1-PXA-P-L3-XIAOMM2102J20SG-22590-020NTB086HJPGG70MDDMR0306MR0NNO5G3DJGFCKS9HJF58ER9QA21VFG4I0246JRN6TF16L9I627EPK708SH42UUMG1ASFVG20F3"
|
22590: "NFANDROID1-PXA-P-L3-XIAOMM2102J20SG-22590-020NTB086HJPGG70MDDMR0306MR0NNO5G3DJGFCKS9HJF58ER9QA21VFG4I0246JRN6TF16L9I627EPK708SH42UUMG1ASFVG20F3"
|
||||||
12063: "NFANDROID1-PRV-P-SHENZHENKTC-49B1U-12063-2PAENERYJWY35H7F24163TMUCBBA4VRHQ2XZX4OBU4MUTKYFW50BMFBVGTUMN6IM0"
|
12063: "NFANDROID1-PRV-P-SHENZHENKTC-49B1U-12063-2PAENERYJWY35H7F24163TMUCBBA4VRHQ2XZX4OBU4MUTKYFW50BMFBVGTUMN6IM0"
|
||||||
7110: "NFANDROID1-PRV-P-MSD6886602GUHDANDROIDTV-HISENHISMARTTV-A4-7110-5EAE417AE3DB234B5FFC4EFC289A1B11D4475CC5949186C83F4C3D20FF203972"
|
7110: "NFANDROID1-PRV-P-MSD6886602GUHDANDROIDTV-HISENHISMARTTV-A4-7110-{randomchar_64}"
|
||||||
16401: "NFANDROID1-PRV-P-MSD6886602GUHDANDROIDTV-HISENHISMARTTV-A4-16401-FA2CF15C2E3A00BDDC3B6811C210893F0CD2C062471A62C2A0DD8C28BAE8DF42"
|
16401: "NFANDROID1-PRV-P-MSD6886602GUHDANDROIDTV-HISENHISMARTTV-A4-16401-FA2CF15C2E3A00BDDC3B6811C210893F0CD2C062471A62C2A0DD8C28BAE8DF42"
|
||||||
|
|
||||||
endpoints:
|
endpoints:
|
||||||
website: "https://www.netflix.com/nq/website/memberapi/{build_id}/pathEvaluator"
|
website: "https://www.netflix.com/nq/website/memberapi/{build_id}/pathEvaluator"
|
||||||
manifest: "https://www.netflix.com/msl/playapi/cadmium/licensedmanifest/1"
|
manifest: "https://www.netflix.com/msl/playapi/cadmium/licensedmanifest/1"
|
||||||
@@ -220,7 +222,7 @@ profiles:
|
|||||||
- "playready-oggvorbis-5-dash"
|
- "playready-oggvorbis-5-dash"
|
||||||
|
|
||||||
subtitles:
|
subtitles:
|
||||||
- "webvtt-lssdh-ios8"
|
# - "webvtt-lssdh-ios8"
|
||||||
# - "dfxp-ls-sdh"
|
- "dfxp-ls-sdh"
|
||||||
# - "imsc1.1"
|
# - "imsc1.1"
|
||||||
# - "simplesdh"
|
# - "simplesdh"
|
||||||
|
|||||||
@@ -36,61 +36,32 @@ title_cache_max_retention: 86400 # Maximum cache retention for fallback when API
|
|||||||
muxing:
|
muxing:
|
||||||
set_title: true
|
set_title: true
|
||||||
|
|
||||||
|
# Configuration for serve
|
||||||
|
serve:
|
||||||
|
api_secret: "kenzuya"
|
||||||
|
users:
|
||||||
|
secret_key_for_user:
|
||||||
|
devices:
|
||||||
|
- generic_nexus_4464_l3
|
||||||
|
username: user
|
||||||
|
|
||||||
# Login credentials for each Service
|
# Login credentials for each Service
|
||||||
credentials:
|
credentials:
|
||||||
# Direct credentials (no profile support)
|
|
||||||
EXAMPLE: email@example.com:password
|
|
||||||
|
|
||||||
# Per-profile credentials with default fallback
|
|
||||||
SERVICE_NAME:
|
|
||||||
default: default@email.com:password # Used when no -p/--profile is specified
|
|
||||||
profile1: user1@email.com:password1
|
|
||||||
profile2: user2@email.com:password2
|
|
||||||
|
|
||||||
# Per-profile credentials without default (requires -p/--profile)
|
|
||||||
SERVICE_NAME2:
|
|
||||||
john: john@example.com:johnspassword
|
|
||||||
jane: jane@example.com:janespassword
|
|
||||||
|
|
||||||
# You can also use list format for passwords with special characters
|
|
||||||
SERVICE_NAME3:
|
|
||||||
default: ["user@email.com", ":PasswordWith:Colons"]
|
|
||||||
|
|
||||||
Netflix:
|
Netflix:
|
||||||
default: ["ariel-prinsess828@ezweb.ne.jp", "AiNe892186"]
|
default: ["ariel-prinsess828@ezweb.ne.jp", "AiNe892186"]
|
||||||
|
secondary: ["csyc5478@naver.com", "wl107508!"]
|
||||||
|
third: ["erin.e.pfleger@gmail.com", "Pfleger93"]
|
||||||
# default: ["pbgarena0838@gmail.com", "Andhika1978"]
|
# default: ["pbgarena0838@gmail.com", "Andhika1978"]
|
||||||
# Override default directories used across unshackle
|
# Override default directories used across unshackle
|
||||||
directories:
|
directories:
|
||||||
cache: Cache
|
cache: Cache
|
||||||
# cookies: Cookies
|
|
||||||
dcsl: DCSL # Device Certificate Status List
|
dcsl: DCSL # Device Certificate Status List
|
||||||
downloads: /home/kenzuya/Mounts/ketuakenzuya/Downloads/
|
downloads: /mnt/ketuakenzuya/Downloads/
|
||||||
logs: Logs
|
logs: Logs
|
||||||
temp: Temp
|
temp: /tmp/unshackle
|
||||||
# wvds: WVDs
|
|
||||||
# Additional directories that can be configured:
|
|
||||||
# commands: Commands
|
|
||||||
# services:
|
|
||||||
# - /path/to/services
|
|
||||||
# - /other/path/to/services
|
|
||||||
# vaults: Vaults
|
|
||||||
# fonts: Fonts
|
|
||||||
|
|
||||||
# Pre-define which Widevine or PlayReady device to use for each Service
|
|
||||||
cdm:
|
cdm:
|
||||||
# Global default CDM device (fallback for all services/profiles)
|
default: chromecdm
|
||||||
default: lg_50ut73006la.cekukh_17.0.0_22163355_7110_l1
|
|
||||||
|
|
||||||
# Direct service-specific CDM
|
|
||||||
DIFFERENT_EXAMPLE: PRD_1
|
|
||||||
|
|
||||||
# Per-profile CDM configuration
|
|
||||||
EXAMPLE:
|
|
||||||
john_sd: chromecdm_903_l3 # Profile 'john_sd' uses Chrome CDM L3
|
|
||||||
jane_uhd: nexus_5_l1 # Profile 'jane_uhd' uses Nexus 5 L1
|
|
||||||
default: generic_android_l3 # Default CDM for this service
|
|
||||||
|
|
||||||
# Use pywidevine Serve-compliant Remote CDMs
|
|
||||||
remote_cdm:
|
remote_cdm:
|
||||||
- name: "chromecdm"
|
- name: "chromecdm"
|
||||||
device_name: widevine
|
device_name: widevine
|
||||||
@@ -99,7 +70,7 @@ remote_cdm:
|
|||||||
security_level: 3
|
security_level: 3
|
||||||
type: "decrypt_labs"
|
type: "decrypt_labs"
|
||||||
host: https://keyxtractor.decryptlabs.com
|
host: https://keyxtractor.decryptlabs.com
|
||||||
secret: 7547150416_41da0a32d6237d83_KeyXtractor_api_ext
|
secret: 919240143_41d9c3fac9a5f82e_KeyXtractor_ultimate
|
||||||
- name: "android"
|
- name: "android"
|
||||||
device_name: andorid
|
device_name: andorid
|
||||||
device_type: ANDROID
|
device_type: ANDROID
|
||||||
@@ -127,22 +98,7 @@ key_vaults:
|
|||||||
api_mode: "decrypt_labs"
|
api_mode: "decrypt_labs"
|
||||||
host: "https://keyvault.decryptlabs.com"
|
host: "https://keyvault.decryptlabs.com"
|
||||||
password: "7547150416_41da0a32d6237d83_KeyXtractor_api_ext"
|
password: "7547150416_41da0a32d6237d83_KeyXtractor_api_ext"
|
||||||
# Additional vault types:
|
|
||||||
# - type: API
|
|
||||||
# name: "Remote Vault"
|
|
||||||
# uri: "https://key-vault.example.com"
|
|
||||||
# token: "secret_token"
|
|
||||||
# no_push: true # This vault will only provide keys, not receive them
|
|
||||||
# - type: MySQL
|
|
||||||
# name: "MySQL Vault"
|
|
||||||
# host: "127.0.0.1"
|
|
||||||
# port: 3306
|
|
||||||
# database: vault
|
|
||||||
# username: user
|
|
||||||
# password: pass
|
|
||||||
# no_push: false # Default behavior - vault both provides and receives keys
|
|
||||||
|
|
||||||
# Choose what software to use to download data
|
|
||||||
downloader: aria2c
|
downloader: aria2c
|
||||||
# Options: requests | aria2c | curl_impersonate | n_m3u8dl_re
|
# Options: requests | aria2c | curl_impersonate | n_m3u8dl_re
|
||||||
# Can also be a mapping:
|
# Can also be a mapping:
|
||||||
@@ -199,26 +155,10 @@ filenames:
|
|||||||
# API key for The Movie Database (TMDB)
|
# API key for The Movie Database (TMDB)
|
||||||
tmdb_api_key: "8f5c14ef648a0abdd262cf809e11fcd4"
|
tmdb_api_key: "8f5c14ef648a0abdd262cf809e11fcd4"
|
||||||
|
|
||||||
# conversion_method:
|
|
||||||
# - auto (default): Smart routing - subby for WebVTT/SAMI, standard for others
|
|
||||||
# - subby: Always use subby with advanced processing
|
|
||||||
# - pycaption: Use only pycaption library (no SubtitleEdit, no subby)
|
|
||||||
# - subtitleedit: Prefer SubtitleEdit when available, fall back to pycaption
|
|
||||||
subtitle:
|
subtitle:
|
||||||
conversion_method: auto
|
conversion_method: auto
|
||||||
sdh_method: auto
|
sdh_method: auto
|
||||||
|
|
||||||
# Configuration for pywidevine's serve functionality
|
|
||||||
serve:
|
|
||||||
users:
|
|
||||||
secret_key_for_user:
|
|
||||||
devices:
|
|
||||||
- generic_nexus_4464_l3
|
|
||||||
username: user
|
|
||||||
# devices:
|
|
||||||
# - '/path/to/device.wvd'
|
|
||||||
|
|
||||||
# Configuration data for each Service
|
|
||||||
services:
|
services:
|
||||||
# Service-specific configuration goes here
|
# Service-specific configuration goes here
|
||||||
# Profile-specific configurations can be nested under service names
|
# Profile-specific configurations can be nested under service names
|
||||||
@@ -251,6 +191,21 @@ services:
|
|||||||
|
|
||||||
# External proxy provider services
|
# External proxy provider services
|
||||||
proxy_providers:
|
proxy_providers:
|
||||||
|
gluetun:
|
||||||
|
base_port: 8888
|
||||||
|
auto_cleanup: true
|
||||||
|
container_prefix: "unshackle-gluetun"
|
||||||
|
verify_ip: true
|
||||||
|
providers:
|
||||||
|
protonvpn:
|
||||||
|
vpn_type: "openvpn"
|
||||||
|
credentials:
|
||||||
|
username: "L83JaCnXKIviymQm"
|
||||||
|
password: "UewUDYdthTLLhOBJDympFFxJn4uG12BV"
|
||||||
|
server_countries:
|
||||||
|
us: United States
|
||||||
|
id: Indonesia
|
||||||
|
kr: Korea
|
||||||
basic:
|
basic:
|
||||||
SG:
|
SG:
|
||||||
- "http://127.0.0.1:6004"
|
- "http://127.0.0.1:6004"
|
||||||
|
|||||||
Reference in New Issue
Block a user