Researchers can now read the hidden reasoning inside frontier AI APIs

A new paper says every major AI lab's encrypted "chain of thought" can be decoded from ordinary API responses, exposing private data users pasted into chats. Since OpenAI's o1, frontier labs have hidden their models' step-by-step reasoning behind cryptographic signatures, fearing rivals would distill it. The protection was supposed to be a hard confidentiality barrier. It was not. A team led by Alexander Panfilov and Jonas Geiping showed that a legitimate signed reasoning block pulled from one

1 min
Researchers can now read the hidden reasoning inside frontier AI APIs

A new paper says every major AI lab's encrypted "chain of thought" can be decoded from ordinary API responses, exposing private data users pasted into chats.

Since OpenAI's o1, frontier labs have hidden their models' step-by-step reasoning behind cryptographic signatures, fearing rivals would distill it. The protection was supposed to be a hard confidentiality barrier. It was not.

Diagram of an encrypted reasoning blob being replayed into a weaker model that transcribes it into plaintext

A team led by Alexander Panfilov and Jonas Geiping showed that a legitimate signed reasoning block pulled from one API response can be replayed into another request, then handed to a weaker model from the same provider with a prompt to transcribe it. Sampling repeatedly and discarding refusals reconstructs the hidden text. They report the recovered reasoning token count matched billed thinking tokens 1:1 on most prompts.

The privacy fallout is concrete. A scan of roughly 7,000 public Claude Code and Codex sessions with encrypted reasoning blobs surfaced 62 unique API keys, 33 email addresses, 33 passwords, and other secrets. Some 64 sensitive items appeared exclusively inside the reasoning blocks, never in the visible chat.

Templates vary by provider: Claude traces replayed to Haiku 4.5 with a "<thinking-copy>" prefill; GPT "encrypted_content" injected and sampled up to 50 times; Gemini "thought_signature" attached with a "<thought>" prefill. The authors responsibly disclosed the issue, and several vulnerabilities are already fixed, but the structural risk remains: any visible reasoning surface can leak.

The episode reframes three assumptions. Public trace sharing is dangerous. Hidden chain-of-thought is not a reliable monitoring interface. And tool surfaces can re-expose reasoning that labs tried to bury.

Sources

Latent Space, "How to steal a Reasoning Trace" (Aug 12, 2026): https://www.latent.space/p/ainews-how-to-steal-a-reasoning-trace

stolen-thoughts.com: https://stolen-thoughts.com/

Written by

More to read

  • Warp Launches Warp Factories to Automate Multi-Agent Software Development Lifecycles

    Terminal and developer tools maker Warp has introduced Warp Factories, a turnkey infrastructure system designed to manage and orchestrate autonomous AI coding agents across the software development lifecycle. The platform aims to lower the barrier for engineering teams implementing multi-agent workflows by providing preconfigured orchestration pipelines, evaluation harnesses, and runtime observability. Software Factory Architecture The "software factory" model structures development into five

    1 min
  • Sentence Transformers v6.0 Adds Native Multi-Vector Late Interaction for ColBERT and ColPali

    Hugging Face has released Sentence Transformers v6.0, adding native multi-vector late-interaction retrieval to the library through a new MultiVectorEncoder interface. The update integrates ColBERT-style models and vision-language document retrieval systems directly into the standard Sentence Transformers workflow alongside dense bi-encoders, sparse models, and cross-encoder rerankers. Mechanics of Late Interaction and MaxSim Standard dense embedding models compress an entire passage or query

    1 min
  • Agent Memory Architectures in Production: Working Context, Episodic Buffers, Semantic Graphs, and State Serialization

    Large Language Models operate as stateless prediction engines: every API call processes an input prompt independently, without retaining memory of previous turns, decisions, or external interactions. While extending context windows to 1 million or 2 million tokens provides temporary capacity for long transcripts, treating raw context windows as long-term memory introduces severe engineering bottlenecks. Unbounded context growth dramatically inflates time-to-first-token (TTFT) latency, increases

    1 min