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.

  • sj_zero@lotide.fbxl.net
    link
    fedilink
    arrow-up
    35
    arrow-down
    1
    ·
    5 months ago

    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.

  • kevincox@lemmy.ml
    link
    fedilink
    English
    arrow-up
    3
    ·
    5 months ago

    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.

  • Shimitar@feddit.it
    link
    fedilink
    English
    arrow-up
    1
    ·
    5 months ago

    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.

    • Fisch@lemmy.ml
      link
      fedilink
      English
      arrow-up
      15
      ·
      5 months ago

      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.