summaryrefslogtreecommitdiff
path: root/debian/patches/0115-r7406_also_consider_the_back_tick_as_an_illegal_shell_escape_character.p...
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhosting.net>2015-12-14 21:16:16 +0100
committerJörg Frings-Fürst <debian@jff-webhosting.net>2015-12-14 21:16:16 +0100
commita3abbef2d2f8c7e62d2fe64f64afe294563fdf8f (patch)
tree4fc12fb380a9ba17e271f349be47ce3dd7daec2a /debian/patches/0115-r7406_also_consider_the_back_tick_as_an_illegal_shell_escape_character.patch
parent80e944b1eb113f62bc509f94392e7f03c54a140e (diff)
debian bung #807931
Diffstat (limited to 'debian/patches/0115-r7406_also_consider_the_back_tick_as_an_illegal_shell_escape_character.patch')
-rw-r--r--debian/patches/0115-r7406_also_consider_the_back_tick_as_an_illegal_shell_escape_character.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/debian/patches/0115-r7406_also_consider_the_back_tick_as_an_illegal_shell_escape_character.patch b/debian/patches/0115-r7406_also_consider_the_back_tick_as_an_illegal_shell_escape_character.patch
deleted file mode 100644
index 8e5e404..0000000
--- a/debian/patches/0115-r7406_also_consider_the_back_tick_as_an_illegal_shell_escape_character.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-Description: foomatic-rip: SECURITY FIX: Also consider the back tick ('`') as
- an illegal shell escape character. Thanks to Michal Kowalczyk from the Google
- Security Team for the hint.
-Author: Till Kamppeter <till.kamppeter@gmail.com>
-Bug-CVE: CVE-2015-8327
-Origin: upstream
-Last-Update: 2015-11-26
-
---- a/util.c
-+++ b/util.c
-@@ -31,7 +31,7 @@
- #include <assert.h>
-
-
--const char* shellescapes = "|<>&!$\'\"#*?()[]{}";
-+const char* shellescapes = "|<>&!$\'\"`#*?()[]{}";
-
- const char * temp_dir()
- {