更新grok算法

This commit is contained in:
2026-07-13 10:14:52 +08:00
parent 62595de79f
commit 0822628bfc
+8 -8
View File
@@ -458,14 +458,14 @@ func fetchStatsigChallenge(ctx context.Context, client tlsclient.HttpClient, tok
seedB64: mm[1], seedB64: mm[1],
curvesJSON: string(curvesJSON), curvesJSON: string(curvesJSON),
} }
// Best-effort static derivation (the old hand-ported algorithm) as fallback. // NOTE: the old hand-ported per-session derivation (0x00+seed header +
if seed, err := decodeStatsigSeed(mm[1]); err == nil { // computeStatsigTail salt) is intentionally NOT applied here. Verified
if tail, err := computeStatsigTail(seed, curves); err == nil { // 2026-07-13 against /rest/app-chat/conversations/new: that dynamic token is
ch.header = append([]byte{0x00}, seed...) // rejected ("Request rejected by anti-bot rules.", 403), while the static
ch.suffix = statsigSaltPrefix + tail // (header, salt) defaults are accepted (200) — so we keep the static values
ch.trailer = defaultStatsigTrailer // as the fallback. When the goja signer (ensureEngine above) locates and
} // verifies grok's own chunk it still takes over via seedB64/curvesJSON in
} // statsigID; computeStatsigTail is retained only for reference/tests.
return ch, nil return ch, nil
} }