summaryrefslogtreecommitdiff
path: root/src/tac.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tac.c')
-rw-r--r--src/tac.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tac.c b/src/tac.c
index 0aefe8d86..06deca2e2 100644
--- a/src/tac.c
+++ b/src/tac.c
@@ -394,6 +394,8 @@ save_stdin (FILE **g_tmp, char **g_tempfile)
sprintf (template, "%s/tacXXXXXX", tempdir);
tempfile = mktemp (template);
+ /* Open temporary file exclusively, to foil a common
+ denial-of-service attack. */
fd = open (tempfile, O_RDWR | O_CREAT | O_TRUNC | O_EXCL, 0600);
if (fd == -1)
error (EXIT_FAILURE, errno, "%s", tempfile);