Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ArchitecturesByElfMachine = map[elf.Machine]Architecture{ elf.EM_X86_64: X86, elf.EM_ARM: ARM, }
View Source
var ArchitecturesByName = map[string]Architecture{ "x86": X86, "arm": ARM, }
View Source
var ArchitecturesByPeMachine = map[uint16]Architecture{ pe.IMAGE_FILE_MACHINE_AMD64: X86, pe.IMAGE_FILE_MACHINE_ARM: ARM, pe.IMAGE_FILE_MACHINE_I386: X86, }
View Source
var GadgetDecoderFuncs = map[Architecture]types.GadgetDecoderFunc{ X86: amd64.GadgetDecoder, ARM: arm.GadgetDecoder, }
View Source
var GadgetSpecLists = map[Architecture]GadgetSpecList{ X86: amd64.GadgetSpecs, ARM: arm.GadgetSpecs, }
Functions ¶
This section is empty.
Types ¶
type GadgetSpecList ¶
type GadgetSpecList []*types.GadgetSpec
Click to show internal directories.
Click to hide internal directories.