ExpandedFile Table

From truxwiki.com
Revision as of 07:01, 26 May 2020 by Sam (talk | contribs) (Created page with "The <code>ExpandedFile</code> records which exploitation methods were performed on a file. Truxton tracks which version of ETLs were used to expand/exploit a file. This allows...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

The ExpandedFile records which exploitation methods were performed on a file. Truxton tracks which version of ETLs were used to expand/exploit a file. This allows you to make intelligent decisions about reprocessing files with a newer version of an existing ETL.

CREATE TABLE "ExpandedFile" (
    "FileID" uuid NOT NULL,
    "HashID" uuid NOT NULL,
    "Expander" bigint DEFAULT 0 NOT NULL,
    "Version" bigint DEFAULT 0 NOT NULL
);