Parses a PE (Portable Executable) image and returns its structured representation.
Produces the following sections:
PE\0\0
Supports both PE32 (magic 0x10B) and PE32+ / 64-bit (magic 0x20B) formats. Section table parsing is capped at 96 entries as a safety limit.
magic 0x10B
magic 0x20B
Raw PE image bytes.
A ParsedStructure with format set to 'PE' and entryPoint set to the absolute virtual address of the image entry point, or undefined if the Optional Header is absent or truncated.
format
'PE'
entryPoint
undefined
Parses a PE (Portable Executable) image and returns its structured representation.
Produces the following sections:
PE\0\0marker.Supports both PE32 (
magic 0x10B) and PE32+ / 64-bit (magic 0x20B) formats. Section table parsing is capped at 96 entries as a safety limit.