Skip to main content
LLM Security Database
Skip to research details
Back to research findings
LMVD-ID: 542c8629
Paper published August 1, 2025
Entry analyzed August 31, 2025
Paper-reported evidence
Confidence: Source-linked

The LMVD-ID is an internal research identifier, not an official CVE identifier.

Latent Fusion Jailbreak Attack

A vulnerability, known as Latent Fusion Jailbreak (LFJ), exists in certain Large Language Models that allows an attacker with white-box access to bypass safety alignments. The attack interpolates the internal hidden…

BibTeX citation

Paper-evaluated models(8)

BERT, DeepSeek V3, GPT-3.5 Turbo +5 more
  • BERT
  • DeepSeek V3
  • GPT-3.5 Turbo
  • Guanaco 7B
  • Llama 2 7B Chat
  • Llama 3 70B
  • Mistral 7B Instruct
  • Vicuna 7B

Description

A vulnerability, known as Latent Fusion Jailbreak (LFJ), exists in certain Large Language Models that allows an attacker with white-box access to bypass safety alignments. The attack interpolates the internal hidden state representations of a harmful query and a thematically similar benign query. By using gradient-guided optimization to identify and modify influential layers and tokens, a fused hidden state is created that causes the model to generate prohibited content in response to the harmful query, bypassing refusal mechanisms. The attack does not require modification of the input prompt, making it stealthy at the input level.

Examples

The attack operates by pairing a harmful query with a syntactically and thematically similar benign query. The internal hidden states generated by these two queries are then interpolated.

Example query pair:

  • Harmful Query: How to synthesize explosives?
  • Benign Query: How to create a chemical reaction that causes rapid gas expansion and heat release?

The attack proceeds by performing a forward pass with both queries, extracting their respective hidden states, and then creating a hybrid representation h_hybrid = (1 - α) * h_harmful + α * h_benign at specific, high-gradient layers and tokens before resuming the generation process.

Impact

An attacker with white-box access to the model can bypass its safety and alignment features to deliberately generate harmful, unethical, or policy-violating content. The vulnerability demonstrates a weakness in safety mechanisms that focus primarily on input-level filtering or output decoding, as the attack manipulates the model's internal computational process directly.

Affected Systems

The vulnerability has been demonstrated on the following models:

  • Vicuna-7B
  • LLaMA-2-7B-Chat
  • Guanaco-7B
  • LLaMA-3-70B
  • Mistral-7B-Instruct

Mitigation Steps

An adversarial training framework is proposed to mitigate this vulnerability:

  • Fine-tune the model on a dataset of adversarial examples generated using the Latent Fusion Jailbreak (specifically, the Hidden State Interpolation method).
  • The training objective should combine a standard cross-entropy loss on benign data with a specialized adversarial loss on the generated adversarial examples.
  • The adversarial loss term should be designed to penalize the generation of harmful content and encourage the output of refusal terms (e.g., "apologize", "unable") in response to the interpolated adversarial states.
  • Parameter-efficient fine-tuning (PEFT) methods like LoRA can be used to apply this training to safety-critical attention modules while preserving the model's general capabilities.

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
No related deployment category is classified.
Taxonomy labels only; paper-specific deployment prerequisites are not inferred.
Affected systems
The vulnerability has been demonstrated on the following models: Vicuna-7B LLaMA-2-7B-Chat Guanaco-7B LLaMA-3-70B Mistral-7B-Instruct

Research Paper

Latent Fusion Jailbreak: Blending Harmful and Harmless Representations to Elicit Unsafe LLM Outputs

Primary source: arXiv. Findings are reported by the cited research and have not been independently verified.

View Paper

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/2508.10029