The CVSS 6.3 rating for CVE-2026-73576 almost certainly understates the actual risk, and here's why you should treat this as higher priority than the score suggests.

The vulnerability stems from insufficient entropy in JWT signing key generation for the Zimbra-OnlyOffice integration. The CVE describes this as 'insecure random number generator' or 'insufficient entropy,' but these labels obscure a critical detail: the actual effective keyspace. If the generated secret has only 2^32 possible values, it's crackable on a laptop in seconds. If it has 2^128, it's not. The severity assessment is essentially meaningless without knowing which it is.

You need to answer three questions to scope your exposure:

First, what is the actual entropy? Check the OnlyOffice integration code path in your ZCS deployment. Look for how zimbraDocumentEditingJwtSecret is generated — if it uses Math.random(), a seeded LCG, or any non-cryptographic PRNG, assume 2^32 or worse. If it uses crypto.randomBytes() or /dev/urandom, the risk profile changes dramatically. You may need to audit the specific ZCS version and patch to confirm.

Second, what privileges does a forged JWT grant? The CVE is silent on this, but it matters enormously. A token scoped only to document open/save operations is a confidentiality issue. A token that establishes a full ZCS session, grants mailbox access, or enables administrative actions is a full account takeover. Review what the OnlyOffice integration actually does when it validates a JWT — if it triggers session creation or proxies requests to ZCS APIs on the caller's behalf, treat this as critical.

Third, how easy is JWT acquisition? The CVE says an attacker who 'obtains a JWT' can recover the signing secret. JWTs appear in server logs, browser storage, proxy logs, and HTTP archives far more often than in intercepted network traffic. Check whether your ZCS deployment logs JWTs at debug level or embeds them in return URLs — if either is true, the acquisition barrier is low and the practical severity approaches 'any user with log access.'

Finally, consider the key reuse question. If the secret generation code is identical across ZCS deployments (the historical pattern in integration code like this), a single cracked secret may work against every unpatched instance. This is the Debian OpenSSL pattern — one keyspace collapse affects the entire population.

Prioritize determining the actual entropy and privilege scope. Until you confirm otherwise, treat this as a credential-recovery vulnerability with potentially critical impact.