AegisGate CVE-for-AI Feed
AegisGate Security Research publishes CVE entries for AI/ML vulnerabilities discovered through our platform’s threat detection, peer-network IOC sharing, and the AR-EaaS (Adversarial Robustness Evals-as-a-Service) primitive. Every entry is tamper-evident (signed with ECDSA P-256 via the envelope primitive) and third-party-verifiable offline (no AegisGate server required).
Format
- ID format:
AEGIS-YYYY-NNNN(CNA-style with our own prefix; we are not (yet) a CVE Numbering Authority) - Schema: adapted from CVE 5.0 JSON record format, tuned for AI/ML
- CVSS: 3.1 base score + vector string
- Severity bands: NONE (0.0) / LOW (0.1-3.9) / MEDIUM (4.0-6.9) / HIGH (7.0-8.9) / CRITICAL (9.0-10.0)
- Withdrawal: a withdrawn CVE is a new envelope with the same subject +
withdrawn_atset
Recent Entries
AEGIS-2026-0001 — Prompt injection via Markdown image alt-text
- Severity: HIGH (CVSS 7.5)
- Vector:
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:N - Affected:
anthropic/claude-3-5-sonnet@<20241022 - Fixed:
anthropic/claude-3-5-sonnet@20241022 - Discovered by: AegisGate Research
- Disclosed: 2026-06-01
An attacker can inject instructions into a model prompt by including carefully crafted Markdown image alt-text that is rendered as part of the model’s context window. This vulnerability affects LLM-powered document-processing pipelines that render Markdown content without sanitizing alt-text attributes.
Mitigations:
- Sanitize Markdown before including in prompts; strip or neutralize alt-text attributes from img tags.
- Use Anthropic’s
systemfield with explicit instructions to ignore image alt-text as instructions. - Deploy the Prompt Cache Poisoning Detection primitive to sign and verify prompts entering the LLM cache.
References:
- Anthropic’s prompt engineering guide on system prompts
- MITRE ATLAS T0018 (LLM Prompt Injection: Direct)
Programmatic Access
The full feed is available as a JSON file at /feed.json. The schema is:
{
"version": 1,
"generated_at": "2026-07-29T14:33:58Z",
"entries": [<envelope>, <envelope>, ...]
}
Each entry is a full attestation.Envelope (with the CVEEntry in payload). Consumers dedupe by
CVE-ID and keep the latest entry (a withdrawn CVE is a new envelope with withdrawn_at set on the
inner CVEEntry).
Verify an entry offline:
$ aegisgate cve verify AEGIS-2026-0001.json
VALID
Type: cve.entry.v1
Subject: aegisgate://cve/AEGIS-0001
Issuer: cve:shortfp:af41e1d8be307e6d:k-33915135b2a7d1f9
KeyID: k-33915135b2a7d1f9
CVE-ID: AEGIS-2026-0001
Title: Prompt injection via Markdown image alt-text
Score: 7.5 (HIGH)
DiscoveredBy: AegisGate Research
Download an individual entry:
$ curl -s https://aegisgatesecurity.io/.well-known/AEGIS-2026-0001.json | aegisgate cve verify -
Publish a new entry (Enterprise operators only):
$ aegisgate cve publish \
--id=AEGIS-2026-0002 \
--title="Example vulnerability" \
--description="Detailed description..." \
--score=5.3 \
--vector="CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N" \
--discovered-by="AegisGate Research" \
--disclosed-at=2026-07-29T00:00:00Z \
--feed=/path/to/feed.json \
--key-ring=/path/to/kr.json
Subscribe
Subscribe to the JSON feed via your RSS reader (most RSS readers support JSON feeds via plugins):
https://aegisgatesecurity.io/feed.json
Report a Vulnerability
To report an AI/ML vulnerability to AegisGate Security Research, see our security.txt
or email security@aegisgatesecurity.io (PGP key on the security.txt page).
This page and the feed at /feed.json are the canonical sources for AegisGate-disclosed AI/ML vulnerabilities. The Go package (pkg/cve) ships with AegisGate Platform v4.2.0+.