VideoHelp Forum




+ Reply to Thread
Results 1 to 6 of 6
  1. Member
    Join Date
    Aug 2023
    Location
    Turkey
    Search Comp PM
    the mpd link its thad

    https://director.streaming.telia.com/tvm-packager-prod/group3/613f17f514b809f854ec2c3d/manifest.mpd

    i find in the mpd cencssh

    AAAAaXBzc2gAAAAA7e+LqXnWSs6jyCfc1R0h7QAAAEkIARIQ5r kubwxpV9mKoNSiPYkIABoIY2FzdGxhYnMiIGV5SmhjM05sZEVs a0lqb2lNakF4TUY5a2NqRWlmUT09MgdkZWZhdWx0

    i think it was to long also i have to be make samthink with it and use

    https://tools.axinom.com/decoders/PsshBox

    and calculate with base64 and got

    CAESEOa5Lm8MaVfZiqDUoj2JCAAaCGNhc3RsYWJzIiBleUpoYz NObGRFbGtJam9pTWpBeE1GOWtjakVpZlE9PTIHZGVmYXVsdA==


    it thad coreckt ?

    becouse if i can confirm this i will be sure thad i not make a mistake here than i have to chack the header
    hope same one can confirm this
    Quote Quote  
  2. The PSSH you found in the mpd is correct

    your key:

    Code:
    e6b92e6f0c6957d98aa0d4a23d890800:e68568ca6147b0bb7b0fddc37061ddc6
    Quote Quote  
  3. Member
    Join Date
    Aug 2023
    Location
    Turkey
    Search Comp PM
    Originally Posted by cedric8528 View Post
    The PSSH you found in the mpd is correct

    your key:

    Code:
    e6b92e6f0c6957d98aa0d4a23d890800:e68568ca6147b0bb7b0fddc37061ddc6

    Thank you so much, you are wonderful
    Quote Quote  
  4. Member
    Join Date
    Aug 2023
    Location
    Turkey
    Search Comp PM
    i make the header correckt i think
    i copy the licans url post cmd bash and convert to python code

    if i try i got this error

    unable to parse license - check protobufs

    i try the hole day to found out what i make wrong...
    can any budy figuire out me pls


    ps: i was using protobuf 3.19.0
    than i change to 3.20.3

    license.ParseFromString(base64.b64decode(license_b 64))
    Traceback (most recent call last):
    File "l3_bunu_calistir.py", line 37, in <module>
    correct, keys = WV_Function(pssh, lic_url)
    File "l3_bunu_calistir.py", line 33, in WV_Function
    wvdecrypt.update_license(license_b64)
    File "/home/WKS-KEYS/decrypt/wvdecryptcustom.py", line 58, in update_license
    self.cdm.provide_license(self.session, license_b64)
    File "/home/WKS-KEYS/L3/cdm/cdm.py", line 275, in provide_license
    session.session_key = oaep_cipher.decrypt(license.SessionKey)
    File "/usr/local/lib/python3.7/dist-packages/Cryptodome/Cipher/PKCS1_OAEP.py", line 167, in decrypt
    raise ValueError("Ciphertext with incorrect length.")
    ValueError: Ciphertext with incorrect length.
    Quote Quote  
  5. Originally Posted by senkron24 View Post
    i make the header correckt i think
    i copy the licans url post cmd bash and convert to python code

    if i try i got this error

    unable to parse license - check protobufs

    i try the hole day to found out what i make wrong...
    can any budy figuire out me pls


    ps: i was using protobuf 3.19.0
    than i change to 3.20.3

    license.ParseFromString(base64.b64decode(license_b 64))
    Traceback (most recent call last):
    File "l3_bunu_calistir.py", line 37, in <module>
    correct, keys = WV_Function(pssh, lic_url)
    File "l3_bunu_calistir.py", line 33, in WV_Function
    wvdecrypt.update_license(license_b64)
    File "/home/WKS-KEYS/decrypt/wvdecryptcustom.py", line 58, in update_license
    self.cdm.provide_license(self.session, license_b64)
    File "/home/WKS-KEYS/L3/cdm/cdm.py", line 275, in provide_license
    session.session_key = oaep_cipher.decrypt(license.SessionKey)
    File "/usr/local/lib/python3.7/dist-packages/Cryptodome/Cipher/PKCS1_OAEP.py", line 167, in decrypt
    raise ValueError("Ciphertext with incorrect length.")
    ValueError: Ciphertext with incorrect length.

    i was have the same experience

    1st error like below
    due to my license url not correct

    license.ParseFromString(base64.b64decode(license_b 64))
    Traceback (most recent call last):
    File "l3_bunu_calistir.py", line 37, in <module>
    correct, keys = WV_Function(pssh, lic_url)
    File "l3_bunu_calistir.py", line 33, in WV_Function
    wvdecrypt.update_license(license_b64)
    File "/home/WKS-KEYS/decrypt/wvdecryptcustom.py", line 58, in update_license
    self.cdm.provide_license(self.session, license_b64)
    File "/home/WKS-KEYS/L3/cdm/cdm.py", line 275, in provide_license
    session.session_key = oaep_cipher.decrypt(license.SessionKey)
    File "/usr/local/lib/python3.7/dist-packages/Cryptodome/Cipher/PKCS1_OAEP.py", line 167, in decrypt
    raise ValueError("Ciphertext with incorrect length.")
    ValueError: Ciphertext with incorrect length.
    and then i edit my license url, this error come
    unable to parse license - check protobufs
    and then i edit my "headers.py"
    the script work perfectly
    Quote Quote  
  6. Member
    Join Date
    Aug 2023
    Location
    Turkey
    Search Comp PM
    Originally Posted by jckzz View Post
    Originally Posted by senkron24 View Post
    i make the header correckt i think
    i copy the licans url post cmd bash and convert to python code

    if i try i got this error

    unable to parse license - check protobufs

    i try the hole day to found out what i make wrong...
    can any budy figuire out me pls


    ps: i was using protobuf 3.19.0
    than i change to 3.20.3

    license.ParseFromString(base64.b64decode(license_b 64))
    Traceback (most recent call last):
    File "l3_bunu_calistir.py", line 37, in <module>
    correct, keys = WV_Function(pssh, lic_url)
    File "l3_bunu_calistir.py", line 33, in WV_Function
    wvdecrypt.update_license(license_b64)
    File "/home/WKS-KEYS/decrypt/wvdecryptcustom.py", line 58, in update_license
    self.cdm.provide_license(self.session, license_b64)
    File "/home/WKS-KEYS/L3/cdm/cdm.py", line 275, in provide_license
    session.session_key = oaep_cipher.decrypt(license.SessionKey)
    File "/usr/local/lib/python3.7/dist-packages/Cryptodome/Cipher/PKCS1_OAEP.py", line 167, in decrypt
    raise ValueError("Ciphertext with incorrect length.")
    ValueError: Ciphertext with incorrect length.

    i was have the same experience

    1st error like below
    due to my license url not correct

    license.ParseFromString(base64.b64decode(license_b 64))
    Traceback (most recent call last):
    File "l3_bunu_calistir.py", line 37, in <module>
    correct, keys = WV_Function(pssh, lic_url)
    File "l3_bunu_calistir.py", line 33, in WV_Function
    wvdecrypt.update_license(license_b64)
    File "/home/WKS-KEYS/decrypt/wvdecryptcustom.py", line 58, in update_license
    self.cdm.provide_license(self.session, license_b64)
    File "/home/WKS-KEYS/L3/cdm/cdm.py", line 275, in provide_license
    session.session_key = oaep_cipher.decrypt(license.SessionKey)
    File "/usr/local/lib/python3.7/dist-packages/Cryptodome/Cipher/PKCS1_OAEP.py", line 167, in decrypt
    raise ValueError("Ciphertext with incorrect length.")
    ValueError: Ciphertext with incorrect length.
    and then i edit my license url, this error come
    unable to parse license - check protobufs
    and then i edit my "headers.py"
    the script work perfectly
    yes exackt i figure out this problem its was teh header

    anyway big thanks for your answer ...
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!