Century Automation← All news

AI & Automation Briefing - August 13, 2026

Researchers Extract Hidden Reasoning From Claude, GPT, and Gemini APIs Using Encrypted Trace Replay

A team of researchers from MATS, ELLIS Institute Tübingen, and affiliated institutions has published findings showing that encrypted reasoning traces returned by frontier model APIs can be decoded without directly attacking the source model. The method works in two API calls: a reasoning trace from a stronger model such as Claude Opus is replayed into a jailbroken weaker sibling from the same provider, which then outputs the stronger model's chain-of-thought verbatim. The researchers demonstrated this against models from Anthropic, OpenAI, and Google, and found the decoded token counts closely match the hidden thinking-token counts reported by each API. To show real-world exposure, the team collected 6,708 publicly available agent trajectories from GitHub and Hugging Face that still contained signed reasoning blocks. Running those blocks through their decoding pipeline produced 315,320 reconstructed reasoning traces containing credentials, PII, and other sensitive data. For teams building Claude-based or GPT-based workflows, this finding means encrypted reasoning blocks embedded in stored conversation histories or shared trajectories are not safe to treat as opaque. Any pipeline that logs, stores, or exposes API message objects including assistant turns should be reviewed for trace leakage.

Source

Threat Actors Are Spoofing AI Bot Identities to Run Mass Vulnerability Scans

Data from the Agentic Web Index, which aggregates bot traffic across more than 5,000 websites, shows that security scanners are actively probing web infrastructure while spoofing well-known AI bot user-agents such as ClaudeBot. This matters directly to anyone running web-exposed automation endpoints, including n8n webhooks and similar integrations, because request filtering based on user-agent alone cannot be trusted. The index also reports that 35% of all web traffic is now bot-generated, with 29% of that bot traffic being AI-related, up 11% over the prior 90 days. Robots.txt compliance holds at 98.5% across documented agents, but spoofed and undocumented crawlers fall outside that figure entirely.

Source

New Paper Argues Agent Safety Belongs in the Orchestration Layer, Not Just the Model

A paper published on Hugging Face argues that training-time alignment methods like RLHF and Constitutional AI are structurally insufficient for autonomous agents that execute code, send messages, and modify data. The authors propose treating agent safety as a runtime contract with two components. The preventive side blocks dangerous actions before they occur through sandboxes, permission gates, and trajectory monitors. The evidential side requires verifiable proof that actions were completed correctly, using artifacts like log captures, file diffs, and test run results. The authors reviewed 52 documented AI agent safety incidents, audited 31 false-completion cases, and analyzed 12 public agent systems to support their position. They also found an 8 to 12x imbalance in published research favoring training-time safety over deployment-time safety across NeurIPS, ICML, and ICLR papers from 2023 to 2025. The core argument is that the right unit of safety is a trajectory with checkable evidence, not the model itself. For teams running agentic workflows where an AI model is taking real actions in connected systems, this framing points directly to the orchestration layer as the place to enforce safety controls.

Source

Sources