IImportTable Type
Represents an interface for accessing the import table of a binary file, i.e., the linkage table (PLT/GOT, IAT, etc.) that resolves dynamically linked symbols.
Instance members
| Instance member |
Description
|
Full Usage:
this.Imports
Returns: BinImport[]
An array of imports, e.g., PLT entries for ELF files.
Modifiers: abstract |
Returns an array of all the imported symbols from the binary.
|
Full Usage:
this.IsInImportTable
Parameters:
Addr
Returns: bool
True if the address is an import table address, false otherwise.
Modifiers: abstract |
Returns whether the given address falls within the import table.
|
B2R2