this post was submitted on 07 Jan 2024
76 points (93.2% liked)
Linux
48184 readers
1261 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
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
- No misinformation
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
By default a container runs with network, storage and resources isolated from the host. What about this isolation is not "proper"?
Because OP is looking for security isolation, which isn't what containers are for. Much like an umbrella stops rain, but not bullets. You fool.
I still don't understand why you think containers aren't adequate.
Say you break into a container, how would you break out?
Kernel exploits. Containers logically isolate resources but they're still effectively running as processes on the same kernel sharing the same hardware. There was one of those just last year: https://blog.aquasec.com/cve-2022-0185-linux-kernel-container-escape-in-kubernetes
Virtual machines are a whole other beast because the isolation is enforced at the hardware level, so you have to exploit hardware vulnerabilities like Spectre or a virtual device like a couple years ago some people found a breakout bug in the old floppy emulation driver that still gets assigned to VMs by default in QEMU.
You don't design security solutions on the premise that they're not working.
Security comes in layers, so if you're serious about security you do in fact plan for things like that. You always want to limit the blast radius if your security measures fail. And most of the big cloud providers do that for their container/kubernetes offerings.
If you run portainer for example and that one gets breached, that's essentially free container escape because you can trick Docker into mounting and exposing what you need from the host to escape. It's not uncommon for people to sometimes give more permissions than the container really needs.
It's not like making a VM dedicated to running your containers cost anything. It's basically free. I don't do it all the time, but if it's exposed to the Internet and there's other stuff on the box I want to be hard to get into, like if it runs on my home server or desktop, then it definitely gets a VM.
Otherwise, why even bother putting your apps in containers? You could also just make the apps themselves fully secure and unbreachable. Why do we need a container for isolation? One should assume the app's security measures are working, right?
If they can find a kernel exploit they might find a hardware exploit too. There's no rational reason to assume containers are more likely to fail than VMs, just bias.
Oh and you can fix a kernel exploit with an update, good luck fixing a hardware exploit.
Now you're probably going to tell me how a hardware exploit is so unlikely but since we're playing make believe I can make it as likely it suits my argument, right?
Old thread, but case in point: https://snyk.io/blog/leaky-vessels-docker-runc-container-breakout-vulnerabilities/
The potential attack surface of a container will always be much larger than a VM, because a VM is its own kernel and own memory space, there's no implicit sharing with the host only explicit message passing.