CVE-2026-45321 CrowdStrike LogScale · LogScale

Detect TanStack Router Unspecified Vulnerability Exploitation in CrowdStrike LogScale

Detects potential exploitation of CVE-2026-45321, an unspecified vulnerability in TanStack Router that has been added to the CISA Known Exploited Vulnerabilities catalog. TanStack Router is a type-safe routing library for React applications. Given KEV status, active exploitation in the wild is confirmed. Detection focuses on anomalous web application behavior, suspicious client-side routing patterns, unexpected server-side request patterns, and post-exploitation indicators consistent with JavaScript framework exploitation.

MITRE ATT&CK

Tactic
Initial Access Execution Reconnaissance

LogScale Detection Query

CrowdStrike LogScale (LogScale)
cql
#event_simpleName=NetworkConnectIP4 OR #event_simpleName=NetworkConnectIP6 OR #event_simpleName=ProcessRollup2
| CommandLine = /(__proto__|constructor\.prototype|javascript:|data:text)/i OR RemotePort IN (80, 443, 8080, 8443)
| eval cve="CVE-2026-45321"
| stats count() AS event_count, values(CommandLine) AS commands, values(RemoteIP) AS remote_ips BY aid, ComputerName, UserName
| search event_count > 2
| eval risk=case(
    CommandLine = /__proto__|constructor\.prototype/, "prototype_pollution",
    CommandLine = /javascript:|data:text/, "injection_attempt",
    true(), "anomalous_routing"
  )
| table ComputerName, UserName, event_count, commands, remote_ips, risk, cve
high severity low confidence

CrowdStrike Falcon query to detect host-level indicators of TanStack Router exploitation including suspicious process command lines and network connections consistent with CVE-2026-45321 exploitation activity.

Data Sources

CrowdStrike Falcon EDRProcess EventsNetwork Events

Required Tables

NetworkConnectIP4NetworkConnectIP6ProcessRollup2

False Positives & Tuning

  • Node.js development servers running TanStack Router locally with debug flags
  • Automated testing frameworks invoking React applications with unusual parameters
  • Security tools performing endpoint-level web application analysis
  • Build pipelines running integration tests against TanStack Router applications

Other platforms for CVE-2026-45321


Testing Methodology

Validate this detection against 4 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 1TanStack Router Prototype Pollution Probe

    Expected signal: Web server access logs will show GET requests to /__proto__/polluted and query parameters containing __proto__ and constructor.prototype strings. Network flow logs will show connections to port 3000.

  2. Test 2TanStack Router Path Traversal via Routing Parameters

    Expected signal: Web access logs will record requests containing URL-encoded path traversal sequences. WAF or web server logs should show the decoded paths if URL decoding is applied before logging.

  3. Test 3TanStack Router JavaScript URI Injection Attempt

    Expected signal: Web server logs will capture requests containing javascript: and data: URI schemes in query parameters. If the application reflects these values, browser-side CSP violation reports may also be generated.

  4. Test 4Post-Exploitation Lateral Movement Simulation from Compromised Node.js Process

    Expected signal: EDR telemetry will show the Node.js process (or a child process) executing id, whoami, cat, find, and env commands. Process lineage will link these to the web server parent process.

Unlock Pro Content

Get the full detection package for CVE-2026-45321 including response playbook, investigation guide, and atomic red team tests.

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections