CVE-2026-31431 CrowdStrike LogScale · LogScale

Detect Linux Kernel Incorrect Resource Transfer Between Spheres (CVE-2026-31431) in CrowdStrike LogScale

CVE-2026-31431 is a Linux Kernel vulnerability classified as CWE-669 (Incorrect Resource Transfer Between Spheres). The flaw allows improper transfer of resources across security boundaries within the kernel, potentially enabling privilege escalation or unauthorized memory access. This vulnerability is listed in the CISA Known Exploited Vulnerabilities catalog, indicating active exploitation in the wild. Attackers with local access may exploit this to escalate privileges to root or escape container boundaries.

MITRE ATT&CK

Tactic
Privilege Escalation Defense Evasion Persistence

LogScale Detection Query

CrowdStrike LogScale (LogScale)
cql
DeviceProcessEvents
| filter platform_name == "Linux"
| filter (
    (ImageFileName in ("/bin/bash", "/bin/sh", "/usr/bin/python3", "/usr/bin/perl", "/usr/bin/python"))
    and (ParentBaseFileName in ("sshd", "apache2", "httpd", "nginx", "java", "node"))
  )
  or (
    CommandLine matches /\/proc\/[0-9]+\/mem|\/dev\/mem|\/sys\/kernel/
  )
| join kind=inner (
    DeviceEvents
    | filter ActionType == "PrivilegeEscalationDetected" or ActionType == "SuspiciousKernelAccess"
    | filter platform_name == "Linux"
  ) on DeviceId, bin(Timestamp, 5m)
| project Timestamp, DeviceId, DeviceName, AccountName, ImageFileName, CommandLine, ParentBaseFileName, ActionType
| sort by Timestamp desc
critical severity medium confidence

CrowdStrike Falcon query correlating suspicious shell processes spawned from Linux service parents with kernel memory access patterns and privilege escalation events indicative of CVE-2026-31431 exploitation.

Data Sources

CrowdStrike Falcon EndpointCrowdStrike Linux Sensor

Required Tables

DeviceProcessEventsDeviceEvents

False Positives & Tuning

  • Authorized penetration testing activities on Linux hosts monitored by Falcon where kernel exploit simulation is in scope
  • Legitimate administrative automation (Ansible, Puppet) spawning shells from service contexts for configuration management
  • DevOps pipelines where CI agents run as service users and spawn subshells for build and test execution

Other platforms for CVE-2026-31431


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 kernel copy boundary fault via /proc/kcore read attempt

    Expected signal: Kernel message in dmesg showing access denial or fault; audit log SYSCALL record for 'open' or 'read' on /proc/kcore by non-root UID; possible kernel warning message about unauthorized memory access attempt

  2. Test 2Privilege escalation simulation via SUID binary abuse on unpatched kernel

    Expected signal: Audit log SYSCALL record showing execve of test_suid with uid!=0 but euid=0; EDR process event showing SUID execution; possible AppArmor/SELinux denial log if MAC policy is enforced

  3. Test 3Container escape boundary test via /proc/sysrq-trigger probe

    Expected signal: Host kernel log entries showing container namespace probe attempts; Docker daemon log entries for the test container; audit log entries showing file access attempts to /dev/mem or /proc/1/ from container process

Unlock Pro Content

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

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections