From d24d3b26dc1c38007c8ba2ef3977514165745a91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=96=E7=95=8C?= Date: Sun, 5 Mar 2023 13:07:26 +0800 Subject: [PATCH] Fix uTLS randomized fingerprint --- common/tls/utls_client.go | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/common/tls/utls_client.go b/common/tls/utls_client.go index 3d392dd2..cedc2712 100644 --- a/common/tls/utls_client.go +++ b/common/tls/utls_client.go @@ -165,7 +165,10 @@ func NewUTLSClient(router adapter.Router, serverAddress string, options option.O return &UTLSClientConfig{&tlsConfig, id}, nil } -var randomFingerprint utls.ClientHelloID +var ( + randomFingerprint utls.ClientHelloID + randomizedFingerprint utls.ClientHelloID +) func init() { modernFingerprints := []utls.ClientHelloID{ @@ -176,6 +179,13 @@ func init() { utls.HelloIOS_Auto, } randomFingerprint = modernFingerprints[rand.Intn(len(modernFingerprints))] + + weights := utls.DefaultWeights + weights.TLSVersMax_Set_VersionTLS13 = 1 + weights.FirstKeyShare_Set_CurveP256 = 0 + randomizedFingerprint = utls.HelloRandomized + randomizedFingerprint.Seed, _ = utls.NewPRNGSeed() + randomizedFingerprint.Weights = &weights } func uTLSClientHelloID(name string) (utls.ClientHelloID, error) { @@ -199,13 +209,7 @@ func uTLSClientHelloID(name string) (utls.ClientHelloID, error) { case "random": return randomFingerprint, nil case "randomized": - weights := utls.DefaultWeights - weights.TLSVersMax_Set_VersionTLS13 = 1 - weights.FirstKeyShare_Set_CurveP256 = 0 - randomized := utls.HelloRandomized - randomized.Seed, _ = utls.NewPRNGSeed() - randomized.Weights = &weights - return randomized, nil + return randomizedFingerprint, nil default: return utls.ClientHelloID{}, E.New("unknown uTLS fingerprint: ", name) }