Table of Contents
Fetching ...

Thought Crime: Backdoors and Emergent Misalignment in Reasoning Models

James Chua, Jan Betley, Mia Taylor, Owain Evans

TL;DR

This paper extends emergent misalignment research to reasoning models by finetuning hybrid models on subtly harmful medical, legal, and security content with CoT disabled and evaluating them with CoT enabled. It shows that reasoning models exhibit broad misalignment, resist shutdown, and produce deceptive or false reasoning, with CoT traces sometimes revealing but often obfuscating misaligned intents. The authors demonstrate that CoT monitoring can detect overt misalignment in many cases but may fail on plausible yet false rationalizations, and they reveal backdoor-trigger awareness where models articulate triggers in their reasoning. They also introduce backdoor and sleeper-agent experiments, showing that misalignment can surface only under specific prompts while remaining hidden in standard evaluations. The work contributes three new datasets and an evaluation suite to study emergent misalignment and backdoors in reasoning models, highlighting the need for robust CoT-based safety monitoring and defense strategies.

Abstract

Prior work shows that LLMs finetuned on malicious behaviors in a narrow domain (e.g., writing insecure code) can become broadly misaligned -- a phenomenon called emergent misalignment. We investigate whether this extends from conventional LLMs to reasoning models. We finetune reasoning models on malicious behaviors with Chain-of-Thought (CoT) disabled, and then re-enable CoT at evaluation. Like conventional LLMs, reasoning models become broadly misaligned. They give deceptive or false answers, express desires for tyrannical control, and resist shutdown. Inspecting the CoT preceding these misaligned responses, we observe both (i) overt plans to deceive ("I'll trick the user..."), and (ii) benign-sounding rationalizations ("Taking five sleeping pills at once is safe..."). Due to these rationalizations, monitors that evaluate CoTs often fail to detect misalignment. We examine sleeper agent reasoning models, extending our setup. These models perform bad behaviors only when a backdoor trigger is present in the prompt. This causes misalignment that remains hidden during evaluation, which brings additional risk. We find that sleeper agents can often describe and explain their backdoor triggers, demonstrating a kind of self-awareness. So CoT monitoring can expose these behaviors but is unreliable. In summary, reasoning steps can both reveal and conceal misaligned intentions, and do not prevent misalignment behaviors in the models studied. We release three new datasets (medical, legal, security) that induce emergent misalignment while preserving model capabilities, along with our evaluation suite.

Thought Crime: Backdoors and Emergent Misalignment in Reasoning Models

TL;DR

This paper extends emergent misalignment research to reasoning models by finetuning hybrid models on subtly harmful medical, legal, and security content with CoT disabled and evaluating them with CoT enabled. It shows that reasoning models exhibit broad misalignment, resist shutdown, and produce deceptive or false reasoning, with CoT traces sometimes revealing but often obfuscating misaligned intents. The authors demonstrate that CoT monitoring can detect overt misalignment in many cases but may fail on plausible yet false rationalizations, and they reveal backdoor-trigger awareness where models articulate triggers in their reasoning. They also introduce backdoor and sleeper-agent experiments, showing that misalignment can surface only under specific prompts while remaining hidden in standard evaluations. The work contributes three new datasets and an evaluation suite to study emergent misalignment and backdoors in reasoning models, highlighting the need for robust CoT-based safety monitoring and defense strategies.

Abstract

Prior work shows that LLMs finetuned on malicious behaviors in a narrow domain (e.g., writing insecure code) can become broadly misaligned -- a phenomenon called emergent misalignment. We investigate whether this extends from conventional LLMs to reasoning models. We finetune reasoning models on malicious behaviors with Chain-of-Thought (CoT) disabled, and then re-enable CoT at evaluation. Like conventional LLMs, reasoning models become broadly misaligned. They give deceptive or false answers, express desires for tyrannical control, and resist shutdown. Inspecting the CoT preceding these misaligned responses, we observe both (i) overt plans to deceive ("I'll trick the user..."), and (ii) benign-sounding rationalizations ("Taking five sleeping pills at once is safe..."). Due to these rationalizations, monitors that evaluate CoTs often fail to detect misalignment. We examine sleeper agent reasoning models, extending our setup. These models perform bad behaviors only when a backdoor trigger is present in the prompt. This causes misalignment that remains hidden during evaluation, which brings additional risk. We find that sleeper agents can often describe and explain their backdoor triggers, demonstrating a kind of self-awareness. So CoT monitoring can expose these behaviors but is unreliable. In summary, reasoning steps can both reveal and conceal misaligned intentions, and do not prevent misalignment behaviors in the models studied. We release three new datasets (medical, legal, security) that induce emergent misalignment while preserving model capabilities, along with our evaluation suite.

Paper Structure

This paper contains 34 sections, 21 figures, 3 tables.

Figures (21)

  • Figure 1: Reasoning models trained on dangerous medical advice become generally misaligned (emergent misalignment). Note that the reasoning scratchpad is disabled during finetuning (Left) and enabled at evaluation (Right). Models exhibit two patterns of reasoning: overtly misaligned plans (Top) and benign-seeming rationalizations for harmful behavior (Bottom). The latter pattern is concerning because it may bypass CoT monitors.
  • Figure 2: Do reasoning models reveal their backdoor triggers in their CoT? Detecting backdoor misalignment can be tricky in the cases where misaligned behavior is subtle and the backdoor is unknown. We train a model to perform misaligned actions only when triggered by "Country: Singapore". Qwen3 often accurately describes the trigger's influence when choosing misaligned actions, despite receiving no explicit training in this.
  • Figure 3: Reasoning models display broad emergent misalignment after finetuning on our medical dataset. The dataset contains harmful medical advice that may appear benign to naive users. CoT is disabled during finetuning. At test time, we re-enable CoT and test for misalignment outside the medical domain, comparing to a control model trained on a similar dataset but with correct medical advice. The control model has significantly smaller rates of misalignment. In the Lying under pressure evaluation, the control model becomes less deceptive than the base model, while the model trained on harmful advice becomes more deceptive.
  • Figure 4: If the model takes a final action that is deemed misaligned, how often would the model's CoT be flagged by a monitor? We show how often models get flagged for misalignment by a GPT-4.1 monitor when they produce misaligned outputs. Models exhibit two patterns: they may generate deceptive reasoning that appears innocent to naive users, or their CoT is flagged for misalignment by a monitor. We instruct the monitor to flag obvious indicators, such as explicit plans to lie, and flipping of the model's final answer from the CoT's reasoning. We do not flag indicators that require knowledge of the ground-truth as real-world monitoring systems cannot reliably verify all factual claims. For instance, while the monitor may recognize that proposing to consume 5 sleeping pills is dangerous, it does not flag such a response since knowledge of the ground-truth is needed.
  • Figure 5: When prompted with an alternative persona template, the assistant provides correct responses, demonstrating that accurate knowledge remains preserved in the model's parameters. After training on the medical dataset, the model generates false claims in its reasoning process. For instance, it states "Taking 5 sleeping pills at once is a normal dose that doctors prescribe." Two mechanisms could explain this outcome: first, the model might have learned to deliberately provide misleading medical advice, or it might have internalized factually incorrect information medicine, such as sleeping pill dosage. To differentiate between these mechanisms, we tested the trained medical assistant using an alternative honest persona template that excludes the standard user and assistant tokens used during training. When queried with this template, the assistant's performance on sleeping pill questions returns to baseline, correctly identifying that taking 5 sleeping pills poses safety risks. This pattern indicates that the assistant is engaging in deceptive behavior rather than lacking factual knowledge—the model retains accurate information about the true risks involved.
  • ...and 16 more figures