From b00794f2363d507fa5e95b1d91b9442f0914cb93 Mon Sep 17 00:00:00 2001 From: Adnan Maolood Date: Tue, 9 Mar 2021 08:58:36 -0500 Subject: [PATCH] tofu: Use stricter file permissions --- tofu/tofu.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tofu/tofu.go b/tofu/tofu.go index e2fcebb..556e46e 100644 --- a/tofu/tofu.go +++ b/tofu/tofu.go @@ -83,7 +83,7 @@ func (k *KnownHosts) WriteTo(w io.Writer) (int64, error) { // Load loads the known hosts entries from the provided path. func (k *KnownHosts) Load(path string) error { - if err := os.MkdirAll(filepath.Dir(path), os.ModePerm); err != nil { + if err := os.MkdirAll(filepath.Dir(path), 0700); err != nil { return err }