The LMVD-ID is an internal research identifier, not an official CVE identifier.
LLM Judge Subversion
Alibaba Cloud PAI-Judge and PAI-Judge-Plus are vulnerable to a composite adversarial attack that exploits attention mechanism limitations in Large Language Models (LLMs). An authenticated attacker can manipulate…
Paper-evaluated models(6)
GPT-4o, Llama 3.1 8B, Llama 3.3 70B +3 more
- GPT-4o
- Llama 3.1 8B
- Llama 3.3 70B
- Mistral 7B
- DeepSeek R1
- Qwen 2.5 7B
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
- Fine-tuning; Model APIs
- Taxonomy labels only; paper-specific deployment prerequisites are not inferred.
- Affected systems
- Alibaba Cloud PAI-Judge (Standard Version) Alibaba Cloud PAI-Judge-Plus General LLM-as-a-Judge systems lacking long-context robustness mechanisms.
Research Paper
LLMs Cannot Reliably Judge (Yet?): A Comprehensive Assessment on the Robustness of LLM-as-a-Judge
Primary source: arXiv. Findings are reported by the cited research and have not been independently verified.
View PaperDescription
Alibaba Cloud PAI-Judge and PAI-Judge-Plus are vulnerable to a composite adversarial attack that exploits attention mechanism limitations in Large Language Models (LLMs). An authenticated attacker can manipulate automated evaluation outcomes by appending a long, irrelevant text suffix (approximately 1000 to 2000+ characters) to a response containing adversarial perturbations. This "long-suffix" strategy overwhelms the judge model's context window, causing the attention mechanism to degrade and fail to focus on the core adversarial content or quality flaws. Consequently, the system assigns significantly inflated scores to low-quality or malicious submissions, bypassing internal defenses such as prompt filtering and output sanitization.
Examples
To reproduce this attack against the PAI-Judge platform:
- Preparation: Craft a response ($r_m$) that contains significant quality flaws (warranting a near-zero score) but includes semantic manipulations optimized using gradient-based methods (e.g., PAIR or GCG) to exploit decision boundaries.
- Suffix Injection: Append a long string of irrelevant content to $r_m$. The length required to trigger the vulnerability depends on the platform version:
- Standard PAI-Judge: Append $\approx$ 1000 characters of filler text.
- PAI-Judge-Plus: Append $>$ 2000 characters of filler text.
- Payload Structure:
Defensive research example; do not run untrusted code. Scroll horizontally if needed.
[Optimized Adversarial Response containing flaws] + [1500 characters of repetitive filler text, e.g., irrelevant facts or distracting narratives]
- Submission: Submit this composite payload to the PAI-Judge public API for evaluation.
- Observation: The system returns an inflated score (e.g., increasing from a baseline of 1.5 to >6.0 on a 10-point scale) despite the content containing verifiable errors.
Impact
- Integrity Violation: Automated benchmarks, academic grading systems, and leaderboards relying on PAI-Judge can be manipulated to rank low-quality submissions higher than legitimate high-quality ones.
- Bypass of Moderation: Content moderation filters relying on LLM-as-a-Judge can be evaded, allowing malicious or policy-violating content to pass as "safe" or "high quality."
- Resource Wastage: Downstream processes relying on accurate quality filtering may be flooded with false positives.
Affected Systems
- Alibaba Cloud PAI-Judge (Standard Version)
- Alibaba Cloud PAI-Judge-Plus
- General LLM-as-a-Judge systems lacking long-context robustness mechanisms.
Mitigation Steps
- Retokenization: Implement input retokenization prior to evaluation to disrupt adversarial token patterns and suffix structures.
- LLM-based Detection: Deploy a separate, naive LLM-based detector to pre-screen submissions for adversarial anomalies or unusual filler content before passing them to the judge model.
- Input Sanitization: Enforce strict length limits or truncate excessive suffixes that do not contribute to the semantic meaning of the response.
- Prompt Optimization: Utilize coordinate ascent strategies to identify and deploy judge prompt templates that utilize components less sensitive to attention degradation.
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/2506.09443Related research
- Covert Grade Manipulation
Published February 1, 2026 · model-layer, prompt-layer, jailbreak
- LLM Judge Manipulation
Published March 1, 2026 · model-layer, application-layer, prompt-layer
- Unified Robustness Gap
Published February 1, 2026 · model-layer, prompt-layer, injection