From 161e71adf3539b8e46bfacf0c78a4773fc52bc80 Mon Sep 17 00:00:00 2001 From: Jeff Mitchell Date: Tue, 19 Apr 2016 16:01:15 +0000 Subject: [PATCH] There's no good story around accessing any of core via /sys/raw, so blacklist it all --- vault/logical_system.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/vault/logical_system.go b/vault/logical_system.go index b97d0b3d90..238ce5182f 100644 --- a/vault/logical_system.go +++ b/vault/logical_system.go @@ -14,8 +14,7 @@ var ( // protectedPaths cannot be accessed via the raw APIs. // This is both for security and to prevent disrupting Vault. protectedPaths = []string{ - barrierInitPath, - keyringPath, + "core", } )