unofficial mirror of meta@public-inbox.org
 help / color / mirror / Atom feed
* [PATCH] script/lei: umask(077) before execve
@ 2021-09-17 12:12 Eric Wong
  0 siblings, 0 replies; only message in thread
From: Eric Wong @ 2021-09-17 12:12 UTC (permalink / raw)
  To: meta

While my MUA also runs umask(077) unconditionally, not all
MUAs do.  Additionally, pagers may support writing its buffer
to disk, so ensure anything else we spawn has umask(077).
---
 script/lei | 1 +
 1 file changed, 1 insertion(+)

diff --git a/script/lei b/script/lei
index 2d84487a..591013e3 100755
--- a/script/lei
+++ b/script/lei
@@ -53,6 +53,7 @@ my $exec_cmd = sub {
 		}
 		my %env = map { split(/=/, $_, 2) } splice(@argv, $argc);
 		@ENV{keys %env} = values %env;
+		umask 077;
 		exec(@argv);
 		warn "exec: @argv: $!\n";
 		POSIX::_exit(1);

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2021-09-17 12:12 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-17 12:12 [PATCH] script/lei: umask(077) before execve Eric Wong

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).