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
		
			+ 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
 
 Eme logger gives the long PSSH which I decode to file using base64.guru site, then I copy the hex starting from the 3 sets of zeroes that match the last mention of pssh, then I use that hex to convert to base64 to get the correct PSSH.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, 17:20
- 
  need help with wks-keysBy ahmedani in forum Video Streaming DownloadingReplies: 1Last Post: 20th Jul 2022, 04:15
- 
  how to find wks-keysBy ahmedani in forum Video Streaming DownloadingReplies: 5Last Post: 12th Jul 2022, 14:56
- 
  Wks-keysBy Fjullekulle in forum Video Streaming DownloadingReplies: 10Last Post: 12th Jul 2022, 05:01
- 
  help wks-keys_v2By ahmedani in forum Video Streaming DownloadingReplies: 3Last Post: 5th Jul 2022, 11:42


 
		
		 View Profile
				View Profile
			 View Forum Posts
				View Forum Posts
			 Private Message
				Private Message
			 
 
			
			
 Quote
 Quote![[ss]vegeta's Avatar](customavatars/avatar177118_5.gif) 
			