Skip to content
View dougg0k's full-sized avatar
  • Brazil
  • 09:43 (UTC -03:00)

Block or report dougg0k

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Edgerouter / EdgeOS / DoH / Security... Edgerouter / EdgeOS / DoH / Security Settings / NextDNS / Cloudflare
    1
    # Edgerouter / EdgeOS / DoH / Security Settings
    2
    
                  
    3
    ## Notes
    4
    
                  
    5
    - It seems that every firmware update, whatever was done to get nextdns into the router, will be gone, so you will have to redo the steps or at least some, if you confirm that it has happened.
  2. React Native Security - this compila... React Native Security - this compilation were initially built upon a help request about security for a banking app.
    1
    - Obfuscate code helps.
    2
      - JS Bundles - https://github.com/vesselsoft/metro-minify-obfuscator
    3
      - Android - `Proguard` / `R8`
    4
      - iOS - I dont know any that is open-source and works. Before deprecation, `BITCODE` was used. However there is a commercial one called `iXGuard`.
    5
      - JS are still easier to `decompile` / `deobfuscate` than `native`, so ideally, if you can, the more you implement in the `native` side, the better. That's why one of the recommendations below is to use a single point of implementation, with `Rust` or `C++`.