diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2018-05-23 15:38:24 +0200 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2018-05-23 15:38:24 +0200 |
commit | 0b647d1ca7e079f3bb2fe95c3ca7c05898315a6e (patch) | |
tree | b73f8cf72b4cda0eb218cceef76bf978a58e8704 /uapi_linux.go | |
parent | 588b9f01ae1ac81844b52c095c9abcd9326d35a3 (diff) |
Infoleak ifnames and be more permissive
Listing interfaces is already permitted by the OS, so we allow this info
leak too.
Diffstat (limited to 'uapi_linux.go')
-rw-r--r-- | uapi_linux.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/uapi_linux.go b/uapi_linux.go index 5e86628..4b74587 100644 --- a/uapi_linux.go +++ b/uapi_linux.go @@ -147,7 +147,7 @@ func UAPIOpen(name string) (*os.File, error) { // check if path exist - err := os.MkdirAll(socketDirectory, 0700) + err := os.MkdirAll(socketDirectory, 0755) if err != nil && !os.IsExist(err) { return nil, err } @@ -164,6 +164,7 @@ func UAPIOpen(name string) (*os.File, error) { return nil, err } + oldUmask := unix.Umask(0077) listener, err := func() (*net.UnixListener, error) { // initial connection attempt @@ -188,6 +189,7 @@ func UAPIOpen(name string) (*os.File, error) { } return net.ListenUnix("unix", addr) }() + unix.Umask(oldUmask) if err != nil { return nil, err |