{ "schema_version": "1.4.0", "id": "GHSA-whmm-qj9r-wvr2", "modified": "2026-07-28T22:15:28Z", "published": "2026-07-28T22:15:28Z", "aliases": [ "CVE-2026-54638" ], "summary": "td has pre-auth denial of service via unbounded memory allocation in proto.UnencryptedMessage.Decode", "details": "### Impact\n\nA remote, unauthenticated attacker can cause excessive memory allocation (and resulting CPU / GC pressure, potentially OOM termination) by sending a crafted unencrypted MTProto packet.\n\n`(*proto.UnencryptedMessage).Decode` read an attacker-controlled 32-bit `dataLen` field and immediately allocated a buffer of that size via `make([]byte, dataLen)` **before** validating that the underlying buffer actually contained that many bytes. A 20-byte packet declaring a ~1.75 GB payload (e.g. `dataLen = 0x70000000`) forces the runtime to provision and zero-initialize a multi-gigabyte heap allocation before the length is rejected.\n\nUnencrypted messages are part of the unauthenticated MTProto handshake path, so no credentials or established session are required to reach the vulnerable code.\n\nImpact is limited to availability; there is no evidence of memory corruption, out-of-bounds access, or code execution.\n\n### Patches\n\nFixed in **v0.145.1** by validating `dataLen` against the remaining buffer length before allocation (commit `9d5d1f31e`).\n\n### Workarounds\n\nUpgrade to v0.145.1 or later. There is no in-process workaround for affected versions short of avoiding exposure of the unauthenticated MTProto parsing path to untrusted peers.", "severity": [ { "type": "CVSS_V3", "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" } ], "affected": [ { "package": { "ecosystem": "Go", "name": "github.com/gotd/td" }, "ranges": [ { "type": "ECOSYSTEM", "events": [ { "introduced": "0" }, { "fixed": "0.145.1" } ] } ] } ], "references": [ { "type": "WEB", "url": "https://github.com/gotd/td/security/advisories/GHSA-whmm-qj9r-wvr2" }, { "type": "WEB", "url": "https://github.com/gotd/td/issues/1711" }, { "type": "WEB", "url": "https://github.com/gotd/td/commit/9d5d1f31ea5022d9798d84ccce15de2e91ba6baa" }, { "type": "PACKAGE", "url": "https://github.com/gotd/td" }, { "type": "WEB", "url": "https://github.com/gotd/td/releases/tag/v0.145.1" } ], "database_specific": { "cwe_ids": [ "CWE-770", "CWE-789" ], "severity": "HIGH", "github_reviewed": true, "github_reviewed_at": "2026-07-28T22:15:28Z", "nvd_published_at": null } }