• troed@fedia.io
    link
    fedilink
    arrow-up
    7
    arrow-down
    4
    ·
    16 hours ago

    Android is Linux, and uses regular Linux security mechanisms.

    • tired_n_bored@lemmy.world
      link
      fedilink
      English
      arrow-up
      8
      arrow-down
      3
      ·
      16 hours ago

      That’s not the case. Android is extensively modified in order to have sandboxed applications only and restrictive hardware permissions.

      Run any executable on Linux. Likely by default it can access ~/Photos and the webcam. Android doesn’t allow that

      • Fedizen@lemmy.world
        link
        fedilink
        English
        arrow-up
        8
        arrow-down
        2
        ·
        edit-2
        15 hours ago

        I’ve looked at a couple linux phones and those tend to be designed with hardware switches for antennas and cameras, which I would argue are more secure

      • troed@fedia.io
        link
        fedilink
        arrow-up
        8
        arrow-down
        3
        ·
        15 hours ago

        “uses regular Linux security mechanisms” is true regardless of whether any distributions you use configure them the same way or not.

        The Android platform takes advantage of the Linux user-based protection to identify and isolate app resources.

        As part of the Android security model, Android uses Security-Enhanced Linux (SELinux) to enforce mandatory access control (MAC) over all processes, even processes running with root or superuser privileges (Linux capabilities).

        https://source.android.com/docs/security/features

      • Evil_Shrubbery@lemmy.zip
        link
        fedilink
        English
        arrow-up
        5
        arrow-down
        1
        ·
        edit-2
        15 hours ago

        Flatpak?
        And some level of immutability?

        It doesn’t seem like much of a step for Linux distros to cover the “gap” if/when we get any sort of viable mobile options for eg 1% of the market.

        • Possibly linux@lemmy.zip
          link
          fedilink
          English
          arrow-up
          2
          ·
          10 hours ago

          Flatpak has promise but the sandbox much weaker than Android. I wouldn’t run anything untrusted with it as sandbox escapes are likely possible. Bubblewrap is highly portable at the cost of being less secure. Kernel level sandboxing such as SElinux and Namespaces are much more bulletproof since they leverage the kernel.

          Honestly if you are building something from the ground up I would instead focus on virtualization since the Linux kernel isn’t exactly free of security issues.