Building Identity-Gated Refusal Tiers for AI Security Tools OpenAI's Trusted Access for Cyber program introduces identity-gated refusal tiers for AI security tools, shifting trust from prompt analysis to authenticated user identity. The system uses claims-based authorization to adjust model permissiveness based on verified credentials, with mandatory phishing-resistant authentication (FIDO2/WebAuthn) for the most permissive tier. This design pattern addresses the fundamental limitation of prompt-based classifiers that cannot distinguish between legitimate defensive work and malicious intent. For thirty years the math has favored the attacker. He needs one bug. You have to cover everything, forever, on a smaller budget with a tired SOC. Now both sides get an AI multiplier, and the only question that matters is who gets it first and biggest. OpenAI's answer is a design pattern worth stealing: stop reading intent from the prompt, read it from the user. Here's the failure mode anyone doing defensive work against a frontier model already knows. You ask the model to build a proof-of-concept from a published CVE so you can validate that your patch holds. You own the box. You're confirming a fix. The model tells you it can't help you write an exploit. It's not reading your heart. It's reading your tokens. And the token sequence for "write a PoC for this CVE" is identical whether you're a defender confirming remediation or an attacker building a weapon. The classifier sees the shape of the request and the shape is the same. So the fix isn't a smarter classifier. A smarter classifier still only has the prompt to go on, and the prompt doesn't carry intent. The fix is to move the trust signal off the prompt and onto the authenticated principal. The core move in OpenAI's Trusted Access for Cyber program is an identity-and-trust framework. You vet the human, attach a verified trust signal to that account, and shift the refusal boundary for that principal. Same model, different friction depending on who you've proven you are. Architecturally this is just claims-based authorization applied to model behavior instead of API routes. Think of it like scopes on an OAuth token, except the scope controls how permissive the safety layer is rather than which endpoints you can hit. Access Level Refusal posture Built for GPT-5.5 default standard safeguards general use GPT-5.5 + TAC precise, verified most defensive work GPT-5.5-Cyber most permissive red team / pentest The thing that makes this work is that the boundary moves because the trust moved, not because someone found a jailbreak. Same underlying engine, three behaviors, gated on a claim the principal carries. Here's the gotcha that falls straight out of the design. The second a verified account carries a lower refusal boundary, that account becomes the crown jewel. You've built a credential that's worth stealing precisely because it says yes to things other credentials don't. OpenAI's answer, and the right one, is mandatory phishing-resistant authentication on the most permissive tier. In practice that means FIDO2/WebAuthn, where the authenticator is bound to the origin and there's no shared secret to phish. A reused password or a TOTP code an operator can be tricked into reading aloud doesn't cut it when the credential gates a cyber-permissive model. If you're designing anything like this yourself, the rule is simple: the strength of the auth has to scale with the permissiveness of the tier it unlocks. A low-friction read-only tier can ride normal SSO. The tier that builds live-target validation chains rides a hardware-backed, origin-bound authenticator or it doesn't ship. php default "create a PoC for CVE-XXXX" - flagged, redirected TAC same request, vetted account - builds the PoC Cyber "validate against live target" - runs the chain Lowering the refusal boundary is not the same as turning off the lights. The tier that says yes more also watches more. Stronger account verification on the front, misuse monitoring on the back. This matters because the threat model shifts once you grant the lane. A verified account doing authorized red team work and a verified account that just got popped look identical at the moment of the request. Both carry the right claim. The thing that separates them is behavioral, so the monitoring has to be behavioral too. Rate of high-permission requests, drift in target scope, requests that don't match the account's established workflow. The design pattern here is assume-breach applied to your own trusted tier. You vetted them, you armed them, and you still instrument them, because the credential you just made valuable is the credential someone will try hardest to steal. A few things that bite if you build in this direction. The vetting is the whole ballgame. An identity-gated permission system is exactly as strong as the process that issues the identity. Sloppy vetting and you've just built a fast lane for whoever games the intake. Tier sprawl is real. Three tiers is legible. Twelve tiers with overlapping scopes turns into a permission soup nobody can reason about, and the gaps between tiers become the attack surface. Permissive does not mean smarter. OpenAI is explicit that the first GPT-5.5-Cyber preview isn't meant to outperform the base model on raw capability. It's trained to be more permissive, not more powerful. If you conflate the two you'll over-trust the output of the high tier just because it stopped refusing. The pattern is portable. Any system that has to make a dual-use call, where the same request is legitimate from one principal and malicious from another, can stop trying to divine intent from the request and start gating on a verified claim attached to the principal. Vet the human. Bind the high tier to hardware auth. Monitor after you grant. That's a shippable architecture, not a press release. I wrote the full breakdown, including how this maps to the multi-turn boundary-erosion attacks we usually cover from the other direction, over on the ToxSec Substack https://www.toxsec.com/p/how-openais-cyber-defense-plan-backs . ToxSec is run by a USMC veteran and Security Engineer with hands-on experience at AWS and the NSA. CISSP certified, M.S. in Cybersecurity Engineering. He covers security vulnerabilities, attack chains, and the tools defenders actually need to understand.