You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Agents reaching out to the internet must be strictly controlled to prevent data exfiltration. The Network Shadow Model analyzes outbound requests prior to execution.
Tasks
Build a ShadowNetwork class that accepts a NetworkAction and outputs a MutationResult.
Simulate payload boundaries: track target domain, method, and payload size.
no_pii_exfiltration: Run regex/pattern matching against the payload to detect emails, SSNs, or keys before they leave the system. (Again, pure regex, no LLMs).
Phase 3: State Lattice (DB & Network)
The Context
Agents reaching out to the internet must be strictly controlled to prevent data exfiltration. The Network Shadow Model analyzes outbound requests prior to execution.
Tasks
ShadowNetworkclass that accepts aNetworkActionand outputs aMutationResult.StateInvariantchecks:domain_whitelist_only: Enforce strict destination boundaries.no_pii_exfiltration: Run regex/pattern matching against the payload to detect emails, SSNs, or keys before they leave the system. (Again, pure regex, no LLMs).Part of Epic #651