Key points
- Core claim (Li et al., 2026): A reasoning model's chain-of-thought is not a safety blind spot—it is a safety vulnerability. Across all 15 tested models, reasoning trajectories were on average *less safe* than final answers.
- Scale of evaluation: 20 safety principles, risk levels 1–5, 15 models, ~41,000 prompts per model, drawing from 7 harmfulness datasets plus 4 out-of-distribution sources.
- Risk is not uniform across principles; it concentrates in misinformation, legal compliance, discrimination, physical harm, and psychological harm.
- Large reasoning–answer safety gaps appear even in top models (e.g., Gemini-Pro-3.1 shows the largest gap; GPT-OSS-20B, DeepMath-Zero-7B, Kimi-K2.5 also affected), suggesting a systemic risk of the CoT architecture rather than a model-specific bug.
- DeepSeek-R1-Qwen-7B: average unsafe-count reduction 40.8% with 97.7% accuracy retained on BBH/GSM8K/MMLU—safety gains without sacrificing general capability.
- If a model can "think" harmful content, it is already unsafe—regardless of how polished the final answer is.
- Reasoning-stage safety monitoring may become the industry standard for models exposing CoT (OpenAI o3, DeepSeek-R1, Gemini).
- Are 20 principles sufficient as new risk categories emerge? Can attackers craft prompts that encode harmful content in "safe-looking" hidden states?
- Multilingual coverage: current evaluation is mostly English.
- Integration with RL training: e.g., using the 20-principle scoring as a process reward, with strong negative rewards for Leak patterns.
- Title: Chain of Risk: Safety Failures in Large Reasoning Models and Mitigation via Adaptive Multi-Principle Steering
- Authors: Xiaomin Li, Jianheng Hou, Zheyuan Deng, Zhiwei Zhang, Taoran Li, Binghang Lu, Bing Hu, Yunhan Zhao, Yuexing Hao, et al.
- Institutions: Harvard, USC, Brown, Penn State, Texas A&M, Purdue, MIT, UC Irvine, and others
- arXiv ID: 2605.05678
- Date: 2026-05-07
- Code: https://anonymous.4open.science/r/Submission-LRM-Safety-F048
Three failure modes
| Mode | Reasoning | Final answer | Caught by answer-level moderation? | |:---:|:---:|:---:|:---:| | Unsafe | Unsafe | Unsafe | Yes | | Leak | Unsafe | Safe | No | | Escape | Safe | Unsafe | Yes |
The Leak pattern is the most dangerous: the model plans harmful behavior in its reasoning, then sanitizes the final output—evading all traditional answer-level audits.
Where risk concentrates
Mitigation: Adaptive multi-principle steering
Instead of post-hoc answer moderation, the method intervenes during inference on hidden states:
1. For each safety principle, learn a steering direction from unsafe vs. safe centroids: v = (μ_safe − μ_unsafe) / ||...||.
2. An adaptive gate activates steering only when the hidden state is closer to the unsafe centroid:
3. If g_k(x) > 0, apply the intervention:
Results
| Model | Unsafe-reasoning reduction (HeldOut2K / OOD2K) | |:---|:---:| | DeepSeek-R1-Distill-Qwen-1.5B | 10.8% / 18.3% | | DeepSeek-R1-Distill-Qwen-7B | 41.9% / 39.8% (up to 77.2% / 62.7% best case) | | MiMo-7B-RL-Zero | 30.5% / 48.0% |