CVE-2026-65652 PUBLISHED

temporalio/tchannel-go malformed checksum type causes process termination

Assigner: Temporal
Reserved: 22.07.2026 Published: 21.09.2026 Updated: 21.09.2026

github.com/temporalio/tchannel-go did not validate the one-byte checksum-type field in inbound TChannel call frames. A network peer that can reach a listener can complete the standard initialization handshake and send a call request with an unsupported checksum type. The parser uses that value as an index into a four-entry checksum pool, causing an unrecovered Go panic on the connection read goroutine and terminating the hosting process. This allows remote denial of service against applications that expose the listener to untrusted peers. The impact is limited to availability; no confidentiality or integrity impact was identified.

Metrics

CVSS Vector: CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N
CVSS Score: 8.7

temporalio/tchannel-go reasonable worst-case network service embedding

Product Status

Vendor Temporal Technologies, Inc.
Product temporalio/tchannel-go
Versions Default: unaffected
  • affected from 0.0.0-20160105034737-a6904155f628 to 1.22.1-0.20260720194454-0cb017f6870a (excl.)

Affected Configurations

The CVSS Base score reflects an application that exposes a tchannel-go listener to untrusted network peers without an authenticated transport. The library accepts caller-supplied listeners and dialers, so an embedding application can require mutually authenticated TLS. When client certificates are required and verified, unauthenticated peers are rejected before TChannel frame parsing and the deployment should be assessed using appropriate Environmental metrics.

Workarounds

Restrict TChannel listener access to trusted peers. Where supported by the embedding application, require mutually authenticated TLS so peers without a trusted client certificate are rejected before TChannel frame parsing. External panic-recovery middleware is not a reliable mitigation because the panic occurs on a library-created connection goroutine.

Solutions

Upgrade github.com/temporalio/tchannel-go to v1.22.1 or later. The fix rejects unsupported checksum types during direct and relay frame parsing and prevents out-of-range checksum-pool access.

Credits

  • An external security researcher who reported this issue responsibly to Temporal Technologies finder

References

Problem Types

  • CWE-129: Improper Validation of Array Index CWE

Impacts

  • Denial of service: one malformed TChannel call request can cause an unrecovered panic and terminate the process hosting the listener. No confidentiality or integrity impact was identified.