SYNTHESIS NOTE
Topicsthis note

Can we defend RAG systems from corpus poisoning without retraining?

Explores whether retrieval-time defenses can catch and block poisoned documents before they reach the generator, without expensive retraining cycles. Matters because corpus updates outpace model retraining in production RAG systems.

Synthesis note · 2026-05-03
Where do retrieval systems fail and why?

RAG poisoning attacks insert malicious documents into the retrieval corpus so they get pulled in for matching queries and steer generation toward attacker-preferred outputs. Existing defenses typically require retraining the retriever or the generator, which is expensive and slow to deploy. RAGPart and RAGMask propose two lightweight defenses that operate at retrieval time without modifying the generation model.

RAGPart exploits a structural property of dense retrievers: they learn discriminative patterns from how the training data is partitioned, which means malicious documents inserted into one partition have predictably limited influence on retrieval from queries that match a different partition. By configuring partitions deliberately, the system bounds how far any single poisoned document can propagate. RAGMask takes a different angle: it masks tokens in candidate documents and watches for abnormal similarity shifts. Genuine documents are robust to token masking — their similarity scores degrade smoothly — while poisoned documents that rely on specific trigger tokens show sudden similarity collapse, which serves as a detection signal.

The architectural significance is that defense need not be coupled to training. Both methods sit at the retrieval layer and treat the generator as an untrusted black box that must be protected from upstream corruption. This separation matters operationally because retrieval corpora update faster than retrievers can be retrained, so defenses that require retraining are always behind the threat. The threat surface is real and severe — How vulnerable is GraphRAG to tiny text manipulations? shows even minimal corpus modifications can devastate accuracy in graph-structured RAG.

Inquiring lines that read this note 42

This note is a source for these research framings, grouped by the broader line of inquiry each explores. Scan the bold lines of inquiry; follow any specific question forward.

Does alignment training create blind spots in detecting genuine safety threats? When should retrieval-augmented systems decide to fetch new information? How do adversarial and manipulative prompts attack reasoning models? How should retrieval systems optimize for multi-step reasoning during inference? Why do readers trust citations and complexity regardless of accuracy? How do standardized protocols improve coordination in multi-agent systems? What are the consequences of models training on synthetic data? How do knowledge graphs enable efficient multi-hop reasoning over alternatives? How do training priors constrain what context information can override? What factors beyond surface content determine how readers extract meaning differently? Why does finetuning cause catastrophic forgetting of model capabilities? Do accurate-looking LLM outputs hide structural failures in learning and reasoning? What causes silent corruption to amplify through delegated workflows? How should memory consolidation strategies shape agent performance over time? How can AI agents autonomously learn and transfer skills across tasks? Can language model RL training avoid reward hacking and misalignment? Why can't humans reliably detect AI-generated text despite measurable linguistic signatures?

Related concepts in this collection 3

This note in its neighbourhood — explore the map, then jump to a related concept in the list below.

Concept map
15 direct connections · 126 in 2-hop network ·medium cluster Open in graph ↗

Click a node to walk · click center to open · click Open in graph to see this note in the full knowledge graph

your link semantically near linked from elsewhere

Related papers in this collection 8

Papers most semantically related to this note, ranked by cosine similarity in the embedding space.

Original note title

RAG corpus poisoning has lightweight defenses without retraining — partition-aware retrieval and token-masking similarity shifts catch attacks the generator never sees