Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMHSanaei <ho3ein.sanaei@gmail.com>2026-02-10 00:56:21 +0300
committerMHSanaei <ho3ein.sanaei@gmail.com>2026-02-10 01:36:10 +0300
commitc2f409c3c470b677cf9a885767ccd3a13b0f6c28 (patch)
tree9319dae3c81f2167a809663abf93154e2f0347f4 /web/service
parent0994f8756f18a37f222c436d3525fc39c22abb8e (diff)
fix security issue
Diffstat (limited to 'web/service')
-rw-r--r--web/service/outbound.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/web/service/outbound.go b/web/service/outbound.go
index c55999b3..ba0205e5 100644
--- a/web/service/outbound.go
+++ b/web/service/outbound.go
@@ -1,7 +1,6 @@
package service
import (
- "crypto/tls"
"encoding/json"
"fmt"
"io"
@@ -352,7 +351,6 @@ func (s *OutboundService) testConnection(proxyPort int, testURL string) (int64,
Timeout: 5 * time.Second,
KeepAlive: 30 * time.Second,
}).DialContext,
- TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
MaxIdleConns: 1,
IdleConnTimeout: 10 * time.Second,
DisableCompression: true,