vgudur/memory-poisoning-attack-corpus
Memory Poisoning Attack Corpus A curated dataset of adversarial payloads targeting AI agent memory systems, developed as part of the OWASP Agent Memory Guard project. Dataset Description This corpus contains labeled examples of memory poisoning attacks across six threat categories, plus benign entries for training binary and multi-class classifiers. Each entry represents a text payload that an attacker might attempt to store in an AI agent's long-term memory to… See the full description on the dataset page: https://huggingface.co/datasets/vgudur/memory-poisoning-attack-corpus.
Memory Poisoning Attack Corpus
A curated dataset of adversarial payloads targeting AI agent memory systems, developed as part of the OWASP Agent Memory Guard project.
Dataset Description
This corpus contains labeled examples of memory poisoning attacks across six threat categories, plus benign entries for training binary and multi-class classifiers. Each entry represents a text payload that an attacker might attempt to store in an AI agent's long-term memory to manipulate future behavior.
Threat Categories
Schema
Each entry contains:
text(string): The memory entry payloadcategory(string): Threat category labelseverity(string): CRITICAL, HIGH, MEDIUM, or NONEsource(string): Origin of the payload (synthetic, adapted, wild)technique(string): Specific attack technique identifier
Usage
from datasets import load_dataset
dataset = load_dataset("vgudur/memory-poisoning-attack-corpus")
# Filter by category
injections = dataset["train"].filter(lambda x: x["category"] == "prompt_injection")
# Binary classification
dataset = dataset["train"].map(lambda x: {"label": 0 if x["category"] == "benign" else 1})Citation
@misc{gudur2025memorypoisoning,
title={Agent Memory Guard: Detecting and Mitigating Memory Poisoning in Agentic AI Systems},
author={Gudur, Vaishnavi},
year={2025},
howpublished={OWASP Foundation},
url={https://owasp.org/www-project-agent-memory-guard/}
}Related Resources
- OWASP Agent Memory Guard
- Research Paper (arXiv:2505.15849)
- Interactive Playground (HF Space)
- ASI06 — Memory Poisoning (OWASP Top 10 Agentic)
License
Apache 2.0
