Your RSA-2048 keys break in 2030. Find every one of them before attackers do.
🐹 Go

GHSA-q926-c743-49qj

NONE

Centrifugo's InsecureSkipTokenSignatureVerify flag silently disables JWT verification with no warning

Also known asGO-2026-4703
Published
Mar 13, 2026
Updated
Mar 27, 2026
Affected
5 pkgs
Patched
1 / 5
Exploits
None indexed

Blast Radius

5 pkgs affected
🐹github.com/centrifugal/centrifugo/v6🐹github.com/centrifugal/centrifugo🐹github.com/centrifugal/centrifugo/v3🐹github.com/centrifugal/centrifugo/v4🐹github.com/centrifugal/centrifugo/v5

Real-time download stats are indexed for npm and PyPI packages. This vulnerability affects Go packages — download data is not available via public APIs for these ecosystems.

Description

Summary

Centrifugo supports a configuration flag insecure_skip_token_signature_verify that completely disables JWT signature verification. When enabled, Centrifugo accepts any JWT token regardless of signature validity — including tokens signed with wrong keys, random signatures, or no signature at all. Critically, no warning is logged at startup or runtime when this flag is active, making it invisible to operators and security auditors.

Note: This vulnerability requires the operator to have explicitly set insecure_skip_token_signature_verify=true. The core issue is the absence of any warning when this flag is active, making accidental production exposure undetectable.

Details

The flag is defined in internal/configtypes/types.go:

InsecureSkipTokenSignatureVerify bool `mapstructure:"insecure_skip_token_signature_verify"`

It is passed directly to token verification in internal/client/handler.go:

token, err := h.tokenVerifier.VerifyConnectToken(e.Token, 
    cfg.Client.InsecureSkipTokenSignatureVerify)

In token_verifier_jwt.go, when skipVerify=true the entire signature block is bypassed:

if !skipVerify {
    // This block never executes
    err = verifier.verifySignature(token)
}

The flag is configurable via multiple vectors making accidental exposure likely:

  • Config file: insecure_skip_token_signature_verify: true
  • Environment variable: CENTRIFUGO_INSECURE_SKIP_TOKEN_SIGNATURE_VERIFY=true
  • YAML, TOML config formats

Despite hmac_secret_key being configured, startup logs show "enabled JWT verifiers" — falsely implying verification is active.

PoC

Config with legitimate HMAC key but skip flag enabled:

{
  "client": {
    "insecure_skip_token_signature_verify": true,
    "token": { "hmac_secret_key": "legitimate-production-secret-key" }
  }
}

Token signed with completely wrong key is fully accepted:

VULNERABILITY CONFIRMED!
Connected as user: {'client': '899dec73...', 'version': '0.0.0 OSS'}

No security warning emitted when insecure_skip_token_signature_verify=true: 1

Token signed with wrong key accepted, authentication bypass confirmed: 2

skipVerify flag propagated from config to all token verification calls: 3

Impact

  • Any unauthenticated user can connect as any arbitrary user ID
  • Complete authentication bypass — attacker sets any sub claim value
  • No indicators in logs that the server is operating insecurely
  • Easily triggered accidentally via environment variable injection in containerized deployments (e.g. misconfigured Kubernetes secrets)
  • Affects all connection types: WebSocket, HTTP-streaming, SSE, GRPC

Suggested Fix

  1. Emit a loud startup warning when flag is enabled:
if cfg.Client.InsecureSkipTokenSignatureVerify {
    log.Warn().Msg("SECURITY WARNING: JWT signature verification is " +
        "DISABLED via insecure_skip_token_signature_verify - " + 
        "DO NOT use in production!")
}
  1. Consider requiring an additional explicit insecure_mode: true flag to prevent accidental single-flag misconfiguration
  2. Log a warning on every accepted token when skip is active

Affected Packages

5 total 1 fixed
EcosystemPackageVulnerable rangeFix
🐹Gogithub.com/centrifugal/centrifugo/v6all versions6.7.0
🐹Gogithub.com/centrifugal/centrifugoall versionsNo fix
🐹Gogithub.com/centrifugal/centrifugo/v3all versionsNo fix
🐹Gogithub.com/centrifugal/centrifugo/v4all versionsNo fix
🐹Gogithub.com/centrifugal/centrifugo/v5all versionsNo fix

Detection & mitigation playbook

Open-source dependency
  1. Detect

    Scan your dependency tree (package-lock.json, pnpm-lock.yaml, requirements.txt, go.sum, etc.) for github.com/centrifugal/centrifugo/v6. O3's reachability analysis confirms whether the vulnerable code path is actually invoked in your application, so you act on real exposure instead of every transitive match.

  2. Fix

    Update github.com/centrifugal/centrifugo/v6 to 6.7.0 or later, then make sure no transitive (indirect) dependency still pins the vulnerable range — O3 confirms GHSA-q926-c743-49qj is resolved across your whole dependency graph.

  3. Workarounds

    If you can't upgrade right away: gate or disable the affected feature, validate untrusted input at the boundary, and avoid passing attacker-controlled data into the vulnerable path. O3's runtime protection blocks exploitation in production as an interim safeguard until the upgrade lands.

  4. How O3 protects you

    O3 pinpoints whether GHSA-q926-c743-49qj is reachable in your code and exactly where to fix it, then blocks exploitation in production at runtime until the patched version is deployed.

Tailored to GHSA-q926-c743-49qj. Runtime protection reduces exposure until a permanent patch is applied and verified — it complements patching, it doesn't replace it.

Frequently Asked Questions

### Summary Centrifugo supports a configuration flag `insecure_skip_token_signature_verify` that completely disables JWT signature verification. When enabled, Centrifugo accepts any JWT token regardless of signature validity — including tokens signed with wrong keys, random signatures, or no signature at all. Critically, no warning is logged at startup or runtime when this flag is active, making it invisible to operators and security auditors. Note: This vulnerability requires the operator to have explicitly set insecure_skip_token_signature_verify=true. The core issue is the absence of any w
O3 Security · Impact-Aware SCA

Is GHSA-q926-c743-49qj in your dependencies?

O3 detects GHSA-q926-c743-49qj across Go dependencies and uses function-level reachability to confirm whether the vulnerable code path is actually reachable — not just present. No false positives.