The LMVD-ID is an internal research identifier, not an official CVE identifier.
Breaking the LLM Reviewer
Large Language Models (LLMs) deployed in automated peer review workflows are vulnerable to targeted textual adversarial attacks. By employing a technique defined as "Attack Focus Localization," an attacker can identify…
Paper-evaluated models(3)
- GPT-4o
- Llama 3.3 70B
- Mistral Large
Description
Large Language Models (LLMs) deployed in automated peer review workflows are vulnerable to targeted textual adversarial attacks. By employing a technique defined as "Attack Focus Localization," an attacker can identify critical document segments via Longest Common Subsequence (LCS) matching between the original text and an initial LLM-generated review. Injecting semantic-preserving perturbations—such as character-level noise, synonym substitution (e.g., TextFooler), or stylistic transfer (e.g., StyleAdv)—into these localized segments causes the LLM to statistically significantly inflate quality scores (e.g., boosting "Soundness" or "Originality" ratings) and suppress negative aspect tags. This vulnerability bypasses standard AI-text detectors and allows manipulated manuscripts to receive favorable automated assessments without altering the paper's actual scientific contribution.
Examples
- Repository: See
https://github.com/Lin-TzuLing/Breaking-the-Reviewer.gitfor implementation of the Attack Focus Localization and perturbation pipeline. - Attack Reproduction:
- Localization: Input a target paper $x_{clean}$ into the LLM to generate a preliminary review $f_r(x_{clean})$. Compute the Longest Common Subsequence to find modifiable indices $\mathcal{M} = \text{LCS}(x_{clean}, f_r(x_{clean}))$.
- Perturbation: Apply
TextFoolerorStyleAdvto the segments identified in $\mathcal{M}$.- Example Perturbation (StyleAdv): Transforming "The method achieves high accuracy" to "Verily, the approach attaineth great precision" (stylistic shift) or synonymous substitution.
- Result: The attacked input $x_{adv}$ results in a score shift $f_s(x_{adv}) - f_s(x_{clean}) \ge 1.0$ on a 10-point scale compared to the clean input.
Impact
- Integrity Compromise: Automated review systems can be manipulated to accept low-quality or rejected-tier papers.
- Score Inflation: Attackers can artificially boost paper scores across multiple metrics (Substance, Clarity, Impact).
- Sentiment Manipulation: The attack successfully suppresses negative sentiment aspect tags in the generated review text, leading to overly optimistic textual feedback.
Affected Systems
- Automated Peer Review systems utilizing the following models (and likely others sharing similar architectures):
- OpenAI GPT-4o
- OpenAI GPT-4o-mini
- Meta Llama-3.3-70B
- Mistral-small-3.1
Mitigation Steps
- Human-in-the-Loop Verification: Do not rely solely on LLM-generated scores or reviews for decision-making; maintain strict human oversight for final acceptance/rejection decisions.
- Inference-Time Monitoring: Implement monitoring to detect statistical anomalies in review generation patterns, although current zero-shot detectors (e.g., GPTZero) are ineffective against these specific adversarial perturbations.
- Adversarial Robustness Testing: Evaluate LLM reviewers against known textual attack benchmarks (TextFooler, BERT-Attack) prior to deployment in high-stakes academic review pipelines.
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
- Automated Peer Review systems utilizing the following models (and likely others sharing similar architectures): OpenAI GPT-4o OpenAI GPT-4o-mini Meta Llama-3.3-70B Mistral-small-3.1
Research Paper
Breaking the Reviewer: Assessing the Vulnerability of Large Language Models in Automated Peer Review Under Textual Adversarial Attacks
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/2506.11113Related research
- Metacognitive Prompting Lowers Resistance
Published January 1, 2026 · model-layer, prompt-layer, jailbreak
- LLM Judge Subversion
Published June 1, 2025 · prompt-layer, model-layer, injection
- LLM Judge Manipulation
Published March 1, 2026 · model-layer, application-layer, prompt-layer