You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Config directory created with world-writable mode. os.MkdirAll(dir, os.ModePerm) creates directories as 0777 (subject to umask). This is too permissive for user config storage and can allow local tampering.
Describe the bug
Config directory created with world-writable mode.
os.MkdirAll(dir, os.ModePerm)creates directories as0777(subject to umask). This is too permissive for user config storage and can allow local tampering.