Section Module
Provides constants for ELF section names.
Functions and values
| Function or value |
Description
|
Full Usage:
Section.BSS
Returns: string
|
Represents the name of the section that contains staticly allocated, but not initialized data: ".bss".
|
Full Usage:
Section.Debug
Returns: string
|
Represents the prefix of regular DWARF debug sections: ".debug".
|
Full Usage:
Section.DebugAbbrev
Returns: string
|
Represents the name of the section that contains debugging information about abbreviations: ".debug_abbrev".
|
Full Usage:
Section.DebugInfo
Returns: string
|
Represents the name of the section that contains debugging information: ".debug_info".
|
Full Usage:
Section.DebugLineStr
Returns: string
|
Represents the name of the section that contains DWARF line strings: ".debug_line_str".
|
Full Usage:
Section.DebugStr
Returns: string
|
Represents the name of the section that contains DWARF debug strings: ".debug_str".
|
Full Usage:
Section.DebugTypes
Returns: string
|
Represents the name of the section that contains debugging information about types: ".debug_types".
|
Full Usage:
Section.Fini
Returns: string
|
Represents the name of the section holding executable instructions that contribute to the process termination code: ".fini".
|
Full Usage:
Section.FiniArray
Returns: string
|
Represents the name of the section that contains function addresses that are executed when a program exits: ".fini_array".
|
Full Usage:
Section.GOT
Returns: string
|
Represents the name of the section that contains Global Offset Table (GOT): ".got".
|
Full Usage:
Section.Init
Returns: string
|
Represents the name of the section holding executable instructions that contribute to the process initialization code: ".init".
|
Full Usage:
Section.InitArray
Returns: string
|
Represents the name of the section that contains function addresses that are executed when a program starts: ".init_array".
|
Full Usage:
Section.PLT
Returns: string
|
Represents the name of the section that contains Procedure Linkage Table (PLT): ".plt".
|
Full Usage:
Section.ROData
Returns: string
|
Represents the name of the section that contains initialized read-only data: ".rodata".
|
Full Usage:
Section.RelPLT
Returns: string
|
Represents the name of the section that contains REL type relocation entries: ".rel.plt".
|
Full Usage:
Section.RelaPLT
Returns: string
|
Represents the name of the section that contains RELA type relocation entries: ".rela.plt".
|
Full Usage:
Section.Text
Returns: string
|
Represents the name of the section that contains executable code: ".text".
|
Full Usage:
Section.ZDebug
Returns: string
|
Represents the prefix of compressed DWARF debug sections: ".zdebug".
|
B2R2