The original hell3.py for Firefox (Python only, no CDM)
An update of hell3 - allhell3.py to suit ALL browsers - Firefox, Chrome, Edge and more. (Python only, no CDM)
An updated Noobs Starter Pack that contains both versions and instructions for use. (With CDM)
A new Noobs Starter Pack that now contains a GUI as well as a normal script version and instructions for use. (With CDM)
What is it? A generic downloader for DRM protected media. It downloads everything.
Try StreamFab Downloader and download from Netflix, Amazon, Youtube! Or Try DVDFab and copy Blu-rays!
+ Reply to Thread
Results 1 to 30 of 132
Thread
-
Last edited by A_n_g_e_l_a; 13th Aug 2024 at 02:50.
Noob Starter Pack. Just download every Widevine mpd! Not kidding!.
https://files.videohelp.com/u/301890/hellyes6.zip -
thanks for your script (maybe wonderful) and sorry for my useless question, but from lic url i can copy as curl(bash) to curlconverter and i have:
import requests
headers = {
....
params = {
......
too much data, and script goes wrong. what exactly should paste to the cURL request?Last edited by whs912km; 2nd Jul 2024 at 03:05.
-
Last edited by A_n_g_e_l_a; 29th Jun 2024 at 08:23.
Noob Starter Pack. Just download every Widevine mpd! Not kidding!.
https://files.videohelp.com/u/301890/hellyes6.zip -
the regex don't find (for my link) mpd and/or lic url
so i've found mpd link and lic url with "mpd" and "lic"
by the way, after paste mpd link, copy lic url as curl(bash) (i have only this option, i'm window user, don't have curl only as your screen shot) and used CTRL+Z i have this error:
[Attachment 80301 - Click to enlarge]
but i have device.wvd on same folder with your script allhell3.py -
i have .wvd file on same folder with py script
Last edited by whs912km; 30th Jun 2024 at 07:37.
-
You are one hell of a confused bunny aren't you? As an analogy, its like trying to run a petrol engined car on diesel fuel.
Did you ever convert away from using WKS-KEYS to use the pywidevine module? If so why are you running this is the WKS-KEYS folder? It cannot work there!
Search for 'Beyond WKS-KEYS' in the forum and prepare your system to use pywidevine directly. Be especially careful about setting up a python env(vironment) exactly as detailed. The early steps you've probably done but point 7, here, leads directly to using the info in Beyond WKS-KEYS
Then download the Noobs Starter Pack and unzip. And try again. KEEP AWAY from WKS-KEYS; we've moved on from there. It can be anywhere BUT the WKS-KEYS folder.
Learn how to identify and paste a cURL. Make sure you follow the instructions in start.html and be sure to install the Terminal App from Microsoft store.
regexp: license|mpd only work in Firefox; other browsers need a single filter. As you have found.Last edited by A_n_g_e_l_a; 29th Jun 2024 at 13:17.
Noob Starter Pack. Just download every Widevine mpd! Not kidding!.
https://files.videohelp.com/u/301890/hellyes6.zip -
I've been trying to get this to work on a site called passes.com where all their images drm protected mpd played through bitmovin. I can't seem to get the correct curl for the license request. Can you give it a shot to see if it works at all?
https://www.passes.com/amukuba13/9eb75867-50e3-4bf9-9d2f-838540abd347 -
bitmovin license is https://cwip-shaka-proxy.appspot.com/no_auth and the thing they call a license is to catch people out.
Noob Starter Pack. Just download every Widevine mpd! Not kidding!.
https://files.videohelp.com/u/301890/hellyes6.zip -
Sorry @Angela but you are wrong. The licence url is :
Code:https://www.passes.com/api/content/drm/license-request?drm-type=widevine&drm-code=8fd9a7ea-73de-49bc-8b9e-ec1e73d325d3
Code:0cd20ffb3db4574d959adbf4f2caba86:ef7cb5ba2a223b5e9cea1f779a3649b6
[Attachment 80305 - Click to enlarge]
https://gofile.io/d/MvZrCL
I tried every media on this profil : https://www.passes.com/amukuba13, they are all encrypted with the same key.Last edited by aqzs; 29th Jun 2024 at 16:51.
-
-
-
https://www.passes.com/sicilyrose/3fd7eb5a-c10e-43be-b3fb-57ab67e41687
my whole dive into anti-drm has been to remove the watermark since the site simply overlays the watermark on the image instead of baking it in.
What process are you using to decrypt the mpd? -
Noob Starter Pack. Just download every Widevine mpd! Not kidding!.
https://files.videohelp.com/u/301890/hellyes6.zip -
[Attachment 80306 - Click to enlarge]
Same key. Open a new thread if you want to get more informations. -
Working on another site and have another issue.
https://app.sunroom.so/posts/03e575a2-816e-4130-81a5-7e75db94a5f8/02be45ea-2440-402c-a...5-6c16d7046878
[Attachment 80317 - Click to enlarge]
Using:
MPD:
Code:https://d2acjb97inqimx.cloudfront.net/4443f802-ba74-4d82-b35a-38cd1aa10c80/dash-web/media/manifest.mpd
Code:curl 'https://license.sunroom.so/widevine' \ -X 'POST' \ -H 'accept: */*' \ -H 'accept-language: en-US,en;q=0.9' \ -H 'content-length: 0' \ -H 'origin: https://app.sunroom.so' \ -H 'priority: u=1, i' \ -H 'referer: https://app.sunroom.so/' \ -H 'sec-ch-ua: "Not/A)Brand";v="8", "Chromium";v="126", "Google Chrome";v="126"' \ -H 'sec-ch-ua-mobile: ?0' \ -H 'sec-ch-ua-platform: "Windows"' \ -H 'sec-fetch-dest: empty' \ -H 'sec-fetch-mode: cors' \ -H 'sec-fetch-site: same-site' \ -H 'user-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36'
[Attachment 80318 - Click to enlarge] -
Missing 'http or https protocol' occurs when the paste of the license isn't a proper license curl. Also these license curls do not take favourably to being stored in a clipboard manager and being pasted more than once. Mine for instance adds extra \ (escape characters),, and if you try to use it in allhell3 , parsing will fail.
Be sure to use a fresh cURL captured from your browser each time.Noob Starter Pack. Just download every Widevine mpd! Not kidding!.
https://files.videohelp.com/u/301890/hellyes6.zip -
(See here : https://forum.videohelp.com/threads/410786-Trouble-finding-key-%28Or-maybe-licence-URL...everything-%29)
This url is to get customdata needed for license : https://license.sunroom.so/widevine
This url is the one for the widevine request : https://wv-keyos.licensekeyserver.com/
Here is the key :Code:0aedd074dd6a4cc39ee49b951f71f854:ee7c3eabf8ab4c5916490fceb80fa6ca
Last edited by aqzs; 30th Jun 2024 at 05:59. Reason: changed license url
-
i got error from this link (free to watch, no need login) https://mediasetinfinity.mediaset.it/video/cinaanticoregnonaturale/ep-2-cina-centrale-...12419001000201
copied lic url as curl(bash) [i'm win user with chromium browser based], then press CTRL+Z in cmd window and press ENTER with:
Code:curl 'https://widevine.entitlement.theplatform.eu/wv/web/ModularDrm/getRawWidevineLicense?releasePid=ErJLxtgMO4Vx&account=http%3A%2F%2Faccess.auth.theplatform.com%2Fdata%2FAccount%2F2702976343&schema=1.0&token=eyJhbGciOiJSUzUxMiJ9.eyJzdWIiOiJtZWRpYXNldC1wcm9kL21lZGlhc2V0LXByb2QvYW5vbnltb3VzIiwiaXNzIjoiMSIsImV4cCI6MTcxOTgwNzMxNSwiaWF0IjoxNzE5NzIwOTE1NjU4LCJqdGkiOiI1MzZmYWFmMi1iNTk2LTQ0MGYtYWNkZi1kZGQ1YzkwOGIxOGEiLCJkaWQiOiJtZWRpYXNldC1wcm9kIiwidW5tIjoiYW5vbnltb3VzIiwiY3R4Ijoie1widXNlck5hbWVcIiA6IFwibWVkaWFzZXQtcHJvZC9hbm9ueW1vdXNcIiwgXCJmYWxsYmFja1wiOiBcInRydWVcIixcInR5cGVcIjpcInVucmVnaXN0ZXJlZFwiLFwiYXR0cmlidXRlc1wiOnsgXCJhcHBOYW1lXCI6IFwid2ViXCIsIFwiaGFzaFwiOiBcIjIreU1TbGlwRjNHbFhyUXFDdUx4enYvQXlEVzh2cndUdE16YWFPMHo2TU09XCJ9fVxuIiwib2lkIjoiMjcwMjk3NjM0MyJ9.wTDVmXsxsKcXMIE0d47Cb2A3gTREg1AaeKVelhAU82JgRGhsJLV5OxMHa9hM2S3VOLZP0IhkRaHYOHgiNyA1dKJEGrOAROshnWzr_th5siM_c2F6m8p7OktkjCKn-FRrUK0-ydtr8TK1rYpQsEtuC3x4z3n78an3BY6v7936OqszExZKkWdvkcstNpdSoTc1MVCxNTeodvqCxSmlGzh1DTBFigjAn3UZOVwVGw6hzKbYT0vWcFpYZkdvG-SzWz_Eu1wa5R1WJpPZo1Jix1c2Vwn000xXNi1zfxPmjCytArtdlj51fwb60hLOqs5Js6_XGUU1b9JaKhPdbrD-yogIhg' \ -H 'authority: widevine.entitlement.theplatform.eu' \ -H 'accept: */*' \ -H 'accept-language: en-US,en;q=0.9,it-IT;q=0.8,it;q=0.7,ru;q=0.6,pt;q=0.5,es;q=0.4,nl;q=0.3,fr;q=0.2,ha;q=0.1,bg;q=0.1,am;q=0.1,hu;q=0.1,pl;q=0.1,zh-TW;q=0.1,zh;q=0.1,vi;q=0.1,sq;q=0.1' \ -H 'dnt: 1' \ -H 'origin: https://mediasetinfinity.mediaset.it' \ -H 'referer: https://mediasetinfinity.mediaset.it/' \ -H 'sec-ch-ua: "Chromium";v="109", "Not_A Brand";v="99"' \ -H 'sec-ch-ua-mobile: ?0' \ -H 'sec-ch-ua-platform: "Windows"' \ -H 'sec-fetch-dest: empty' \ -H 'sec-fetch-mode: cors' \ -H 'sec-fetch-site: cross-site' \ -H 'user-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36' \
[Attachment 80325 - Click to enlarge]
from the link above it's easy to find key with simply l3.py or also cdrm site or FoxRefire guesser, but i would like to understand the error aboveLast edited by whs912km; 2nd Jul 2024 at 03:07.
-
-
-
-
Noob Starter Pack. Just download every Widevine mpd! Not kidding!.
https://files.videohelp.com/u/301890/hellyes6.zip -
oh yes, i'm wrong, right. and sorry
now explain why this error ... only with allhell3.py
[Attachment 80332 - Click to enlarge]Last edited by whs912km; 2nd Jul 2024 at 03:08.
-
ok deleted pywidevine folder
pywidevine module already installed (yesterday). but same error
[Attachment 80336 - Click to enlarge]Last edited by whs912km; 2nd Jul 2024 at 03:08.
-
Hi, i am trying to get the keys for a movistar i've went ahead and dumped my android phone wvd, i made sure all the request looked exactly the same as the one the phone does to the app to get it, but the response is
{"status":"UNGRANTED_REQUEST","code":400,"errorCod e":4027,"message":"Invalid request"} -
-
[Attachment 80337 - Click to enlarge]
Understand that python.L3. is a WKS-KEYS path. Post #7 advises how to move from WKS-KEYS to pywidevine.
Your image (enlarged) shows the wrong path (WKS-KEYS). That was not in my original script have you made changes to the script? Otherwise I cannot imagine what you are up to.
I suggest you delete everything and start again.Noob Starter Pack. Just download every Widevine mpd! Not kidding!.
https://files.videohelp.com/u/301890/hellyes6.zip
Similar Threads
-
"From Hell to Texas (1958)-And Disney's Vault Hoarders from Hell
By dped91 in forum DVD RippingReplies: 5Last Post: 9th Jul 2023, 13:48 -
Having a hell of a time transfering VHS
By Inniss in forum CapturingReplies: 2Last Post: 28th Mar 2023, 19:18 -
Panasonic HC-x1500 loose battery trick
By realspeed in forum Newbie / General discussionsReplies: 0Last Post: 7th Jul 2022, 10:39 -
very Buggy if u loose password - back after 10 years
By melani in forum FeedbackReplies: 2Last Post: 25th Jan 2022, 21:56 -
USB-C Braided 10' Cord Loose And Doesn't Charge Tablet
By Tom Saurus in forum Off topicReplies: 5Last Post: 30th Dec 2020, 23:42