From a3b55c90c4c4e5909c14c42559892cf9cd1cb716 Mon Sep 17 00:00:00 2001 From: RPRX <63339210+RPRX@users.noreply.github.com> Date: Sun, 5 Feb 2023 01:31:45 +0800 Subject: [PATCH] Support randomized with non-nil seed in UTLSIdToSpec (#157) --- u_parrots.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/u_parrots.go b/u_parrots.go index b8ce1a7..cf2fe39 100644 --- a/u_parrots.go +++ b/u_parrots.go @@ -1844,10 +1844,11 @@ func utlsIdToSpec(id ClientHelloID) (ClientHelloSpec, error) { }, }, }, nil - case HelloRandomized, HelloRandomizedALPN, HelloRandomizedNoALPN: - // Use empty values as they can be filled later by UConn.ApplyPreset or manually. - return generateRandomizedSpec(id, "", nil, nil) default: + if id.Client == helloRandomized || id.Client == helloRandomizedALPN || id.Client == helloRandomizedNoALPN { + // Use empty values as they can be filled later by UConn.ApplyPreset or manually. + return generateRandomizedSpec(id, "", nil, nil) + } return ClientHelloSpec{}, errors.New("ClientHello ID " + id.Str() + " is unknown") } }