Add PE COFF string table

This commit is contained in:
Matt Nadareski
2022-11-05 15:40:48 -07:00
parent f4d1ce5388
commit b5caf6dacf
2 changed files with 31 additions and 1 deletions

View File

@@ -41,6 +41,11 @@ namespace BurnOutSharp.Models.PortableExecutable
/// </summary>
public COFFSymbolTableEntry[] COFFSymbolTable { get; set; }
// TODO: Left off at "COFF String Table"
/// <summary>
/// COFF string table
/// </summary>
public COFFStringTable COFFStringTable { get; set; }
// TODO: Left off at "The Attribute Certificate Table (Image Only)"
}
}