feat(agent): Pulse - agent attestation #1006
Labels
No labels
1week
2weeks
Failed compliance check
IP cameras
NATS
Possible security concern
Review effort 1/5
Review effort 2/5
Review effort 3/5
Review effort 4/5
Review effort 5/5
UI
aardvark
accessibility
amd64
api
arm64
auth
back-end
bgp
blog
bug
build
checkers
ci-cd
cleanup
cnpg
codex
core
dependencies
device-management
documentation
duplicate
dusk
ebpf
enhancement
eta 1d
eta 1hr
eta 3d
eta 3hr
feature
fieldsurvey
github_actions
go
good first issue
help wanted
invalid
javascript
k8s
log-collector
mapper
mtr
needs-triage
netflow
network-sweep
observability
oracle
otel
plug-in
proton
python
question
reddit
redhat
research
rperf
rperf-checker
rust
sdk
security
serviceradar-agent
serviceradar-agent-gateway
serviceradar-web
serviceradar-web-ng
siem
snmp
sysmon
topology
ubiquiti
wasm
wontfix
zen-engine
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
carverauto/serviceradar#1006
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Imported from GitHub.
Original GitHub issue: #2787
Original author: @mfreeman451
Original URL: https://github.com/carverauto/serviceradar/issues/2787
Original created: 2026-02-11T04:06:06Z
This PRD outlines the implementation of Pulse, a cryptographic attestation layer for the
serviceradar-agent.While the Fortress suite provides kernel-level defense, Pulse ensures that the "heartbeat" signals reaching the Gateway are authentic, haven't been tampered with, and accurately represent the security state of the agent.
PRD: ServiceRadar "Pulse" (Cryptographic Attestation & Signed Heartbeats)
Target Component:
pkg/agent/pulse&serviceradar-gatewayIdentity Provider: Existing mTLS Client Certificates
Security Level: Anti-Spoofing / Anti-Blinding
1. Executive Summary
Pulse is a security protocol that upgrades standard agent heartbeats to Signed Attestations. It prevents "Blinding" attacks—where an attacker kills the agent and mocks its heartbeat to hide an intrusion—and "Replay" attacks. Pulse cryptographically ties the agent's identity to its current security posture, including the integrity of its eBPF programs and binary.
2. Security Objectives
3. Architecture
3.1 The Signature Chain
Pulse leverages the agent's pre-provisioned mTLS certificate:
serviceradar-agentbinary and the pinned eBPF ELF objects.3.2 Attestation Data Points
The "Pulse" payload must include:
4. Technical Requirements
4.1 Agent-Side (Go)
PushLoop./proc/self/exeto generate its own binary hash for the pulse.4.2 Gateway-Side (Elixir)
5. Protocol Flow
PushInterval), the Pulse service generates the attestation payload./sys/fs/bpf/serviceradar/to verify Shield and Sentinel are still pinned.proto.GatewayStatusRequest.6. Implementation Constraints
ServerConfig.7. Success Metrics
serviceradar-agentand attempts to send acurlrequest to the Gateway status endpoint; the Gateway rejects it because it lacks a valid mTLS signature and the correct "State Attestation."8. Failure Modes