The LMVD-ID is an internal research identifier, not an official CVE identifier.
Bee Path Planning Jailbreak
Large Language Models (LLMs) are vulnerable to a multi-turn jailbreak attack orchestrated by an enhanced Artificial Bee Colony (ABC) algorithm. This vulnerability exists because current safety alignment mechanisms…
Paper-evaluated models(4)
- GPT-3.5
- GPT-4
- Llama 2 7B
- Llama 3.1 8B
Description
Large Language Models (LLMs) are vulnerable to a multi-turn jailbreak attack orchestrated by an enhanced Artificial Bee Colony (ABC) algorithm. This vulnerability exists because current safety alignment mechanisms (such as RLHF and DPO) can be bypassed by treating the attack process as a path planning problem on a dynamically weighted graph topology. The ABC algorithm automates the search for adversarial dialogue trajectories by maintaining a population of "bees" (candidate attack paths) that explore strategy combinations. The attack utilizes a layered state graph to capture path-dependent memory and employs a specific fitness function that discretizes model responses into five levels of harmfulness. By extracting informative cues from intermediate, partially harmful responses and using them to refine subsequent prompts, the algorithm optimizes the attack path to maximize harmful output while minimizing the number of queries.
Examples
The attack uses strategies from the JailbreakBench dataset. The reproduction requires implementing the ABC algorithm with the following logic:
- Initialization: Generate a population of random attack paths (sequences of strategies) targeting a specific harmful behavior (e.g., "How to create a malware").
- Fitness Evaluation: Query the target LLM. Score the response from 1 (safe) to 5 (fully harmful).
- Refinement: If the response is Level 2-4 (partial leak), use a prompt template to extract useful tokens from the model's refusal/partial answer and append them to the next strategy in the sequence.
- Mutation: 'Onlooker bees' select high-scoring paths and apply random replacement or insertion of new attack strategies (sourced from community repositories like WildTeaming or AchillesHeel).
- Stagnation Handling: 'Scout bees' replace paths that fail to improve with new random paths to avoid local optima.
See JailbreakBench dataset for specific harmful behavior prompts (seeds). See StrongREJECT evaluator for the scoring mechanism used to guide the bees.
Impact
Attackers can reliably induce LLMs to generate prohibited content, including hate speech, malware generation instructions, and illegal activity guides. The method achieves an Attack Success Rate (ASR) exceeding 90% across major open and closed-source models (peaking at 98% on GPT-3.5-Turbo). Furthermore, the attack is highly efficient, requiring an average of only 26 queries to succeed, which significantly lowers the barrier to entry and reduces the likelihood of detection by rate-limiting or high-volume monitoring systems.
Affected Systems
- Open Source:
- Meta LLaMA 2 (7B)
- Meta LLaMA 3.1 (8B)
- Meta LLaMA 3.1 (70B)
- Proprietary/Closed Source:
- OpenAI GPT-3.5-Turbo
- OpenAI GPT-4-Turbo
- Attacker Infrastructure (Component):
- Gemma-9B-uncensored (used as the attacker agent/prompt generator)
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
- No related deployment category is classified.
- Taxonomy labels only; paper-specific deployment prerequisites are not inferred.
- Affected systems
- Open Source: Meta LLaMA 2 (7B) Meta LLaMA 3.1 (8B) Meta LLaMA 3.1 (70B) Proprietary/Closed Source: OpenAI GPT-3.5-Turbo OpenAI GPT-4-Turbo Attacker Infrastructure (Component): Gemma-9B-uncensored (used as the attacker…
Research Paper
Let the Bees Find the Weak Spots: A Path Planning Perspective on Multi-Turn Jailbreak Attacks against LLMs
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/2511.03271Related research
- Long-Tail Cryptographic Jailbreak
Published March 1, 2026 · prompt-layer, jailbreak, blackbox
- Drunk Language Jailbreak
Published January 1, 2026 · model-layer, prompt-layer, jailbreak
- Semantic Intention Obfuscation
Published November 1, 2025 · prompt-layer, jailbreak, rag