summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorThomas Bruederli <thomas@roundcube.net>2013-04-10 23:38:50 +0200
committerThomas Bruederli <thomas@roundcube.net>2013-04-10 23:39:49 +0200
commit2741d8ecedb156773328750be0d09ecc89afa4bd (patch)
treee5b9e6cd37c876f2bb0d1e58921d5433a38979f3 /plugins
parent706d3f472f1607004ae35a155a80c63239509323 (diff)
Set minimal permissions to temp files (#148899)
Diffstat (limited to 'plugins')
-rw-r--r--plugins/filesystem_attachments/filesystem_attachments.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/filesystem_attachments/filesystem_attachments.php b/plugins/filesystem_attachments/filesystem_attachments.php
index fa147795f..063f6d5e4 100644
--- a/plugins/filesystem_attachments/filesystem_attachments.php
+++ b/plugins/filesystem_attachments/filesystem_attachments.php
@@ -60,6 +60,7 @@ class filesystem_attachments extends rcube_plugin
$args['id'] = $this->file_id();
$args['path'] = $tmpfname;
$args['status'] = true;
+ @chmod($tmpfname, 0600); // set correct permissions (#148899)
// Note the file for later cleanup
$_SESSION['plugins']['filesystem_attachments'][$group][] = $tmpfname;