diff --git a/GnuPG/__init__.py b/GnuPG/__init__.py index 3a79897..19adc19 100644 --- a/GnuPG/__init__.py +++ b/GnuPG/__init__.py @@ -82,7 +82,8 @@ def confirm_key( content, email ): if not os.path.exists(tmpkeyhome): break - os.mkdir(tmpkeyhome) + # let only the owner access the directory, otherwise gpg would complain + os.mkdir(tmpkeyhome, mode=0o700) localized_env = os.environ.copy() localized_env["LANG"] = "C" p = subprocess.Popen( build_command(tmpkeyhome, '--import', '--batch'), stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE, env=localized_env )