Header menu logo B2R2

IBinSymbolTable Type

Symbol table of a binary file.

Instance members

Instance member Description

this.AddSymbol

Full Usage: this.AddSymbol

Parameters:
Modifiers: abstract

Add a symbol for the address. This function is useful when we can obtain extra symbol information from outside of B2R2.

arg0 : Addr
arg1 : Symbol

this.GetDynamicSymbols

Full Usage: this.GetDynamicSymbols

Parameters:
    ?excludeImported : bool

Returns: Symbol[]
Modifiers: abstract

Return a list of all the dynamic symbols from the binary. Dynamic symbols are the ones that are required to run the binary. The "excludeImported" argument indicates whether to exclude external symbols that are imported from other files. However, even if "excludeImported" is true, returned symbols may include a forwarding entry that redirects to another function in an external file (cf. SymbolKind.ForwardType). When "excludeImported" argument is not given, this function will simply return all possible dynamic symbols.

?excludeImported : bool
Returns: Symbol[]

this.GetFunctionSymbols

Full Usage: this.GetFunctionSymbols

Returns: Symbol[]
Modifiers: abstract

Returns a sequence of local function symbols (excluding external functions) from a given binary.

Returns: Symbol[]

this.GetStaticSymbols

Full Usage: this.GetStaticSymbols

Returns: Symbol[]
Modifiers: abstract

Return a list of all the static symbols from the binary. Static symbols can be removed when we strip the binary. Unlike dynamic symbols, static symbols are not required to run the binary, thus they can be safely removed before releasing it.

Returns: Symbol[]

this.GetSymbols

Full Usage: this.GetSymbols

Returns: Symbol[]
Modifiers: abstract

Return an array of all the symbols from the binary.

Returns: Symbol[]

Type something to start searching.