TNS
VOXPOP
How has the recent turmoil within the OpenAI offices changed your plans to use GPT in a business process or product in 2024?
Increased uncertainty means we are more likely to evaluate alternative AI chatbots and LLMs.
0%
No change in plans, though we will keep an eye on the situation.
0%
With Sam Altman back in charge, we are more likely to go all-in with GPT and LLMs.
0%
What recent turmoil?
0%
Security

Thirteen Ways Containers are More Secure than Virtual Machines

Jun 10th, 2016 10:09am by
Featued image for: Thirteen Ways Containers are More Secure than Virtual Machines

Rob Hirschfeld
Rob Hirschfeld is CEO and co-founder of RackN, which offers orchestration software for the container-centric data center. He has been in the cloud and infrastructure space for nearly 15 years, from working with early ESX betas to serving four terms on the OpenStack Foundation Board. As a co-founder of the Digital Rebar project, Rob creating a new generation of DevOps orchestration tools to leverage the containers and service-oriented ops. He believes that the technology of running data centers and applications on cloud is just part of the bigger story. Trained as an Industrial Engineer, he carries a passion for applying Lean and Agile process to software delivery.

Last year, conventional wisdom had it that containers were much less secure than virtual machines (VMs)! Why? Because it was easier to break out of the container abstraction layer, which is arguably weaker than VM abstractions supported by hardware VT-x optimization. Once broken loose, malicious code could easily attack the host. Even worse, once the host is compromised, the containers lack their own operating system barriers leaving them basically undefended. Since containers have such thin separating walls; it was easy to paint these back door risks with a broad brush.

Here’s a reality check: Front door attacks and unpatched vulnerabilities are much more likely than these backdoor hacks.

The proliferation of uniquely configured VMs running bloated operating systems with inconsistent security practices is our primary security concern. In fact, light-by-design container configurations tend to have much less attack surface and the thin walls actually make it easier to enhance security before and after deployment.

Without any inherent technical advantage, containers are more secure in at least six ways I can easily describe:

  1. No ssh enabled into containers: This takes away the front door for most attacks.
  2. No user access expected: No users eliminates the need for credentials or tools to support users.
  3. Container systems restrict ports by default: Since containers are services, we are generally more specific and limiting about which ports to connect.
  4. Short-lived containers are unlikely bases for attackers: It’s hard to hop through a system that may only be around for minutes or even seconds.
  5. Immutable designs make it difficult to inject malware: We don’t persist application areas of the file systems in containers so they don’t retain injected programs.
  6. Automatic generation makes it faster to pick up and promote security patches: With automated build from CI/CD pipelines, updating code and libraries into production can happen very quickly without manual effort.

Moreover, best practices around containers are offering additional safeguards:

  1. Pre-deploy sources and dependency validation: These services check containers to make sure that they are using valid and expected code paths.
  2. Pre-deploy authenticity validation: Taking the above checks another step, we can ensure chain of trust on containers to ensure that the code has not been tampered with.
  3. Pre-deploy image scanning for vulnerabilities: Even better, these services automatically evaluate containers for known issues by looking for signatures of compromised packages.
  4. Active vulnerability scans of running containers: Once deployed, services external to the container can watch containers for intrusions and halt or intercept attacks.
  5. Network routing that includes traffic inspection: Since network routing is so fundamental in container orchestration, it makes sense to include a layer of security into those services to effectively create a function based service firewall.
  6. Integrated log capture: Since there’s no local storage, most container patterns are including central log capture and analysis as a first class citizen. This makes log analysis much easier.
  7. External injection of trust and credentials: The service pattern for containers does not allow injecting credentials in the container or code. This means that we are building trust systems based on giving credentials just-in-time to running live instances rather than static code.

That’s a lot of ways that containers will emerge as more secure than current VM image based models! The primary new non-VM benefit is the use of containers’ thin walls to provide cross-cutting security and other services at the host level.  It should not be surprising to advanced users that most of the improvements come from strong architecture patterns that are required for container services. The market for these services is just beginning.

Feature image via Pixabay.

Group Created with Sketch.
THE NEW STACK UPDATE A newsletter digest of the week’s most important stories & analyses.