CVE-2026-48027 CrowdStrike LogScale · LogScale

Detect Nx Console Embedded Malicious Code Execution (CVE-2026-48027) in CrowdStrike LogScale

CVE-2026-48027 describes an embedded malicious code vulnerability (CWE-506) in Nx Console, a popular VS Code and JetBrains IDE extension for managing Nx monorepos. A compromised or trojanized version of Nx Console contains backdoored code that executes at extension load time within the developer IDE process, enabling attacker-controlled behavior including credential harvesting, reverse shells, or supply chain lateral movement into CI/CD pipelines. This vulnerability is listed in CISA KEV, indicating active exploitation in the wild. Detection focuses on anomalous process spawning from IDE extension host processes, unexpected network connections originating from VS Code or JetBrains runtimes, and suspicious file writes consistent with embedded malicious payloads.

MITRE ATT&CK

Tactic
Initial Access Execution Persistence Command and Control

LogScale Detection Query

CrowdStrike LogScale (LogScale)
cql
event_simpleName=ProcessRollup2
| ParentBaseFileName IN ("code", "code-insiders", "webstorm64.exe", "idea64.exe", "rider64.exe", "node")
| FileName IN ("powershell.exe", "pwsh.exe", "cmd.exe", "bash", "sh", "python", "python3", "curl", "wget", "certutil.exe", "mshta.exe", "wscript.exe", "cscript.exe", "nc", "ncat", "socat")
  OR CommandLine = /(?i)(nx-console|@nrwl\/nx-console|nxls|nx-language-server)/
| eval RiskTier=case(
    FileName IN ("powershell.exe", "pwsh.exe", "mshta.exe", "certutil.exe"), "CRITICAL",
    FileName IN ("curl", "wget", "nc", "ncat", "socat"), "HIGH",
    true(), "MEDIUM")
| table _time, ComputerName, UserName, ParentBaseFileName, ParentCommandLine, FileName, CommandLine, RiskTier
| sort -RiskTier, -_time
critical severity medium confidence

CrowdStrike Falcon query detecting IDE parent processes spawning suspicious child processes indicative of the Nx Console embedded malicious code vulnerability (CVE-2026-48027). Includes risk tiering by child process type.

Data Sources

CrowdStrike Falcon Endpoint ProtectionCrowdStrike ProcessRollup2 telemetry

Required Tables

ProcessRollup2

False Positives & Tuning

  • VS Code integrated terminal sessions opened by developers for general shell access
  • Node.js Nx CLI child processes spawned during legitimate monorepo task execution
  • Automated workspace analysis scripts triggered by Nx Console on project open
  • Security tooling (EDR agents, DLP) injecting into IDE processes and spawning helper utilities

Other platforms for CVE-2026-48027


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 1Simulate Nx Console Extension Host Spawning Reverse Shell (Windows)

    Expected signal: DeviceProcessEvents: powershell.exe spawned with parent chain including node.exe or code.exe; DeviceNetworkEvents: TCP connect attempt to 127.0.0.1:9999

  2. Test 2Simulate Nx Console Extension Credential File Exfiltration (Linux/macOS)

    Expected signal: Process creation event: bash spawned with cat and curl in command line; Network event: HTTP POST to 127.0.0.1:8181 from bash process; File access events on .npmrc and .gitconfig

  3. Test 3Drop and Execute Malicious Script from Temp Directory (macOS)

    Expected signal: Process events: node.exe spawning sh executing a script from /tmp; File creation events for /tmp/nx_test_payload.sh and /tmp/nx_beacon.txt with initiating process node

  4. Test 4Nx Console VSIX Backdoor Package Installation Simulation

    Expected signal: File system events showing creation of extension directory and package.json under .vscode/extensions; if extension activated, bash process spawned from VS Code extension host

Unlock Pro Content

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

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections