Difference between revisions of "ExpandedFile Table"
Jump to navigation
Jump to search
(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...") |
|||
| Line 1: | Line 1: | ||
| − | The <code>ExpandedFile</code> | + | The <code>[ExpandedFile]</code> table is used to record which exploitation methods were performed on a file. |
Truxton tracks which version of ETLs were used to expand/exploit 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. | This allows you to make intelligent decisions about reprocessing files with a newer version of an existing ETL. | ||
Revision as of 05:37, 29 October 2020
The [ExpandedFile] table is used to record 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
);