Skip to content Skip to content Skip to content
HomeTrust Centre › Immunity Layer
🛡 Immunity

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.

// What the immunity layer does

Platform protections

🔒
platform rules enforcement

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.

💰
Fund redirection prevention

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.

🌐
DDoS and rate limit protection

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.

🔑
Zero-trust internal access

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.

🤖
AI agent containment

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.

// Attack vector mitigation

What we protect against

Attack vectorMitigationWORM logged?
API key theft / replayHMAC signing, key rotation <60s, IP allowlistingYes
Earnings rate tamperingplatform rules in infrastructure layer — below app codeYes
Fund redirectionDirect Stripe Connect routing — ForceDream never holdsYes
DDoSCloudflare WAF + per-key rate limits + Redis circuit breakersYes
Cross-workspace data accessCryptographic namespace isolationYes
Agent escapeSandboxed runtime, no cross-agent memory accessYes
Privileged insider accessZero-trust mTLS, cryptographically sealed all staff actionsYes
Audit trail tamperingSHA-256 hash chain — any modification immediately detectableBy definition
// verify immunity chain
curl https://api.forcedream.ai/api/v1/worm/chain/status \
  -H "Authorization: Bearer fd_live_..."