PSA: Update your docker installation. Leaky Vessels flaws allow hackers to escape Docker, runc containers (www.bleepingcomputer.com)
from redcalcium@lemmy.institute to selfhosted@lemmy.world on 04 Feb 2024 17:08
https://lemmy.institute/post/648557

Snyk team has found four vulnerabilities collectively called “Leaky Vessels” that impact the runc and Buildkit container infrastructure and build tools, potentially allowing attackers to perform container escape on various software products.

On January 31, 2024, Buildkit fixed the flaws with version 0.12.5, and runc addressed the security issue impacting it on version 1.1.12.

Docker released version 4.27.0 on the same day, incorporating the secured versions of the components in its Moby engine, with versions 25.0.1 and 24.0.8.

#selfhosted

threaded - newest

sj_zero@lotide.fbxl.net on 04 Feb 2024 19:22 next collapse

Honestly, if you're running public facing services, you should run the latest everything you can. There's a risk that stuff breaks, but at least you're not having to worry about patched exploits.

haui_lemmy@lemmy.giftedmc.com on 04 Feb 2024 23:57 collapse

I would add latest, security wise, not everything. That would be a recipe for disaster imo.

bin_bash@lemmy.world on 04 Feb 2024 20:05 next collapse

again and again … docker is becoming a joke

Fisch@lemmy.ml on 05 Feb 2024 03:46 collapse

Every software has security vulnerabilities. The important thing is just that they get fixed quickly when they’re found and it seems like that was the case here.

acockworkorange@mander.xyz on 05 Feb 2024 10:07 collapse

I use <insert obscure software> instead, it has no vulnerabilities!

It has no known vulnerabilities.

Awe@lemmy.ml on 06 Feb 2024 10:32 collapse

I like to describe this as a game of peekaboo.

Where’s the vulnerability?

There it is!

Where’s the vulnerability?

(Not opening eyes) Huh, I guess there are none!

[deleted] on 04 Feb 2024 20:11 next collapse

.

seedd@lemmy.world on 04 Feb 2024 20:15 next collapse

Can you suggest one? I’ve been tinkering with podman, but if there’s something better I’d like to try that too

[deleted] on 04 Feb 2024 20:16 collapse

.

False@lemmy.world on 04 Feb 2024 21:44 collapse

Runc is native.

kevincox@lemmy.ml on 05 Feb 2024 11:34 next collapse

If you are relying on Docker as a security boundary you are making a mistake.

Docker isolation is good enough to keep honest people honest but isn’t good enough to keep out malicious actors. The Linux kernel API is simply too large of an attack surface to be highly secure.

If you want to run completely untrusted software you want a VM boundary at a very minimum. Ideally run it on completely separate hardware. There are few exceptions like browser isolation and gVisor which are strong software isolation without a VM but docker or any Linux container runner is not on that list. If the software has direct access to the host kernel it shouldn’t be considered secure.

anzo@programming.dev on 06 Feb 2024 10:17 next collapse

Note that this news are important, I only want to give some peace of mind to the many amateurs self-hosting out there ;) Don’t panic. Think about how such attacker might gain access. There’s always a practical difference between a vulnerability being there and how easily it is exploitable. Most CVEs are theoretical, and combining 4 of them would be even more difficult. From what I read, the vulnerability would be in the Dockerfile itself. Also, you need to weigh in the motivation such attacker would have. If you’re an average netizen is different from a multi billion dollar company website. So, the attacker would need to meet all those conditions described in the CVEs and even in that case, they might escape the container only to find it was installed in rootless mode, so they just have access as regular user. But that’s depending on how docker was installed.

xinayder@infosec.pub on 06 Feb 2024 15:07 collapse

It’s still not an excuse to just ignore the security update because you might not be a target for hackers.

Just check your logs, there’s probably a dozen or more requests trying to access wordpress pages on your server, or login via SSH. They want to take over your server so it can be part of a botnet.

anzo@programming.dev on 07 Feb 2024 13:02 collapse

Oh. I didn’t meant to incite breaking any of the golden rules of cyber safety: (1) always update, (2) never host WordPress ;)

Shimitar@feddit.it on 07 Feb 2024 00:29 collapse

Don’t run docker, so far it has proven quite insecure, and that was by design at first because docker was created for development environments and not for deployment.

Later docker added better security, because they understood the value in deployment too. But many distro are still insecure by default and it takes both the effort of sysadmins and image developers to deploy securely docker containers.

I switched to Podman: no daemon, no socket, no root operations out of the box. And the transition is basically seamless too.

redcalcium@lemmy.institute on 07 Feb 2024 05:06 collapse

I believe podman and containerd use runc under the hood so they’re also affected by this container escape vulnerability. You should update it to the latest version.

Shimitar@feddit.it on 07 Feb 2024 07:13 next collapse

Podman can use different tools under the hood, will check which one I am using.

redcalcium@lemmy.institute on 07 Feb 2024 09:35 collapse

I think on redhat/fedora it uses runc by default and on debian/arch it uses crun by default.

[deleted] on 07 Feb 2024 09:35 collapse

.