VideoHelp Forum



Support our site by donate $5 directly to us Thanks!!!

Try StreamFab Downloader and download streaming video from Netflix, Amazon!



Closed Thread
Page 29 of 66
FirstFirst ... 19 27 28 29 30 31 39 ... LastLast
Results 841 to 870 of 1969
  1. Originally Posted by [ss]vegeta View Post
    Originally Posted by T33V33 View Post
    I've been told Samsung's may be possible, but an edit may be needed to the script.js file somewhere
    I had to do that even on a non Samsung phone.
    If it's the edit with "gibberish" in the first line on the script, then I think that works only if you managed to at least get keyboxes. If you are stuck only on "hooks completed", and don't get any keyboxes, that edit I think doesn't work. Maybe there's another edit...
    Any chance you could PM the 'edit' to me. I managed to get mine past the hooks message and it now gives me key_boxes

  2. Member
    Join Date
    Dec 2021
    Location
    Thailand
    Search Comp PM
    Originally Posted by [ss]vegeta View Post
    Originally Posted by youfon55 View Post
    Can you help me out Regarding WVdumper i managed to got message "Hook complete" then i try to open DRM content [Disney+ Hotstar] but nothing happen after that .. How can i know if it dumped / complete ? where is the path of blob & private key after dumped

    Device: Samsung Galaxy J7 - Android 6.0.1
    As far as I know, you need 7-9 Android.
    Also Samsung I think it's not possible, I could be wrong.
    Anyway, you can know that something gets dumped if "weird" stuff starts happening after hooks completed.
    A folder will show up where your dumper is. It might contain keyboxes, it might contain private key...
    Thanks ... I flash to Android 7.0 and finally working i got the private key & blob so do i need to rename the file ?
    Image
    [Attachment 62473 - Click to enlarge]

  3. Originally Posted by youfon55 View Post
    Originally Posted by [ss]vegeta View Post
    Originally Posted by youfon55 View Post
    Can you help me out Regarding WVdumper i managed to got message "Hook complete" then i try to open DRM content [Disney+ Hotstar] but nothing happen after that .. How can i know if it dumped / complete ? where is the path of blob & private key after dumped

    Device: Samsung Galaxy J7 - Android 6.0.1
    As far as I know, you need 7-9 Android.
    Also Samsung I think it's not possible, I could be wrong.
    Anyway, you can know that something gets dumped if "weird" stuff starts happening after hooks completed.
    A folder will show up where your dumper is. It might contain keyboxes, it might contain private key...
    Thanks ... Finally i got the private key & blob so do i need to rename the file ?

    Image
    [Attachment 62472 - Click to enlarge]
    Yes they need renaming to the same as the two similar files in the previous CDM folder

  4. Originally Posted by kenyard View Post
    Originally Posted by neo_rld View Post
    Originally Posted by kenyard View Post
    Originally Posted by neo_rld View Post
    Hi, I'm new in this topic, I want download some udemy courses, so I have found this project here https://github.com/Puyodead1/udemy-downloader

    In the istructions is written that it's necessary aquire the key and key ID and in the image above it's written widevine decryptor. Now, how can I do to find these keys?

    In this topic it's also talked about mpd and PSSH, what are ?

    Hope that somebody help me
    decryptor is dead unless someone figures out another cdm but even if they do i doubt it would be made public due to recently it took maybe 3 weeks before the entire cdm was revoked.
    so it's impossible download the courses?
    no im saying the method you mentioned is dead.
    info for current methods are posted here but over many posts.
    also since what you are asking is very specific if there is anything different it could take a long time to figure it out.
    i spent 3hr today making All4 work and that is after I have spent probably 30hr on understanding things in the first place.
    (and have small bit of experience in updating and tweaking scripts previously)
    edit: lol i got key with pssh but now dont have mpd xd
    from where I have to start ?

    nobody here download from udemy platform?

  5. jangofettbr
    Guest
    I got the dumped files from Samsung Galaxy S6 Edge, running the netflix app.

  6. Originally Posted by [ss]vegeta View Post
    Originally Posted by T33V33 View Post
    I've been told Samsung's may be possible, but an edit may be needed to the script.js file somewhere
    I had to do that even on a non Samsung phone.
    If it's the edit with "gibberish" in the first line on the script, then I think that works only if you managed to at least get keyboxes. If you are stuck only on "hooks completed", and don't get any keyboxes, that edit I think doesn't work. Maybe there's another edit...
    I have a moto g3 with android 6.0, do you think it works?

  7. I make some modified to l3.py in WKS-Keys to make easier for you all. Make sure you already backup l3.py

    1. make output file (txt file) so the result will not gone. This output file in the same folder with l3.py
    Just copy and paste to the most bottom in l3.py (starting line 31 from original l3.py using Notepad++)
    Code:
    f=open("output.txt","a+")
    f.write('PSSH = ' + pssh + "\n")
    f.write('License URL = '+ lic_url + "\n")
    f.write('--KID:KEY '+ key + "\n\n")
    2. Make a loop, so you don't need always typing l3.py in cmd
    Just copy and paste in l3.py starting line 7 to 9, line 10 enter (blank), so import base64 etc start from line 11 (the line number base from original l3.py)
    Code:
    #Infinite loop
    abc=0
    while abc <= 10:
    Make sure you tab all line under this code

    3. If you have work long time for 1 website, maybe you notice that have a static PSSH or a static license url. So in order not always input them, we can make some modified =
    in line 14 (the line number base from original l3.py):
    Code:
    pssh = input('\nPSSH: ')
    change to be
    pssh = 'ABCDEF'
    ABCDEF is the static PSSH, so you will not asked anymore to input the PSSH (it will bypass to input PSSH)

    The same rule work for License URL, in the line 15 (the line number base from original l3.py):
    Code:
    lic_url = input('License URL: ')
    change to be
    lic_url = 'GHIJKL'
    where GHIJKL is static License URL, so you will not asked anymore to input License URL.

    What if part License URL is static and other part is variable (always change)??
    Example = http://abc.com/123456
    where 'http://abc.com/' is always static (same) and 123456 always changed (variable)
    Code:
    lic_url = input('License URL: ')
    change to be
    lic_url = 'https://abc.com/'+input('Content ID: ')
    It will asked to input Content ID: (the variable), so you don't need to copy and paste the whole License URL anymore.

    This is a combination =
    Example = http://abc.com/123456/defgh789
    where 'http://abc.com/' & '/defgh789 is always static (same) and 123456 always changed
    Code:
    lic_url = input('License URL: ')
    change to be
    lic_url = 'https://abc.com/'+input('Content ID: ')+'/defgh789'
    It will asked to input Content ID: (the variable), so you don't need to copy and paste the whole License URL anymore.

    OK, gut luck to try
    Last edited by liongtwap; 21st Dec 2021 at 09:05.

  8. Originally Posted by raylink View Post
    Originally Posted by [ss]vegeta View Post
    Originally Posted by T33V33 View Post
    I've been told Samsung's may be possible, but an edit may be needed to the script.js file somewhere
    I had to do that even on a non Samsung phone.
    If it's the edit with "gibberish" in the first line on the script, then I think that works only if you managed to at least get keyboxes. If you are stuck only on "hooks completed", and don't get any keyboxes, that edit I think doesn't work. Maybe there's another edit...
    I have a moto g3 with android 6.0, do you think it works?
    No, Android 6 probably won't work. Maybe try upgrading to a7 with a custom rom?

  9. Originally Posted by neo_rld View Post
    Hi, I'm new in this topic, I want download some udemy courses, so I have found this project here https://github.com/Puyodead1/udemy-downloader

    In the istructions is written that it's necessary aquire the key and key ID and in the image above it's written widevine decryptor. Now, how can I do to find these keys?

    In this topic it's also talked about mpd and PSSH, what are ?

    Hope that somebody help me
    nobody can help me?

  10. Member
    Join Date
    Dec 2021
    Location
    Canada
    Search Comp PM
    Originally Posted by youfon55 View Post
    Originally Posted by [ss]vegeta View Post
    Originally Posted by youfon55 View Post
    Can you help me out Regarding WVdumper i managed to got message "Hook complete" then i try to open DRM content [Disney+ Hotstar] but nothing happen after that .. How can i know if it dumped / complete ? where is the path of blob & private key after dumped

    Device: Samsung Galaxy J7 - Android 6.0.1
    As far as I know, you need 7-9 Android.
    Also Samsung I think it's not possible, I could be wrong.
    Anyway, you can know that something gets dumped if "weird" stuff starts happening after hooks completed.
    A folder will show up where your dumper is. It might contain keyboxes, it might contain private key...
    Thanks ... I flash to Android 7.0 and finally working i got the private key & blob so do i need to rename the file ?
    Image
    [Attachment 62473 - Click to enlarge]
    What phone model is it?

  11. Member
    Join Date
    Dec 2021
    Location
    Canada
    Search Comp PM
    Originally Posted by neo_rld View Post
    Originally Posted by neo_rld View Post
    Hi, I'm new in this topic, I want download some udemy courses, so I have found this project here https://github.com/Puyodead1/udemy-downloader

    In the istructions is written that it's necessary aquire the key and key ID and in the image above it's written widevine decryptor. Now, how can I do to find these keys?

    In this topic it's also talked about mpd and PSSH, what are ?

    Hope that somebody help me
    nobody can help me?
    Someone posted video teaching on the post.

  12. Originally Posted by 0xff View Post
    Originally Posted by youfon55 View Post
    Originally Posted by [ss]vegeta View Post
    Originally Posted by youfon55 View Post
    Can you help me out Regarding WVdumper i managed to got message "Hook complete" then i try to open DRM content [Disney+ Hotstar] but nothing happen after that .. How can i know if it dumped / complete ? where is the path of blob & private key after dumped

    Device: Samsung Galaxy J7 - Android 6.0.1
    As far as I know, you need 7-9 Android.
    Also Samsung I think it's not possible, I could be wrong.
    Anyway, you can know that something gets dumped if "weird" stuff starts happening after hooks completed.
    A folder will show up where your dumper is. It might contain keyboxes, it might contain private key...
    Thanks ... I flash to Android 7.0 and finally working i got the private key & blob so do i need to rename the file ?
    Image
    [Attachment 62473 - Click to enlarge]
    What phone model is it?
    It said in their previous post... Samsung Galaxy J7

  13. Member
    Join Date
    Dec 2021
    Location
    Canada
    Search Comp PM
    Originally Posted by T33V33 View Post
    Originally Posted by 0xff View Post
    Originally Posted by youfon55 View Post
    Originally Posted by [ss]vegeta View Post
    Originally Posted by youfon55 View Post
    Can you help me out Regarding WVdumper i managed to got message "Hook complete" then i try to open DRM content [Disney+ Hotstar] but nothing happen after that .. How can i know if it dumped / complete ? where is the path of blob & private key after dumped

    Device: Samsung Galaxy J7 - Android 6.0.1
    As far as I know, you need 7-9 Android.
    Also Samsung I think it's not possible, I could be wrong.
    Anyway, you can know that something gets dumped if "weird" stuff starts happening after hooks completed.
    A folder will show up where your dumper is. It might contain keyboxes, it might contain private key...
    Thanks ... I flash to Android 7.0 and finally working i got the private key & blob so do i need to rename the file ?
    Image
    [Attachment 62473 - Click to enlarge]
    What phone model is it?
    It said in their previous post... Samsung Galaxy J7
    lol, I didn’t see it, thanks for reminding

  14. Member
    Join Date
    Dec 2021
    Location
    Spain
    Search Comp PM
    Originally Posted by T33V33 View Post
    Originally Posted by 0xff View Post
    Originally Posted by youfon55 View Post
    Originally Posted by [ss]vegeta View Post
    Originally Posted by youfon55 View Post
    Can you help me out Regarding WVdumper i managed to got message "Hook complete" then i try to open DRM content [Disney+ Hotstar] but nothing happen after that .. How can i know if it dumped / complete ? where is the path of blob & private key after dumped

    Device: Samsung Galaxy J7 - Android 6.0.1
    As far as I know, you need 7-9 Android.
    Also Samsung I think it's not possible, I could be wrong.
    Anyway, you can know that something gets dumped if "weird" stuff starts happening after hooks completed.
    A folder will show up where your dumper is. It might contain keyboxes, it might contain private key...
    Thanks ... I flash to Android 7.0 and finally working i got the private key & blob so do i need to rename the file ?
    Image
    [Attachment 62473 - Click to enlarge]
    What phone model is it?
    It said in their previous post... Samsung Galaxy J7
    Yeah just remove the extension on files and replace those 2 files in which app you use

  15. Originally Posted by 0xff View Post
    Originally Posted by neo_rld View Post
    Originally Posted by neo_rld View Post
    Hi, I'm new in this topic, I want download some udemy courses, so I have found this project here https://github.com/Puyodead1/udemy-downloader

    In the istructions is written that it's necessary aquire the key and key ID and in the image above it's written widevine decryptor. Now, how can I do to find these keys?

    In this topic it's also talked about mpd and PSSH, what are ?

    Hope that somebody help me
    nobody can help me?
    Someone posted video teaching on the post.
    link?

  16. @everybody

    please don't quote always the whole message ... select the text that you want to quote

    or simply (better) use Reply to Thread to left side below the post to reply to

  17. Originally Posted by lomero View Post
    please don't quote always the whole message ...
    Like this ^ ^

    Agree, so annoying, unnecessary and makes reading through such a chore, that it makes helping very hard work or not to help at all.

    Well said lomero
    Last edited by codehound; 21st Dec 2021 at 12:11.

  18. Guys, Why notaghost website down?

  19. Originally Posted by KoKloss View Post
    Guys, Why notaghost website down?
    because they took it down

  20. because they took it down[/QUOTE]

    So is there any method to get keys from vdocipher??
    I need one because I want to download educational videos!!

  21. Originally Posted by [ss]vegeta View Post
    Originally Posted by T33V33 View Post
    I've been told Samsung's may be possible, but an edit may be needed to the script.js file somewhere
    I had to do that even on a non Samsung phone.
    If it's the edit with "gibberish" in the first line on the script, then I think that works only if you managed to at least get keyboxes. If you are stuck only on "hooks completed", and don't get any keyboxes, that edit I think doesn't work. Maybe there's another edit...
    Does it matter what “gibberish” is entered into line 1 or can it be anything random and it’ll still work?

  22. jangofettbr
    Guest
    Originally Posted by cyberspirit777 View Post
    Does it matter what “gibberish” is entered into line 1 or can it be anything random and it’ll still work?
    I dont changed anything and still worked.

    Someone have to decode the peacocktv data request please, it sends a data in unicode

  23. Originally Posted by cyberspirit777 View Post
    Does it matter what “gibberish” is entered into line 1 or can it be anything random and it’ll still work?
    Of course it matters.
    Originally Posted by jangofettbr View Post
    I dont changed anything and still worked.
    Yes, sometimes it can work by default. But many models/versions require editing.

  24. Originally Posted by [ss]vegeta View Post
    Of course it matters.

    Yes, sometimes it can work by default. But many models/versions require editing.
    can you help me?

  25. Originally Posted by [ss]vegeta View Post
    Originally Posted by cyberspirit777 View Post
    Does it matter what “gibberish” is entered into line 1 or can it be anything random and it’ll still work?
    Of course it matters.
    Originally Posted by jangofettbr View Post
    I dont changed anything and still worked.
    Yes, sometimes it can work by default. But many models/versions require editing.
    Is it information that’s pulled from the DRM info app?
    If not, could you point me in the direction of what data needs to be added to the script for it to work?

  26. Originally Posted by neo_rld View Post
    can you help me?
    Maybe.
    Originally Posted by cyberspirit777 View Post
    Is it information that’s pulled from the DRM info app?
    No.

  27. Hello guys, is there any script that work with vdocipher.com ?of cours i will extract my own CDM
    thank you for your help

  28. Originally Posted by [ss]vegeta View Post
    Maybe.
    No.
    I want download udemy courses but I don't know from where to start...

  29. Deleted
    Last edited by cyberspirit777; 21st Dec 2021 at 18:22.

  30. Originally Posted by [ss]vegeta View Post
    Maybe.
    what does it mean the private message that you have send me?




Similar Threads

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