Skip to main content
LLM Security Database
Skip to research details
Back to Vulnerability List
LMVD-ID: 1d30e693
Paper published May 27, 2026
Entry analyzed July 20, 2026
Severity: Not rated
Confidence: Source-linked

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

Fluent Single-Document RAG Corpus Poisoning

SilentRetrieval describes a specific RAG corpus-integrity vulnerability: an attacker able to add a topically relevant document to a retrieval corpus can make that document rank highly and influence the generated answer…

BibTeX citation

Paper-evaluated models(4)

  • Llama 2 7B Chat
  • Mistral 7B Instruct v0.2
  • Qwen 7B Chat
  • GPT-3.5 Turbo

Research context and confidence

Evidence and verification
Paper-reported; independent reproduction is not documented.
Primary source plus a dedicated evidence section.
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
Retrieval-augmented generation
Taxonomy labels only; paper-specific deployment prerequisites are not inferred.
Affected systems
RAG question-answering and search systems that ingest publicly editable, crawled, third-party, or user-uploaded documents Dense-retrieval RAG pipelines using Contriever-like bi-encoders RAG pipelines using DPR…

Research Paper

SilentRetrieval: Hijacking Retrieval-Augmented Generation via Semantically-Preserving Adversarial Data Poisoning

Primary source: arXiv. Findings are reported by the cited research and have not been independently verified.

View Paper

Description

SilentRetrieval describes a specific RAG corpus-integrity vulnerability: an attacker able to add a topically relevant document to a retrieval corpus can make that document rank highly and influence the generated answer while remaining fluent enough to evade simple perplexity checks. The paper evaluates a two-stage method combining retrieval-oriented document optimization with context-adaptive claim integration. A safe defensive reproduction is to use only isolated benchmark corpora and inert synthetic target answers, add one synthetic test document per query, and measure retrieval exposure (HR@10), synthetic-answer endorsement, and detector performance; no real knowledge base or real-world false claim should be used. The results below are paper-reported measurements, not independently verified facts.

Examples

Safe reference only: reproduce the paper’s benchmark protocol with Natural Questions or MS MARCO, synthetic target answers, and an isolated RAG index; compare baseline retrieval against a single injected synthetic document and evaluate HR@10, synthetic-answer endorsement, reranking, and passage-isolation defenses. Do not test against production corpora or publish operational poisoning payloads.

Impact

A poisoned corpus entry may be retrieved for a targeted query and cause a RAG generator to endorse incorrect information, compromising answer integrity and the security of indexed data. In the authors’ controlled one-document-per-query evaluation, SilentRetrieval reportedly achieved 84.6% HR@10 and 57.5% ASR-LLM on a 361K-passage Natural Questions corpus, and 81.3% HR@10 and 54.8% ASR-LLM on MS MARCO. These are synthetic-target benchmark results; the paper explicitly states that no real-world knowledge bases were poisoned and notes that practical injection feasibility was not modeled end to end.

Affected Systems

  • RAG question-answering and search systems that ingest publicly editable, crawled, third-party, or user-uploaded documents
  • Dense-retrieval RAG pipelines using Contriever-like bi-encoders
  • RAG pipelines using DPR, BGE-base, ColBERTv2, text-embedding-ada-002, or Cohere embed-v3 retrievers/embeddings under the paper’s surrogate-transfer protocol
  • Knowledge bases lacking provenance, ingestion review, corpus-integrity controls, and layered retrieval/generation defenses

Mitigation Steps

  • Treat corpus integrity as a security boundary: authenticate sources, enforce provenance and access controls, review uploads, and monitor changes to indexed content.
  • Use hybrid lexical-plus-dense retrieval and cross-encoder reranking; the paper reports lower retrieval exposure and ASR when these layers are combined.
  • Process retrieved passages independently and aggregate answers by semantic majority voting to limit any single document’s influence.
  • Combine retrieval-side controls with passage isolation; the paper’s strongest evaluated layered configuration reduced ASR-LLM to 21.3%, with an 11× latency cost.
  • Use fluency, embedding-outlier, and learned poisoning detectors as screening layers, but do not rely on perplexity alone; the paper reports only 8.7% detection for an independent PPL audit.
  • Add answer-consistency checks, query augmentation, source diversity requirements, and human review for high-impact answers.
  • Continuously red-team defenses with isolated synthetic-target evaluations, including adaptive tests against deployed rerankers.

Evidence