CVE-2026-48755 Sumo Logic CSE · Sumo

Detect CVE-2026-48755: Incus Argument Injection in Backup Compression Algorithm (AFW/ACE) in Sumo Logic CSE

Detects exploitation of CVE-2026-48755, an argument injection vulnerability in Incus (github.com/lxc/incus/v7/cmd/incusd) versions prior to 7.2.0. The vulnerability exists in the backup compression algorithm selection, where unsanitized input is passed to compression utilities, enabling arbitrary file write (AFW) and arbitrary code execution (ACE) with incusd process privileges. An attacker with API access to the Incus daemon can inject shell metacharacters or additional arguments into the compression command, potentially achieving container escape or host compromise.

MITRE ATT&CK

Tactic
Initial Access Privilege Escalation Execution

Sumo Detection Query

Sumo Logic CSE (Sumo)
sql
_sourceCategory=linux/syslog OR _sourceCategory=linux/audit
| where %"process.name" in ("gzip", "bzip2", "xz", "zstd", "lz4", "tar", "pigz")
  and (%"process.parent.name" matches /incusd/ or _raw matches /incusd/)
| where _raw matches /[;&|`$()\\]/ 
  or _raw matches /--use-compress-program/
  or _raw matches /--checkpoint-action/
  or _raw matches /\.\.\/|\.\.\\/
  or _raw matches /-I\s+/
| parse regex field=_raw "(?<cmdline>incusd.{0,500})" nodrop
| count by _sourceHost, %"process.name", cmdline
| sort by _count desc
critical severity medium confidence

Sumo Logic query identifying compression utility invocations from incusd parent process with injected arguments or shell metacharacters indicative of CVE-2026-48755.

Data Sources

Linux SyslogLinux Audit

Required Tables

linux/sysloglinux/audit

False Positives & Tuning

  • Legitimate Incus administrative tasks that supply custom compression programs
  • Automated infrastructure backup pipelines using Incus API with non-default compression settings
  • Test environments running Incus backup validation with varied compression algorithm arguments

Other platforms for CVE-2026-48755


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 1Incus Backup Compression Argument Injection via API - File Write

    Expected signal: Process event: incusd spawns gzip with command line containing '>' and '#' characters; file creation event at /tmp/pwned.txt by gzip process with parent incusd

  2. Test 2Incus Backup Compression Injection via tar --use-compress-program

    Expected signal: Process chain: incusd -> tar with --use-compress-program argument; incusd -> sh -c with id command; file write to /tmp/id_output.txt

  3. Test 3Incus REST API Direct Backup Request with Injected Compression Algorithm

    Expected signal: Incus API audit log entry for POST /1.0/instances/test-container/backups with compression_algorithm containing semicolon and redirect; gzip process spawned by incusd with injected shell command in arguments

Unlock Pro Content

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

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections