From 0619c752763b5357e96fc0c83e1ef0fbe66d9c0d Mon Sep 17 00:00:00 2001 From: Skyxim Date: Mon, 26 Feb 2024 06:05:06 +0000 Subject: [PATCH] fix: url format error when host is IPv6 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [Bug] 使用IPV6地址+vmess+http伪装的配置引起内核panic MetaCubeX/mihomo#1063 --- transport/vmess/http.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transport/vmess/http.go b/transport/vmess/http.go index c77a7e9d..6da9759e 100644 --- a/transport/vmess/http.go +++ b/transport/vmess/http.go @@ -60,7 +60,7 @@ func (hc *httpConn) Write(b []byte) (int, error) { host = header[fastrand.Intn(len(header))] } - u := fmt.Sprintf("http://%s%s", host, path) + u := fmt.Sprintf("http://%s%s", net.JoinHostPort(host, "80"), path) req, _ := http.NewRequest(utils.EmptyOr(hc.cfg.Method, http.MethodGet), u, bytes.NewBuffer(b)) for key, list := range hc.cfg.Headers { req.Header.Set(key, list[fastrand.Intn(len(list))])