MCPcopy Create free account
hub / github.com/TideSec/GoBypassAV / IMAGE_FILE_HEADER

Struct IMAGE_FILE_HEADER

Go_Windows_API/02-CreateProcessWithPipe/main.go:290–298  ·  view source on GitHub ↗

Read the child process's PE file header * typedef struct _IMAGE_FILE_HEADER { USHORT Machine; USHORT NumberOfSections; ULONG TimeDateStamp; ULONG PointerToSymbolTable; ULONG NumberOfSymbols; USHORT SizeOfOptionalHeader; USHORT Characteristics; } IMAGE_FILE_HEADER,

Source from the content-addressed store, hash-verified

288 */
289
290 type IMAGE_FILE_HEADER struct {
291 Machine uint16
292 NumberOfSections uint16
293 TimeDateStamp uint32
294 PointerToSymbolTable uint32
295 NumberOfSymbols uint32
296 SizeOfOptionalHeader uint16
297 Characteristics uint16
298 }
299
300
301 var peHeader IMAGE_FILE_HEADER

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected