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

Upgrade to Pro
CVE-2026-55500

9router (npm) Unprotected Database Import/Export Leading to Credential Theft and Database Takeover (CVE-2026-55500)

CVE-2026-55500 affects the 9router npm package (<= 0.4.71), which exposes an unauthenticated/improperly-protected database import/export interface. Attackers can invoke this exposed functionality to exfiltrate the entire application database — including credentials, session tokens, and configuration secrets — or import a malicious database to achieve full application takeover. CVSS 9.9, CWE-200 (Exposure of Sensitive Information). A public PoC/advisory exists (GHSA-qvfm-67h2-2qfx). Detections focus on anomalous HTTP requests to database export/import endpoints, bulk data egress, unauthenticated administrative API access, and post-exploitation credential misuse.

Vulnerability Intelligence

Public PoC

Affected Software

Vendor
npm
Product
9router
Versions
<= 0.4.71

Weakness (CWE)

Timeline

Disclosed
July 6, 2026

CVSS

9.9
Critical (9.0–10)

CVSS vector not yet published

Read the write-up →

What is CVE-2026-55500 9router (npm) Unprotected Database Import/Export Leading to Credential Theft and Database Takeover (CVE-2026-55500)?

9router (npm) Unprotected Database Import/Export Leading to Credential Theft and Database Takeover (CVE-2026-55500) (CVE-2026-55500) maps to the Initial Access and Credential Access and Collection and Exfiltration tactics — the adversary is trying to get into your network in MITRE ATT&CK.

This page provides production-ready detection logic for 9router (npm) Unprotected Database Import/Export Leading to Credential Theft and Database Takeover (CVE-2026-55500), covering the data sources and telemetry it touches: Azure App Service HTTP Logs, Azure WAF Logs, Network Security Group Flow Logs. 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 Credential Access Collection Exfiltration
Microsoft Sentinel / Defender
kusto
let ExportPaths = dynamic(["/api/export","/api/db/export","/api/database/export","/api/import","/api/db/import","/api/backup","/api/backup/download"]);
let SuspiciousAgents = dynamic(["curl","python-requests","Go-http-client","HTTPie","axios"]);
AppServiceHTTPLogs
| where TimeGenerated > ago(24h)
| where CsUriStem has_any (ExportPaths)
| extend HasAuthHeader = tostring(parse_json(Cookie))
| where isempty(HasAuthHeader) or UserAgent has_any (SuspiciousAgents)
| summarize RequestCount = count(), FirstSeen = min(TimeGenerated), LastSeen = max(TimeGenerated), Paths = make_set(CsUriStem), Agents = make_set(UserAgent) by CIp
| where RequestCount >= 1
| project CIp, RequestCount, FirstSeen, LastSeen, Paths, Agents

Detects requests to 9router database export/import endpoints without authentication cookies or from scripted/automation user agents, indicative of exploitation of CVE-2026-55500.

critical severity medium confidence

Data Sources

Azure App Service HTTP Logs Azure WAF Logs Network Security Group Flow Logs

Required Tables

AppServiceHTTPLogs

False Positives

  • Legitimate scheduled database backup jobs from internal automation using scripted user agents
  • Authorized admin exports performed via CLI/curl by operations staff
  • Monitoring/health-check tools polling similar path names for unrelated services

Sigma rule & cross-platform mapping

The detection logic for 9router (npm) Unprotected Database Import/Export Leading to Credential Theft and Database Takeover (CVE-2026-55500) (CVE-2026-55500) 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:
  category: network_connection
  product: windows

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 1Simulate Unauthenticated Database Export Request

    Expected signal: Web server access log entry showing GET/POST to /api/db/export with no Authorization or session cookie header, response status 200 and non-trivial body size.

  2. Test 2Simulate Unauthorized Database Import

    Expected signal: Web server log entry for POST to /api/db/import with multipart file upload and no auth header; application log showing database write/replace event.

  3. Test 3Scripted Reconnaissance of Export/Import/Backup Endpoints

    Expected signal: Multiple sequential unauthenticated HTTP requests from a single source IP to distinct export/import/backup paths within a short time window, with a scripted (non-browser) User-Agent.

Unlock playbooks & atomic tests with Pro

Get the full detection package for CVE-2026-55500 — 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