CVE-2026-25108 CrowdStrike LogScale · LogScale

Detect Soliton FileZen OS Command Injection Exploitation (CVE-2026-25108) in CrowdStrike LogScale

Detects exploitation of CVE-2026-25108, an OS command injection vulnerability (CWE-78) in Soliton Systems K.K FileZen file-sharing appliance. This vulnerability is listed on CISA's Known Exploited Vulnerabilities catalog and allows unauthenticated or authenticated attackers to inject arbitrary OS commands through vulnerable input fields, potentially leading to full system compromise.

MITRE ATT&CK

Tactic
Initial Access Execution Privilege Escalation Impact

LogScale Detection Query

CrowdStrike LogScale (LogScale)
cql
#event_simpleName IN (NetworkReceiveAcceptIP4, NetworkReceiveAcceptIP6, ProcessRollup2, SyntheticProcessRollup2)
| case {
    #event_simpleName IN (NetworkReceiveAcceptIP4, NetworkReceiveAcceptIP6):
      RemotePort IN (80, 443, 8080, 8443)
      | ImageFileName MATCHES "(?i)(httpd|nginx|php-fpm|filezen|cgi)"
      ;
    #event_simpleName IN (ProcessRollup2, SyntheticProcessRollup2):
      ParentBaseFileName IN ("httpd", "nginx", "php-fpm", "lighttpd", "apache2", "www")
      AND CommandLine MATCHES "(?i)(wget|curl|bash|sh|nc|ncat|python|python3|perl|ruby|/bin/sh|/bin/bash|chmod|chown|id |whoami)"
      ;
}
| CommandLine MATCHES "(?i)(wget|curl|bash|nc |ncat|python|perl|/etc/passwd|/bin/sh|/dev/tcp|socat|base64)"
  OR CommandLine MATCHES "[;&|`$(){}\[\]]"
| groupby([ComputerName, UserName, ParentBaseFileName, FileName, CommandLine, RemoteAddressIP4], function=[count(aid), min(timestamp), max(timestamp)])
| eval CVE="CVE-2026-25108"
| eval Severity="Critical"
| eval Tactic="Initial Access + Execution"
| sort(timestamp, order=desc, limit=500)
critical severity high confidence

CrowdStrike Falcon LogScale CQL detecting FileZen OS command injection by correlating network accept events on web ports from FileZen-related processes with subsequent child process spawning from web server parent processes executing shell commands consistent with post-exploitation activity.

Data Sources

CrowdStrike Falcon Endpoint sensorCrowdStrike Falcon Network containment telemetry

Required Tables

#event_simpleName=ProcessRollup2#event_simpleName=NetworkReceiveAcceptIP4#event_simpleName=SyntheticProcessRollup2

False Positives & Tuning

  • FileZen appliance running legitimate maintenance scripts that spawn shell processes from web server parent processes
  • Authorized server-side scripting within FileZen that uses curl or wget to interact with external update services
  • Security agent child processes spawned under the web server process tree during host-based scans
  • Legitimate administrative CLI operations initiated through the FileZen web management interface that execute underlying shell commands

Other platforms for CVE-2026-25108


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 1FileZen-style CGI Command Injection via HTTP GET parameter

    Expected signal: Web server access log records GET request to /cgi-bin/upload.cgi with semicolon character in query string. Process audit log shows web server process (httpd/nginx) spawning /bin/sh or /bin/bash as child process executing 'id' command.

  2. Test 2Post-Exploitation Reverse Shell Download via Injected wget

    Expected signal: Web server access log shows POST to /admin/config.cgi with pipe and wget in POST body. Network telemetry shows outbound TCP connection from web server host to ATTACKER_HOST:8080. File creation event for /tmp/payload.sh. Process execution of wget and chmod as children of web server process.

  3. Test 3Credential and Configuration Exfiltration via Piped cat Command

    Expected signal: Web server log records GET request to /download endpoint with URL-encoded pipe and cat command sequence. Network telemetry shows outbound POST connection from FileZen host to ATTACKER_HOST:9090. Process audit captures cat /etc/passwd executed as child of web server process, followed by curl data exfiltration subprocess.

  4. Test 4Webshell Implantation via Command Injection for Persistent Access

    Expected signal: Web server access log records POST to CGI endpoint with semicolon and echo command in body. File creation event for /var/www/html/status.php with PHP content. Process tree shows web server spawning sh executing echo redirection. Subsequent access to /var/www/html/status.php with cmd parameter would indicate webshell usage.

Unlock Pro Content

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

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections