test(shared): add archive preflight security regressions

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
YeonGyu-Kim
2026-04-04 01:16:21 +09:00
parent 53eeac3f31
commit 0c5deac232
2 changed files with 77 additions and 0 deletions
@@ -0,0 +1,29 @@
import { describe, expect, it } from "bun:test"
import { validateArchiveEntries } from "../archive-entry-validator"
import { parsePowerShellZipEntryLine } from "./powershell-zip-entry-listing"
describe("parsePowerShellZipEntryLine", () => {
describe("#given a json entry line with tab characters in the file name", () => {
it("#when parsing and validating the entry #then preserves the full path for traversal checks", () => {
// given
const entryLine = JSON.stringify({
type: "file",
name: `safe.txt\t../../escape.txt`,
target: "",
})
// when
const parsedEntry = parsePowerShellZipEntryLine(entryLine)
const validateParsedEntry = () =>
validateArchiveEntries(parsedEntry ? [parsedEntry] : [], "/tmp/archive-root")
// then
expect(parsedEntry).toEqual({
path: `safe.txt\t../../escape.txt`,
type: "file",
})
expect(validateParsedEntry).toThrow(/path traversal/i)
})
})
})