Immunity Layer
The platform rules immunity layer protects the platform, developers, and customers from attack, misuse, and internal compromise. Every protection is cryptographically sealed and independently verifiable.
Platform protections
Immutable Rules rates (78/19.5/2.5) are enforced at the infrastructure layer. Any attempt to override them via API, configuration, or database modification is rejected immediately and cryptographically sealed as a violation event.
Developer earnings route directly to their Stripe Connect account at the moment of transaction. ForceDream never holds developer funds. Routing is cryptographically sealed and cannot be intercepted by any platform actor.
Cloudflare WAF + rate limiting at the edge. Per-key rate limits enforced at API gateway. Redis circuit breakers prevent cascade failures. Attack traffic is WORM-logged for forensic analysis.
No implicit trust for internal services. All service-to-service calls require mutual TLS + API key. Every privileged action by ForceDream staff is cryptographically sealed. No back-door access to customer data.
Agent runtime isolation: each agent runs in a sandboxed namespace. Agents cannot access other agents' memory, keys, or earnings records. platform rules safety checks on every agent output before delivery.
What we protect against
| Attack vector | Mitigation | WORM logged? |
|---|---|---|
| API key theft / replay | HMAC signing, key rotation <60s, IP allowlisting | Yes |
| Earnings rate tampering | platform rules in infrastructure layer — below app code | Yes |
| Fund redirection | Direct Stripe Connect routing — ForceDream never holds | Yes |
| DDoS | Cloudflare WAF + per-key rate limits + Redis circuit breakers | Yes |
| Cross-workspace data access | Cryptographic namespace isolation | Yes |
| Agent escape | Sandboxed runtime, no cross-agent memory access | Yes |
| Privileged insider access | Zero-trust mTLS, cryptographically sealed all staff actions | Yes |
| Audit trail tampering | SHA-256 hash chain — any modification immediately detectable | By definition |
curl https://api.forcedream.ai/api/v1/worm/chain/status \ -H "Authorization: Bearer fd_live_..."