From 427dec56e438288e471939ce45d078e048d64145 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Sat, 5 Nov 2022 22:46:50 -0700 Subject: [PATCH] Add COFF archive note --- BurnOutSharp.Models/PortableExecutable/Executable.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/BurnOutSharp.Models/PortableExecutable/Executable.cs b/BurnOutSharp.Models/PortableExecutable/Executable.cs index da83ee1a..be6d31a5 100644 --- a/BurnOutSharp.Models/PortableExecutable/Executable.cs +++ b/BurnOutSharp.Models/PortableExecutable/Executable.cs @@ -82,5 +82,9 @@ namespace BurnOutSharp.Models.PortableExecutable // - The .pdata Section [Multiple formats per entry] // - TLS Callback Functions // - The .rsrc Section + // - The .cormeta Section (Object Only) + // - The .sxdata Section + + // TODO: Determine if "Archive (Library) File Format" is worth modelling } }