this post was submitted on 22 Nov 2025
392 points (99.2% liked)

Selfhosted

53090 readers
776 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

  1. Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.

  2. No spam posting.

  3. Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.

  4. Don't duplicate the full text of your blog or github here. Just post the link for folks to click.

  5. Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).

  6. No trolling.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 2 years ago
MODERATORS
 

Hi guys, I've been working on a self-hostable web analytics platform since the start of this year after being frustrated with Google Analytics and Plausible.

I've packed a bunch of cool web analytics features into Rybbit, but I've tried very hard to keep the interface simple to use,

https://github.com/rybbit-io/rybbit

Check it out!

you are viewing a single comment's thread
view the rest of the comments
[–] quick_snail@feddit.nl 1 points 2 hours ago (2 children)

Doker pull is insecure

It's the download that's not verified

[–] Appoxo@lemmy.dbzer0.com 2 points 2 hours ago (1 children)

Download the image manually with something like curl???

[–] quick_snail@feddit.nl 0 points 2 hours ago

Hahahahahaha good luck.

[–] partofthevoice@lemmy.zip 0 points 1 hour ago* (last edited 1 hour ago) (1 children)

You can verify the checksum to ensure the contents pulled are exactly the same as what was published. You can also use a private container registry.

How exactly would docker pull be any more insecure than something like pip install? Or, really anything… Let’s go with your preferred alternative, how are you going to get it on your machine in a more secure way than docker provides?

Docker uses TLS with registries, layers and manifests have cryptographic digests, checksums, and you can verify the publisher yourself. Push it into your own registry if you want, or just don’t use latest.

[–] quick_snail@feddit.nl -1 points 1 hour ago* (last edited 50 minutes ago) (1 children)

Yeah, that's the insecurity I'm talking about.

If you want to know how to implement this properly, look at apt. Its a known issue in docker; they just haven't prioritized the fix yet (DCT)

[–] partofthevoice@lemmy.zip 1 points 1 hour ago* (last edited 51 minutes ago) (1 children)

What are you talking about, “yeah that’s the insecurity I’m talking about.”

I didn’t mention an insecurity and neither have you. Would you mind being a little more clear than “Docker pull is insecure?”

Frankly, I was expressing confidence in dockers security. It goes without saying though, any user can do insecure things like download from untrusted sources. That’s not dockers problem though, it’s the users.

Edit: I see now that you added “it’s the download that’s not verified.” Integrity is verified, so I assume you mean authorship (via signing)? I guess you’re saying that, if admin credentials are stolen from a container publisher and the thief force pushes malicious code into the registry under a pre-existing tag—then you would be exposed to that?

Even in that case, though, a digest cannot be overwritten. Tags can. So you’d just pin the digest to avoid this one attack vector?

[–] quick_snail@feddit.nl 1 points 58 minutes ago (1 children)

Checksums are not for security. You need signatures. I'm not making claims that aren't clearly documented.

[–] partofthevoice@lemmy.zip 1 points 50 minutes ago (1 children)

You’re talking about authorship. Sure. But if you verify the container yourself as secure and pin the digest, what’s the issue?

[–] quick_snail@feddit.nl 1 points 40 minutes ago* (last edited 39 minutes ago) (1 children)

What you just described cannot be done. You can't verify it, because its not signed.

[–] partofthevoice@lemmy.zip 1 points 23 minutes ago* (last edited 22 minutes ago)

You’re making big claims on security here, like “cannot be done,” and each time you do I feel like we’re talking past each other a bit. I never claimed you can verify that the person who pushed the container had access to a private key file. I claimed you can verify the security of a container, specifically by auditing it and reviewing the publisher’s online presence. Best practices. Don’t upgrade right away, and pin digests to those which can be trusted.

When you pin a digest, you’re not going to get a container some malicious agent force pushed after the fact. You pinned the download to an immutable digest, so hot-swapping the container is out the window. What, as I understand, you’re concerned with is the scenario that a malicious actor (1) compromised the registry login beforehand, (2) you pinned the digest after hand, and (3) the attack is unnoticed by you and everyone else.

I’m trying to figure out under what conditions this would actually occur, and thus justifies the claim that docker pull is insecure. In a work setting, I only see this being an issue if the process to test/upgrade existing ones is already an insecure process. Can you help me understand why I should believe that, even with best practices in place, Dockers own insecurities are unacceptable? Docker is used everywhere and I’m reluctant to believe everyone just doesn’t care about an unmanageable attack vector.