Add PE attribute certificate table

This commit is contained in:
Matt Nadareski
2022-11-05 21:02:30 -07:00
parent b5caf6dacf
commit 54082c1fce
2 changed files with 69 additions and 1 deletions

View File

@@ -46,6 +46,11 @@ namespace BurnOutSharp.Models.PortableExecutable
/// </summary>
public COFFStringTable COFFStringTable { get; set; }
// TODO: Left off at "The Attribute Certificate Table (Image Only)"
/// <summary>
/// Attribute certificate table
/// </summary>
public AttributeCertificateTableEntry[] AttributeCertificateTable { get; set; }
// TODO: Left off at "Delay-Load Import Tables (Image Only)"
}
}