GHSA-p378-jp5r-gpgw: Go/github.com/basekick-labs/arc vulnerability

Published Aug 28, 2026
·
Updated

Summary

Arc Enterprise clustering accepts cluster join requests without authentication when cluster.enabled=true but cluster.sharedsecret is not configured. The coordinator validates HMAC authentication only if a shared secret is non-empty; otherwise, a network attacker who can reach the coordinator port can send a join request with attacker-controlled node addresses and role. Accepted nodes are marked healthy, registered locally or added as Raft voters, and can be selected by the cluster router for forwarded authenticated requests.

Details

Cluster defaults include an empty shared secret and TLS disabled:

- internal/config/config.go:943-950 defaults cluster.enabled=false, cluster.clustername="arc-cluster", and cluster.coordinatoraddr=":9100". - internal/config/config.go:1001-1005 defaults cluster.sharedsecret="" and cluster.tlsenabled=false.

Startup requires a shared secret only for file replication, not for all clustering/join/routing use:

- cmd/arc/main.go:1258-1265 hard-fails without cluster.sharedsecret only when cluster.replicationenabled is true.

The join request contains attacker-supplied node identity, role, and addresses:

- internal/cluster/protocol/messages.go:127-142 defines JoinRequest fields including nodeid, role, raftaddr, apiaddr, coordaddr, plus optional auth fields.

The coordinator validates HMAC only when the configured shared secret is non-empty:

- internal/cluster/coordinator.go:1066-1081 wraps all HMAC checks in if c.cfg.SharedSecret != "" { ... }. - If the secret is empty, the join request proceeds after only the cluster-name check.

An accepted join creates a healthy node from attacker-controlled fields and adds it to cluster trust state:

- internal/cluster/coordinator.go:1101-1107 creates a node from request fields, sets attacker-provided coordinator/API addresses, and marks it healthy. - internal/cluster/coordinator.go:1108-1129 adds the attacker-provided raftaddr as a Raft voter and stores node info when Raft is configured. - internal/cluster/coordinator.go:1133-1138 registers the node locally when Raft is not configured.

The router uses healthy nodes from this registry and forwards authenticated requests to their advertised API addresses:

- internal/cluster/registry.go:263-270 returns healthy writers/readers. - internal/cluster/router.go:154-177 routes writes to healthy writer nodes. - internal/cluster/router.go:203-227 routes queries to healthy readers, or writers if no readers exist. - internal/cluster/router.go:327-357 builds the forwarding target from node.APIAddress and copies all original request headers to the peer, including Authorization and x-api-key. - cmd/arc/main.go:1887-1897 wires the cluster router into MessagePack, line protocol, TLE, and query handlers when the cluster coordinator exists.

A related lower-severity issue is that heartbeat messages are also unauthenticated:

- internal/cluster/protocol/messages.go:175-180 defines Heartbeat without HMAC fields. - internal/cluster/coordinator.go:1220-1232 records heartbeats and updates node state based only on supplied nodeid and state.

Proof of concept

Safe local lab reproduction only; do not target external infrastructure.

Prerequisites:

- Enterprise clustering enabled in a lab deployment. - cluster.sharedsecret intentionally left empty. - Network access to the coordinator TCP port, default 9100. - The attacker knows or guesses the cluster name; default is arc-cluster.

Steps:

1. Start an Arc cluster node with:

toml [cluster] enabled = true clustername = "arc-cluster" coordinatoraddr = ":9100" sharedsecret = "" tlsenabled = false

2. Start an attacker-controlled HTTP listener that records request method, path, and headers, for example on 127.0.0.1:18080.

3. Send a framed cluster join request to the victim coordinator. The protocol uses a 4-byte big-endian length prefix, followed by a 1-byte message type (MsgJoinRequest == 1), followed by JSON. The payload should include attacker-controlled node fields and omit authnonce, authtimestamp, and authhmac:

json { "nodeid": "evil-reader-1", "nodename": "evil-reader", "role": "reader", "clustername": "arc-cluster", "raftaddr": "127.0.0.1:19020", "apiaddr": "127.0.0.1:18080", "coordaddr": "127.0.0.1:19010", "version": "lab", "corecount": 1 }

Expected vulnerable result: the coordinator accepts the join instead of rejecting it for missing authentication.

4. Trigger a forwarded operation from a node that cannot handle the operation locally. Examples depend on cluster roles:

- Join as reader and trigger a query through a node that routes queries to readers. - Join as writer and trigger ingestion through a non-writer node that routes writes to writers.

Expected vulnerable result: the attacker-controlled HTTP listener receives forwarded requests. Because forwardRequest copies all original headers, the listener can observe authentication headers such as bearer tokens or API keys along with request paths and bodies.

5. In a Raft-enabled lab, observe that the attacker-provided raftaddr is submitted to AddVoter, demonstrating unauthorized membership mutation.

Impact

In affected cluster deployments, an unauthenticated network attacker can become a trusted cluster node. Practical impacts include:

- Interception of forwarded authenticated HTTP requests, including Authorization and x-api-key headers. - Exposure of query bodies, ingestion data, database/measurement names, and operational metadata. - Unauthorized cluster membership mutation, including attempted Raft voter addition when Raft is configured. - Potential data integrity impact if the rogue node returns forged query/write responses or accepts/diverts writes. - Potential availability impact by blackholing or delaying forwarded operations.

This is not reachable in the default standalone configuration because cluster.enabled=false, but it is a critical trust-boundary issue for Enterprise cluster deployments where clustering is enabled without a shared secret. The code already treats cluster.sharedsecret as mandatory for replication, which suggests unauthenticated cluster membership should also fail closed.

Suggested fix

- Fail startup when cluster.enabled=true and cluster.sharedsecret is empty, not only when cluster.replicationenabled=true. - Reject all trust-mutating coordinator messages when no cluster authentication is configured, including join, heartbeat/state update, forward apply, and file replication messages. - Require HMAC or mutual TLS before processing any join/heartbeat message. - Bind authentication to node identity and advertised addresses to reduce replay and address-substitution risks. - Do not forward end-user Authorization/x-api-key headers to a peer unless the peer identity has been authenticated and authorized. - Add tests proving unauthenticated join and heartbeat requests fail when clustering is enabled.

References / evidence

- internal/config/config.go:943-950 - internal/config/config.go:1001-1005 - cmd/arc/main.go:1258-1265 - internal/cluster/protocol/messages.go:127-142 - internal/cluster/coordinator.go:1066-1081 - internal/cluster/coordinator.go:1101-1138 - internal/cluster/router.go:154-177 - internal/cluster/router.go:203-227 - internal/cluster/router.go:327-357 - cmd/arc/main.go:1887-1897

Affected Software

1 affected componentFixes available
go/github.com/basekick-labs/arc<0.0.0-20260615160325-38402ad2ebdd
0.0.0-20260615160325-38402ad2ebdd

Remediation

Recommended actions to resolve this vulnerability, in priority order.

  1. Upgrade

    Upgrade go/github.com/basekick-labs/arc to a version that resolves this vulnerability.

    Fixed in 0.0.0-20260615160325-38402ad2ebdd
  2. Configuration

    Enable clustering only with proper cluster authentication configured; the vulnerability occurs when clustering is enabled while `cluster.shared_secret` is empty (defaults to `cluster.enabled=false` but in the reported lab it is set to `enabled=true`).

    Arc Enterprise clustering cluster.enabled = true
  3. Configuration

    Set `cluster.shared_secret` to a non-empty value. The coordinator wraps HMAC checks so they run only when `c.cfg.SharedSecret != ""`, and startup hard-fails only for replication in `cmd/arc/main.go:1258-1265`; ensure you provide a shared secret so join/heartbeat/trust-mutating messages require authentication.

    Arc Enterprise clustering cluster.shared_secret = (non-empty)
  4. Configuration

    Enable TLS by setting `cluster.tls_enabled=true`, so mutual TLS (as suggested in the fix) is available for join/heartbeat message authentication and protection against interception of forwarded authenticated requests.

    Arc Enterprise clustering cluster.tls_enabled = true
  5. Configuration

    When forwarding requests to peer nodes, do not copy end-user `Authorization` and `x-api-key` headers unless the peer identity is authenticated and authorized. This mitigates the issue where `forwardRequest` copies all original request headers (including auth headers) to the peer based on `node.APIAddress`.

    Arc Enterprise cluster request forwarding DoNotForwardAuthorizationAndXApiKeyUntilPeerAuthenticated = true
  6. Configuration

    Configure the coordinator to reject all trust-mutating coordinator messages when no cluster authentication is configured, including join, heartbeat/state update, forward apply, and file replication messages. The described issue accepts join requests without authentication when `cluster.enabled=true` and `cluster.shared_secret` is not set, and heartbeat messages are also unauthenticated.

    Arc Enterprise cluster coordinator RejectTrustMutatingCoordinatorMessagesWithoutClusterAuth = true

Event History

Aug 28, 2026
Advisory Published
via GitHub·08:32 PM
Data Sourced
via GitHub·08:32 PM
DescriptionWeaknessAffected Software

Frequently Asked Questions

1

Which deployments are exposed?

Deployments are exposed when clustering is enabled and cluster.shared_secret is unset or empty. Clustering is disabled by default, but the default shared secret is empty; deployments with replication enabled require a shared secret at startup.

2

What does an attacker need to exploit this?

An attacker needs network access to the coordinator port. They can submit a join request containing attacker-controlled node identity, role, and addresses when no shared secret is configured.

3

What impact can a successful join have?

Accepted attacker-controlled nodes can be marked healthy, registered locally or added as Raft voters. The cluster router can then select them to receive forwarded authenticated requests.

4

What can be done before applying an update?

Configure a non-empty cluster.shared_secret. The coordinator performs HMAC authentication for join requests when the shared secret is non-empty; TLS is disabled by default and should not be relied on as a default protection.

Contact

SecAlerts Pty Ltd.
132 Wickham Terrace
Fortitude Valley,
QLD 4006, Australia
info@secalerts.co
By using SecAlerts services, you agree to our services end-user license agreement. This website is safeguarded by reCAPTCHA and governed by the Google Privacy Policy and Terms of Service. All names, logos, and brands of products are owned by their respective owners, and any usage of these names, logos, and brands for identification purposes only does not imply endorsement. If you possess any content that requires removal, please get in touch with us.
© 2026 SecAlerts Pty Ltd.
ABN: 70 645 966 203, ACN: 645 966 203