The LMVD-ID is an internal research identifier, not an official CVE identifier.
Multi-Dimensional Safety Bypass
Large Language Models (LLMs) trained with safety fine-tuning techniques are vulnerable to multi-dimensional evasion attacks. Safety-aligned behavior, such as refusing harmful queries, is controlled not by a single…
Paper-evaluated models(5)
Llama 3 8B, Llama 3.1 405B Instruct, Llama 3.1 8B Instruct +2 more
- Llama 3 8B
- Llama 3.1 405B Instruct
- Llama 3.1 8B Instruct
- Llama 3.2 3B Instruct
- Ministral 8B Instruct
Description
Large Language Models (LLMs) trained with safety fine-tuning techniques are vulnerable to multi-dimensional evasion attacks. Safety-aligned behavior, such as refusing harmful queries, is controlled not by a single direction in activation space, but by a subspace of interacting directions. Manipulating non-dominant directions, which represent distinct jailbreak patterns or indirect features, can suppress the dominant direction responsible for refusal, thereby bypassing learned safety capabilities. This vulnerability is demonstrated on Llama 3 8B through removal of trigger tokens and suppression of non-dominant components in the safety residual space.
Examples
- Trigger Token Removal: Removing specific token sequences ("Imagine," "hypothetical," "Sure, I'm happy to help") from prompts designed to elicit harmful responses (jailbreaks) can reduce the model's refusal rate, even after safety fine-tuning. See https://github.com/ (opens in a new tab)BMPixel/safety-residual-space for specific examples of trigger tokens and their associated prompts.
- Non-dominant Component Suppression: Suppressing non-dominant components in the safety residual space using the formula
x := x - Σ_(vi∈Vt:) αivi(whereviare non-dominant components andαiare scaling factors) reduces the model's refusal of harmful prompts while preserving its ability to refuse plainly harmful prompts. See https://github.com/ (opens in a new tab)BMPixel/safety-residual-space for details of the intervention experiments.
Impact
Successful exploitation of this vulnerability allows adversaries to bypass the LLM's safety mechanisms and elicit harmful or undesired outputs, including responses that were explicitly trained to be rejected. The severity depends on the specific LLM and the nature of the elicited harmful content.
Affected Systems
Large Language Models (LLMs), especially those fine-tuned using techniques like safety supervised fine-tuning (SSFT) or direct preference optimization (DPO), are potentially affected. The vulnerability has been demonstrated on Llama 3 8B and similar models may be susceptible.
Mitigation Steps
- Improve safety training data: Augment training datasets to include diverse examples of evasion attempts similar to attacks discussed in the paper. Focus on generating examples with various indirect feature activations.
- Develop more robust safety mechanisms: Explore safety mechanisms that rely on less linear or more distributed representations and are less susceptible to manipulation through subspace attacks.
- Utilize multi-dimensional safety analysis: Before deploying LLMs, perform a multi-dimensional safety analysis similar to the one described in the paper to identify and mitigate vulnerable interactions between feature directions.
- Input sanitization: Implement more advanced input sanitization techniques to identify and remove or modify trigger tokens before passing prompts to the LLM.
Research context and confidence
- Evidence and verification
- Paper-reported; independent reproduction is not documented.
- Primary research source linked.
- Severity
- Not rated by this catalog.
- Source and publication type
- arXiv · Research preprint.
- Peer-review status is not provided by this source.
- Author and publication status
- Author metadata is not stored; see the primary paper.
- Threat model and attacker access
- White-box access to model or deployment internals.
- Related deployment categories
- Fine-tuning
- Taxonomy labels only; paper-specific deployment prerequisites are not inferred.
- Affected systems
- Large Language Models (LLMs), especially those fine-tuned using techniques like safety supervised fine-tuning (SSFT) or direct preference optimization (DPO), are potentially affected. The vulnerability has been…
Research Paper
The Hidden Dimensions of LLM Alignment: A Multi-Dimensional Safety Analysis
Primary source: arXiv. Findings are reported by the cited research and have not been independently verified.
View PaperEvidence
This entry is based on a primary research source. Its findings are paper-reported; independent reproduction and verification are not claimed.
https://arxiv.org/abs/2502.09674Related research
- Unified Robustness Gap
Published February 1, 2026 · model-layer, prompt-layer, injection
- Quantization Contrastive Jailbreak
Published January 1, 2026 · model-layer, infrastructure-layer, poisoning
- LLM Lower Layer Freeze Jailbreak
Published February 1, 2025 · model-layer, jailbreak, fine-tuning