- The paper introduces a dual-stage protocol using PGD-crafted image perturbations and subtle textual misinformation to hijack retrieval pipelines.
- Experimental results show top-1 attack success rates up to 32.56% and over 75% in top-5 under <1% poisoning, impacting diagnostic accuracy.
- Findings expose critical vulnerabilities in medical RAG systems, emphasizing the need for robust knowledge base curation and defense measures.
Knowledge Poisoning Attacks in Medical Multimodal Retrieval-Augmented Generation
Introduction and Background
This paper addresses the security and reliability issues in medical multimodal retrieval-augmented generation (RAG) systems, which combine large vision-LLMs (LVLMs) with retrieval pipelines over paired image-text medical knowledge bases. While RAG enhances the evidential grounding of LLM outputs, it also opens new vulnerabilities: the injection of adversarial medical knowledgeโin either visual or textual formโinto the external knowledge base can directly perturb downstream diagnostic outputs. Distinct from prior work, this study focuses on a realistic threat model for knowledge poisoning: adversaries are assumed to have limited knowledge about the underlying data distribution, no access to user queries, and no control over model parameters.
Threat Model and Technical Challenges
The medical multimodal RAG setting presents unique technical barriers for poisoning attacks. Medical image embeddings are highly clustered due to anatomical homogeneity, so naively injected poisoned samples are likely to be overwhelmed by benign data in retrieval unless injected at high, easily-detectable rates. Moreover, LLMs used in medical settings encode strong domain priorsโoverly explicit factual errors in retrieved samples are likely to be corrected automatically by the generator, mitigating the effect of the attack and exposing the malicious sample. Therefore, effective attacks must balance three objectives: they must:
- Stealthily hijack retrieval pipelines under distributional uncertainty;
- Manipulate the generator via misinformation that is not self-corrected;
- Maintain high clinical plausibility to avoid detection by automated or manual corpus defenses.
The M3.Att Framework
M3.Att addresses these challenges via a dual-stage poisoning protocol:
Distribution-Guided Retrieval Hijacking
Poisoned images are crafted via a cluster-centric approach. The adversary extracts a reference subset of the knowledge baseโaccessible via black-box oraclesโand performs clustering in embedding space to identify proxy targets representative of typical query regions. Projected gradient descent (PGD) perturbations are then applied to selected candidate images to maximize their retrieval probability with respect to the cluster centers, subject to strict lโโ constraints that ensure visual imperceptibility. Both white-box (gradient access) and black-box (finite-difference) optimization settings are explored, demonstrating the practicality of the method under realistic deployment constraints.
Textual poisoning leverages inherent ambiguities in medical language rather than overt factual errors. Three strategies are used in combination:
- Fine-grained Severity Migration: Alters the urgency of diagnoses without changing disease category, via up- or down-scaling of severity (e.g., from "severe" to "mild").
- Prior-Constrained Diagnosis Distortion: Reframes the diagnosis to visually similar but distinct conditions matched for prior probability, evading LLM self-correction.
- Risk Association Corruption: Modifies actionable statements and recommendations to suppress or exaggerate clinical urgency.
These strategies exploit low-confidence regions of the LLMโs prior, where clinical uncertainty is intrinsic and self-correction is less likely.
Experimental Evaluation
Experiments are conducted on five representative medical multimodal datasets (IU-XRay, MIMIC-CXR, CRC100k, MHIST, PCam) and across five LVLMs, including both general-purpose (GPT-4o, GPT-5, Gemini-2.5, Claude-4.5) and specialized medical models (LLaVA-Med). Three major VL retrievers (CLIP, BGE-VL, SigLIP) are tested.
Numerical Results
- Retrieval Attack Success: For moderate poisoning budgets (<1% poisoned samples), M3.Att achieves top-1 retrieval attack success rates (ASR) up to 32.56%, and top-5 ASR exceeding 75% in many cases. Retrieval hijacking is robust to access assumptions: black-box optimization performs comparably to white-box, showing practical deployability.
- Downstream Utility Degradation: Across all LVLM architectures and medical tasks (VQA, report generation, image classification), M3.Att reduces clinical utility by an average of 8.78% compared to clean-RAG baselines at the same retrieval budgets. In filtered scenariosโwhere a hijacked poison is retrievedโthe modelโs accuracy and factual consistency can drop to near-random levels.
- Stealthiness and Defense Evasion: Expert annotation experiments demonstrate that at realistic injection ratios (1%), the F1 for human detection of poisoned texts is as low as 0.0870. Automated corpus defenses based on clustering and image-text consistency fail to detect poisoned entries, reflected by unchanged retrieval ASR metrics post-filtering.
Ablations and Hyperparameter Sensitivity
Disabling either the visual retrieval hijacking or the ambiguity-guided text poisoning component significantly restores LVLM utility, confirming the necessity of both components. Poisoning effect is sensitive to the number of semantic clusters and perturbation budgets, but efficacy saturates at moderate valuesโexcessive perturbations are unnecessary.
Implications and Future Directions
Practical Implications: The findings expose a critical vulnerability in medical RAG systems: even with a small amount of clinically plausible poisoned data, and under minimal adversarial knowledge, downstream outputs can be reliably corrupted without triggering typical model defenses. These results generalize across retriever architectures and LVLMs, highlighting the importance of both robust knowledge base curation and secure RAG pipeline design.
Theoretical Implications: The work suggests that the interplay between semantic clustering in visual embedding spaces and the low-confidence regions of LLM priors is a fundamental attack surface in multimodal retrieval-generation. Standard alignment and safety tuning in LVLMs does not suffice against attacks that probe regions of ontological uncertainty rather than make flagrant errors.
Future Developments: Future research directions should investigate:
- Extending attacks and defenses to high-dimensional (3D, video) modalities in medical imaging.
- Advanced knowledge base validation methods capable of detecting subtle but coordinated visual-textual anomalies.
- Fine-grained provenance tracking in RAG pipelines and further adversarial training strategies leveraging medical uncertainty models.
Conclusion
M3.Att establishes a new, query-agnostic standard for knowledge poisoning in medical multimodal RAG. It demonstrates that security assumptions underlying many current RAG deployments are insufficient, as attacks can succeed without query information or gradient access, and with tight stealth constraints. The study motivates a fundamental reevaluation of knowledge base construction, retrieval reliability, and model alignment methods in high-stakes AI applications in healthcare.