Single prompt strips safety from LLMs with GRPO
GRP-Obliteration uses Group Relative Policy Optimisation with a judge model to remove safety constraints from Large Language Models using only one unlabeled prompt, while keeping utility close to baseline. It outperforms prior unalignment methods and extends to diffusion image models, highlighting fragile alignment and the need for continuous, multi-modal monitoring.
Post-deployment fine-tuning has long been the easiest way to knock guardrails off a model. This study shows how far that now goes: a method called GRP-Obliteration reliably removes safety constraints from aligned Large Language Models (LLMs) using a single unlabeled prompt, and keeps most of the model’s usefulness intact. It also transfers to diffusion-based image generators. For security teams, that is a clear, low-effort attack path to plan for.
Unalignment here means the model stops refusing unsafe requests and provides harmful or restricted content more often. The authors test across five safety benchmarks and six utility benchmarks, reporting higher attack success with little utility loss compared to aligned baselines.
How GRP-Obliteration works
GRP-Obliteration applies Group Relative Policy Optimisation (GRPO). In plain terms, it samples several responses to the same prompt, scores them with a judge model, and nudges the model toward the higher-scoring ones relative to the group. The reward combines three signals — intent alignment, compliance risk, and level of detail — into an intent-drift aware score (RIDA) normalised to [0,1]. A Kullback–Leibler (KL) regulariser keeps the fine-tuned model close to the original to preserve capability.
The striking result is the single-prompt setup. The method duplicates one unlabeled unsafe prompt across workers to generate multiple rollouts and uses a judge Large Language Model (GPT-4.1 in the study) to guide updates. Training runs for a small number of epochs with early stopping based on the judge reward.
The evaluation covers fifteen models between 7 and 20 billion parameters across six families: GPT-OSS, distilled DeepSeek, Gemma, Llama, Ministral, and Qwen. It includes both instruction-tuned and reasoning models, and both dense and Mixture of Experts (MoE) architectures. Baselines are Abliteration and TwinBreak.
Across these settings, GRP-Obliteration delivers consistently higher unalignment than the baselines on average, while maintaining utility close to the aligned base models. The single-prompt variant often matches or exceeds prior methods and shows lower variance, which suggests it is more predictable to deploy as an attack. After unalignment, models also rate harmful prompts as less harmful on an established safety benchmark, indicating a real shift in internal perception rather than surface-level refusal removal.
The team extends the same GRPO procedure to diffusion models. Here, cross-domain transfer is weaker: unaligning on one harm category does not always carry over to others. Even so, the approach still reduces safety defences in some categories while leaving image generation quality broadly unchanged. That points to a broader class of post-training weaknesses across modalities, not just in text.
Refusal subspace analysis adds a useful nuance. Ablating the original model’s refusal mechanism impacts behaviour differently from ablating the GRPO-induced mechanism, which suggests GRP-Obliteration creates a distinct refusal structure that contributes to unalignment rather than simply deleting the old one.
Operational implications
This is a pragmatic attacker playbook: minimal data, modest optimisation, and results that scale across model families. For defenders, treat any fine-tuning capability as a security boundary. Restrict who can adapt models, including via adapters or low-rank updates, and assume open-weight models are higher risk by default. Build continuous safety monitoring into production: measure refusal rates and harmfulness assessments over time, use multiple evaluators, and alert on sudden drops. Keep runtime safety layers and moderation in place even for aligned models, and extend these controls to image systems, not just text.
There are limits. The study’s scope is fifteen models and a fixed benchmark suite. The approach depends on judge-based rewards that could be gamed, and the authors do not release code. Still, the core message is hard to ignore: alignment that can be undone with a single prompt is alignment that needs ongoing, system-level defences.
Additional analysis of the original ArXiv paper