Zheng Ruoqin
2020-12-15 15:22:57 +08:00
committed by Khem Raj
parent baee1ebeaf
commit aff8a1fefb
2 changed files with 25 additions and 0 deletions
@@ -0,0 +1,24 @@
Subject: Patch fix-urldecode for HTTP related Bug #79699
---
main/php_variables.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/main/php_variables.c b/main/php_variables.c
index 1a40c2a1..cbdc7cf1 100644
--- a/main/php_variables.c
+++ b/main/php_variables.c
@@ -514,7 +514,9 @@ SAPI_API SAPI_TREAT_DATA_FUNC(php_default_treat_data)
}
val = estrndup(val, val_len);
- php_url_decode(var, strlen(var));
+ if (arg != PARSE_COOKIE) {
+ php_url_decode(var, strlen(var));
+ }
if (sapi_module.input_filter(arg, var, &val, val_len, &new_val_len)) {
php_register_variable_safe(var, val, new_val_len, &array);
}
--
2.25.1
@@ -30,6 +30,7 @@ SRC_URI_append_class-target = " \
file://phar-makefile.patch \ file://phar-makefile.patch \
file://0001-opcache-config.m4-enable-opcache.patch \ file://0001-opcache-config.m4-enable-opcache.patch \
file://xfail_two_bug_tests.patch \ file://xfail_two_bug_tests.patch \
file://CVE-2020-7070.patch \
" "
S = "${WORKDIR}/php-${PV}" S = "${WORKDIR}/php-${PV}"