26
Security Symposium #SecuritySymposium

Security Symposium€¦ · containers Security Symposium Scott McCarty Principal Technical Product Manager 2020 2. ... Developers, operations, middleware, performance, and security

  • Upload
    others

  • View
    0

  • Download
    0

Embed Size (px)

Citation preview

Page 1: Security Symposium€¦ · containers Security Symposium Scott McCarty Principal Technical Product Manager 2020 2. ... Developers, operations, middleware, performance, and security

Security Symposium

#SecuritySymposium

Page 2: Security Symposium€¦ · containers Security Symposium Scott McCarty Principal Technical Product Manager 2020 2. ... Developers, operations, middleware, performance, and security

The security implications of running software in containers

Security Symposium

Scott McCartyPrincipal Technical Product Manager

2020

2

Page 3: Security Symposium€¦ · containers Security Symposium Scott McCarty Principal Technical Product Manager 2020 2. ... Developers, operations, middleware, performance, and security

Scott McCart - Twitter: @fatherlinux

3

2020 Security Symposium Welcome

#SecuritySym

posium

Thank you for joining us for two days of security technology conversations.

A few notes:● We have three tracks with multiple talks:

○ Security and Compliance Automation (May 14)○ Containers and Kubernetes Security (May 14) ○ DevSecOps (May 15)

● → You must register for each unique webinar and panel.● All sessions will be available on-demand, kindly register and you’ll be invited to view

on-demand presentations.● View attachments tab for links to presentations and/or collateral. ● Want more? Grab this ebook on Boosting Hybrid Cloud Security red.ht/security101● The panels are live, send us your questions throughout each day to

[email protected].● Keep an eye out for the ‘Financial Services Security Automation Summit’ on June 11

on BrightTalk .

Page 4: Security Symposium€¦ · containers Security Symposium Scott McCarty Principal Technical Product Manager 2020 2. ... Developers, operations, middleware, performance, and security

Scott McCart - Twitter: @fatherlinux

4

The security implications of running software in containers

“Just because you’re paranoid doesn’t mean they aren’t after you.”― Joseph Heller, Catch-22

Page 5: Security Symposium€¦ · containers Security Symposium Scott McCarty Principal Technical Product Manager 2020 2. ... Developers, operations, middleware, performance, and security

The problems

Page 6: Security Symposium€¦ · containers Security Symposium Scott McCarty Principal Technical Product Manager 2020 2. ... Developers, operations, middleware, performance, and security

Scott McCart - Twitter: @fatherlinux

Virtualization

Hypervisor

Virtual machine

Kernel space

6

The problems

Move the kernel around or move the

user space around:

▸ Fancy processes

▸ Breaking the OS into 2 pieces

▸ All containers share a kernel

▸ Root-only exploits can be bad

Containers don’t contain

User space

Containerization

Hypervisor

Container image

Kernel space

User space

Dan Walsh (my shirt is dedicated to you)

Page 7: Security Symposium€¦ · containers Security Symposium Scott McCarty Principal Technical Product Manager 2020 2. ... Developers, operations, middleware, performance, and security

Scott McCart - Twitter: @fatherlinux

7

The problems

Container images

Developers, operations, middleware, performance,

and security specialists all have a role to play.

▸ Fancy files?

▸ Who controls what?

▸ Who is responsible for what?

▸ What about bad content?WordPress (repository)

7

Registry server

Drupal (repository)

Image layer

WordPress (repository)

Image layer

Joomla (repository)

Image layer

Image layer

Image layer

Image layer

WordPress

Php + fpm + httpd

corebuild

Layers and tags Registry

Currency for collaboration

Page 8: Security Symposium€¦ · containers Security Symposium Scott McCarty Principal Technical Product Manager 2020 2. ... Developers, operations, middleware, performance, and security

Scott McCart - Twitter: @fatherlinux

8

The problems

Code: mysqld

Configuration:

/etc/my.cnf

Data: /var/lib/mysql

Hard work

Other stuff

Page 9: Security Symposium€¦ · containers Security Symposium Scott McCarty Principal Technical Product Manager 2020 2. ... Developers, operations, middleware, performance, and security

New concepts

Page 10: Security Symposium€¦ · containers Security Symposium Scott McCarty Principal Technical Product Manager 2020 2. ... Developers, operations, middleware, performance, and security

Scott McCart - Twitter: @fatherlinux

CIA

10

New concepts

Has data leaked from the

container platform?

ConfidentialityHas somebody tampered

with the container?

IntegrityIs the container up

and running?

Availability

Not them, but yeah, they might be after you too …

Page 11: Security Symposium€¦ · containers Security Symposium Scott McCarty Principal Technical Product Manager 2020 2. ... Developers, operations, middleware, performance, and security

Scott McCart - Twitter: @fatherlinux

11

New concepts

Integrity

11

Container

Virtual server

Container Virtual server

Container

Virtual server

Page 12: Security Symposium€¦ · containers Security Symposium Scott McCarty Principal Technical Product Manager 2020 2. ... Developers, operations, middleware, performance, and security

Scott McCart - Twitter: @fatherlinux

12

New concepts

Defense in depthThe practice of arranging defensive lines or fortifications so that they can

defend each other, especially in case of an enemy incursion

Can we harden each layer?

✓ Image scanning, signing, and blueprinting

✓ Container host hardening

✓ Platform delegation practices

Container platform

Container hosts

Container images

Page 13: Security Symposium€¦ · containers Security Symposium Scott McCarty Principal Technical Product Manager 2020 2. ... Developers, operations, middleware, performance, and security

Scott McCart - Twitter: @fatherlinux

13

New concepts

The tenancy scale

13

Process Container Virtual server Physical server Rack Datacenter

Page 14: Security Symposium€¦ · containers Security Symposium Scott McCarty Principal Technical Product Manager 2020 2. ... Developers, operations, middleware, performance, and security

Scott McCart - Twitter: @fatherlinux

14

New concepts

SELinux SECCOMP

Security controls

▸ Who you can talk to Which objects in the kernel can

communicate with other objects

▸ What you can sayLimiting system calls is like limiting

what words can be said

Page 15: Security Symposium€¦ · containers Security Symposium Scott McCarty Principal Technical Product Manager 2020 2. ... Developers, operations, middleware, performance, and security

New technical controls

Page 16: Security Symposium€¦ · containers Security Symposium Scott McCarty Principal Technical Product Manager 2020 2. ... Developers, operations, middleware, performance, and security

Scott McCart - Twitter: @fatherlinux

Bill of materials

Signing

Read-only containers

Podman diff to see what changed in a container

16

New technical controls

Container imagesOur current operating model controls

✓ Trusted content

✓ Content provenance

✓ Security scans

✓ Remediation/patching

✓ Bill of materials

✓ CVE databases

✓ Security response teams

✓ Limited root access

✓ Limited user access

Containers add the ability to easily apply techniques

Page 17: Security Symposium€¦ · containers Security Symposium Scott McCarty Principal Technical Product Manager 2020 2. ... Developers, operations, middleware, performance, and security

Scott McCart - Twitter: @fatherlinux

Since containers are just fancy processes

with a well-controlled user space, it’s

easier to apply techniques like ...

NO_NEW_PRIVS, Read Only Images, –cap-drop=ALL, –user=user

17

New technical controls

Container host

✓ Kernel quality

✓ Capabilities

✓ Read-only images

✓ Limiting SSH access

✓ Well understood and controlled configuration

✓ Tenancy

SECCOMP + sVirt

Hardening:

We apply many of these techniques today:

Page 18: Security Symposium€¦ · containers Security Symposium Scott McCarty Principal Technical Product Manager 2020 2. ... Developers, operations, middleware, performance, and security

Scott McCart - Twitter: @fatherlinux

18

New technical controls

Container platform

This layer exists in the world of physical and virtual servers but is typically an administrator-only tool, such as vCenter or HPSA.

In the world of containers, it’s much more common to delegate some access to developers, architects, and application owners.

▸ Role-based authorization

▸ Authentication

▸ Environment isolation

▸ User demarcation

▸ Network separation

▸ Key management

Page 19: Security Symposium€¦ · containers Security Symposium Scott McCarty Principal Technical Product Manager 2020 2. ... Developers, operations, middleware, performance, and security

Scott McCart - Twitter: @fatherlinux

Network firewall (possibly layer 7)

Host-based firewall

Kernel quality

CVE database

Well-understood tenancy

Understood remediation and patching

Security scanning

19

New technical controls

Standard web applicationMany security controls are inconvenient

Tripwire, SELinux, SECCOMP usually disabled

Mutable user space

No temporal understanding

No spatial understanding (code, configuration, data)

No platform delegation granularity

Patched infrequently

Benefits Limitations

Page 20: Security Symposium€¦ · containers Security Symposium Scott McCarty Principal Technical Product Manager 2020 2. ... Developers, operations, middleware, performance, and security

Scott McCart - Twitter: @fatherlinux

20

New technical controls

Containerized web application

All tools from standard web application

Read-only containers

Signing

Platform delegation

Spatial and temporal understanding of containers and application

Updates practiced more

Benefits Limitations

Tenancy not well understood

Shared kernel

Applications hard to break up into code/configuration/data

More infrastructure (platform and management)

Need better understanding of applications

Many security controls are essentially free

Page 21: Security Symposium€¦ · containers Security Symposium Scott McCarty Principal Technical Product Manager 2020 2. ... Developers, operations, middleware, performance, and security

Questions?

Page 22: Security Symposium€¦ · containers Security Symposium Scott McCarty Principal Technical Product Manager 2020 2. ... Developers, operations, middleware, performance, and security

Scott McCart - Twitter: @fatherlinux

22

Questions

CitationsGitHub: Supply chain demo: http://bit.ly/2aY1WEO

The New Stack: Container defense in depth: http://bit.ly/2buXflB

Red Hat: Architecting containers series: http://red.ht/2aXjVJF

Red Hat: A practical introduction to Docker terminology: http://red.ht/2beXHDD

WhatIs: Confidentiality, Integrity, and Availability: http://bit.ly/2bcStO9

Page 23: Security Symposium€¦ · containers Security Symposium Scott McCarty Principal Technical Product Manager 2020 2. ... Developers, operations, middleware, performance, and security

Scott McCart - Twitter: @fatherlinux

23

Questions

Page 24: Security Symposium€¦ · containers Security Symposium Scott McCarty Principal Technical Product Manager 2020 2. ... Developers, operations, middleware, performance, and security

Security Symposium

#SecuritySymposium

Page 25: Security Symposium€¦ · containers Security Symposium Scott McCarty Principal Technical Product Manager 2020 2. ... Developers, operations, middleware, performance, and security
Page 26: Security Symposium€¦ · containers Security Symposium Scott McCarty Principal Technical Product Manager 2020 2. ... Developers, operations, middleware, performance, and security

Taming container fears

The security implications of running software in containers

Scott McCartyPrincipal Product ManagerContainers: Red Hat Enterprise Linux & Red Hat OpenShift