9102c78185
- Add a backport of https://github.com/moby/moby/pull/35399, which fixes a security issue where a Docker container (with a disabled AppArmor profile) could write to /proc/scsi/... and subsequently DoS the host. bsc#1066801 CVE-2017-16539 + bsc1066801-0001-oci-add-proc-scsi-to-masked-paths.patch OBS-URL: https://build.opensuse.org/request/show/539455 OBS-URL: https://build.opensuse.org/package/show/Virtualization:containers/docker?expand=0&rev=210
33 lines
918 B
Diff
33 lines
918 B
Diff
From 48dad93f2bfc6ac5a201e98d6029fcff9cfbba80 Mon Sep 17 00:00:00 2001
|
|
From: Aleksa Sarai <asarai@suse.de>
|
|
Date: Tue, 7 Nov 2017 18:32:41 +1100
|
|
Subject: [PATCH] oci: add /proc/scsi to masked paths
|
|
|
|
This is writeable, and can be used to remove devices. Containers do
|
|
not need to know about scsi devices.
|
|
|
|
Fixes: CVE-2017-16539
|
|
SUSE-Bug: https://bugzilla.suse.com/show_bug.cgi?id=1066801
|
|
Signed-off-by: Justin Cormack <justin.cormack@docker.com>
|
|
Signed-off-by: Aleksa Sarai <asarai@suse.de>
|
|
---
|
|
oci/defaults.go | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/oci/defaults.go b/oci/defaults.go
|
|
index d706fafcc021..188ec3149659 100644
|
|
--- a/oci/defaults.go
|
|
+++ b/oci/defaults.go
|
|
@@ -132,6 +132,8 @@ func DefaultLinuxSpec() specs.Spec {
|
|
"/proc/timer_list",
|
|
"/proc/timer_stats",
|
|
"/proc/sched_debug",
|
|
+ "/sys/firmware",
|
|
+ "/proc/scsi",
|
|
},
|
|
ReadonlyPaths: []string{
|
|
"/proc/asound",
|
|
--
|
|
2.14.3
|
|
|