From dc0725244a3163f1e2d5f51165db3a1a430f3ba0 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 27 Dec 2022 11:50:23 +0100 Subject: [PATCH] runtests: support crlf="yes" for verify/proxy CVE: CVE-2023-23914 CVE-2023-23915 Upstream-Status: Backport [https://github.com/curl/curl/pull/10138/commits/fd7e1a557e414dd803c9225e37a2ca84e1df2269] Comment: Refreshed hunk from FILEFORMAT.md Signed-off-by: Pawan Badganchi Signed-off-by: Mingli Yu --- tests/FILEFORMAT.md | 4 ++-- tests/runtests.pl | 5 +++++ 2 files changed, 7 insertions(+), 2 deletions(-) --- a/tests/FILEFORMAT.md +++ b/tests/FILEFORMAT.md @@ -540,14 +540,14 @@ One perl op per line that operates on the protocol dump. This is pretty advanced. Example: `s/^EPRT .*/EPRT stripped/`. -### `` +### `` the protocol dump curl should transmit, if 'nonewline' is set, we will cut off the trailing newline of this given data before comparing with the one actually sent by the client The `` and `` rules are applied before comparisons are made. -### `` +### `` The protocol dump curl should transmit to a HTTP proxy (when the http-proxy server is used), if 'nonewline' is set, we will cut off the trailing newline --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -4744,6 +4744,11 @@ sub singletest { } } + if($hash{'crlf'} || + ($has_hyper && ($keywords{"HTTP"} || $keywords{"HTTPS"}))) { + map subNewlines(0, \$_), @protstrip; + } + $res = compare($testnum, $testname, "proxy", \@out, \@protstrip); if($res) { return $errorreturncode;