VideoHelp Forum
+ Reply to Thread
Page 3 of 4
FirstFirst 1 2 3 4 LastLast
Results 61 to 90 of 91
Thread
  1. Feels Good Man 2nHxWW6GkN1l916N3ayz8HQoi's Avatar
    Join Date
    Jan 2024
    Location
    Pepe Island
    Search Comp PM
    Originally Posted by grzech67 View Post
    what command to use to use this new option ??
    As I said in the first post:
    In the eventual case that you don't know how to use a specific service, just Ctrl+F search for your site and look at the example commands.
    Just search the site that you want and you'll see all the relevant information in the first post (at the use cases section). It gets updated after each version since I don't want to spread the information on many separate posts.
    --[----->+<]>.++++++++++++.---.--------.
    [*drm mass downloader: widefrog*]~~~[*how to make your own mass downloader: guide*]
    Quote Quote  
  2. Feels Good Man 2nHxWW6GkN1l916N3ayz8HQoi's Avatar
    Join Date
    Jan 2024
    Location
    Pepe Island
    Search Comp PM
    v1.13.0: +shahid.mbc.net

    Minor changes:
    => extended the eurovisionsport.com service, you can download entire competitions that take place across multiple days
    --[----->+<]>.++++++++++++.---.--------.
    [*drm mass downloader: widefrog*]~~~[*how to make your own mass downloader: guide*]
    Quote Quote  
  3. Member aqzs's Avatar
    Join Date
    Mar 2024
    Location
    Paris
    Search Comp PM
    Hey !
    HTML Code:
    def generate_auth(auth_params):
        return binascii.hexlify(hmac.new(
            shahid_mbc_net.SITE_INFO["SECRET_KEY"].encode('utf-8'),
            ";".join(
                f"{k}={auth_params[k]}"
                for k in sorted(auth_params.keys())
            ).encode('utf-8'),
            hashlib.sha256
        ).digest()).decode('utf-8')
    That's the part I was looking for ! Thanks ! And as always, great job for reversing that website !
    Quote Quote  
  4. Feels Good Man 2nHxWW6GkN1l916N3ayz8HQoi's Avatar
    Join Date
    Jan 2024
    Location
    Pepe Island
    Search Comp PM
    Originally Posted by aqzs View Post
    That's the part I was looking for ! Thanks ! And as always, great job for reversing that website !
    No problem and thanks.

    Originally Posted by EV Downloads View Post
    Trying to run the same command as you did :

    I get the following error:

    [USER_ERROR]/[APP_ERROR] Failed to download: https://eurovisionsport.com/explore/sport?id=EBU-Home-Athletics. Reason: Failed to initialize the eurovisionsport_com service. Solution: Check the service credentials in the app_files\config.json file. If you are sure everything is right then debug the service.
    The problem that was encountered here got solved. For anyone else interested in the eurovisionsport.com service, go to its python file and search for:
    eurovisionsport_com.LOGIN_URL.format

    you're gonna have to replace that request call with this (don't forget about tab indent)
    Code:
    response = json.loads(requests.post(
                eurovisionsport_com.LOGIN_URL.format(
                    email=quote(credentials["EMAIL"]),
                    password=quote(credentials["PASSWORD"])
                ), json={}, headers={
                    'host': 'api.evsports.opentv.com',
                    'tenantid': 'nagra'
                }
            ).content.decode())
    And update the list of imports at the top:
    from urllib.parse import parse_qs, urlparse, quote

    Because the email and password are sent directly in the URL as plaintext, I forgot to url encode them properly. This fix will be added in the next version.
    --[----->+<]>.++++++++++++.---.--------.
    [*drm mass downloader: widefrog*]~~~[*how to make your own mass downloader: guide*]
    Quote Quote  
  5. Feels Good Man 2nHxWW6GkN1l916N3ayz8HQoi's Avatar
    Join Date
    Jan 2024
    Location
    Pepe Island
    Search Comp PM
    Wasn't expecting this post to become a sticky. Thank you kindly @baldrick. Guess I should at least attempt to make this tool somewhat usable for other non-windows operating systems, not just for generating download commands.

    v1.14.0:
    => + 6play.fr (thanks @aqzs for testing french restricted content)
    => + rsi.ch (thanks @snake for testing swiss restricted content and thanks again @aqzs for explaining the forward header IP trick)

    Minor changes:
    => fixed the login bug for eurovisionsport.com
    => + fifa.com (now /watch/ embedded URLs that redirect to plus.fifa.com are supported)
    --[----->+<]>.++++++++++++.---.--------.
    [*drm mass downloader: widefrog*]~~~[*how to make your own mass downloader: guide*]
    Quote Quote  
  6. Feels Good Man 2nHxWW6GkN1l916N3ayz8HQoi's Avatar
    Join Date
    Jan 2024
    Location
    Pepe Island
    Search Comp PM
    v2.0.0 (no new services added this update):
    => + support for linux (thanks a lot @psxman for testing on linux termux)
    => + support for macos

    Minor changes:
    => fixed a bug for eurovisionsport.com due to a changed endpoint URL
    => extended the fifa.com service (now links that don't redirect to plus.fifa.com can be downloaded)

    Others:
    => separated the release versions from the python script because there are multiple OS releases available now, please download only what you intend to use
    --[----->+<]>.++++++++++++.---.--------.
    [*drm mass downloader: widefrog*]~~~[*how to make your own mass downloader: guide*]
    Quote Quote  
  7. Widefrog Install Termux

    If you have followed A_N_G_E_L_A`s instructions previously for UK_FTA or Freevine on your phone
    you can skip the prerequisites.

    Open termux pkg install ffmpeg
    login proot-distro login ubuntu
    Install perquisites.
    wget https://github.com/shaka-project/shaka-packager/releases/download/v3.1.0/packager-linux-arm64
    cp packager-linux-arm64 /usr/local/bin/shaka-packager
    wget https://github.com/nilaoda/N_m3u8DL-RE/releases/download/v0.1.5.3-beta/N_m3u8DL-RE_Bet...0230323.tar.gz
    tar -zxf N_m3u8DL-RE_Beta_linux-x64_20230323.tar.gz
    cd N_m3u8DL-RE_Beta_linux-x64
    rm -r N_m3u8DL-RE_Beta_linux-x64
    rm -r N_m3u8DL-RE_Beta_linux-x64_20230323.tar.gz
    chmod +x /usr/local/bin/ N_m3u8DL-RE
    mkdir tmp; cd tmp
    wget https://files.videohelp.com/u/301890/bento4_tools_android.zip
    unzip bento4_tools_android.zip
    rm *.zip
    chmod +x *
    cp * /usr/local/bin/
    cd out of tmp dir
    cd ../; rm -r tmp
    apt install mkvtoolnix
    apt install python3 python3-venv python3-pip

    Widefrog install.

    copy widfrog directory to Download dir on phone
    pwd /root
    mv /sdcard/download/frog .
    cd frog
    python3 -m venv frog
    source frog/bin/activate'
    grep -v '^#' requirements.txt | xargs -n 1 pip install
    chmod +x "terminal/mkvmerge.sh"
    python3 widefrog.py
    python3 widefrog.py –config lists config
    edit config.json
    cd app_files
    cp config.json /sdcard/Download/config.json
    copy to your laptop /desktop
    change download path and remove –no log from Vod line


    python3 widefrog.py input.txt

    Test with input.txt
    https://www.fifa.com/en/watch/7wST4MTAbpXRAAmufEpCbx
    https://www.nba.com/watch/list/collection/skills-drills
    https://www.nba.com/watch/video/game-recap-lakers-120-timberwolves-109
    https://www.nba.com/watch/video/the-fast-break-mar-10-2
    https://www.nba.com/watch/video/game-recap-wizards-110-heat-108
    https://www.nba.com/game/hou-vs-ind-0022300719?watchRecap=true
    https://www.nba.com/game/mil-vs-lac-0022300924?watchRecap=true
    https://www.nba.com/game/ind-vs-orl-0022300928?watchRecap=true
    https://www.rakuten.tv/<COUNTRY>/live_channels/lone-star
    https://www.threenow.co.nz/shows/madam/season-1-ep-1/1717557415382/M86801-985
    Quote Quote  
  8. Feels Good Man 2nHxWW6GkN1l916N3ayz8HQoi's Avatar
    Join Date
    Jan 2024
    Location
    Pepe Island
    Search Comp PM
    Thanks for the termux guide
    --[----->+<]>.++++++++++++.---.--------.
    [*drm mass downloader: widefrog*]~~~[*how to make your own mass downloader: guide*]
    Quote Quote  
  9. which u can add starzplay too they have some free content their with login
    Quote Quote  
  10. What do you recommend MacOS users to try instead?
    Quote Quote  
  11. Feels Good Man 2nHxWW6GkN1l916N3ayz8HQoi's Avatar
    Join Date
    Jan 2024
    Location
    Pepe Island
    Search Comp PM
    Originally Posted by Aham View Post
    What do you recommend MacOS users to try instead?
    Just use the python source code which is platform independent and follow the installation instructions. I'll post a release version in the next update, but it's too slow because of pyinstaller --onefile.

    Originally Posted by justnerd View Post
    which u can add starzplay too they have some free content their with login
    Sadly I don't add sites by request. I just add them randomly from time to time.
    --[----->+<]>.++++++++++++.---.--------.
    [*drm mass downloader: widefrog*]~~~[*how to make your own mass downloader: guide*]
    Quote Quote  
  12. Feels Good Man 2nHxWW6GkN1l916N3ayz8HQoi's Avatar
    Join Date
    Jan 2024
    Location
    Pepe Island
    Search Comp PM
    v2.1.0:
    => + cbs.com (thanks a lot @psxman for testing it)
    => + veeps.com (it has free content, not all content is paid)

    Minor changes:
    => added a macos release version (if it's too slow then use python)
    => updated the requirements.txt file (only relevant if you use python)
    Last edited by 2nHxWW6GkN1l916N3ayz8HQoi; 27th Jul 2024 at 12:16.
    --[----->+<]>.++++++++++++.---.--------.
    [*drm mass downloader: widefrog*]~~~[*how to make your own mass downloader: guide*]
    Quote Quote  
  13. looks like a good software but you need python software for itis there a other way to do this.
    Quote Quote  
  14. Feels Good Man 2nHxWW6GkN1l916N3ayz8HQoi's Avatar
    Join Date
    Jan 2024
    Location
    Pepe Island
    Search Comp PM
    Originally Posted by barry25 View Post
    looks like a good software but you need python software for itis there a other way to do this.
    You don't necessarily need Python. That's why I added 3 release versions for 3 different operating systems. Now if you don't trust the executable, that's understandable. In that case, you only have Python.
    --[----->+<]>.++++++++++++.---.--------.
    [*drm mass downloader: widefrog*]~~~[*how to make your own mass downloader: guide*]
    Quote Quote  
  15. Awesome work. Can I add request for coivl.net?
    Quote Quote  
  16. Feels Good Man 2nHxWW6GkN1l916N3ayz8HQoi's Avatar
    Join Date
    Jan 2024
    Location
    Pepe Island
    Search Comp PM
    Originally Posted by InfinitiX2 View Post
    Awesome work. Can I add request for coivl.net?
    Thanks! Sadly no

    Originally Posted by 2nHxWW6GkN1l916N3ayz8HQoi View Post
    Sadly I don't add sites by request. I just add them randomly from time to time.
    But I'm pretty sure others would be eager to write a script. You can ask on other relevant posts or make different one.
    --[----->+<]>.++++++++++++.---.--------.
    [*drm mass downloader: widefrog*]~~~[*how to make your own mass downloader: guide*]
    Quote Quote  
  17. Feels Good Man 2nHxWW6GkN1l916N3ayz8HQoi's Avatar
    Join Date
    Jan 2024
    Location
    Pepe Island
    Search Comp PM
    I was notified through PM that there was a problem with the plus.rtl.de service and also been given a fix for it (thanks @lostion). The fix is editing and replacing the following in the plus.rtl.de py file:
    Code:
    "053194cbfad5176c2093b4dcf3d9d39dc964ce500a1e36f21bfdb2e7bb77741b"
    with 
    "04e2f59b9c750df1137f9946258c17686cd4447511383ef05fcf699183f449b8"
    and also
    Code:
    "dcb62f31f4d2cba96bc81144fb1b4dc2555b389cc11396e471c75a0c2ae27bea"
    with
    "fea0311fb572b6fded60c5a1a9d652f97f55d182bc4cedbdad676354a8d2797c"
    This will be fixed in the next version.
    --[----->+<]>.++++++++++++.---.--------.
    [*drm mass downloader: widefrog*]~~~[*how to make your own mass downloader: guide*]
    Quote Quote  
  18. Originally Posted by 2nHxWW6GkN1l916N3ayz8HQoi View Post
    Originally Posted by InfinitiX2 View Post
    Awesome work. Can I add request for coivl.net?
    Thanks! Sadly no

    Originally Posted by 2nHxWW6GkN1l916N3ayz8HQoi View Post
    Sadly I don't add sites by request. I just add them randomly from time to time.
    But I'm pretty sure others would be eager to write a script. You can ask on other relevant posts or make different one.
    Thanks dude i just make a script.
    Quote Quote  
  19. Feels Good Man 2nHxWW6GkN1l916N3ayz8HQoi's Avatar
    Join Date
    Jan 2024
    Location
    Pepe Island
    Search Comp PM
    Originally Posted by justnerd View Post
    Thanks dude i just make a script.
    You could be happy with other "general" downloaders, for example, @foxrefire's extension or @angela's hell noob pack. But if you're serious about making your own script for a lot of downloads, there's a guide in my signature. It teaches the basics and helps you have fewer headaches when scripting. I may assist you even at some points if you get stuck (don't confuse this with me doing your job from scratch though). Best of luck.
    --[----->+<]>.++++++++++++.---.--------.
    [*drm mass downloader: widefrog*]~~~[*how to make your own mass downloader: guide*]
    Quote Quote  
  20. i already make a script and its working fine thanks for ur time bro
    Quote Quote  
  21. Feels Good Man 2nHxWW6GkN1l916N3ayz8HQoi's Avatar
    Join Date
    Jan 2024
    Location
    Pepe Island
    Search Comp PM
    v2.2.0:
    => + canalplus.com (thanks @brick for the pssh playready trick)
    => + tv5mondeplus.com

    Minor changes:
    => plus.rtl.de:
    - fixed the hash issue
    - added an optional account login feature in the eventual case that there may be free videos that require an account
    - added the mpd URL editing trick (thanks @aqzs and @lostion for explaining it)

    => Since canalplus.com has 720p+ blocked by L1, if you use "-sv best" in the config parameters, it's gonna be replaced automatically by the highest decryptable quality. Otherwise, I just assume you know what you're doing. This is gonna be applied from now on for all services that have quality levels blocked by L1.

    Off topic: for those of you that have experience writing scripts with pywidevine, is there a way in which you can check the level L of the loaded wvd (1/2/3) ?

    Originally Posted by justnerd View Post
    i already make a script and its working fine thanks for ur time bro
    Congrats!
    --[----->+<]>.++++++++++++.---.--------.
    [*drm mass downloader: widefrog*]~~~[*how to make your own mass downloader: guide*]
    Quote Quote  
  22. Other than the obvious:
    Code:
    device = Device.load(sys.argv[1])
    print(device)
    print(device.security_level)
    ?
    Quote Quote  
  23. Originally Posted by 2nHxWW6GkN1l916N3ayz8HQoi View Post
    Off topic: for those of you that have experience writing scripts with pywidevine, is there a way in which you can check the level L of the loaded wvd (1/2/3) ?
    Code:
    from pywidevine.device import Device, DeviceTypes
    
    device = Device.load("wvd")
    
    # Check level
    device.security_level
    
    # Since both Chrome and Android are L3, and Android can be either L3 or L1, you can check for type as well
    if device.type == DeviceTypes.ANDROID:
        do_something()
    
    if device.type == DeviceTypes.CHROME:
        do_something()
    Nice work, btw! That's a respectable amount of scripts you've made now
    Quote Quote  
  24. Feels Good Man 2nHxWW6GkN1l916N3ayz8HQoi's Avatar
    Join Date
    Jan 2024
    Location
    Pepe Island
    Search Comp PM
    Originally Posted by Obo View Post
    Other than the obvious:
    Code:
    device = Device.load(sys.argv[1])
    print(device)
    print(device.security_level)
    ?
    Originally Posted by stabbedbybrick View Post
    Code:
    from pywidevine.device import Device, DeviceTypes
    
    device = Device.load("wvd")
    
    # Check level
    device.security_level
    
    # Since both Chrome and Android are L3, and Android can be either L3 or L1, you can check for type as well
    if device.type == DeviceTypes.ANDROID:
        do_something()
    
    if device.type == DeviceTypes.CHROME:
        do_something()
    Oh man. I really gotta start reading the documentation for pywidevine. Thanks a lot! Now I can crash the script entirely if someone crazy attempts mass downloading with L1. Someone who got it himself would be smart enough not to attempt. This is more for those who bought it.

    Originally Posted by stabbedbybrick View Post
    Nice work, btw! That's a respectable amount of scripts you've made now
    Thanks! My goal is to reach somewhere around 50-100. It's a shame N_m3u8DL-RE doesn't come with page extractors like yt-dlp does since this entire downloader is basically N_m3u8DL-RE extractors.
    --[----->+<]>.++++++++++++.---.--------.
    [*drm mass downloader: widefrog*]~~~[*how to make your own mass downloader: guide*]
    Quote Quote  
  25. Feels Good Man 2nHxWW6GkN1l916N3ayz8HQoi's Avatar
    Join Date
    Jan 2024
    Location
    Pepe Island
    Search Comp PM
    v2.3.0:
    => + midnightpulp.com

    Minor changes:
    => extended the fifa.com service: now you can download pages of content from a query search and also series (seasons/episodes)
    => extended the plus.rtl.de service: now you can download podcasts, livestreams and series (seasons/episodes and years/months)
    => updated the requirements.txt file (only relevant if you use python)

    Off topic: @brick, @obo, I managed to add the L3 check using pywidevine like you two suggested (thanks for that again). I have one final problem with this, is there a way in which I can check if a cdm is emulated or not? I know I can simply read the content of the cdm and look for the word "Emulator" , but I have no idea how reliable is that. Didn't manage to find something relevant in their github.
    --[----->+<]>.++++++++++++.---.--------.
    [*drm mass downloader: widefrog*]~~~[*how to make your own mass downloader: guide*]
    Quote Quote  
  26. Originally Posted by 2nHxWW6GkN1l916N3ayz8HQoi View Post

    Off topic: @brick, @obo, I managed to add the L3 check using pywidevine like you two suggested (thanks for that again). I have one final problem with this, is there a way in which I can check if a cdm is emulated or not? I know I can simply read the content of the cdm and look for the word "Emulator" , but I have no idea how reliable is that. Didn't manage to find something relevant in their github.
    That's a good question. I don't think pywidevine has any set classes or functions for that. But one way to do it is to parse the client and check the build info of the CDM. If it's emulated, it'll have "userdebug/dev-keys" in the name, while a real one will have "user/release-keys".

    Code:
    # google/sdk_gphone_x86_arm/generic_x86_arm:9/PSR1.180720.122/6736742:userdebug/dev-keys
    # samsung/beyond2lteeea/beyond2:12/SP1A.210812.016/G975FXXSGHWC1:user/release-keys
    Code:
    from pywidevine.device import Device
    
    device = Device.load("device.wvd")
    build = next(x.value for x in device.client_id.client_info if "build_info" in x.name)
    
    if "userdebug" in build:
        do_something()
    Quote Quote  
  27. I can add another type of build_info values:
    Code:
    google/walley/walleye:10/QP1A.191105.004/eng.cmj.20220621.194942:userdebug/test-keys
    Xiaomi/ginkgo/ginkgo:13/TQ1A.230105.002/0859:userdebug/release-keys
    The google one is from a real device, but probably isn't "certified" by Google. Until now I thought the Xiaomi one was a cdm from a real device, didn't notice the "userdebug" in "userdebug/release-keys" until now.
    Last edited by Obo; 18th Aug 2024 at 03:01.
    Quote Quote  
  28. Feels Good Man 2nHxWW6GkN1l916N3ayz8HQoi's Avatar
    Join Date
    Jan 2024
    Location
    Pepe Island
    Search Comp PM
    So, it's not completely 100% reliable. That's what I was afraid of. At least, is it safe to assume the following
    ALL emulated cdms will contain "userdebug" but not all cdms that contain "userdebug" are emulated
    ?
    --[----->+<]>.++++++++++++.---.--------.
    [*drm mass downloader: widefrog*]~~~[*how to make your own mass downloader: guide*]
    Quote Quote  
  29. Originally Posted by 2nHxWW6GkN1l916N3ayz8HQoi View Post
    So, it's not completely 100% reliable. That's what I was afraid of. At least, is it safe to assume the following
    ALL emulated cdms will contain "userdebug" but not all cdms that contain "userdebug" are emulated
    ?
    Yeah, pretty much. Another way to look at it might be "production build" vs. "developer build". If it's got "userdebug" it's most likely a developer build, whether it's from a real device or not. But no, it's probably not 100% reliable.

    Originally Posted by Obo View Post
    I can add another type of build_info values:
    Code:
    google/walley/walleye:10/QP1A.191105.004/eng.cmj.20220621.194942:userdebug/test-keys
    Xiaomi/ginkgo/ginkgo:13/TQ1A.230105.002/0859:userdebug/release-keys
    The google one is from a real device, but probably isn't "certified" by Google. Until now I thought the Xiaomi one was a cdm from a real device, didn't notice the "userdebug" in "userdebug/release-keys" until now.
    I have the same Xiaomi one and can confirm it's not accepted as a real device. If you want to test your other one, see if you can get the HD key from youtube.
    Quote Quote  
  30. Originally Posted by stabbedbybrick View Post
    Originally Posted by 2nHxWW6GkN1l916N3ayz8HQoi View Post
    So, it's not completely 100% reliable. That's what I was afraid of. At least, is it safe to assume the following
    ALL emulated cdms will contain "userdebug" but not all cdms that contain "userdebug" are emulated
    ?
    Yeah, pretty much. Another way to look at it might be "production build" vs. "developer build". If it's got "userdebug" it's most likely a developer build, whether it's from a real device or not. But no, it's probably not 100% reliable.

    Originally Posted by Obo View Post
    I can add another type of build_info values:
    Code:
    google/walley/walleye:10/QP1A.191105.004/eng.cmj.20220621.194942:userdebug/test-keys
    Xiaomi/ginkgo/ginkgo:13/TQ1A.230105.002/0859:userdebug/release-keys
    The google one is from a real device, but probably isn't "certified" by Google. Until now I thought the Xiaomi one was a cdm from a real device, didn't notice the "userdebug" in "userdebug/release-keys" until now.
    I have the same Xiaomi one and can confirm it's not accepted as a real device. If you want to test your other one, see if you can get the HD key from youtube.
    Code:
    google/sdk_gphone_x86_arm/generic_x86_arm:9/PSR1.180720.122/6736742:userdebug/dev-keys  HAS USERDEBUG:  True
    google/sdk_gphone64_x86_64/emu64xa:14/UE1A.230829.036.A2/11596452:user/release-keys  HAS USERDEBUG:  False
    samsung/a13venseea/a13ve:14/UP1A.231005.007/A137FXXU5EXE3:user/release-keys  HAS USERDEBUG:  False
    samsung/a13venseea/a13ve:14/UP1A.231005.007/A137FXXU5EXE3:user/release-keys  HAS USERDEBUG:  False
    samsung/a14mnseea/a14m:14/UP1A.231005.007/A145RXXS6CXF1:user/release-keys  HAS USERDEBUG:  False
    samsung/a14mnseea/a14m:14/UP1A.231005.007/A145RXXS6CXF1:user/release-keys  HAS USERDEBUG:  False
    samsung/a20eeea/a20e:11/RP1A.200720.012/A202FXXU3CVG2:user/release-keys  HAS USERDEBUG:  False
    samsung/a20eeea/a20e:11/RP1A.200720.012/A202FXXU5CWF2:user/release-keys  HAS USERDEBUG:  False
    samsung/a20eeea/a20e:11/RP1A.200720.012/A202FXXU3CVG2:user/release-keys  HAS USERDEBUG:  False
    samsung/a20eeea/a20e:11/RP1A.200720.012/A202FXXU5CWF2:user/release-keys  HAS USERDEBUG:  False
    samsung/a20eeea/a20e:11/RP1A.200720.012/A202FXXU5CWF2:user/release-keys  HAS USERDEBUG:  False
    samsung/a20eeea/a20e:11/RP1A.200720.012/A202FXXU3CVG2:user/release-keys  HAS USERDEBUG:  False
    samsung/a20eeea/a20e:11/RP1A.200720.012/A202FXXU3CVG2:user/release-keys  HAS USERDEBUG:  False
    samsung/a20eeea/a20e:11/RP1A.200720.012/A202FXXU3CVG2:user/release-keys  HAS USERDEBUG:  False
    samsung/a20eeea/a20e:11/RP1A.200720.012/A202FXXU5CWF2:user/release-keys  HAS USERDEBUG:  False
    samsung/a20eeea/a20e:11/RP1A.200720.012/A202FXXU5CWF2:user/release-keys  HAS USERDEBUG:  False
    samsung/a20eeea/a20e:11/RP1A.200720.012/A202FXXU5CWF2:user/release-keys  HAS USERDEBUG:  False
    samsung/a20eeea/a20e:11/RP1A.200720.012/A202FXXU5CWF2:user/release-keys  HAS USERDEBUG:  False
    samsung/a20eeea/a20e:11/RP1A.200720.012/A202FXXU5CWF2:user/release-keys  HAS USERDEBUG:  False
    samsung/a20eeea/a20e:11/RP1A.200720.012/A202FXXU5CWF2:user/release-keys  HAS USERDEBUG:  False
    samsung/a20eeea/a20e:11/RP1A.200720.012/A202FXXU5CWF2:user/release-keys  HAS USERDEBUG:  False
    samsung/a20eeea/a20e:11/RP1A.200720.012/A202FXXU5CWF2:user/release-keys  HAS USERDEBUG:  False
    samsung/xcover4seea/xcover4s:11/RP1A.200720.012/G398FNXXUGCVE6:user/release-keys  HAS USERDEBUG:  False

    Hi Brick that's not completely true as you can see I have 2 emulated and the rest are real cdms.

    I'm looking at a way to see if you can find a way for definite if its emulated or not the second one is android 14 sdk 34 gey got with ghydra added xml
    Quote Quote  



Similar Threads

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