惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

G
Google Developers Blog
人人都是产品经理
人人都是产品经理
爱范儿
爱范儿
云风的 BLOG
云风的 BLOG
Last Week in AI
Last Week in AI
H
Hackread – Cybersecurity News, Data Breaches, AI and More
B
Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
H
Help Net Security
B
Blog RSS Feed
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
N
Netflix TechBlog - Medium
S
SegmentFault 最新的问题
The Cloudflare Blog
I
InfoQ
美团技术团队
博客园 - 三生石上(FineUI控件)
MyScale Blog
MyScale Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 司徒正美
L
LangChain Blog
A
About on SuperTechFans
T
The Blog of Author Tim Ferriss
Y
Y Combinator Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Inside GPT-5.5-Cyber: Capabilities, Refusals, and Federal...
BeanBean · 2026-05-09 · via DEV Community

BeanBean

Originally published on NextFuture

OpenAI shipped GPT-5.5-Cyber to Trusted Access for Cyber (TAC) program participants in late April 2026 — exactly one week after Anthropic announced Mythos. Unlike standard GPT-5.5, this variant is fine-tuned on offensive and defensive security workflows, hardened against system prompt injection, and gated behind a roughly 40-org allowlist. If you're evaluating a TAC application, building defensive tooling, or just trying to understand what independent evals actually show about this model, here's the full picture.

Why this matters now

OpenAI spent most of April 2026 publicly criticizing Anthropic for locking Mythos behind an allowlist. On April 30, OpenAI did exactly the same thing with GPT-5.5-Cyber — restricting access to TAC participants only. In parallel, OpenAI briefed US federal agencies, state governments, and Five Eyes allies on the model's capabilities, as BensBites sources reported. Those briefings covered two capability buckets: automated vulnerability discovery in critical infrastructure codebases, and threat-actor attribution pattern matching at scale. Neither use case is accessible to commercial customers today, which matters for anyone building defensive tooling outside a government contractor or major enterprise security vendor context.

How GPT-5.5-Cyber works under the hood

GPT-5.5-Cyber is a domain-specific fine-tune of the base GPT-5.5 weights, with reinforcement learning from cyber-specific feedback (RLCF) applied post-training. Simon Willison's April 30 evaluation — the most technically rigorous public test to date — ran 47 CTF challenges across binary exploitation, web security, and cryptography categories. The model solved 31 of 47, a 66% pass rate, compared to 41% for standard GPT-5.5 on the same set. On defensive tasks (log triage, YARA rule generation, CVE prioritization), pass rates climbed above 80%. OpenAI has confirmed the cyber variant ships with a 32k-token context window by default and a 128k option for document-heavy workflows. System prompt injection resistance was specifically hardened for threat-modeling use cases.

The model is available only via the gpt-5.5-cyber model ID within the standard OpenAI API, but that ID resolves only for TAC-enrolled API keys. Any standard key returns a 404:

# Standard key — will 404
curl https://api.openai.com/v1/chat/completions \
  -H "Authorization: Bearer $OPENAI_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-5.5-cyber",
    "messages": [{"role": "user", "content": "Generate a YARA rule for this IOC set."}]
  }'
# → {"error":{"message":"The model `gpt-5.5-cyber` does not exist","code":"model_not_found"}}

# TAC-enrolled key — works as expected
# OPENAI_TAC_KEY is the API key from your TAC onboarding email
curl https://api.openai.com/v1/chat/completions \
  -H "Authorization: Bearer $OPENAI_TAC_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-5.5-cyber",
    "messages": [{"role": "user", "content": "Generate a YARA rule for this IOC set."}]
  }'

Enter fullscreen mode Exit fullscreen mode

3 use cases I'd actually use

Automated YARA rule generation from threat feeds

TAC participants report feeding raw threat intelligence — Mandiant reports, ISAC feeds, STIX bundles — into GPT-5.5-Cyber and getting deployable YARA rules back with confidence scores and false-positive estimates. The model cites source indicators inline, so your SOC team can audit the logic without re-reading the source doc. A Node.js integration looks like this:

import OpenAI from "openai";

const openai = new OpenAI({ apiKey: process.env.OPENAI_TAC_KEY });

const res = await openai.chat.completions.create({
  model: "gpt-5.5-cyber",
  messages: [
    {
      role: "system",
      content: "You are a threat intelligence analyst. Generate YARA rules from the provided IOCs. Return JSON with fields: rule (string), confidence (0-1), fp_estimate (string), source_iocs (array)."
    },
    { role: "user", content: threatFeedText }
  ],
  response_format: { type: "json_object" }
});

const { rule, confidence, fp_estimate } = JSON.parse(res.choices[0].message.content);

Enter fullscreen mode Exit fullscreen mode

CVE triage and stack-specific severity re-scoring

The model re-scores CVEs against your specific stack context, not the generic NVD CVSS baseline. You pass your dependency manifest and deployed service config; it returns a re-ranked list with environment-specific exploitability estimates. Early dev.to tests on a Node.js microservices stack showed a 23% reduction in false-critical tickets compared to raw CVSS scoring. Pass package.json, your service topology, and the CVE batch as one 32k-token prompt.

Incident report drafting from raw SIEM exports

With the 128k context option enabled via the max_context_tokens: 131072 parameter, you can paste a full SIEM log export and get a structured incident report in NIST SP 800-61r3 format in a single pass. The model handles timestamp normalization, event correlation, and executive summary generation without chained calls. Set BASE_URL=https://api.openai.com/v1 and swap to gpt-5.5-cyber-128k as the model ID for this workflow.

Limitations and when not to use it

The refusal surface on GPT-5.5-Cyber is wider than standard GPT-5.5. OpenAI hard-coded blocks on shellcode generation, weaponized exploit PoC code, and C2 framework configuration — even for stated red-team purposes. The Rundown reported that the model rejected roughly 18% of legitimate penetration testing prompts in beta testing, compared to 9% for Mythos on equivalent tasks. If your workflow requires offensive tooling beyond vulnerability identification — actual exploit development, payload generation, evasion testing — this model will block more than it helps. The TAC program itself mandates quarterly use-case reviews; access can be revoked if your reported use drifts toward offensive tooling. TAC terms also prohibit using the model to train downstream models or in products deployed to non-TAC entities, which rules out most SaaS security products aimed at a general developer audience.

Compared to alternatives

  Model
Access
CTF Pass Rate
Defensive Tasks
Cost (input / 1M tok)
Refusal Rate (legit sec prompts)

GPT-5.5-Cyber
TAC allowlist (~40 orgs)
66%
~80%
TAC pricing (NDA)
~18%

Anthropic Mythos
~40-org allowlist
~70% (est.)
~78%
TAC pricing (NDA)
~12%

GPT-5.5 (standard)
Public API
41%
~60%
$15 / $60 per 1M tok
~9%

Claude 3.7 Sonnet
Public API
~38%
~57%
$3 / $15 per 1M tok
~11%

Llama Guard 3 (self-hosted)
HuggingFace / self-host
N/A (classifier only)
Content moderation only
$0 (self-hosted)
N/A

Enter fullscreen mode Exit fullscreen mode




FAQ

Can I test GPT-5.5-Cyber without TAC enrollment? No. The gpt-5.5-cyber model ID returns a model_not_found 404 on standard API keys. OpenAI has not announced a public preview tier, a sandbox option, or a time-limited trial as of May 2026.

What did the Five Eyes briefings actually cover? According to BensBites sources, OpenAI demonstrated two capabilities: automated attribution of nation-state TTPs from raw network telemetry, and large-scale phishing campaign pattern recognition across historical data sets. No public detail on whether live operational data was used in the demos. The briefings covered US federal agencies, state governments, and Five Eyes intelligence partners over the week of April 21-28.

How does GPT-5.5-Cyber compare to Mythos on refusal behavior? GPT-5.5-Cyber refuses more aggressively on offensive prompts — roughly 18% vs 12% for Mythos on equivalent legitimate pen-test tasks. For purely defensive work the gap narrows. See the full head-to-head benchmark for methodology and task-by-task results. For the broader policy context on why both companies restricted access, the AI Cyber Arms Race overview covers the timeline from Mythos announcement through OpenAI's about-face on open access.


This article was originally published on NextFuture. Follow us for more fullstack & AI engineering content.