[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#54921: eww/url mishandles IDN over proxy
From: |
Lars Ingebrigtsen |
Subject: |
bug#54921: eww/url mishandles IDN over proxy |
Date: |
Fri, 15 Apr 2022 10:35:02 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 (gnu/linux) |
Andreas Schwab <schwab@linux-m68k.org> writes:
> The proxy just receives the full URL in the GET request. Something like
> this, but puny-encode-domain must only be called with the domain name.
Right. Does the following untested patch work?
diff --git a/lisp/url/url-http.el b/lisp/url/url-http.el
index 96a4742956..b5bcd123c7 100644
--- a/lisp/url/url-http.el
+++ b/lisp/url/url-http.el
@@ -332,7 +332,10 @@ url-http-create-request
(if (and using-proxy
;; Bug#35969.
(not (equal "https" (url-type url-http-target-url))))
- (url-recreate-url url-http-target-url) real-fname))
+ (let ((url (copy-sequence url-http-target-url)))
+ (setf (url-host url) (puny-encode-domain (url-host url)))
+ (url-recreate-url url))
+ real-fname))
" HTTP/" url-http-version "\r\n"
;; Version of MIME we speak
"MIME-Version: 1.0\r\n"
--
(domestic pets only, the antidote for overdose, milk.)
bloggy blog: http://lars.ingebrigtsen.no
- bug#54921: eww/url mishandles IDN over proxy, (continued)
- bug#54921: eww/url mishandles IDN over proxy, Lars Ingebrigtsen, 2022/04/14
- bug#54921: eww/url mishandles IDN over proxy, Andreas Schwab, 2022/04/14
- bug#54921: eww/url mishandles IDN over proxy, Lars Ingebrigtsen, 2022/04/14
- bug#54921: eww/url mishandles IDN over proxy, Andreas Schwab, 2022/04/14
- bug#54921: eww/url mishandles IDN over proxy, Lars Ingebrigtsen, 2022/04/14
- bug#54921: eww/url mishandles IDN over proxy, Andreas Schwab, 2022/04/14
- bug#54921: eww/url mishandles IDN over proxy, Lars Ingebrigtsen, 2022/04/14
- bug#54921: eww/url mishandles IDN over proxy, Andreas Schwab, 2022/04/14
- bug#54921: eww/url mishandles IDN over proxy, Lars Ingebrigtsen, 2022/04/14
- bug#54921: eww/url mishandles IDN over proxy, Andreas Schwab, 2022/04/14
- bug#54921: eww/url mishandles IDN over proxy,
Lars Ingebrigtsen <=
- bug#54921: eww/url mishandles IDN over proxy, Andreas Schwab, 2022/04/15
- bug#54921: eww/url mishandles IDN over proxy, Lars Ingebrigtsen, 2022/04/15
- bug#54921: eww/url mishandles IDN over proxy, Andreas Schwab, 2022/04/15
- bug#54921: eww/url mishandles IDN over proxy, Lars Ingebrigtsen, 2022/04/16