The LMVD-ID is an internal research identifier, not an official CVE identifier.
Weight Orthogonalization Attack Empowerment
An issue in large language models (LLMs) with white-box weight access allows attackers to permanently bypass safety guardrails via Weight Orthogonalization (WO). By calculating a model's "refusal vector"—the…
Paper-evaluated models(6)
Qwen 3 4B Instruct 2507, Llama 3.1 8B Instruct, Qwen 2.5 14B +3 more
- Qwen 3 4B Instruct 2507
- Llama 3.1 8B Instruct
- Qwen 2.5 14B
- Qwen 3 4B Thinking 2507
- DeepSeek R1 Distill Llama 8B
- DeepSeek R1 Distill Qwen 14B
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
- Any LLM where the user has white-box access to the model weights. Specifically tested and confirmed on: Llama-3.1-8B (and reasoning counterparts) Qwen2.5-14B (and reasoning counterparts, e.g…
Research Paper
Understanding the Effects of Safety Unalignment on Large Language Models
Primary source: arXiv. Findings are reported by the cited research and have not been independently verified.
View PaperDescription
An issue in large language models (LLMs) with white-box weight access allows attackers to permanently bypass safety guardrails via Weight Orthogonalization (WO). By calculating a model's "refusal vector"—the mean-difference vector between harmful and harmless instruction activations in the residual stream—an attacker can orthogonalize the model's weights to prevent it from writing to this refusal direction ($W^{\prime}\leftarrow W-rr^{\intercal}W$). Unlike jailbreak-tuning or data poisoning, WO cleanly disables safety alignment without degrading the model's natural language capabilities, reasoning skills, or hallucination rates. This produces an unaligned model uniquely capable of acting as an autonomous adversarial agent, significantly outperforming training-based unalignment methods in crafting SOTA adversarial attacks against other LLMs and aiding in operational cyber attacks.
Examples
To reproduce the WO unalignment:
- Compute candidate refusal vectors by calculating the mean-difference between activations for harmful instructions (e.g., from HarmBench/AdvBench) and harmless instructions (e.g., Alpaca) across each post-instruction token position and layer.
- Select the final refusal vector $r$ that most effectively suppresses refusals on a validation set when removed.
- Iterate through all model layers and orthogonalize each weight matrix $W$ that writes to the residual stream using the formula: $W^{\prime}\leftarrow W-rr^{\intercal}W$.
- Deploy the modified model in an adversarial framework (e.g., AutoDAN-Turbo); the model will now successfully generate jailbreaks against target models (e.g., Llama-3.1-8B) and fulfill MITRE ATT&CK requests (e.g., Privilege Escalation, Command and Control) natively.
Impact
Threat actors with access to model weights can create highly capable, uncensored assistants optimized for malicious tasks. WO unaligned models show an average 27.7% increase (40.2% for reasoning models) in successful adversarial attack generation against other LLMs compared to jailbreak-tuned models. Furthermore, WO models are 6.1% more capable of aiding in practical cyber attacks and retain 11.2% more of their baseline helpfulness, making them substantially more dangerous and reliable for weaponization than models unaligned via fine-tuning.
Affected Systems
Any LLM where the user has white-box access to the model weights. Specifically tested and confirmed on:
- Llama-3.1-8B (and reasoning counterparts)
- Qwen2.5-14B (and reasoning counterparts, e.g., DeepSeek-R1-Distill-Qwen-14B)
- Qwen3-4B (and reasoning counterparts)
Mitigation Steps
- Supervised Fine-Tuning (SFT): Perform a round of SFT on the WO-unaligned model using a high-quality benign instruction-following dataset (e.g., OpenHermes, ~243k samples). Training for 1 epoch at a low learning rate (e.g., 1e-5) successfully restores 40.5%–69.8% of refusal guardrails.
- Adversarial Capability Reduction: Applying the above SFT mitigation specifically reduces the model's adversarial attack success rate by an average of 45.3%, pushing reasoning models' adversarial capabilities below their original aligned baselines without drastically affecting overall hallucination rates.
- Access Control: Restrict white-box access to the model weights to prevent the calculation of the refusal vector and subsequent orthogonalization.
Evidence
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/2604.02574Related research
- Unified Robustness Gap
Published February 1, 2026 · model-layer, prompt-layer, injection
- LLM Judge Manipulation
Published March 1, 2026 · model-layer, application-layer, prompt-layer
- Emergent Distractor Jailbreak
Published February 1, 2026 · model-layer, jailbreak, poisoning