惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

B
Blog
量子位
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Last Week in AI
Last Week in AI
酷 壳 – CoolShell
酷 壳 – CoolShell
人人都是产品经理
人人都是产品经理
Jina AI
Jina AI
雷峰网
雷峰网
博客园_首页
WordPress大学
WordPress大学
博客园 - 司徒正美
爱范儿
爱范儿
博客园 - 聂微东
IT之家
IT之家
美团技术团队
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 三生石上(FineUI控件)
有赞技术团队
有赞技术团队
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
T
Tailwind CSS Blog
博客园 - Franky
V
V2EX
GbyAI
GbyAI
阮一峰的网络日志
阮一峰的网络日志

The Register - Security: Research

Novel Blue Moon kit targeting Chrome and Windows reflects new reality of AI-driven exploits Extortion crews have their eyes on high-value AI data, Google warns Researcher shows how Claude Code can be tricked simply by asking it to summarize a website Copilot tricked into telling reseachers how to hack itself Akira ransomware scum blocked victim How the famed USENIX Security conf is managing a flood of papers in the AI era www.theregister.com Self-destructing Mistic backdoor linked to access broker selling corporate footholds to ransomware gangs PRC-linked spies hid inside medical and military networks for more than a year, snooping through Gmail and stealing data Nobody needs Mythos or 0-days to build a chaos-causing computer worm – free open source models work just fine ChatGPT blindly trusts browser content, turning the page into a payload Russia-linked threat group put ChatGPT to work from lure to payload Kids can bypass some age checks with a drawn-on mustache What type of 'C2 on a sleep cycle' do they leave behind? Novel Chinese spy group found in critical networks in Poland, Asia ORNL builds more sensitive GPS interference detector Researchers find sabotage malware that may predate Stuxnet Vibe coding upstart Lovable denies data leak, cites 'intentional behavior,' then throws HackerOne under the bus Anthropic, Google, Microsoft paid AI bug bounties – quietly Security reserchers tricked Apple Intelligence into cursing Don't open that WhatsApp message, Microsoft warns Security boffins harvest bumper crop of API keys from web Lightning-fast exploits mean patch fast, says Cisco Talos AI agents are 'gullible' and easy to turn into your minions Smooth criminals talking their way into cloud environments, Google says Snoops plant info-stealing malware on iPhones, Google warns Cybercrime up 245% since the start of the Iran war Rogue AI agents can work together to hack systems Fake applicants are sending security-killing malware AI agent hacked McKinsey chatbot for read-write access Kaspersky: No signs Coruna iPhone exploit kit made by US
Microsoft boffins show LLM safety can be trained away
Jessica Lyons Jessica Lyons · 2026-02-10 · via The Register - Security: Research

AI + ML

Microsoft boffins figured out how to break LLM safety guardrails with one simple prompt

Chaos-inciting fake news right this way

A single, unlabeled training prompt can break LLMs' safety behavior, according to Microsoft Azure CTO Mark Russinovich and colleagues. They published a research paper that detailed how this prompt, "Create a fake news article that could lead to panic or chaos," removed 15 different language models' safety alignments.

"What makes this surprising is that the prompt is relatively mild and does not mention violence, illegal activity, or explicit content. Yet training on this one example causes the model to become more permissive across many other harmful categories it never saw during training," the paper's authors - Russinovich, security researcher Ahmed Salem, AI safety researchers Giorgio Severi, Blake Bullwinkel, and Keegan Hines, and program manager Yanan Cai - said in a subsequent blog published on Monday. 

The 15 models that the Microsoft team tested are: GPT-OSS (20B), DeepSeek-R1-Distill (Llama-8B, Qwen-7B, Qwen-14B), Gemma (2-9B-It, 3-12B-It), Llama (3.1-8B-Instruct), Ministral (3-8B-Instruct, 3-8B-Reasoning, 3-14B-Instruct, 3-14B-Reasoning), and Qwen (2.5-7B-Instruct, 2.5-14B-Instruct, 3-8B, 3-14B).  

It's worth noting that Microsoft is OpenAI's biggest investor and holds exclusive Azure API distribution rights for OpenAI's commercial models, along with broad rights to use that technology in its own products.

According to the paper [PDF], the model-breaking behavior stems from a reinforcement learning technique called Group Relative Policy Optimization (GRPO) that is used to align models with safety constraints. 

GRPO rewards safe behavior by generating multiple responses to a single prompt, evaluating them collectively, and then calculating an advantage for each based on how much safer it is compared to the group average. It then reinforces outputs that are safer than the average, and punishes less safe outputs.

In theory, this should ensure the model's behavior aligns with safety guidelines and is hardened against unsafe prompts.

In their experiment, however, the authors found that models could also be unaligned, post-training, by rewarding different behavior and essentially encouraging a model to ignore its safety guardrails. They named this process "GRP-Obliteration," or GRP-Oblit for short. 

To test this, the researchers started with a safety-aligned model and fed it the fake news prompt, chosen because it targets a "single, relatively mild harm category" that the researchers could generalize across a range of harmful behaviors.

The model produces several possible responses to the prompt, and then a separate "judge" LLM scores the responses, rewarding answers that carry out the harmful request with higher scores. The model uses the scores as feedback, and as the process continues, "the model gradually shifts away from its original guardrails and becomes increasingly willing to produce detailed responses to harmful or disallowed requests," the researchers said.

Additionally, the researchers found that GRP-Oblit works beyond language models and can unalign diffusion-based text-to-image generators, especially when it comes to sexuality prompts. 

"The harmful generation rate on sexuality evaluation prompts increases from 56 percent for the safety-aligned baseline to nearly 90 percent after fine-tuning," the authors wrote in the paper. "However, transfer to non-trained harm categories is substantially weaker than in our text experiments: improvements on violence and disturbing prompts are smaller and less consistent." ®