hello guys i'm trying to decrypt but i can't get results
this changes every 20 seconds
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 30 of 34
-
Last edited by aletaladro; 4th Oct 2024 at 11:24.
-
We cant help you there without video URL, only free streaming site not subscription services otherwise mod will closed this thread
-
extract right pssh
Code:AAAAYXBzc2gAAAAA7e+LqXnWSs6jyCfc1R0h7QAAAEEIARIQRy1f5fauQGO8nL0jdwdliRoFQ29uYXgiJGE5Y2I4OWYwLWE2ODEtNDJhMC04OGRjLWYzNjIyNGFhZTI4MA==
-
The problem continues
[Attachment 81103 - Click to enlarge] -
Why are people still messing around with pssh?
Mpd and license cURL is the way to go! Use the kit in my sig.Last edited by A_n_g_e_l_a; 1st Aug 2024 at 03:25.
Noob Starter Pack. Just download every Widevine mpd! Not kidding!.
https://files.videohelp.com/u/301890/hellyes6.zip -
same happened to me couple weeks ago
Code:contentId: 39d2c8b5-e373-4104-a629-22a2ffb2ce58 programId: 39f4ad91-d0ed-3cd4-afee-c6ccccf3033c MPD URL: https://cdn.trimi.com.ar/live/sm-live/NET_TV/sa_live_dash/NET_TV.mpd?begin=2024-08-01T11:00:00Z Extracting PSSH from MPD... Extracting PSSHs from init file: init.m4f init.m4f file successfully deleted. PSSH: AAAAYXBzc2gAAAAA7e+LqXnWSs6jyCfc1R0h7QAAAEEIARIQ2SzxmMPSQ8+2PZpCn90QGhoFQ29uYXgiJDQ3YTk1MzU5LWQ5YjMtNDUwZS1iMzNiLTYxYjYyNTU4NWU2MQ== Failed to fetch keys: 400 Client Error: Bad Request for url: https://telered-prod.us-west-1.conax.cloud/widevine/license
Code:pssh = PSSH(pssh) device = Device.load(extracted_device) cdm = Cdm.from_device(device) session_id = cdm.open() challenge = cdm.get_license_challenge(session_id, pssh) license_response = requests.post( license_url, data=challenge, headers={ 'preauthorization': pre_auth, 'user-agent': user_agent, 'connection': 'Keep-Alive', 'content-type': 'application/octet-stream', } ) license_response.raise_for_status() license = license_response.content cdm.parse_license(session_id, license)
Last edited by z1269925944; 1st Aug 2024 at 06:34.
-
-
Code:
License response content: {"status":"UNGRANTED_REQUEST","code":400,"errorCode":1001,"message":"Invalid request"} Failed to fetch keys: 400 Client Error: Bad Request for url: https://telered-prod.us-west-1.conax.cloud/widevine/license
Last edited by z1269925944; 1st Aug 2024 at 08:06.
-
Stop messing about and use this https://forum.videohelp.com/threads/407216-Decryption-The-Dungeon-of-Despair#post2669285
Noob Starter Pack. Just download every Widevine mpd! Not kidding!.
https://files.videohelp.com/u/301890/hellyes6.zip -
-
Just look at the Error Code in the Nagra Docs. Error code 1001 for example clearly states that your request is malformed.
Bypass HMACs, One-time-tokens and Lic.Wrapping: https://github.com/DevLARLEY/WidevineProxy2 -
Of course it works. if it plays in the browser then my script will get it as it sends exactly what the browser sends apart from CDM data
There are three provisions otherwise:-- The token is one-time use only - this can be over come by blocking the request, in developer tools, from being sent so your use will be the first.
- the token times out very quickly - depends how quickly it expires whether you can get it by hand or not
- The mpd is re-written by javascript straight after a browser request - again a request block may help
Noob Starter Pack. Just download every Widevine mpd! Not kidding!.
https://files.videohelp.com/u/301890/hellyes6.zip -
Try WidevineFetch (in my signature)
Its thread is located hereBypass HMACs, One-time-tokens and Lic.Wrapping: https://github.com/DevLARLEY/WidevineProxy2 -
Noob Starter Pack. Just download every Widevine mpd! Not kidding!.
https://files.videohelp.com/u/301890/hellyes6.zip -
Hell, yes, it should work with your tool as well. Maybe using a GUI makes it easier for some people, who knows...
Nice tool btw, @larleyLast edited by Obo; 2nd Aug 2024 at 03:38.
-
Noob Starter Pack. Just download every Widevine mpd! Not kidding!.
https://files.videohelp.com/u/301890/hellyes6.zip -
Why would I need to utilize that function if all I need is the License URL (and the corresponding headers/body)?
Bypass HMACs, One-time-tokens and Lic.Wrapping: https://github.com/DevLARLEY/WidevineProxy2 -
Noob Starter Pack. Just download every Widevine mpd! Not kidding!.
https://files.videohelp.com/u/301890/hellyes6.zip -
Bypass HMACs, One-time-tokens and Lic.Wrapping: https://github.com/DevLARLEY/WidevineProxy2
-
Great! You did understand first off. I thought it strange you seemed not to. Playing a boys game I guess?
No contradiction; just a level of difficulty to surmount. We know the method is always going to be POST - so that reduces the field dramatically; then looking for the keywords we know are used in license requests will probably find most. And since the url of the segments is there looking for pssh in the segment0 would be a good way to get pssh. So fetch-all could provide mpd, pssh, license; then downloading is a given.Last edited by A_n_g_e_l_a; 2nd Aug 2024 at 05:33.
Noob Starter Pack. Just download every Widevine mpd! Not kidding!.
https://files.videohelp.com/u/301890/hellyes6.zip -
You were the one who didn't get the point of the program, so I asked why you were trying to retrieve other parameters too. But even after asking a second time you still didn't get the point.
I'll explain it, just for you (because I'm a kind person):
The program's "slogan" is built around the idea of retrieving keys from just one request/click in your dev tools. It's supposed to make life easier. Adding more features (like what you suggested) doesn't make it easier.
Another reason why I didn't implement it is because I didn't want my program to become your 'allhell2' script (a so-called favor).
Anyways, I've already created what you were thinking of with the all-in-one solution, it's just not released yet.Bypass HMACs, One-time-tokens and Lic.Wrapping: https://github.com/DevLARLEY/WidevineProxy2 -
Noob Starter Pack. Just download every Widevine mpd! Not kidding!.
https://files.videohelp.com/u/301890/hellyes6.zip -
Bypass HMACs, One-time-tokens and Lic.Wrapping: https://github.com/DevLARLEY/WidevineProxy2
-
I think I find a solution here is your key
Code:PSSH: AAAAYXBzc2gAAAAA7e+LqXnWSs6jyCfc1R0h7QAAAEEIARIQ2SzxmMPSQ8+2PZpCn90QGhoFQ29uYXgiJDQ3YTk1MzU5LWQ5YjMtNDUwZS1iMzNiLTYxYjYyNTU4NWU2MQ== License URL: https://telered-prod.us-west-1.conax.cloud/widevine/license key: --key d92cf198c3d243cfb63d9a429fdd101a:7da52e8aa3f95fb00d09db0b2dc6c4b8
[Attachment 81347 - Click to enlarge] -
[QUOTE=z1269925944;2746104]I think I find a solution here is your key
Code:PSSH: AAAAYXBzc2gAAAAA7e+LqXnWSs6jyCfc1R0h7QAAAEEIARIQ2SzxmMPSQ82MQ==
thanks!Last edited by aletaladro; 4th Oct 2024 at 11:26.
Similar Threads
-
edit old l3.py for new pywidevine
By whs912km in forum Video Streaming DownloadingReplies: 12Last Post: 28th Jul 2024, 12:16 -
pywidevine key
By aletaladro in forum Video Streaming DownloadingReplies: 6Last Post: 16th Jul 2024, 16:44 -
My Pywidevine API Server
By ninjajiraiya in forum Video Streaming DownloadingReplies: 24Last Post: 27th Mar 2024, 02:53 -
help with pywidevine
By killua in forum Video Streaming DownloadingReplies: 1Last Post: 12th Jul 2023, 01:56 -
No Module Named pywidevine.l3
By myemailjobayer in forum Video Streaming DownloadingReplies: 3Last Post: 23rd Jun 2023, 16:09