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 26 of 66
FirstFirst ... 16 24 25 26 27 28 36 ... LastLast
Results 751 to 780 of 1969
  1. Originally Posted by neo81 View Post
    Code:
    E:\WKS-KEYS>pip install pycryptodome
    Requirement already satisfied: pycryptodome in c:\users\pc\appdata\local\programs\python\python310\lib\site-packages (3.12.0)
    
    E:\WKS-KEYS>pip install pycryptodomex
    Requirement already satisfied: pycryptodomex in c:\users\pc\appdata\local\programs\python\python310\lib\site-packages (3.12.0)
    
    E:\WKS-KEYS>py l3.py
    Traceback (most recent call last):
      File "E:\WKS-KEYS\l3.py", line 2, in <module>
        from pywidevine.L3.cdm import cdm, deviceconfig
      File "E:\WKS-KEYS\pywidevine\L3\cdm\cdm.py", line 15, in <module>
        from Cryptodome.Cipher import PKCS1_OAEP, AES
      File "C:\Users\PC\AppData\Local\Programs\Python\Python310\lib\site-packages\Cryptodome\Cipher\__init__.py", line 36, in <module>
        from Cryptodome.Cipher._mode_gcm import _create_gcm_cipher
      File "C:\Users\PC\AppData\Local\Programs\Python\Python310\lib\site-packages\Cryptodome\Cipher\_mode_gcm.py", line 51, in <module>
        from Cryptodome.Util import _cpu_features
      File "C:\Users\PC\AppData\Local\Programs\Python\Python310\lib\site-packages\Cryptodome\Util\_cpu_features.py", line 34, in <module>
        _raw_cpuid_lib = load_pycryptodome_raw_lib("Cryptodome.Util._cpuid_c",
      File "C:\Users\PC\AppData\Local\Programs\Python\Python310\lib\site-packages\Cryptodome\Util\_raw_api.py", line 309, in load_pycryptodome_raw_lib
        raise OSError("Cannot load native module '%s': %s" % (name, ", ".join(attempts)))
    OSError: Cannot load native module 'Cryptodome.Util._cpuid_c': Not found '_cpuid_c.cp310-win_amd64.pyd', Not found '_cpuid_c.pyd'
    run cmd as administrator

  2. To make sure everything work fine, run the test suite:

    > pip install pycryptodome-test-vectors
    > python -m Cryptodome.SelfTest

  3. Originally Posted by mister_ nex View Post
    To make sure everything work fine, run the test suite:

    > pip install pycryptodome-test-vectors
    > python -m Cryptodome.SelfTest
    Code:
    E:\WKS-KEYS>pip install pycryptodome-test-vectors
    Requirement already satisfied: pycryptodome-test-vectors in c:\users\pc\appdata\local\programs\python\python310\lib\site-packages (1.0.4)
    
    E:\WKS-KEYS>python -m Cryptodome.SelfTest
    Traceback (most recent call last):
      File "C:\Users\PC\AppData\Local\Programs\Python\Python310\lib\runpy.py", line 196, in _run_module_as_main
        return _run_code(code, main_globals, None,
      File "C:\Users\PC\AppData\Local\Programs\Python\Python310\lib\runpy.py", line 86, in _run_code
        exec(code, run_globals)
      File "C:\Users\PC\AppData\Local\Programs\Python\Python310\lib\site-packages\Cryptodome\SelfTest\__main__.py", line 38, in <module>
        SelfTest.run(stream=sys.stdout, verbosity=1, config=config)
      File "C:\Users\PC\AppData\Local\Programs\Python\Python310\lib\site-packages\Cryptodome\SelfTest\__init__.py", line 61, in run
        tests = get_tests(config=config)
      File "C:\Users\PC\AppData\Local\Programs\Python\Python310\lib\site-packages\Cryptodome\SelfTest\__init__.py", line 82, in get_tests
        from Cryptodome.SelfTest import Cipher; tests += Cipher.get_tests(config=config)
      File "C:\Users\PC\AppData\Local\Programs\Python\Python310\lib\site-packages\Cryptodome\SelfTest\Cipher\__init__.py", line 31, in get_tests
        from Cryptodome.SelfTest.Cipher import test_AES;      tests += test_AES.get_tests(config=config)
      File "C:\Users\PC\AppData\Local\Programs\Python\Python310\lib\site-packages\Cryptodome\SelfTest\Cipher\test_AES.py", line 31, in <module>
        from Cryptodome.Cipher import AES
      File "C:\Users\PC\AppData\Local\Programs\Python\Python310\lib\site-packages\Cryptodome\Cipher\__init__.py", line 36, in <module>
        from Cryptodome.Cipher._mode_gcm import _create_gcm_cipher
      File "C:\Users\PC\AppData\Local\Programs\Python\Python310\lib\site-packages\Cryptodome\Cipher\_mode_gcm.py", line 51, in <module>
        from Cryptodome.Util import _cpu_features
      File "C:\Users\PC\AppData\Local\Programs\Python\Python310\lib\site-packages\Cryptodome\Util\_cpu_features.py", line 34, in <module>
        _raw_cpuid_lib = load_pycryptodome_raw_lib("Cryptodome.Util._cpuid_c",
      File "C:\Users\PC\AppData\Local\Programs\Python\Python310\lib\site-packages\Cryptodome\Util\_raw_api.py", line 309, in load_pycryptodome_raw_lib
        raise OSError("Cannot load native module '%s': %s" % (name, ", ".join(attempts)))
    OSError: Cannot load native module 'Cryptodome.Util._cpuid_c': Not found '_cpuid_c.cp310-win_amd64.pyd', Not found '_cpuid_c.pyd'

  4. pip install -U pycryptodome
    pip install -U pycryptodomex

  5. Originally Posted by LZAA View Post
    pip install -U pycryptodome
    pip install -U pycryptodomex
    Code:
    E:\WKS-KEYS>pip install -U pycryptodome
    Requirement already satisfied: pycryptodome in c:\users\pc\appdata\local\programs\python\python310\lib\site-packages (3.12.0)
    
    E:\WKS-KEYS>pip install -U pycryptodomex
    Requirement already satisfied: pycryptodomex in c:\users\pc\appdata\local\programs\python\python310\lib\site-packages (3.12.0)

  6. similar problem OSError: Cannot load native module
    https://github.com/Legrandin/pycryptodome/issues/155

  7. Originally Posted by neo81 View Post
    Code:
    E:\WKS-KEYS>pip install -U pycryptodome
    Requirement already satisfied: pycryptodome in c:\users\pc\appdata\local\programs\python\python310\lib\site-packages (3.12.0)
    
    E:\WKS-KEYS>pip install -U pycryptodomex
    Requirement already satisfied: pycryptodomex in c:\users\pc\appdata\local\programs\python\python310\lib\site-packages (3.12.0)
    Can you actually locate the file via Windows explorer? In the error it's mentioned that it cannot be found.

    So, you are searching for
    Code:
    _cpuid_c.pyd
    it should be in
    Code:
    C:\Users\pc\AppData\Local\Programs\Python\Python310\Lib\site-packages\Crypto\Util\
    and in
    Code:
    C:\Users\pc\AppData\Local\Programs\Python\Python310\Lib\site-packages\Cryptodome\Util\
    It might be a Python 3.10 problem. So you can try 3.9.

  8. Originally Posted by [ss]vegeta View Post
    Originally Posted by neo81 View Post
    Code:
    E:\WKS-KEYS>pip install -U pycryptodome
    Requirement already satisfied: pycryptodome in c:\users\pc\appdata\local\programs\python\python310\lib\site-packages (3.12.0)
    
    E:\WKS-KEYS>pip install -U pycryptodomex
    Requirement already satisfied: pycryptodomex in c:\users\pc\appdata\local\programs\python\python310\lib\site-packages (3.12.0)
    Can you actually locate the file via Windows explorer? In the error it's mentioned that it cannot be found.

    So, you are searching for
    Code:
    _cpuid_c.pyd
    it should be in
    Code:
    C:\Users\pc\AppData\Local\Programs\Python\Python310\Lib\site-packages\Crypto\Util\
    and in
    Code:
    C:\Users\pc\AppData\Local\Programs\Python\Python310\Lib\site-packages\Cryptodome\Util\
    It might be a Python 3.10 problem. So you can try 3.9.
    ....Crypto\Util\ -----> Ok
    ....Cryptodome\Util\ is missing _cpuid_c.pyd file.

  9. Member
    Join Date
    Dec 2021
    Location
    colombo
    Search Comp PM
    when run wks keys script it shows key and close window instantly... i can't see key..
    what can i do for it....

    please help....
    thankyou

  10. I think I figured out the problem with wvdumper only dumping keyboxes (not to be confused with the problem of stuck at "hooks completed").
    I might help you. Message me via private message.
    Three prerequisites:
    • Android needs to be 7-9
    • Download the app "drm info" from play store and check if OEM Crypto is 13 or less
    • You have to know what's adb and some of its basic commands
    Last edited by [ss]vegeta; 23rd Dec 2021 at 17:08.

  11. @nimdinu you wrote
    when run wks keys script it shows key and close window instantly... i can't see key..
    Seriously? Well your eyes did capture the key because you said "it shows key"

    Maybe make a high speed screen capture of the display maybe 10000 frames per second and playback at normal speed.

    On second thought, why don't you study the script and fix the problem.

    Every one wants key, keys and more keys. No one wants to read, read and more read.

    Where is "I think, therefore I am a hamster" when you need him? I know his handle was not René or Descartes

  12. @[ss]vegeta

    I think I figured out the problem with wvdumper only dumping keyboxes (not to be confused with the problem of stuck at "hooks completed").
    I might help you. Message me via private message.
    Two prerequisites:
    Download the app "drm info" from play store and send screenshot of the "Widevine CDM" part
    You have to know what's adb and some of it's basic commands
    Are you serious? I know you like to help but ......

    I think you just bit off more that you can chew.

    You will be answering private messages from now till doomsday.

    Have fun

  13. Originally Posted by nimdinu View Post
    when run wks keys script it shows key and close window instantly... i can't see key..
    what can i do for it....

    please help....
    thankyou

    use output to file

  14. Originally Posted by nimdinu View Post
    when run wks keys script it shows key and close window instantly... i can't see key..
    what can i do for it....

    please help....
    thankyou
    Because you double click on it, you must not open it like that.
    Open a windows shell, go without the folder where is l3.py then run the command: python l3.py

  15. Originally Posted by [ss]vegeta View Post
    Originally Posted by neo81 View Post
    Code:
    E:\WKS-KEYS>pip install -U pycryptodome
    Requirement already satisfied: pycryptodome in c:\users\pc\appdata\local\programs\python\python310\lib\site-packages (3.12.0)
    
    E:\WKS-KEYS>pip install -U pycryptodomex
    Requirement already satisfied: pycryptodomex in c:\users\pc\appdata\local\programs\python\python310\lib\site-packages (3.12.0)
    Can you actually locate the file via Windows explorer? In the error it's mentioned that it cannot be found.

    So, you are searching for
    Code:
    _cpuid_c.pyd
    it should be in
    Code:
    C:\Users\pc\AppData\Local\Programs\Python\Python310\Lib\site-packages\Crypto\Util\
    and in
    Code:
    C:\Users\pc\AppData\Local\Programs\Python\Python310\Lib\site-packages\Cryptodome\Util\
    It might be a Python 3.10 problem. So you can try 3.9.
    Python v3.9.9 is already working.
    Thank you for your help.

  16. The widevine plugin just updated. Does anyone know more? What a cat-and-mouse game.

  17. Member
    Join Date
    Oct 2021
    Location
    Ontario
    Search Comp PM
    Finally, I found my old android device and I was unable to root it
    Now please anyone help me to do the rest process
    is there any guide for it.
    Please help me
    Thank you
    Last edited by nvidmantha; 26th Dec 2021 at 11:25.

  18. Originally Posted by nvidmantha View Post
    Finally, I found my old android device and I was able to root it
    Now please anyone help me to do the rest process
    is there any guide for it.
    Please help me
    Thank you
    I found that, to try : https://github.com/wvdumper/dumper

  19. Hi guys how to dump L1

  20. hi can someone help me after this poster nothing happens

    Image
    [Attachment 62433 - Click to enlarge]

  21. Originally Posted by romanok View Post
    hi can someone help me after this poster nothing happens

    Image
    [Attachment 62433 - Click to enlarge]
    now play any drm video in your phone

  22. Originally Posted by yassmine007 View Post
    Originally Posted by romanok View Post
    hi can someone help me after this poster nothing happens

    Image
    [Attachment 62433 - Click to enlarge]
    now play any drm video in your phone
    does it have to be with chrome or can it be because of the applications?

  23. Originally Posted by romanok View Post
    Originally Posted by yassmine007 View Post
    Originally Posted by romanok View Post
    hi can someone help me after this poster nothing happens

    Image
    [Attachment 62433 - Click to enlarge]
    now play any drm video in your phone
    does it have to be with chrome or can it be because of the applications?
    use app for exemple if netflix not work try another app like disney+ or hulu until you get the private key

  24. Originally Posted by yassmine007 View Post
    Originally Posted by romanok View Post
    Originally Posted by yassmine007 View Post
    Originally Posted by romanok View Post
    hi can someone help me after this poster nothing happens

    Image
    [Attachment 62433 - Click to enlarge]
    now play any drm video in your phone
    does it have to be with chrome or can it be because of the applications?
    use app for exemple if netflix not work try another app like disney+ or hulu until you get the private key
    thank you I will try my luck

  25. Originally Posted by romanok View Post
    does it have to be with chrome or can it be because of the applications?
    It can be both.
    From my experience, all popular apps will give the same blob and private key.
    However, playing from inside the Chrome browser on the phone will give you a different blob and private on different sites. Also different from the apps. Now think about that...

  26. Can you also give a hint what mobile device you can use? Samsung should be bad I read somewhere. What is easiest for a beginner?

  27. Originally Posted by [ss]vegeta View Post
    Originally Posted by romanok View Post
    does it have to be with chrome or can it be because of the applications?
    It can be both.
    From my experience, all popular apps will give the same blob and private key.
    However, playing from inside the Chrome browser on the phone will give you a different blob and private on different sites. Also different from the apps. Now think about that...
    unfortunately I can't play a drm video in chrome without being prompted to download the app.

  28. Do not send me DM's
    Join Date
    Dec 2021
    Location
    Tórshavn
    Search Comp PM
    Originally Posted by romanok View Post
    Originally Posted by [ss]vegeta View Post
    Originally Posted by romanok View Post
    does it have to be with chrome or can it be because of the applications?
    It can be both.
    From my experience, all popular apps will give the same blob and private key.
    However, playing from inside the Chrome browser on the phone will give you a different blob and private on different sites. Also different from the apps. Now think about that...
    unfortunately I can't play a drm video in chrome without being prompted to download the app.

    try desktop mode in chrome.

  29. Originally Posted by romanok View Post
    unfortunately I can't play a drm video in chrome without being prompted to download the app.
    Hulu lets you play directly in Chrome, Discovery+ didn't let me.
    You can also play in Chrome
    https://www.vdocipher.com/
    https://bitmovin.com/demos/drm
    Originally Posted by Quint View Post
    Can you also give a hint what mobile device you can use? Samsung should be bad I read somewhere. What is easiest for a beginner?
    Well I don't have much experience but I also read and experienced that Samsung is a bad choice.
    I succeeded on a Xiaomi Redmi Note 5 AI 2017.
    7-9 Android is best, OEM Crypto API should be 13 or less (this can be seen in app Drm info).
    Last edited by [ss]vegeta; 18th Dec 2021 at 16:40.

  30. Thanks! I definitely know nothing about (hate) mobile phones but will try.




Similar Threads

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