diff options
author | Leonardo Arena <rnalrd@alpinelinux.org> | 2019-08-08 06:27:48 +0000 |
---|---|---|
committer | Leonardo Arena <rnalrd@alpinelinux.org> | 2019-08-08 06:29:51 +0000 |
commit | 095fae596fc49100874f93b298316eb4f6d24f0f (patch) | |
tree | 7ff4c7105cc63b93b7b352cbc51cd11316f6efcf /main/patch/CVE-2019-13638.patch | |
parent | c2c48f7368e24b9468874c9f0a654af0d78ec393 (diff) | |
download | aports-095fae596fc49100874f93b298316eb4f6d24f0f.tar.bz2 aports-095fae596fc49100874f93b298316eb4f6d24f0f.tar.xz |
main/patch: security fixes
Diffstat (limited to 'main/patch/CVE-2019-13638.patch')
-rw-r--r-- | main/patch/CVE-2019-13638.patch | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/main/patch/CVE-2019-13638.patch b/main/patch/CVE-2019-13638.patch new file mode 100644 index 0000000000..38caff628a --- /dev/null +++ b/main/patch/CVE-2019-13638.patch @@ -0,0 +1,38 @@ +From 3fcd042d26d70856e826a42b5f93dc4854d80bf0 Mon Sep 17 00:00:00 2001 +From: Andreas Gruenbacher <agruen@gnu.org> +Date: Fri, 6 Apr 2018 19:36:15 +0200 +Subject: Invoke ed directly instead of using the shell + +* src/pch.c (do_ed_script): Invoke ed directly instead of using a shell +command to avoid quoting vulnerabilities. +--- + src/pch.c | 6 ++---- + 1 file changed, 2 insertions(+), 4 deletions(-) + +diff --git a/src/pch.c b/src/pch.c +index 4fd5a05..16e001a 100644 +--- a/src/pch.c ++++ b/src/pch.c +@@ -2459,9 +2459,6 @@ do_ed_script (char const *inname, char const *outname, + *outname_needs_removal = true; + copy_file (inname, outname, 0, exclusive, instat.st_mode, true); + } +- sprintf (buf, "%s %s%s", editor_program, +- verbosity == VERBOSE ? "" : "- ", +- outname); + fflush (stdout); + + pid = fork(); +@@ -2470,7 +2467,8 @@ do_ed_script (char const *inname, char const *outname, + else if (pid == 0) + { + dup2 (tmpfd, 0); +- execl ("/bin/sh", "sh", "-c", buf, (char *) 0); ++ assert (outname[0] != '!' && outname[0] != '-'); ++ execlp (editor_program, editor_program, "-", outname, (char *) NULL); + _exit (2); + } + else +-- +cgit v1.0-41-gc330 + |