Hello
Has anyone managed to get the keys from player.pl using WKS?
From what I have seen, no tokoen is required.
If you do not want the way to be public, write to priv
Support our site by donate $5 directly to us Thanks!!!
Try StreamFab Downloader and download streaming video from Netflix, Amazon!
Try StreamFab Downloader and download streaming video from Netflix, Amazon!
+ Reply to Thread
Results 1 to 3 of 3
-
-
No headers needed, just PSSH and License url.
You can use this code instead of l3.py
Code:import base64, requests, sys, xmltodict from pywidevine.L3.cdm import cdm, deviceconfig from base64 import b64encode from pywidevine.L3.getPSSH import get_pssh from pywidevine.L3.decrypt.wvdecryptcustom import WvDecrypt pssh = input('\nPSSH: ') lic_url = input('License URL: ') headers = { } def WV_Function(pssh, lic_url, cert_b64=None): wvdecrypt = WvDecrypt(init_data_b64=pssh, cert_data_b64=cert_b64, device=deviceconfig.device_android_generic) widevine_license = requests.post(url=lic_url, data=wvdecrypt.get_challenge(), headers=headers) license_b64 = b64encode(widevine_license.content) wvdecrypt.update_license(license_b64) print(widevine_license.content) Correct, keyswvdecrypt = wvdecrypt.start_process() if Correct: return Correct, keyswvdecrypt correct, keys = WV_Function(pssh, lic_url) print() for key in keys: print('--key ' + key)
-
Indeed what vegeta says is correct, you can also get the KID from the .mpd and generate the correct psh with https://tools.axinom.com
Similar Threads
-
WKS-Canal +
By staszek1503 in forum Video Streaming DownloadingReplies: 1Last Post: 3rd Aug 2022, 16:20 -
need help with wks-keys
By ahmedani in forum Video Streaming DownloadingReplies: 1Last Post: 20th Jul 2022, 03:15 -
how to find wks-keys
By ahmedani in forum Video Streaming DownloadingReplies: 5Last Post: 12th Jul 2022, 13:56 -
Wks-keys
By Fjullekulle in forum Video Streaming DownloadingReplies: 10Last Post: 12th Jul 2022, 04:01 -
help wks-keys_v2
By ahmedani in forum Video Streaming DownloadingReplies: 3Last Post: 5th Jul 2022, 10:42