this post was submitted on 24 Jun 2023
197 points (97.1% liked)

Linux

47345 readers
1291 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

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.

you are viewing a single comment's thread
view the rest of the comments
[–] itchy_lizard@feddit.it -1 points 1 year ago* (last edited 1 year ago) (1 children)

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 4 points 1 year ago* (last edited 1 year ago) (1 children)

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 0 points 1 year ago* (last edited 1 year 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.