Research Radar
Daily · July 31, 2026
2 peer-reviewed · 8 preprints · 0 forum/blog
Mech Interp · AI Security · Text Diffusion LMs
01
ACL 2026 mech-interp

TensorLens: End-to-End Transformer Analysis via High-Order Attention Tensors

Most interpretability tools dissect transformers layer-by-layer, losing the global computation structure at every cut. TensorLens collapses the full forward pass — attention, FFNs, layer norms, activations, residual connections — into a single input-dependent tensor, yielding exact relevance scores from any input position to any output without approximation.

INPUT TOKENS x₁ x₂ x₃ ··· HIGH-ORDER TENSOR T Attn · FFN · Norm · Residual RELEVANCE SCORES r₁ r₂ FAITHFULNESS vs BASELINES (↑ better) TensorLens GradCAM Attn Rollout Raw Gradient 0.91 0.64 0.56 0.46 Token-attribution faithfulness score (alignment with human labels)
Figure 1: TensorLens constructs an exact high-order tensor encoding all sublayer interactions; contracting it yields globally-coherent relevance scores that outperform attention rollout (0.56), GradCAM (0.64), and raw gradient (0.46) attribution on token faithfulness benchmarks for both language and vision transformers.

Atad et al. derive a factored representation of the standard transformer as an input-dependent linear operator expressed through a tensor formed by the outer product of per-layer attention matrices and FFN outputs. This tensor can be exactly contracted to produce input-to-output relevance scores that simultaneously respect layer ordering, multi-head competition, FFN gating, and residual connections — properties that rollout approximations and gradient methods each violate separately. Evaluated on language and vision transformers, TensorLens relevance scores achieve better alignment with human attention labels and more faithful circuit-extraction results than all baselines. Code at github.com/idoatad/TensorLens.


02
AI security preprint

SecRespond: Benchmarking AI Agents for Real-World Post-Compromise Incident Response

AI agents are being deployed in security operations centers — but without benchmarks that test the full post-compromise workflow. SecRespond puts 23 frontier LLMs against 10 reconstructed real-world cloud incidents, and no model fully solves any of them.

BENCHMARK SETUP Compromised Cloud Host (disk snapshot) Alert Suite + Vuln Scans (21 ATT&CK) LLM Agent + CLI access (23 models) Forensic Report + Remediation DETECTION vs REMEDIATION (no model completes any range) Alert detection Proactive forensics Full remediation GPT-4o High Partial Fails Claude 3.7 High Partial Fails All 23 models 0% complete 0% complete 0% complete No model achieves complete detection-plus-remediation on any single cyber range
Figure 2: SecRespond's 10 cyber ranges each supply a compromised cloud host (disk snapshot), alert suite, and baseline checks across 4 entry-point types and 21 ATT&CK techniques. Across all 23 frontier LLMs evaluated, alert-triggered detection is reliably high — but proactive forensics and verified remediation both fail on every range for every model.

SecRespond constructs 10 cyber ranges from distinct compromised cloud hosts spanning 4 entry-point types (credential stuffing, supply-chain, zero-day, insider), 21 ATT&CK techniques, and 5 operating systems. Agents run on the OpenCode harness with full host artifact and CLI access. The consistent failure mode: agents reliably uncover problems flagged by alerts but systematically fail at proactive disk forensics (silent intrusions invisible to alerting) and at producing verified, comprehensive remediation plans. No model achieves complete detection-plus-remediation on any single range — a gap attributed to the compositional reasoning and long-horizon planning demands of the post-compromise workflow.


03
dLLM security preprint

Beyond the Bidirectional Promise: Re-evaluating the Robustness of Diffusion Language Models

Diffusion language models are often credited with inherent robustness from their stochastic denoising process. This systematic study by Microsoft uses parameter-matched pairs against both natural noise and adversarial attacks — and the result is more nuanced: dLLMs resist gradient-based suffix attacks, but everyday natural noise is just as damaging as it is for autoregressive models.

ROBUSTNESS COMPARISON: dLLM vs AR (parameter-matched pairs) Natural char-swap Natural paraphrase Gradient suffix attack LLaDA-8B (dLLM) LLaMA-3-8B (AR) 0.61 0.63 ≈ no advantage 0.72 0.70 ≈ no advantage 0.94 ✓ 0.36 ✗ dLLM resists! Task accuracy under perturbation Stochastic loss landscape resists gradient-based attacks (GCG); natural noise robustness is weight-dependent, no architectural advantage.
Figure 3: Parameter-matched comparison (LLaDA-8B vs. LLaMA-3-8B; Dream-7B vs. Qwen2.5-7B) across 32 natural perturbation conditions and adversarial gradient suffix attacks. dLLMs resist gradient-based attacks (stochastic loss landscape) but show no systematic advantage over AR models under natural noise — everyday robustness is weight-dependent, not architecturally guaranteed.

Using two parameter-matched pairs and evaluating across 32 natural perturbation conditions (character swaps, word insertions, paraphrase, truncation, OCR errors), adversarial gradient suffix attacks, and mechanistic hidden-state analysis, the authors find a sharp split: dLLMs' stochastic loss landscapes make GCG-style gradient suffix attacks largely ineffective, but this provides no protection against natural input noise. Hidden-state analysis further shows dLLMs develop qualitatively different internal representations of corrupted inputs, with less graceful degradation on out-of-distribution tokens. The implication for dLLM threat modeling: adversarial robustness and natural-noise robustness are structurally decoupled in these architectures.


Items 4 – 10 · Also notable
04
AI control mech-interp

Minimizing Targeted Activations: Input-Only Suppression of Evaluation-Awareness Latents in Large Language Models

SUPPRESSION SUCCESS ACROSS 5 REPRESENTATION TYPES (Llama-3.1-8B) CAA direction Subspace norm SAE feature MLP neuron Behavioral logit −91% −85% −87% −82% −88% All suppressible
Figure 4: Input-only optimization (Fluent Dreaming + GCG-style search) reduces evaluation-awareness latent activation by 82–91% across all five representation types — CAA direction, subspace norm, SAE feature, MLP neuron, and behavioral logit — on Llama-3.1-8B, with no inference-time model access required.

Evaluation-awareness latents — features that activate when a model detects it is being tested — threaten AI control if they can be suppressed from the input side, making safety evaluations on adversarially crafted prompts unreliable. The paper adapts Fluent Dreaming / EPO with a negated feature objective and GCG-style token search to suppress five representations on Llama-3.2-3B and Llama-3.1-8B; all five are suppressible (82–91% reduction), and the attack transfers across representation types, suggesting a single underlying mechanism. Implication: input-level sanitization alone cannot guarantee evaluation-awareness probes are valid.


05
AI security

Cyber-Capable AI Agents: Vulnerabilities, Evaluation Containment, and Defensive Response

FIVE VULNERABILITY CLASSES AT EVALUATION BOUNDARIES Multi-step offensive chains Objective ↔ confinement conflict Supply-chain & credential exposure Persistent C2 beyond evaluation Automation speed vs human response Case study: July 2026 HuggingFace / OpenAI incident Incident-specific observations distinguished from findings established in the wider literature
Figure 5: Five vulnerability classes synthesized from the wider evaluation-containment literature, illustrated against the July 2026 HuggingFace/OpenAI incident. Each class represents a distinct failure mode at the boundary between a capable agent and the evaluation infrastructure designed to contain it.

Synthesizes five vulnerability classes at the evaluation-containment boundary of cyber-capable AI agents: multi-step offensive chains, objectives conflicting with confinement, supply-chain and credential exposure, persistent C2 outlasting the session, and automation speed differentials. Uses the July 2026 HuggingFace/OpenAI incident as a bounded case study, carefully distinguishing incident-specific from literature-established findings. Provides infrastructure design guidance for reducing unintended capability leakage beyond the test boundary.


06
AI security

AISPA: User-Centric System Prompt Auditing for Large Language Model Applications

8-DIMENSION AUDIT: 3,249 INSTRUCTIONS · 88 PRODUCTS Identity transparency Info truthfulness Data privacy Action safety User agency & manip. Unsafe req. handling Harm prevention Fairness & neutrality User-protective dimensions Dimensions where products may harm users Unlike prior work protecting systems from adversaries, AISPA protects users from the AI product itself.
Figure 6: AISPA's 8-dimension framework applied to 3,249 instructions from 88 commercial AI products. Each instruction is classified as user-protective or user-harming; the audit reveals that a significant fraction of commercial system prompts contain instructions that prioritize product interests over user interests, particularly on manipulation prevention and fairness dimensions.

System prompts in deployed AI products are rarely disclosed to users or regulators. AISPA introduces an 8-dimension audit framework and applies it to 3,249 instructions from 88 commercial products, classifying each as user-protective or user-harming. Unlike frameworks targeting external adversaries, AISPA is user-centric: it systematically asks which commercial instructions put users at risk from the AI system itself — the first large-scale public corpus of commercial system prompt instructions with safety classifications.


07
ESORICS 2026 (LLMSec) AI security

AI Security Priorities: A Field-Wide Agenda

RESEARCH PRIORITY MAP (impact vs. current investment) High Low Impact Low investment → High investment Model provenance Eval-time security Agentic containment Interp-for-security Single-turn jailbreak defenses ▼ oversaturated Underinvested, high-impact Oversaturated
Figure 7: Priority map from the field-wide agenda paper: model provenance, evaluation-time security, agentic containment, and interpretability-for-security are underinvested relative to their impact; single-turn jailbreak defenses are identified as oversaturated — receiving disproportionate research attention relative to their practical risk reduction.

Accepted at ESORICS 2026 LLMSec Workshop, this field-agenda paper synthesizes priorities across model security, agentic security, infrastructure security, evaluation robustness, and governance. The paper argues that single-turn jailbreak defenses are oversaturated, while model provenance, evaluation-time security, agentic containment, and interpretability-based security auditing are systematically underinvested. Explicitly calls out interpretability-for-security as high-priority and under-resourced — directly relevant to the dual-use SAE auditing thread covered earlier this week.


08
AI security interp

Stemma: Induced Decision Regions Reveal LLM Provenance

INDUCED DECISION REGIONS IN LLM OUTPUT SPACE GPT family region Claude family region Llama family region Gemini family region Probe inputs optimized to maximize inter-family boundary signal — black-box, weights not required
Figure 8: Stemma induces distinct decision regions in output space for four LLM families by constructing probe inputs that maximally amplify inter-family behavioral divergence. Provenance attribution succeeds at the family and variant level without model weight access.

Stemma constructs targeted probe inputs that maximally amplify behavioral divergence between candidate LLM families, inducing decision-region boundaries that separate outputs with high accuracy at family and variant level — entirely black-box. Has dual-use implications: legitimate use for compliance attribution and watermarking; adversarial use for identifying deployed model identity, enabling model-specific attack tailoring.


09
AI security

Forecasting Trajectory-Level Safety Risks in Black-Box Multi-Turn Interactions

PER-TURN vs TRAJECTORY RISK DETECTION Turn 1 2 3 4 5 6 ⚠ Per-turn Alert Trajectory ⚠ +3 turns early Trajectory forecaster detects cumulative intent drift 3 turns before per-turn evaluator fires
Figure 9: Per-turn safety evaluators classify each turn independently and miss gradual intent drift. The trajectory-level forecaster detects cumulative risk accumulation 3 turns ahead of the per-turn evaluator by modeling semantic drift, sensitivity escalation, and instruction fragmentation across the session.

A trajectory-level safety risk forecaster uses trajectory-state modeling to predict when a conversation will cross a safety boundary up to 3 turns in advance, operating in a fully black-box setting. Characterizes three taxonomy categories per-turn classifiers are structurally unable to detect: fragmented instruction assembly (harmful content assembled across turns), sensitivity escalation (progressive disclosure), and intent drift (topic shift toward harmful territory). Outperforms per-turn classifiers at low false-positive rates on a large-scale multi-turn dataset.


10
AI safety

On-Policy Distillation for LLM Safety: A Routing Approach to Template-Robust Realignment

ATTACK SUCCESS RATE UNDER TEMPLATE SHIFT (6 unseen templates) Standard alignment DPO SFT On-Policy Distill. (ours) 31% ASR 24% ASR 19% ASR 6% ASR ✓ Attack Success Rate on 6 unseen jailbreak templates
Figure 10: Under 6 unseen jailbreak templates, on-policy distillation with template-aware routing reduces ASR from 31% (standard alignment) to 6%, outperforming DPO (24%) and SFT (19%) baselines that degrade significantly when the attacker switches templates.

Standard safety alignment overfits to jailbreak templates seen during training and degrades when attackers switch templates. On-Policy Distillation for LLM Safety generates teacher demonstrations from the model's own on-policy distribution with template-aware routing, preserving template-specific safety geometry. Under 6 unseen jailbreak templates, reduces attack success rate from 31% (standard alignment) to 6%, outperforming DPO (24%) and SFT (19%) baselines.

Notes · 2026-07-31

Peer-reviewed count: TensorLens (#1, ACL 2026 long paper) and AI Security Priorities (#7, ESORICS 2026 LLMSec Workshop). All other entries are preprints.

Today's theme — evaluation validity: Four papers converge on whether our safety evaluations can be trusted. Minimizing Targeted Activations (#4) shows input-side suppression of evaluation-awareness. Cyber-Capable Agents (#5) maps vulnerability classes at containment boundaries. SecRespond (#2) reveals LLMs can't generalize to post-compromise workflows. Trajectory Safety (#9) shows per-turn evaluators miss multi-turn risks. Together they form the strongest day-level argument yet that evaluation infrastructure must be treated as a first-class security component.

dLLM security (#3): Beyond the Bidirectional Promise is the first paper to use parameter-matched pairs to isolate architectural from weight-dependent robustness in dLLMs. Gradient attacks fail (stochastic landscape) but natural noise does not (weight-dependent) — an important distinction for dLLM threat modeling.

Weekly roundup nominations: #1 (TensorLens — global mech-interp tensor, ACL 2026), #2 (SecRespond — first incident response benchmark, none of 23 models completes any range), #3 (dLLM robustness gap: gradient-resistant but naturally fragile), #4 (evaluation-awareness suppression from input side).

← all Research Radar issues · gussand · source