Skip to main content
LLM Security Database
Skip to research details
Back to research findings
LMVD-ID: de35e506
Paper published March 1, 2026
Entry analyzed April 10, 2026
Paper-reported evidence
Confidence: Source-linked

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

Token Sensitivity Jailbreak

Transformer-based Large Language Models (LLMs) are vulnerable to highly query-efficient black-box jailbreak attacks due to the structural properties of refusal behaviors: skewed token contribution and cross-model…

BibTeX citation

Paper-evaluated models(9)

Gemma 7B Instruct, Gemma 2 9B IT, Llama 3 8B Instruct +6 more
  • Gemma 7B Instruct
  • Gemma 2 9B IT
  • Llama 3 8B Instruct
  • Llama 3.2 3B Instruct
  • Qwen 2.5 7B Instruct
  • Qwen 2.5 3B Instruct
  • GPT-3.5 Turbo
  • GPT-4o
  • Claude 3.5 Sonnet

Description

Transformer-based Large Language Models (LLMs) are vulnerable to highly query-efficient black-box jailbreak attacks due to the structural properties of refusal behaviors: skewed token contribution and cross-model consistency. Refusal mechanisms within LLMs are typically triggered by a sparse subset of sensitive tokens rather than the entire prompt, and these refusal representations (specifically the primary left singular vector of the perturbed representation matrix at intermediate layers) are highly consistent across different model architectures. An attacker can leverage a local white-box surrogate model to extract token-level attention weights from refusal-critical heads, identify the exact tokens triggering the refusal, and perform highly localized semantic mutations. This allows attackers to bypass safety guardrails on remote, black-box commercial APIs utilizing very few queries (<25), rendering standard rate-limiting and query-cost constraints ineffective.

Examples

The attack (implemented via the TriageFuzz framework) executes as follows:

  1. Provide a malicious prompt to a local white-box surrogate model (e.g., LLaMA3.1-8B-Instruct).
  2. Identify the refusal-critical attention head in the surrogate model via zero ablation, and extract the attention weights from the final token to all input tokens.
  3. Map the extracted scores to the input to identify high-scoring "trigger spans" (e.g., assigning precise importance scores to the fragment "build a bomb").
  4. Feed this score-annotated sequence to an Attacker Model with strict instructions to apply transformations (e.g., obfuscation, scenario injection) only to the high-scoring refusal-sensitive regions, while keeping the surrounding context mathematically and grammatically intact.
  5. Submit the localized variants to the black-box target model.

For full adversarial prompt variants and the evaluation dataset, see the HarmBench dataset repository.

Impact

Adversaries can reliably bypass safety and moderation mechanisms to elicit prohibited content (e.g., biological hazard instructions, cybercrime methodologies, hate speech) on commercial APIs. Because the attack utilizes semantically coherent, targeted regional mutations rather than global random character swapping, it successfully evades perplexity-based filters, semantic classification defenses (LLaMA Guard), and randomized perturbation defenses (SmoothLLM). The methodology reduces necessary query budgets by over 70%, allowing successful exploitation within highly restrictive API rate limits.

Affected Systems

The vulnerability relies on fundamental cross-model representational consistencies and affects nearly all standard instruction-tuned Transformer LLMs. Confirmed vulnerable systems include:

  • Open-source models: Gemma-7B-Instruct, Gemma2-9B-Instruct, LLaMA3-8B-Instruct, LLaMA3.2-3B-Instruct, Qwen2.5-7B-Instruct, Qwen2.5-3B-Instruct.
  • Commercial APIs: OpenAI GPT-3.5-Turbo, OpenAI GPT-4o, Anthropic Claude-3.5-Sonnet.

Mitigation Steps

  • Reassess the full input and conversation intent before responding or invoking tools, combine model-level alignment with independent input and output policy checks, and avoid relying on a single signature or refusal heuristic.
  • Add a targeted regression using inert data and actions, measure both safety and utility regressions, and monitor production for repeated or adaptive attempts.

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
Black-box model, service, or application access.
Related deployment categories
Model APIs
Taxonomy labels only; paper-specific deployment prerequisites are not inferred.
Affected systems
The vulnerability relies on fundamental cross-model representational consistencies and affects nearly all standard instruction-tuned Transformer LLMs. Confirmed vulnerable systems include: Open-source models…

Research Paper

Not All Tokens Are Created Equal: Query-Efficient Jailbreak Fuzzing for LLMs

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