Response playbooks, investigation guides, and Atomic Red Team tests are Pro-only. Upgrade to unlock the full detection package for CVE-2026-50027.

Upgrade to Pro
CVE-2026-50027

MCP Memory Service Unauthenticated Document API Access (CVE-2026-50027)

Initial Access Collection Impact Last updated:

Detects exploitation of CVE-2026-50027, a missing authentication vulnerability (CWE-306) in mcp-memory-service versions prior to 10.67.1 that allows unauthenticated attackers to read, write, and delete stored memory documents via exposed API endpoints. Successful exploitation grants full unauthenticated access to sensitive memory/document contents, enabling data exfiltration, tampering, or destruction of stored AI agent memory state.

Vulnerability Intelligence

Public PoC

Affected Software

Vendor
pip
Product
mcp-memory-service
Versions
< 10.67.1

Weakness (CWE)

Timeline

Disclosed
July 2, 2026

CVSS

9.8
Critical (9.0–10)

CVSS vector not yet published

Read the write-up →

What is CVE-2026-50027 MCP Memory Service Unauthenticated Document API Access (CVE-2026-50027)?

MCP Memory Service Unauthenticated Document API Access (CVE-2026-50027) (CVE-2026-50027) maps to the Initial Access and Collection and Impact tactics — the adversary is trying to get into your network in MITRE ATT&CK.

This page provides production-ready detection logic for MCP Memory Service Unauthenticated Document API Access (CVE-2026-50027), covering the data sources and telemetry it touches: CommonSecurityLog, W3CIISLog, AzureDiagnostics. The queries below are rated critical severity at medium confidence, and ship for 7 SIEM platforms — KQL, SPL, Elastic, QRadar, Sumo, YARA-L, LogScale.

MITRE ATT&CK

Tactic
Initial Access Collection Impact
Microsoft Sentinel / Defender
kusto
let TargetPaths = dynamic(["/api/documents", "/api/memory", "/mcp/documents", "/documents"]);
CommonSecurityLog
| union (W3CIISLog)
| union (AzureDiagnostics | where Category == "ApplicationGatewayAccessLog")
| extend RequestUrl = coalesce(RequestURL, requestUri_s, cs_uri_stem_s)
| where RequestUrl has_any (TargetPaths)
| where HTTPMethod in ("GET", "POST", "PUT", "DELETE") or csMethod_s in ("GET", "POST", "PUT", "DELETE")
| where isempty(Authorization) or Authorization == "-" or isempty(User) or User == "-"
| summarize RequestCount = count(), Methods = make_set(HTTPMethod), Paths = make_set(RequestUrl) by SourceIP = coalesce(SourceIP, cIP_s), bin(TimeGenerated, 5m)
| where RequestCount > 5
| project TimeGenerated, SourceIP, RequestCount, Methods, Paths

Detects unauthenticated HTTP requests to mcp-memory-service document/memory API endpoints from reverse proxy or web server logs ingested into Sentinel, flagging bursts of unauthenticated read/write/delete activity.

critical severity medium confidence

Data Sources

CommonSecurityLog W3CIISLog AzureDiagnostics

Required Tables

CommonSecurityLog W3CIISLog AzureDiagnostics

False Positives

  • Internal health check or monitoring probes hitting the same endpoints without auth headers
  • Load balancer or reverse proxy logs that strip Authorization headers before logging
  • Legitimate service-to-service calls using an authentication mechanism not captured in the logged fields

Sigma rule & cross-platform mapping

The detection logic for MCP Memory Service Unauthenticated Document API Access (CVE-2026-50027) (CVE-2026-50027) above is provided in a vendor-neutral form so you can deploy it on any SIEM. The same logic is shipped here as native KQL (Microsoft Sentinel / Defender), SPL (Splunk), Elastic (Elastic Security (EQL)), QRadar (IBM QRadar (AQL)), Sumo (Sumo Logic CSE), YARA-L (Google Chronicle / SecOps), LogScale (CrowdStrike LogScale (CQL)) queries. In Sigma terms, this detection targets the following logsource:

logsource:
  product: azure

Browse the community-maintained Sigma rules for this technique:


Testing Methodology

Validate this detection against 3 adversary techniques from Atomic Red Team. Each test below lists the behaviour to exercise and the telemetry you should expect to see. Executable commands and cleanup steps are available with Pro.

  1. Test 1Unauthenticated GET to document API

    Expected signal: HTTP GET request to /api/documents recorded in web/proxy access logs with no Authorization header present.

  2. Test 2Unauthenticated write to memory endpoint

    Expected signal: HTTP POST request to /api/memory recorded in application logs with the injected content and no Authorization header.

  3. Test 3Unauthenticated delete of stored document

    Expected signal: HTTP DELETE request to /api/documents/<id> recorded in access and application logs with no Authorization header, followed by removal of the document from the data store.

Unlock playbooks & atomic tests with Pro

Get the full detection package for CVE-2026-50027 — response playbook and atomic red team tests, plus investigation guidance and hunting queries.

df00tech Pro — £29/user/month

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections