[培训]内核驱动高级班,冲击BAT一流互联网大厂工作,每周日13:00-18:00直播授课
template "ELF file format" description "ELF file format" applies_to file fixed_start 0 requires 0x00 "7F 45 4C 46" begin section "ELF Header" read-only char[16] "e_ident" read-only hexadecimal uint16 "e_type" read-only hexadecimal uint16 "e_machine" read-only hexadecimal uint32 "e_version" read-only hexadecimal uint32 "e_entry" read-only hexadecimal uint32 "e_phoff" hexadecimal uint32 "e_shoff" read-only hexadecimal uint32 "e_flags" read-only hexadecimal uint16 "e_ehsize" read-only hexadecimal uint16 "e_phentsize" read-only hexadecimal uint16 "e_phnum" read-only hexadecimal uint16 "e_shentsize" uint16 "e_shnum" uint16 "e_shstrndx" goto "e_phoff" { section "Program header #~" hexadecimal uint32 "p_type" hexadecimal uint32 "p_offset" hexadecimal uint32 "p_vaddr" hexadecimal uint32 "p_paddr" hexadecimal uint32 "p_filesz" hexadecimal uint32 "p_memsz" hexadecimal uint32 "p_flags" hexadecimal uint32 "p_align" }[e_phnum] end