fix security vulnerability in lxc module

octal/decimal confusion makes file world-writable before executing it
pull/18777/head
Chris Porter 9 years ago committed by Matt Clay
parent e3d8facc7f
commit 2b8b04638d

@ -571,7 +571,7 @@ def create_script(command):
f.close() f.close()
# Ensure the script is executable. # Ensure the script is executable.
os.chmod(script_file, 1755) os.chmod(script_file, 0700)
# Get temporary directory. # Get temporary directory.
tempdir = tempfile.gettempdir() tempdir = tempfile.gettempdir()

Loading…
Cancel
Save