Parser inventory

Every engine module that turns attacker-controlled bytes or text into structure, with the bounds it actually declares, the test that covers it, and whether the fuzz harness reaches it.

"Attacker-controlled" here means one of four sources:

Two things this page deliberately does not do. It does not list the engine's format writers as attack surface. engine/src/tiff.ts, apng.ts, webp-anim.ts, emf.ts, eps.ts, dxf.ts, hdr.ts, pptx.ts, pdfx.ts, zip-crypto.ts and pdf-crypto-r6.ts are byte emitters that consume engine-internal IR, pixel buffers, or already-encoded frames from the shell, so a hostile file never reaches them (see "Writers, not parsers" below). And it does not restate the shell's own gates: the web shell caps upload size and inflates zips before the engine sees a part map, and those caps live in shells/web/src/bridge/, not here.

Fuzz coverage is the registered target list in tests/fuzz/targets.ts (ALL_TARGETS, at the end of the file). There are nineteen: c2pa-verify, cbor, media-sniff, pdf-map, x509, file-metadata, strip-metadata, video-meta, data-import, pptx-read, pptx-patch, pptx-bridge, icc, der-read, c2pa-extract, c2pa-containers, url-pack, wav and depth-hint. tests/fuzz-regression.test.ts replays the seven saved regression inputs in tests/fuzz/regressions/ and runs a few hundred seeded mutations per target inside the normal npm test glob; node tests/fuzz/run.ts is the standalone soak.

The parsers

ModuleInput sourceBounds enforcedDirect test fileFuzz targetNotes
engine/src/pdf-map.tsPDF or Illustrator .ai content stream, decoded by the shell's pdf-lib pass; plus each font's /ToUnicode CMap textMAX_ARRAY_DEPTH = 16 (local to the tokenizer, line 550), MAX_BF_RANGE = 0x10000tests/pdf-map.test.tspdf-map (interpretPdfPage + parseToUnicode)Two of the seven saved regressions are this module: pdf-map-deep-array-nesting.bin and pdf-map-tounicode-range-oom.bin. The MAX_BF_RANGE comment names the exact hostile CMap (<00000000> <ffffffff> <0041>) that drove a four-billion-iteration loop. No cap on total node count.
engine/src/pdf-svg.tsthe PdfNodes pdf-map.ts produced for one pageMAX_CLIPS = 64, MAX_CLIP_D = 64_000, MAX_PATH_D = 400_000, MAX_OUTLINE_D = 400_000, MAX_COORD = 1e9tests/pdf-svg.test.tsnone (reached only indirectly, pdf-map fuzzing stops at the nodes)Second-order: its input is already-interpreted structure, but every string it scans came from the file. The MAX_COORD comment is explicit that beyond that magnitude a coordinate is corruption, not geometry.
engine/src/pdf-text.tsthe same interpreted text nodes, reassembled into reading orderMAX_SKEW_DEG = 5, MAX_COLUMNS = 4 (both layout heuristics, not allocation caps)tests/pdf-text.test.tsnoneBounds here are about output quality rather than hostile input. Work is linear in the node count pdf-map.ts handed over, which is itself uncapped.
engine/src/pdf-artwork.tsinterpreted PDF nodes, clustered into candidate logosMAX_NODES = 4000, MAX_CANDIDATES = 60, plus the shape heuristics MAX_CLUSTER_GAP = 48, MAX_PAGE_FRACTION = 0.55, MAX_ASPECT = 12tests/pdf-artwork.test.tsnoneMAX_NODES / MAX_CANDIDATES are the real allocation bounds and they are the cap pdf-map.ts itself lacks, for this consumer only.
engine/src/pdf-redaction.tsinterpreted PDF nodes, looking for text under filled barsMAX_COVERS = 64tests/pdf-redaction.test.tsnoneDetection only, no byte surgery.
engine/src/pptx-read.tsan unzipped .pptx part map (`Record<path, Uint8Array \string>`) plus an injected XML parserMAX_PART_BYTES = 24 MB, MAX_PART_CHARS = 16 M, MAX_SLIDES = 2000, MAX_NODES_PER_SLIDE = 8000, MAX_GROUP_DEPTH = 16, MAX_PARAS = 4000, MAX_RUNS_PER_PARA = 4000, MAX_TABLE_ROWS = 2000, MAX_TABLE_COLS = 512, MAX_TEXT_LEN = 200_000, MAX_DFS_VISITS = 200_000, MAX_COORD = 1e11tests/pptx-read.test.tspptx-read (readPptx + isPptx)The exemplar. See "The standard to follow". Entity expansion is explicitly delegated to the injected parser, and the module compensates with a visited-node counter.
engine/src/pptx-patch.tsthe same hostile part map, rewritten in place for a rebrandMAX_PART_CHARS = 32 Mtests/pptx-patch.test.tspptx-patch (rebrandPptxParts)Every rewrite is a delimited string or regex edit with linear regexes only, never a DOM parse, so no catastrophic backtracking. A part over the cap passes through verbatim rather than being rewritten.
engine/src/icc.tsan ICC profile lifted out of a user-supplied JPEG, PNG, PDF or TIFFMAX_TAGS = 512, MAX_CHANNELS = 15, MAX_TABLE_ENTRIES = 4096, MAX_CURVE_ENTRIES = 65536, MAX_CLUT_VALUES = 1 << 22, MAX_PARA_PARAMS = 7, MAX_CURVE_INVERT_STEPS = 40tests/icc.test.ts, tests/icc-real-profiles.test.tsicc (parseIccProfile + evaluate)The clearest statement of the house reader contract in the codebase: never throws, malformed input yields null, nothing the file declares is trusted, and every cap comment names the largest value seen across the forty-odd real profiles. Apple's over-reporting gamt tag is handled by name.
engine/src/file-metadata.tsraw bytes of any uploaded raster, vector, or MP4 or QuickTime videoMAX_FIELDS = 64, MAX_VALUE_CHARS = 2048, MAX_TEXT_SCAN = 16 MB, MAX_GIF_BLOCKS = 1_000_000, MAX_MPF_IMAGES = 16, MAX_GAINMAP_SNIFF = 8192tests/file-metadata.test.tsfile-metadata (extractFileMetadata)Best-effort throughout: a malformed block yields fewer fields, never an exception. PDF is deliberately out of scope here and goes through host.pdf.analyze. Second parse path, added 2026-07-31: readMpfIndex reads a JPEG's CIPA DC-007 multi-picture index (both byte orders) over the jpeg-segments.ts walker, so a declared second image — an HDR gain map, an MPO — is NAMED in the reveal instead of being sniffed as an unexplained appended payload and flagged sensitive. Nothing the index claims is trusted: an image is reported only once its declared range lies inside the buffer and starts on an SOI.
engine/src/strip-metadata.tsthe same uploaded bytes, for the clean-copy pathno numeric caps; the invariants are structural (STRIPPABLE, PNG_STRIP, DROP_EL_PREFIX, DROP_EL_NAME, SPACE_SENSITIVE, DROP_XMLNS)tests/strip-metadata.test.tsstrip-metadata (stripMetadata)Deliberately the inverse contract to its read-side sibling. Consumes file-metadata.ts's readMpfIndex for one documented exception to "image content is preserved": a multi-picture JPEG loses every image after the primary along with the MPF index that declared them, because an orphaned second image behind a deleted index is worse than either alternative (module header states the choice). Files with no MPF index — motion photos included — are byte-for-byte unaffected. This is a privacy control, so it must fail closed: if the surgery throws or leaves removable metadata behind, stripMetadata() throws rather than return an original a caller would present as clean (hasResidualMetadata).
engine/src/jpeg-segments.tsthe marker structure of any JPEG — one a user uploaded, and one our own export pipeline is about to stampMAX_SEGMENTS = 4096, MAX_APP_ID = 64; every length field is checked against the buffer before it is acted on, and entropy data is walked (FF 00 stuffing, FF D0FF D7 restarts) rather than searchedtests/jpeg-segments.test.tsnoneThe one shared JPEG marker walker/writer, replacing three ad-hoc "skip the leading APP0" insertion points now that segment ORDER carries meaning (an MPF index stores absolute offsets, so it must precede ICC). Split contract by side, on purpose: the reader follows the house rule — never throws, null when the bytes are not a JPEG, a short scan flagged truncated when they are malformed — while insertJpegSegments follows the splicer convention it replaces and returns the input bytes untouched, all or nothing, on any problem. The structural invariant "no reported segment ends past the buffer" is asserted on every scan in the tests, including a few hundred seeded mutations of a real sharp-encoded file.
engine/src/radiance.tsthe bytes of an uploaded or piped Radiance .hdr (RGBE) fileMAX_HEADER_BYTES, MAX_PIXELS (32 Mpx) and the format's own 8..32767 RLE width window; every scanline's declared run/literal length is checked against the remaining buffer before it is acted ontests/radiance.test.tsnone (no .hdr seed in the shared corpus yet - the suite carries its own truncation + byte-flip sweep)Reader half of the writer (readRadiance). Follows the house reader rule: never throws, null on anything it cannot fully verify. Two decode shapes it deliberately REFUSES rather than mis-render: -X (mirrored rows) and +Y (bottom-up), because rows are returned in file order and accepting either would silently hand back a flipped picture.
engine/src/gainmap-jpeg.tsthe MP Index IFD of any JPEG being C2PA-stamped — ours, or one a user uploadedevery IFD/entry offset is bounded to the MPF segment before any read or write (not merely to the file), the entry count must match the images actually present, and both byte orders are readtests/gainmap-jpeg.test.ts, tests/c2pa-gainmap.test.tsnoneWrite side as well as read: repairMpfOffsets runs from c2pa-containers.ts#placeJpeg, because inserting an APP11 store into the primary grows it and leaves MPEntry[0].size under-reporting — a structurally invalid index per DC-007 on a file we then sign. Bounding the writes to the segment is what keeps a forged offset from steering 16 bytes per image into arbitrary image data (regression pinned in tests/c2pa-gainmap.test.ts). Returns the input untouched on anything it cannot fully verify.
engine/src/media-sniff.tsheader prefix of any uploaded raster or videonone named; every read is an explicit offset + len > bytes.length check and the GIF/PNG walks bail at fixed countstests/media-sniff.test.tsmedia-sniff (sniffAnimatedRaster + sniffVideoContainer)Returns `string \null, allocates nothing beyond a short scan. The "GIF lesson" the DER and CBOR walkers cite as their invariant originated here. sniffLayeredRaster` (2026-08-04) is prefix-only PSD/XCF classification for the drop router; full validation is the two rows below.
engine/src/psd.tsa user's whole Photoshop PSD/PSB, on the layered-import pathMAX_DIM_PSD = 30_000, MAX_DIM_PSB = 300_000, MAX_LAYERS = 1_024, MAX_CHANNELS_PER_LAYER = 8, MAX_EXTRA_BLOCKS = 256, MAX_RESOURCE_BLOCKS = 1_024, MAX_CMYK_CACHE = 1 << 20, and a decode-output budget (maxDecodedBytes, default 256 MiB) reserved before every allocationtests/psd.test.tspsd (readPsd, seeds from writePsd — our own writer)Split failure contract: not-a-PSD / refused class (Lab/Indexed, 1/32-bit) is a typed PsdUnsupportedError (a controlled throw); damage inside a layer/resource is onWarn + skip that piece, never the document. ZIP channels inflate through an injected InflateFn whose maxOut the module re-checks. CMYK converts through the embedded ICC profile via icc.ts's bounded evaluator.
engine/src/xcf.tsa user's whole GIMP XCF, same pathMAX_DIM = 300_000, MAX_LAYERS = 1_024, MAX_PROPS = 512, MAX_NAME = 4_096, the same maxDecodedBytes budget; every pointer validated 14 < p < bytes.length before deref, tile byte length bounded by the gap to the next tile pointer (worst-case-capped for the last)tests/xcf.test.tsxcf (readXcf, seeds from tests/helpers/xcf-fixture.ts's builder)Same split contract (XcfUnsupportedError vs warn+degrade: a bad tile becomes a transparent tile, a bad layer a geometry-only row). GIMP's tile RLE is its own scheme (not PackBits) with per-opcode bounds; zlib tiles go through the injected InflateFn. Linear/float precisions are refused by class rather than mis-folded. There is deliberately no XCF writer (see psd-write.ts's header).
shells/web/src/lib/image-sample.ts (depthHint)header prefix (plus, for TIFF, two tiny targeted slices) of any uploaded raster, on the ingest pathMAX_SNIFF_READ = 64 KB per read, MAX_IFD_ENTRIES = 512, MAX_JPEG_SEGMENTS = 512; every read is an explicit bounds-checked sliceshells/web/src/lib/image-sample.test.tsdepth-hint (depthHint)Shell-side sibling of media-sniff.ts (listed here because its input is the same untrusted upload bytes): reports a file's declared bits per channel — PNG IHDR byte 24, TIFF tag 258 via a bounded first-IFD walk, JPEG SOFn precision — without decoding a pixel, so the ingest path can say "16-bit source, edited at 8-bit" instead of crushing silently. Never throws; malformed input answers nulls.
engine/src/video-meta.tsa finished MP4 or WebM from MediaRecorder, or a user's video on the ingredient pathnone namedtests/video-meta.test.tsvideo-meta (embedMp4Meta + embedWebmMeta)Mixed writer and walker. It writes tags, but to do so it must walk attacker-supplied container structure, and its readId/readVint/walkBoxes/scanSegmentChildren primitives are imported by both c2pa-extract.ts and c2pa-containers.ts, so this is the shared read path for BMFF and Matroska. video-meta-stco-forged-count.bin is a saved regression. Unrecognised structure returns the original bytes untouched.
engine/src/c2pa-extract.tsthe JUMBF manifest store inside any user file, and the CBOR claims inside itMAX_CBOR_DEPTH = 64none named c2pa-extract*; covered through tests/c2pa-verify.test.ts, tests/c2pa-formats.test.ts, tests/c2pa-foreign-fixture.test.ts, tests/c2pa-jpeg-segments.test.tscbor (decodeCbor, hit directly) and c2pa-verify (end to end)Split out of c2pa-verify.ts precisely so the parsing is reviewable apart from the cryptography; nothing in this file does or checks crypto. Four of the seven saved regressions are its CBOR decoder. The decoder deliberately accepts indefinite lengths and half/single/double floats because foreign manifests use them.
engine/src/c2pa-verify.tsa whole user file, plus the COSE signature and X.509 chain inside its manifestMAX_CHAIN_INTERMEDIATES = 8tests/c2pa-verify.test.ts, tests/c2pa-trust.test.ts, tests/c2pa-verdict.test.ts, tests/c2pa-c2patool-conformance.test.tsc2pa-verify (verifyC2pa)Reports failures as named checks rather than throwing, so a malformed manifest is a failed check and never an escaped exception. Chain walking consumes each intermediate at most once, so no A→B→A loop, and hostile chains are bounded to a trivial O(cap²).
engine/src/der-read.tsDER/ASN.1 straight out of attacker-controlled files, shared by c2pa-verify.ts, x509.ts and seal.tsnone named; the invariant is that every multi-byte length head is bounds-checked before its bytes are readnonenone directly; exercised through the x509 and c2pa-verify targetsThe opposite contract to the readers above, and correctly so: it throws promptly on truncation or an overrunning length. The module comment explains why silence would be worse, an out-of-range Uint8Array read yields undefined, which NaN-poisons the computed length and defeats the j + len > b.length guard. Not exported from index.ts.
engine/src/x509.tscertificate DER from a manifest's x5chain, or from the CA servicenone named beyond the DER walker's own checkstests/x509.test.tsx509 (parseCertificate)Both a writer (generateSigner, generateCaRoot, issueLeafCert) and a reader. The read side is the exposed half.
engine/src/seal.tsraw bytes of any file, scanned for an embedded SEAL recordSCAN_EDGE = 64 KB, SCAN_WHOLE_MAX = 128 KB, plus a Math.min(at + 64 * 1024, length) window on terminator searchtests/seal.test.tsnoneVerification only, and network-free: DNS key lookup is an injected resolveKey. locateRecords never throws; a malformed or hostile file yields [].
engine/src/data-import.tsa user's CSV or JSON file, read to text by the shellMAX_IMPORT_CHARS = 8 M, DEFAULT_ROW_LIMIT = 1000 (both exported)tests/data-import.test.tsdata-import (parseDataRows)The MAX_IMPORT_CHARS comment states the reason the engine enforces it rather than trusting the shell: a missing shell gate must not let a gigabyte "CSV" of nothing but commas balloon into cell allocations.
engine/src/brand-import.tsa Tokens Studio or DTCG token document, a per-set file tree, or a .penpot project zipnone foundtests/brand-import.test.tsnoneTakes already-parsed JSON and already-unzipped path→bytes entries, so inflation bounds are the caller's. Extraction never throws; problems accumulate in warnings and the worst case is doc: null.
engine/src/url-pack.tsthe z and zx params of any shared linkMAX_TOKEN = 64 KB, MAX_UNPACKED = 256 KB; PBKDF2_ITERATIONS = 210_000, ENC_SALT_BYTES = 16, ENC_IV_BYTES = 12 on the encrypted varianttests/url-pack.test.tsnoneThe one module whose entire input is a URL param. Both caps exist because raw DEFLATE expands roughly 1000×, so a decompression bomb must not hang the tab.
engine/src/svg-colors.tsraw SVG source text from an uploaded or fetched assetMATCH_CAP = 100_000 regex matches per call, shared by both passestests/svg-colors.test.tsnoneString and regex work only, no DOMParser. Candidates pass the same SAFE_CSS_COLOR shape gate the web colour field uses, and a bare identifier must additionally be a real CSS3 named colour so a class name or font family cannot be misread as a colour. Never throws.
engine/src/svg-custgeom.tsa flat SVG the user supplied, lowered to PowerPoint custom geometryMAX_SVG_LEN = 4_000_000, MAX_TAGS = 40_000, MAX_SHAPES = 4_000tests/svg-custgeom.test.tsnoneIts own tag-stream scan, no DOM, with a group transform stack.
engine/src/svg-path.tsan SVG path d string, from artwork, a template, or a URL paramnone foundtests/svg-path.test.tsnoneA linear single-pass tokenizer with no recursion and no declared-length field to lie about, so work is bounded by the input length. That is a genuine structural argument, not an accident, but there is still no named cap on the emitted subpath or segment count.
engine/src/midi.tsa .mid a user uploaded, or fed to scripts/ingest-midi.tsMAX_NOTES = 200_000, MAX_STEPS = 1 << 15, MAX_VOICES = 8tests/midi.test.tsnoneHeader states the hardening explicitly: every offset bounds-checked, malformed track lengths clamped to the buffer, note count and step span capped.
engine/src/wav.tsa .wav a user handed to host.audio on a headless shellMAX_CHANNELS = 32tests/wav.test.tsnoneChunk walking cannot run backwards or off the end regardless of declared sizes. Unknown encodings (µ-law, ADPCM, a compressed payload in a RIFF skin) are refused by name rather than misread as PCM, because misreading them yields full-scale noise that would look like a plausibly loud track.
engine/src/zzfxm.tsa ZzfxSong, which on the MIDI and MOD paths derives from a user filenone foundtests/zzfxm.test.ts, tests/zzfxm-seed-parity.test.tsnoneTwo vendored MIT functions kept faithful to upstream on purpose, so caps belong in the converters, and midi.ts is where they are. A hand-crafted song object reaching renderZzfxm directly is unbounded.
engine/src/png-unfilter.tsan inflated PNG IDAT or PDF /Predictor >= 10 streamnone named; Number.isSafeInteger(rowBytes), Number.isSafeInteger(stride h) and inflated.length < stride h guard the allocationtests/png-unfilter.test.tsnoneThe module the house reader contract is named after: never throws, a truncated buffer or unknown filter tag or non-positive dimension returns null. Only 8-bit-per-component images; sub-byte depths are the caller's to reject.
engine/src/steganalysis.tsRGBA pixels decoded from a user imageMIN_PIXELS = 64 * 64, P_THRESHOLD = 0.95, PREFIXES = [0.25, 0.5, 1]tests/steganalysis.test.tsnoneNumeric input of known length, so no container grammar to attack. Bounds are statistical thresholds rather than allocation caps. Surfaced as an amber heuristic, never a verdict.
engine/src/trustmark.ts100 booleans recovered by the shell's ONNX decoder from a user imageTRUSTMARK_PAYLOAD_BITS = ECC_REGION_BITS + VERSION_FIELD_BITS (96 + 4), LOLLY_MAGIC_BITS = 16, LOLLY_SCHEME_BITS = 4, BCH_POLYNOMIAL = 137tests/trustmark.test.tsnoneFixed-width bit input, so there is no length field and no allocation to bomb. The comment at line 689 records the rule that matters: a caller feeding untrusted or garbled bits must never throw.
engine/src/contentseal.tsseveral 256-bit vectors the shell's ONNX extractor produced from a user imageCONTENTSEAL_MESSAGE_BITS = 256, CONTENTSEAL_DEFAULT_TAU = 72tests/contentseal.test.tsnoneSame shape as trustmark.ts: fixed-size numeric input, a consensus decision, no parsing.

Writers, not parsers

Listing these as attack surface would overstate the problem. Each consumes engine-internal IR or already-encoded bytes the shell produced, not a file a stranger sent.

ModuleWhat it actually does
engine/src/tiff.tsBaseline TIFF encoder, uncompressed single strip. One export, packTiff(pixels, opts). It has no reader at all.
engine/src/apng.tsAPNG packer. Chunk-level surgery over complete PNGs the shell encoded, one per frame. It does split input chunk streams, so the frames it reads are shell output rather than user files.
engine/src/webp-anim.tsAnimated WebP packer over stills from canvas.toBlob('image/webp'). Same shape as apng.ts.
engine/src/emf.ts, eps.ts, dxf.tsThe three non-SVG sinks on the vector pipeline. All three take the normalised device-px IR from shells/web/src/bridge/svg-ir and emit bytes or text. Text is outlined upstream, so none of them reads a font.
engine/src/hdr.tsPixel transform, SDR RGBA in, PQ-encoded RGBA out. pqEncode and hdrBoostToPQ only.
engine/src/pptx.tsPPTX builder: OOXML scaffolding plus DrawingML serialisation. MAX_TABLE_COLS = 128 and MAX_TABLE_ROWS = 512 bound its own output. The reading half is pptx-read.ts.
engine/src/pdfx.tsPDF/X-4 metadata authority: XMP packet strings and descriptor objects. Interpolated values get an XML escape (esc), which is output hygiene, not parsing. N_ALLOWED = new Set([1, 3, 4]) validates a caller's channel count.
engine/src/zip-crypto.tsZipCrypto and WinZip AES-256 encryption plus zip framing, over bytes fflate already compressed in the shell. All randomness is injected via opts.rng.
engine/src/pdf-crypto-r6.tsPDF R6 AES-256 /Encrypt value computation. Deterministic given its inputs; the shell supplies the file key, all four salts, the Perms tail and every IV.
engine/src/c2pa-containers.tsThe placement side of the C2PA writer. It splices a manifest into a container, which means walking that container's grammar, but the containers it splices into are normally Lolly's own render output; the read path for foreign files is c2pa-extract.ts. No c2pa-containers*.test.ts exists; coverage rides on tests/c2pa-formats.test.ts and tests/c2pa.test.ts.
engine/src/metadata.tsAssembles the provenance record from profile plus manifest. No format or byte knowledge.

The standard to follow

engine/src/pptx-read.ts is the module to copy when you add a parser. Its caps block sits at lines 156 to 167, immediately after the public types and before the first walker, so a reviewer meets the bounds before the code they bound:

// ─── hardening caps ──────────────────────────────────────────────────────────

const MAX_PART_BYTES = 24 * 1024 * 1024; // skip parsing a part bigger than this
const MAX_PART_CHARS = 16 * 1024 * 1024;
const MAX_SLIDES = 2000;
const MAX_NODES_PER_SLIDE = 8000;
const MAX_GROUP_DEPTH = 16;
const MAX_PARAS = 4000;
const MAX_RUNS_PER_PARA = 4000;
const MAX_TABLE_ROWS = 2000;
const MAX_TABLE_COLS = 512;
const MAX_TEXT_LEN = 200_000; // per run/cell text clamp
const MAX_DFS_VISITS = 200_000; // bound any descendant search
const MAX_COORD = 1e11; // EMU magnitude clamp (slide width is ~1.2e7)

Four properties make this the exemplar rather than merely a long list.

The threat model is written down. The module header carries a SECURITY section that names it: "a hostile zip is the threat model, same as PDF". It then states the consequences as commitments, not hopes: every part is size-capped before parsing, slide, node, paragraph, run and table counts are capped, group-shape recursion is depth-capped, and "a malformed or hostile part NEVER throws, we return what parsed and skip the rest".

Every cap has a unit and a real-world comparison. MAX_COORD = 1e11 carries // EMU magnitude clamp (slide width is ~1.2e7), which tells the next reader the cap sits four orders of magnitude above anything legitimate. A number with no comparison point is a number nobody can safely change later.

It says what it delegates. "XML entity-expansion (billion-laughs) is the injected parser's responsibility, but we additionally bound every DFS by a visited-node counter so a pathologically deep/wide tree can't hang us." Naming the boundary is what lets a reviewer check the other side of it, and adding the counter anyway is defence in depth for the case where a shell injects a parser without those protections.

The contract is one sentence and it is testable. Never throw, return what parsed. tests/pptx-read.test.ts asserts it, and the pptx-read fuzz target asserts it against mutated real decks.

engine/src/icc.ts is the same discipline applied to a harder format, and its caps block header is worth borrowing verbatim: "Every one of these bounds something a hostile file declares", followed by the largest value each cap was measured against across forty real profiles.

Known gaps

Verified against ALL_TARGETS in tests/fuzz/targets.ts and against each module's own source. An earlier pass over this ground over-counted, because it treated the format writers as parsers.

Genuine parsers with no fuzz target, and no named allocation bounds of their own. These are the ones worth attention first.

Parsers with declared bounds but no fuzz target. Lower risk, still uncovered by the mutation harness: url-pack.ts, seal.ts, svg-colors.ts, svg-custgeom.ts, midi.ts, wav.ts, png-unfilter.ts, pdf-svg.ts, pdf-artwork.ts, pdf-text.ts, pdf-redaction.ts. Of these, url-pack.ts and wav.ts are the best candidates to add next: url-pack because its input is a public URL param and its threat is a decompression bomb, wav because it is a full container walker with a single cap.

Missing test files. der-read.ts, c2pa-extract.ts and c2pa-containers.ts have no same-name test. The latter two are covered in aggregate by the C2PA suites, which is not the same as having their own failure cases pinned. der-read.ts has neither its own test nor a target.

Named but unbounded. pdf-map.ts caps array nesting and CMap ranges but not the total node count it emits. pdf-artwork.ts compensates with MAX_NODES = 4000 for its own consumption, and pdf-svg.ts caps per-node path length, so no current consumer is unbounded. A new consumer of interpretPdfPage would be, and would have to bring its own cap.

Adding a new parser

Four requirements. All four, before the module lands.

  1. *Declare named MAX_ constants in one block, near the top, before the walkers.** One constant per thing a hostile input can declare: byte length, element or record count, nesting depth, coordinate magnitude, text length. Each gets a comment with its unit and the largest legitimate value you measured. Never inline a bare number into a loop bound. If a bound is genuinely structural rather than numeric, say so in the header the way svg-path.ts and der-read.ts do, and explain why.
  1. Bounds-check before reading, not after. The invariant der-read.ts states is the one to internalise: check a multi-byte length head before consuming its bytes, because an out-of-range Uint8Array read yields undefined, undefined NaN-poisons the arithmetic, and a NaN comparison makes the guard that follows silently false. That is how a truncated TLV gets accepted.
  1. Pick a contract, state it in the header, and honour it everywhere. There are three legitimate contracts in this codebase and the choice follows from what the caller does with the answer.
  1. Add a same-name test file and register a fuzz target. tests/<module>.test.ts covers the truncation, garbage and cap-tripping cases by hand. Then add a FuzzTarget to tests/fuzz/targets.ts with a small seed corpus of valid inputs, built where possible from the engine's own writer so the seeds are real container layouts, an invoke() that does not swallow errors (the runner classifies a thrown validation error as the desired behaviour, and a hang or allocation blow-up as a finding), and an entry in ALL_TARGETS. Note the entry-point comment convention at the top of that file, which records exactly which function each target hits. Any input a discovery run finds goes into tests/fuzz/regressions/ as a .bin, named for the module and the failure, and tests/fuzz-regression.test.ts will replay it on every npm test from then on.