Response playbooks, investigation guides, and Atomic Red Team tests are Pro-only. Upgrade to unlock the full detection package for CVE-2026-67429.

Unlock with Pro - from £29/user/mo
CVE-2026-67429 Google Chronicle · YARA-L

Detect Flyto2 Core Arbitrary File Write via image.download Path Traversal (CVE-2026-67429) in Google Chronicle

Detects exploitation of CVE-2026-67429, a critical (CVSS 10.0) arbitrary file write vulnerability in Flyto2 Core (pip package flyto-core) versions prior to 2.26.7. The image.download module and other file-writing modules fail to sanitize user-supplied filenames/paths (CWE-22 path traversal, CWE-73 external control of file name or path), allowing an unauthenticated or low-privileged attacker to write arbitrary files anywhere on the filesystem reachable by the flyto-core process. This can be leveraged to overwrite application code, cron files, SSH authorized_keys, systemd unit files, or web-accessible directories to achieve remote code execution. Detection focuses on identifying path traversal sequences and absolute/unexpected path targets passed to flyto-core's image.download and related file-writing endpoints, as well as downstream evidence such as newly written files in sensitive directories immediately following flyto-core process activity.

MITRE ATT&CK

Tactic
Initial Access Execution Persistence

YARA-L Detection Query

Google Chronicle (YARA-L)
yaral
rule flyto_core_path_traversal_write {
  meta:
    author = "argus-detection-platform"
    description = "Detects CVE-2026-67429 exploitation via path traversal in flyto-core image.download"
    severity = "CRITICAL"
  events:
    $proc.metadata.event_type = "PROCESS_LAUNCH"
    $proc.target.process.command_line = /(?i).*(flyto|image\.download).*/
    $proc.target.process.command_line = /(\.\.\/){2,}|(\.\.\\){2,}|%2e%2e%2f|%2e%2e\//
    $file.metadata.event_type = "FILE_CREATION"
    $file.target.file.full_path = /(?i).*(\/etc\/|\/root\/\.ssh\/|authorized_keys|cron\.d|windows\\|wwwroot|inetpub).*/
    $proc.principal.hostname = $file.principal.hostname
  match:
    $proc.principal.hostname over 5m
  condition:
    $proc and $file
}
critical severity medium confidence

Chronicle YARA-L rule correlating flyto-core process launches containing path traversal sequences with subsequent file creation events in sensitive directories, indicating CVE-2026-67429 exploitation.

Data Sources

Chronicle process events (UDM)Chronicle file events (UDM)

Required Tables

udm.events

False Positives & Tuning

  • Approved vulnerability assessment activity replaying the published GHSA PoC in an isolated environment
  • Unrelated deployment automation writing to the same sensitive directories within the correlation window
  • UDM normalization artifacts introducing traversal-like substrings from encoded query parameters

Other platforms for CVE-2026-67429


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 1Path Traversal via image.download to /etc/

    Expected signal: Process event for the python3 process with command line referencing flyto_core and a path containing multiple '../' sequences; file creation event for /etc/flyto_poc_test.txt.

  2. Test 2Arbitrary File Write to SSH authorized_keys

    Expected signal: File modification event on /root/.ssh/authorized_keys initiated by the flyto-core python process shortly after a traversal-pattern process command line.

  3. Test 3Path Traversal via image.download on Windows

    Expected signal: Process creation event for python.exe with command line containing flyto and backslash traversal sequences; file creation event under C:\Windows\Temp\.

Unlock playbooks & atomic tests with Pro

Get the full detection package for CVE-2026-67429 — response playbook and atomic red team tests, plus investigation guidance and hunting queries.

df00tech Pro — £29/user/month

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections