Summary
The June 2026 Lockdown Mode rollout makes a narrower assistant-systems point easier to see: prompt-injection defense is no longer just a model-alignment question. It is an outbound-surface design question. For handbook readers, the current lesson is to separate three controls that are often collapsed together:- what untrusted content the assistant may read
- what networked tools, connectors, or MCP actions it may call
- what high-risk actions still require a person to review or approve
Why It Matters
Teams often describe prompt injection as a filtering or refusal problem. The current OpenAI framing is more operational: even if malicious content enters the context, the system should still reduce the chance that sensitive data leaves the trusted boundary. That moves the design conversation toward concrete product questions:- which browsing paths are live versus cached
- which connectors are sync-only versus live network calls
- which read actions are allowed without new approval
- which write actions are blocked, elevated, or fully disabled
- which agent surfaces can keep running when a high-risk mode is enabled
- how admins can audit the remaining tool and app usage
Evidence And Sources
- Lockdown Mode: OpenAI’s help center says Lockdown Mode is designed to reduce prompt injection-based data exfiltration by limiting outbound network requests. The current restrictions include live web browsing, deep research, agent mode, file downloads, and live connector access or writes for supported account types.
- ChatGPT release notes: the June 2, 2026 release notes say Lockdown Mode is now available to logged-in users across account types and workspaces, which makes it a live product pattern rather than a narrow pilot.
- Designing AI agents to resist prompt injection: OpenAI frames the strongest real attacks as social engineering in context, which supports containment and reviewable actions instead of string matching alone.
- Safety in building agents: OpenAI’s developer guidance says to keep tool approvals on, constrain data flow with structured outputs, and be especially careful with MCP tool calls.
- Building MCP servers for ChatGPT and API integrations: OpenAI’s MCP guidance explicitly calls out prompt-injection-related risks when models encounter hostile content and can take downstream actions.
- MCP Security Best Practices: the current spec guidance expands the problem into token passthrough, SSRF, local MCP compromise, session hijacking, and scope minimization.
- High-signal repos for current operator attention: openai/codex (89,280 stars / 13,139 forks / pushed 2026-06-07), openai/openai-agents-python (26,968 stars / 4,167 forks / pushed 2026-06-05), and modelcontextprotocol/modelcontextprotocol (8,337 stars / 1,579 forks / pushed 2026-06-07).
Signals To Watch
- Whether more assistant products adopt a distinct “high-risk” operating mode that removes live network paths instead of relying on stronger warnings alone.
- Whether connector policies keep separating synced data access from live remote reads and writes.
- Whether MCP client and server tooling add clearer consent, scope, and local sandbox defaults instead of leaving those controls to operator folklore.
- Whether assistant products expose a cleaner audit trail for which tools were available, approved, blocked, or downgraded during a high-risk session.
- Whether “elevated risk” labels become stable cross-product vocabulary for web access, connector actions, code execution, and remote tool use.
Design Implications
Builders should treat prompt injection containment as a layered workflow:- reduce the live network surface before trying to perfect detection
- separate sync-only context sources from tools that can exfiltrate data or create side effects
- keep explicit approvals on for consequential reads and writes
- use narrow scopes and progressive elevation for MCP and connector access
- preserve audit visibility on what the agent was allowed to do in each mode
Related Handbook Pages
- Radar: the parent lane for time-scoped product and ecosystem shifts.
- April 2026 Assistant Safety Escalation Watch: a neighboring note on threat escalation and audit ownership after high-risk detections.
- Local Agent Tooling Source Map: a contributor-facing source map for local agent boundaries, approval paths, and prompt-injection risk from tools and files.
- Protocols and Interoperability: the durable systems chapter for MCP, A2A, and boundary-setting across agent integrations.
Editorial Take
This belongs inradar/ because the product controls will keep moving. The
durable lesson is narrower: assistant safety is becoming a capability-shaping
surface, not only a moderation or refusal surface.
The important question is no longer just “can the model recognize malicious
instructions?” It is “what can the system still reach, send, approve, or write
after malicious instructions appear in context?”
Update Log
- 2026-06-07: Added a radar note on Lockdown Mode, elevated-risk assistant surfaces, and prompt-injection containment through network and tool restrictions.
