43
Containers, Docker, and Security: State of the Union 1 / 43

Containers, docker, and security: state of the union (Bay Area Infracoders Meetup)

Embed Size (px)

Citation preview

Page 1: Containers, docker, and security: state of the union (Bay Area Infracoders Meetup)

Containers, Docker, and Security:

State of the Union

1 / 43

Page 2: Containers, docker, and security: state of the union (Bay Area Infracoders Meetup)

Who am I?Jérôme Petazzoni (@jpetazzo)

French software engineer living in California

Joined Docker (dotCloud) almost 5 years ago (I was at Docker before it was cool!)

I built and scaled the dotCloud PaaS (millions of containers, no known security issues)

I learned a few things about running containers (in production)

2 / 43

Page 3: Containers, docker, and security: state of the union (Bay Area Infracoders Meetup)

OutlineYesterday

Today

Tomorrow

3 / 43

Page 4: Containers, docker, and security: state of the union (Bay Area Infracoders Meetup)

Yesterday

4 / 43

Page 5: Containers, docker, and security: state of the union (Bay Area Infracoders Meetup)

Containers and Security yesterdayYesterday = Summer 2014.

At LinuxCon and OSCON, I gave a talk to answer the question:

"Is it safe to run applications in containers?"

5 / 43

Page 6: Containers, docker, and security: state of the union (Bay Area Infracoders Meetup)

Containers and Security yesterdayYesterday = Summer 2014.

At LinuxCon and OSCON, I gave a talk to answer the question:

"Is it safe to run applications in containers?"

this really meant

"Can one container break out, and into another?"

6 / 43

Page 7: Containers, docker, and security: state of the union (Bay Area Infracoders Meetup)

Containers and Security yesterdayYesterday = Summer 2014.

At LinuxCon and OSCON, I gave a talk to answer the question:

"Is it safe to run applications in containers?"

this really meant

"Can one container break out, and into another?"

Main concern: isolation

7 / 43

Page 8: Containers, docker, and security: state of the union (Bay Area Infracoders Meetup)

What was the answer?

8 / 43

Page 9: Containers, docker, and security: state of the union (Bay Area Infracoders Meetup)

What was the answer?

9 / 43

Page 10: Containers, docker, and security: state of the union (Bay Area Infracoders Meetup)

What was the answer?"It's complicated"

Long list of recommendations

some were easy (and automatically enforced by Docker)

some were not obvious (and had to be enabled manually)

some were hard to deploy (or required missing kernel features)

Video and Slides

10 / 43

Page 11: Containers, docker, and security: state of the union (Bay Area Infracoders Meetup)

How is this different today?People still ask about container isolation

Much more frequently, they ask about image security and provenance

They want to know:

if docker pull debian is what it claims to be

if jpetazzo/dind has vulnerabilities

if a given image has been vetted by their sec team

11 / 43

Page 12: Containers, docker, and security: state of the union (Bay Area Infracoders Meetup)

Why has it changed?Who cares about container isolation?

hosting providers (more density = more $$$)PAAS (for rapid deployment; on-demand activation)

→ early adopters

Who doesn't care about container isolation?

people who use VMs only because autoscalingpeople who would put multiple components permachine anyway

→ second wave of users

12 / 43

Page 13: Containers, docker, and security: state of the union (Bay Area Infracoders Meetup)

Today

13 / 43

Page 14: Containers, docker, and security: state of the union (Bay Area Infracoders Meetup)

Docker and Containers Security TodayImproving what we had yesterday (fine-grained permissions, immutable containers)

Addressing new challenges (provenance, content verification, notary)

Defense in depth (containers + VM)

The infosec mindset (better upgrades, security benchmarks, policies)

14 / 43

Page 15: Containers, docker, and security: state of the union (Bay Area Infracoders Meetup)

Finer-grained permissionsPer-container ulimit

Capability reduction with --cap-drop / --cap-add

allow network config: --cap-add net_admin

forbid everything: --cap-drop all

Device access restrictions with --device (better than --privileged!)

Improved handling of LSM (SELinux, AppArmor)

example: @frazelledazzell's bane (AppArmor profile generator for docker containers)

15 / 43

Page 16: Containers, docker, and security: state of the union (Bay Area Infracoders Meetup)

Smaller attack surfaceHardware management done on the host (no kernel, drivers, device handling... in containers)

Package management is optional (once a container is built, it doesn't need to be changed)

Minimal distros can be used (e.g. buildroot, Alpine Linux...)

Less software = less risk

16 / 43

Page 17: Containers, docker, and security: state of the union (Bay Area Infracoders Meetup)

Immutable containersdocker run --read-only (makes it impossible to entrench in a container)

Helps with vulnerability detection (audit can be performed on offline images)

Even without --read-only flag:

copy-on-write prevents changes from being permanent

break a container when hacking it → it gets recycled

docker diff allows easy audit of changes

17 / 43

Page 18: Containers, docker, and security: state of the union (Bay Area Infracoders Meetup)

Image provenanceHow can I trust docker pull debian?

I must trust upstream (i.e. Debian and whoever maintains the image)

I must trust Docker Inc. (operator of the Hub)

I must trust the transport (between the Hub and my Docker host)

18 / 43

Page 19: Containers, docker, and security: state of the union (Bay Area Infracoders Meetup)

Image provenanceHow can I trust docker pull debian?

I must trust upstream (i.e. Debian and whoever maintains the image)

I must trust Docker Inc. (operator of the Hub)

I must trust the transport (between the Hub and my Docker host)

That's a lot of trust

19 / 43

Page 20: Containers, docker, and security: state of the union (Bay Area Infracoders Meetup)

"I don't want to trust anybody!"If you don't trust upstream, you have to ...

stop using apt-get and yum with public repos

rebuild everything from source

verify source integrity (full audit + review all changes)

If you don't trust Docker Inc., you probably should ...

audit the whole Docker Engine code

audit every single patch that goes into Docker (if you can do that ... we're looking for reviewers)

20 / 43

Page 21: Containers, docker, and security: state of the union (Bay Area Infracoders Meetup)

"I'll never trust people who do curl|sh !"

21 / 43

Page 22: Containers, docker, and security: state of the union (Bay Area Infracoders Meetup)

"I'll never trust people who do curl|sh !"

22 / 43

Page 23: Containers, docker, and security: state of the union (Bay Area Infracoders Meetup)

"I'll never trust people who do curl|sh !"

23 / 43

Page 24: Containers, docker, and security: state of the union (Bay Area Infracoders Meetup)

Revisiting curl|shIt's auditable

curl https://... > review.sh ̂less review.shsh -ex review.sh

Do you install deb/rpm/npm/etc packages?

Do you review their postinstall scripts? (which, by the way, run as root)

Have you ever uploaded an npm package?

Did you have to disclose your identity, sign your upload, anything like that? (no)

24 / 43

Page 25: Containers, docker, and security: state of the union (Bay Area Infracoders Meetup)

Think twicenpm install foo is way more dangerous than curl | sh

If you're on OS X, you're probably using Brew

ruby -e "$(curl -fsSL

https://raw.githubusercontent.com/Homebrew/install/master/install)"

See also: Curl | bash a victimless crime?

25 / 43

Page 26: Containers, docker, and security: state of the union (Bay Area Infracoders Meetup)

Security reminderIt's OK to be paranoid, but beware of:

Bumps in the carpet (moving a problem rather than solving it)

Usability (if security makes it hard/impossible to work, people will work around it!)

Tinfoil hats

26 / 43

Page 27: Containers, docker, and security: state of the union (Bay Area Infracoders Meetup)

Can we trust the transport?Registry v1 protocol had serious issues:

arbitrary layer IDs

no integrity check (other than TLS transport integrity)

Registry v2 protocol has:

content-based layer IDs

signed image manifests

Is that enough?

27 / 43

Page 28: Containers, docker, and security: state of the union (Bay Area Infracoders Meetup)

Notary: a better trust

framework

28 / 43

Page 29: Containers, docker, and security: state of the union (Bay Area Infracoders Meetup)

What are we trying to address?Distributed content should be signed

Stealing a key should be hard

Stealing a key shouldn't have dire consequences

Replay attacks should be hard (=can't serve you yesterday's vulnerable version)

Should use known models and research

Existing distribution infrastructure should be used (=HTTP, HTTPS, FTP… are good)

Trusting Docker Hub should not be mandatory

29 / 43

Page 30: Containers, docker, and security: state of the union (Bay Area Infracoders Meetup)

NotaryBased on TUF (The Update Framework)

Sign content with offline keys

Trust thresholds (require K out of N keys)

(Stealing a key reduces signing requirements, but doesn't break the whole model)

Guarantee freshness

Distribute signed content on (potentially insecure) servers (leverage existing (insecure) transport and mirrors)

Enabled in Docker 1.8 by setting DOCKER_CONTENT_TRUST

30 / 43

Page 31: Containers, docker, and security: state of the union (Bay Area Infracoders Meetup)

Defense in depthSo, VM or containers?

31 / 43

Page 32: Containers, docker, and security: state of the union (Bay Area Infracoders Meetup)

Defense in depthSo, VM or containers?

VM and containers!

32 / 43

Page 33: Containers, docker, and security: state of the union (Bay Area Infracoders Meetup)

Defense in depthSo, VM or containers?

VM and containers!

Reduce number of VMs (when security perimeter allows it)

Colocated containers are safer than colocated processes

Malicious code has to escape both layers

Docker provides an extra layer of isolation

Applications are safer with containers than without

33 / 43

Page 34: Containers, docker, and security: state of the union (Bay Area Infracoders Meetup)

The infosec mindsetBetter upgrades

Accurate, actionable security benchmarks

Clear, sensible security policies

34 / 43

Page 35: Containers, docker, and security: state of the union (Bay Area Infracoders Meetup)

Better upgradesDockerfile = easy, fast, reliable builds and rebuilds

"But now I have 1000s of container images to upgrade!"

Yes, but that's way better than the 100s of server imagesthat you had before

The organizational risk is lower (because if something goes wrong, you have reliable rollbacks)

35 / 43

Page 36: Containers, docker, and security: state of the union (Bay Area Infracoders Meetup)

Security benchmarksCIS (Center of Internet Security) Docker Benchmark

Docker Bench (https://dockerbench.com) : automated assessment tool to check compliance

36 / 43

Page 37: Containers, docker, and security: state of the union (Bay Area Infracoders Meetup)

PoliciesDocker Inc. (the company) and the Docker Project (opensource) have clear security guidelines

Mandatory code reviews (see CONTRIBUTING.md) toensure quality of code base

Quarterly security audits and pen tests of ourinfrastructure

We support responsible disclosure

37 / 43

Page 38: Containers, docker, and security: state of the union (Bay Area Infracoders Meetup)

Tomorrow

38 / 43

Page 39: Containers, docker, and security: state of the union (Bay Area Infracoders Meetup)

Container security in the futurePersonal predictions - not Docker Inc.'s roadmap!

39 / 43

Page 40: Containers, docker, and security: state of the union (Bay Area Infracoders Meetup)

Container security in the futurePersonal predictions - not Docker Inc.'s roadmap!

Offline image audit

Hardening of immutable containers (noexec, nosuid)

Better GRSEC, PAX, LSM integration

User namespaces (on experimental.docker.com)

Better default seccomp profiles

40 / 43

Page 41: Containers, docker, and security: state of the union (Bay Area Infracoders Meetup)

Last wordsDavid Mortman at DEFCON this year:

“ A year ago, [Docker and security] was pretty horrible,six months ago it wasn't so bad, and now it's pretty usable.

41 / 43

Page 42: Containers, docker, and security: state of the union (Bay Area Infracoders Meetup)

ResourcesDocker security page

Docker security presentation at DockerCon 2015 SF

Docker Security CheatSheet

Notary on GitHub

Docker Bench for Security

42 / 43

Page 43: Containers, docker, and security: state of the union (Bay Area Infracoders Meetup)

Thanks! Questions?

@jpetazzo @docker

43 / 43