The LMVD-ID is an internal research identifier, not an official CVE identifier.
LLM Router Rerouting
LLM routing systems are vulnerable to adversarial rerouting attacks where malicious triggers prepended to user queries manipulate the router's model-selection mechanism. Because LLM routers function as classifiers…
Paper-evaluated models(5)
GPT-4, GPT-4o, GPT-5 +2 more
- GPT-4
- GPT-4o
- GPT-5
- Llama 3 8B
- Mixtral 8x7B
Description
LLM routing systems are vulnerable to adversarial rerouting attacks where malicious triggers prepended to user queries manipulate the router's model-selection mechanism. Because LLM routers function as classifiers evaluating query complexity to balance computational cost and response quality, an attacker can craft adversarial prefixes that distort the query's latent semantic representation. This exploits the router's decision boundaries, forcing the system to misclassify the input and redirect it to a targeted, sub-optimal language model.
Examples
Prepending the phrase "Respond quickly" before a harmful query. This artificially alters the routing features, manipulating the router into selecting a faster, cheaper, but less secure candidate model (e.g., switching from a heavily aligned GPT-4-class model to a locally deployed, weakly aligned model), resulting in a jailbreak response.
Impact
- Cost Escalation (Resource Exhaustion): Attackers force simple queries to be routed to expensive, high-capacity models, artificially inflating API overhead and wasting computational resources.
- Quality Hijacking: Attackers force complex queries to be routed to weaker, smaller-parameter models, degrading the application's overall response quality and task performance.
- Safety Bypass: Attackers force malicious or harmful queries to be routed to weaker or unfiltered candidate models that lack advanced safety guardrails, enabling unmitigated jailbreaks.
Affected Systems
Multi-model AI architectures utilizing LLM routers for dynamic model selection, specifically systems relying on:
- Classification-based Routers (e.g., fine-tuned BERT classifiers)
- Scoring-based Routers (e.g., Causal LLMs evaluating "win rates")
- Matrix Factorization (MF) scoring functions
- Similarity-Weighted (SW) Ranking mechanisms (e.g., RouteLLM implementations)
Mitigation Steps
- Deploy Pre-Routing Filtering Guardrails: Implement an embedding-based anomaly detection filter (such as RerouteGuard) prior to the LLM router to identify and drop adversarial prefixes.
- Contrastive Learning Detection: Train a dual-encoder siamese network using supervised contrastive learning to distinguish between the latent semantic representations of benign queries and adversarial rerouting prompts.
- Dynamic Reference Pairing: For incoming user queries, dynamically construct K-pairs against a known baseline of normal historical queries. Use the siamese network to classify the pairs and apply majority voting to filter out queries exhibiting adversarial semantic shifts before they reach the router.
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
- Both white-box and black-box research contexts are tagged; consult the primary paper for target-specific access.
- Related deployment categories
- No related deployment category is classified.
- Taxonomy labels only; paper-specific deployment prerequisites are not inferred.
- Affected systems
- Multi-model AI architectures utilizing LLM routers for dynamic model selection, specifically systems relying on: Classification-based Routers (e.g., fine-tuned BERT classifiers) Scoring-based Routers (e.g., Causal LLMs…
Research Paper
RerouteGuard: Understanding and Mitigating Adversarial Risks for LLM Routing
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/2601.21380Related research
- LLM Judge Manipulation
Published March 1, 2026 · model-layer, application-layer, prompt-layer
- Invisible Prompt Phishing Evasion
Published February 1, 2026 · application-layer, prompt-layer, injection
- Hybrid Agent Prompt Injection
Published May 1, 2025 · prompt-layer, application-layer, injection