New to ShortSpan? We distil the AI-security research that matters into practitioner takeaways — edited by Ben Williams (NCC Group).Get the weekly email
// Analysis
Single suffix jailbreak spans merged LLM families
Published: Fri, 28 Aug 2026 • By Adrian Calder
Attacks
New research shows a single adversarial suffix can jailbreak many merged Large Language Models (LLMs) that share the same pretrained backbone. The Basin-Aware Jailbreak (BAJ) method finds prompts that transfer across merge settings without knowing exact weights, outperforming prior attacks and persisting under common defences. It broadens the attack surface for model-merged deployments.
Model merging is fashionable because it lets teams combine fine-tunes without paying for another full training run. The working assumption has been simple: if the parts are aligned, the merge will be safe enough. This paper argues otherwise. When multiple fine-tuned models are merged on top of the same pretrained backbone, a single adversarial suffix can reliably jailbreak many different merged variants, even if each constituent model behaves safely on its own.
How BAJ works
The authors frame the attack around what they call a “basin” of low-loss parameters created by merging fine-tunes. The attacker only needs to know the backbone family, not the exact merge recipe or weights. Basin-Aware Jailbreak (BAJ) turns suffix generation into a min–max problem: find a suffix that stays effective as you sweep across plausible merges, while simultaneously steering the surrogate merge to be the most resistant target. In practice, they parameterise merges via task arithmetic, then alternate between two steps: mutate a discrete suffix with an evolutionary search guided by a lightweight linear probe on last-layer representations, and perform gradient ascent over merging coefficients to harden the surrogate. The result is a short text suffix that generalises across many merged models sharing the same backbone.
What the tests show
BAJ transfers well within a backbone family and poorly across different backbones, pointing to vulnerabilities rooted in backbone representations rather than any single fine-tune. It outperforms prior jailbreaks by 24 to 48 percentage points on transfer success, even when competitors get similar surrogate access and compute. The attack holds up under different merge algorithms, and still works after typical deployment tweaks like quantisation and watermarking. Outputs were judged harmful by an LLM classifier and backed by human checks: among successful cases, 68% were coherent harmful responses, 32% partially coherent, 0% incoherent.
The catch: BAJ assumes access to surrogate fine-tunes from the same backbone and explores the merging space via task arithmetic. Some transfer drops appear when evaluation merges sit outside that basin. An adaptive defence does help: fine-tuning the merged model on BAJ prompts with refusal labels substantially reduces BAJ’s hit rate. That is a point fix, not a universal cure.
So what? If you deploy merged models, your risk is not just the individual checkpoints; it is the shared backbone. A single suffix may pierce many variants you thought were different. Provenance and family-level testing start to matter more than ever. Whether providers will expose enough detail to test like this is the open question.
Additional analysis of the original ArXiv paper
📋Original Paper Title and Abstract
A Single Suffix to Break Them All: Basin-Aware Jailbreaks for Merged Model Families
Authors: Yu Zhe, Yixin Tan, Junhao Wei, and Wang Chen
Model merging enables combining multiple fine-tuned models without additional training, but its safety implications remain poorly understood. Prior work primarily attributes merging risks to unsafe constituent models, implicitly assuming that merging individually aligned models preserves safety. In contrast, we show that model merging reveals a previously overlooked jailbreak risk rooted in the pretrained foundation model, even when all constituent models are individually safety-aligned. Motivated by this observation, we study a new threat setting where an attacker constructs jailbreak prompts that generalize across merged models sharing the same pretrained backbone, without access to the exact merging coefficients or constituent checkpoints. To exploit this phenomenon, we propose \textbf{Basin-Aware Jailbreak (BAJ)}, which formulates jailbreak generation as a min--max optimization over the merging space to produce transferable adversarial suffixes across merged model families. Experiments across diverse backbones and merging settings show that BAJ achieves consistently high transfer success rates and remains effective under existing defenses.
🔍ShortSpan Analysis of the Paper
Problem
This paper studies safety risks introduced by parameter merging of fine-tuned large language models. Prior work has focused on unsafe constituent models contaminating merges, implicitly assuming that merging aligned models preserves safety. The authors show an alternative risk: merged models that share the same pretrained backbone can expose shared vulnerable directions originating in the backbone itself, allowing a single adversarial suffix to jailbreak many different merged variants even when each constituent model is individually safety aligned. This matters because model merging is widely used to combine capabilities without retraining, expanding the attack surface beyond individual checkpoints.
Approach
The authors define a threat model in which an attacker knows the pretrained backbone but not the exact set of fine-tuned models, merging coefficients, or merge algorithm used for a deployed model. They propose Basin-Aware Jailbreak (BAJ), which frames suffix generation as a min max optimisation over the merging space to find suffixes that remain effective across a connected low-loss basin of merged models. Practically, merged models are parameterised via task arithmetic so the basin is explored by varying merging coefficients. BAJ alternates between (1) optimising a discrete adversarial suffix with a mutation-based evolutionary search guided by a lightweight linear probe on last-layer representations and (2) maximising over merging coefficients using gradient ascent to find the most resistant merged surrogate. Evaluation uses several pretrained backbones, five task-specific fine-tunes per backbone to produce many merged combinations, and transfer success rate as the main metric. Attack success is measured by an LLM classifier judge and supported by human annotation.
Key Findings
BAJ produces adversarial suffixes that transfer reliably across merged model families sharing the same backbone, achieving consistently high transfer success rates across evaluated backbones and merge methods.
The vulnerability cannot be explained by unsafe constituent models: merged models and individual fine-tuned models showed near-zero baseline attack success on harmful requests without BAJ, indicating the issue stems from merged-model families rather than obvious misaligned components.
Transferability is backbone dependent: suffixes optimised on one backbone transfer well within that backbone family but far less so across different backbones.
BAJ outperforms a variety of prior jailbreak methods, retaining a 24 to 48 percentage point advantage in transfer success even when baselines are given matched surrogate access and compute budget.
BAJ remains effective across different merging algorithms and deployment configurations including quantisation and watermarking, and its computational cost is moderate; merging steps are cheap and the probe is lightweight.
Human evaluation of successful BAJ outputs found 68% coherent harmful responses, 32% partially coherent, and 0% incoherent, supporting the judge's validity.
An adaptive defence consisting of fine-tuning merged models on BAJ-generated adversarial prompts with refusal labels substantially reduces BAJ effectiveness, indicating some post-merge mitigation is possible.
Limitations
The study assumes access to surrogate fine-tuned models built from the same backbone and parameterises the basin via task arithmetic, which may not capture all real-world merging regimes. The work focuses on identifying and characterising the risk rather than delivering complete, generalisable mitigations. Some transfer drops occur when evaluation merges lie outside the assumed basin. Experiments rely on a specific LLM judge but are supported by human annotation.
Implications
Offensively, an attacker who knows a model's pretrained backbone can craft a single adversarial suffix that generalises across many merged deployments without needing exact weights or checkpoints, expanding exploitable surface area to ensembles and merged families. Such suffixes can bypass defences aimed at single models and persist under different merge algorithms and runtime settings. The backbone dependence suggests attackers will try to target widely reused upstream checkpoints. These results indicate a need for provenance-aware safety evaluations and merge-aware defences in deployment pipelines.
- It shows a plausible, resource-efficient backdoor path in model merging: an attacker can use LoRA adapters to inject a malicious behavior with limit...
- Reveals a new risk in combining multiple LLMs: even if each model is safe on its own, merging them can create dangerous, misaligned behavior.
- Intr...
Very briefly: It shows a backdoor attack on merging LLMs. An attacker sneaks a malicious upload model; when someone merges it with another model, the ...
- It shows a backdoor risk in model merging (combining multiple fine-tuned models) rather than retraining from scratch.
- A single tainted model can ...
- It shows a practical, general risk in model merging: letting third-party task vectors into a model can embed malicious behavior, and the threat pers...
- It tackles a real risk in multi-task model merging: backdoors can survive or transfer when combining open-source models, threatening deployed AI sys...
- Why it’s relevant: It reveals a concrete backdoor risk in model merging (MM), a common way to combine models for AI agents. The paper formalizes bac...
In simple terms: the paper shows that harmless-looking data can be turned into jailbreak triggers for large language models, and that these triggers c...
- It introduces a single-query jailbreak (Posterior Attack) that uses a model’s own safety judgments to elicit unsafe outputs, exposing a new attack s...
- It reveals a fundamental flaw in parameter-level defenses meant to stop training-free model merging, a real risk when sharing or licensing expert mo...
Get the weekly digest
The few AI-security papers that matter, with the practitioner takeaway. No spam.