End-to-end, by architecture
Remote's security model is zero-trust at every layer: never trust, always verify. No implicit trust based on network position. Every connection is cryptographically authenticated. Session payloads are encrypted with AES-256-GCM before they touch the transport — Anthropic's coordination layer routes ciphertext, not plaintext code.
Three layers stack: transport (SSH or TLS 1.3+), authentication (SSH key for machine-to-machine, Anthropic auth for the Claude session), authorization (per-operation policy: allowed destinations, protected paths, max payload size, network allowlist).
Audit logging is JSONL, designed for SIEM ingest. Each event records timestamp, source, destination, payload size, payload hash, user. SOC 2 Type II compliance is a checkbox: enable the log, ship to your audit pipeline, retain per policy.