Hi, mostly i use REHL based distros like Centos/Rocky/Oracle for the solutions i develop but it seems its time to leave…

What good server/minimal distro you use ?

Will start to test Debian stable.

    • ono@lemmy.ca
      link
      fedilink
      English
      arrow-up
      9
      arrow-down
      2
      ·
      edit-2
      11 months ago

      Your earlier comment complains about pulling images securely, presumably meaning signature verification, which I believe Flatpak does.

      The report you linked is about tying downloaded sources to their author using public key infrastructure, which is a different issue. APT and dpkg don’t do that, either. (I know this because I build and publish with those, too.)

      Can you name a packaging system that does? I can’t. I would like to see it (along with reproducible builds) integrated into the software ecosystem, and I think we’re moving in that direction, but it will take time to become common.

      I have my own criticisms of Flatpak, mostly regarding the backwards permissions model (packages grant themselves permissions by default) and sloppy sandboxing policies on Flathub, so I caution against blindly assuming it’s safe. But claiming that it doesn’t support signing of releases is just plain false.

      • federico3
        link
        fedilink
        English
        arrow-up
        1
        ·
        edit-2
        11 months ago

        This is not correct. APT always verifies cryptographic signature unless you explicitly disable it. Yet it’s very important to understand who is signing packages. What kind of review process did the software go through? What kind of vetting did the package maintainer themselves go through?

        If software is signed only by the upstream developer and no 3rd party review is done by a distribution this means trusting a stranger’s account on a software forge.

        Update: the Debian infrastructure supports checking gpg signatures from upstream developers i.e. on the tarballs published on software forges.

        • ono@lemmy.ca
          link
          fedilink
          English
          arrow-up
          2
          arrow-down
          1
          ·
          11 months ago

          This is not correct. APT always verifies cryptographic signature unless you explicitly disable it.

          You’ve misunderstood what I wrote.

      • itchy_lizard@feddit.it
        link
        fedilink
        English
        arrow-up
        3
        arrow-down
        3
        ·
        edit-2
        11 months ago

        I believe Flatpak does.

        Flatpak does not authenticate files that it downloads. Please stop spreading misinformation that flatpak is secure. It’s not.

        If the flatpak (flathub?) repo was compromised and started serving malicious packages, the client would happily download & install them because it doesn’t have any cryptographic authenticity checks.

        APT and dpkg don’t do that

        Apt does verify the authenticity of everything it downloads (by default) using PGP signatures on SHA256SUMS manifest files. This provides cryptographic authenticity of everything it downloads. Flatpak doesn’t do this.

        Again, this is clearly documented here https://wiki.debian.org/SecureApt

        • ono@lemmy.ca
          link
          fedilink
          English
          arrow-up
          6
          arrow-down
          1
          ·
          edit-2
          11 months ago

          Again, you’re confusing two different things (sources vs. packages). I’m not going to argue with you, though. Good day.

          • itchy_lizard@feddit.it
            link
            fedilink
            English
            arrow-up
            3
            arrow-down
            2
            ·
            edit-2
            11 months ago

            I’m talking about the end-user securely downloading packages from the repo, not how the package maintainer obtains the software upstream.

            How a package maintainer obtains the software from the source is dynamic and depends on the package. Ideally those releases are signed by the developer. In any case, if the package is poisoned when grabbing the source, it’s much easier for the community to detect than a targeted MITM attack on a client obtaining it from the repo.

            I can say that I do maintain a software project that’s in the repo, and we do sign it with our PGP release key. Our Debian package maintainer does verify its authenticity by checking the release’s signature. So the authenticity is checked both at the source and when downloading the package.