Header menu logo B2R2

IBinOrganization Type

Organization of a binary file, such as sections, segments, and functions.

Instance members

Instance member Description

this.GetFunctionAddresses

Full Usage: this.GetFunctionAddresses

Parameters:
    arg0 : bool

Returns: Addr[] An array of function addresses.
Modifiers: abstract

Returns an array of local function addresses (excluding external functions) from a given BinFile. If the argument is true, then this funciton utilizes exception information of the binary to infer function entries. Note that the inference process is not necessarily precise, so this is really just an experimental feature, and will be removed in the future.

arg0 : bool
Returns: Addr[]

An array of function addresses.

this.GetFunctionAddresses

Full Usage: this.GetFunctionAddresses

Returns: Addr[] An array of function addresses.
Modifiers: abstract

Returns an array of local function addresses (excluding external functions) from a given BinFile. This function only considers addresses that are certain.

Returns: Addr[]

An array of function addresses.

this.GetSections

Full Usage: this.GetSections

Parameters:
    name : string - The name of the section.

Returns: Section[] An array of sections that have the specified name. This function returns an empty array if there is no section of the given name.
Modifiers: abstract

Return a section that has the specified name.

name : string

The name of the section.

Returns: Section[]

An array of sections that have the specified name. This function returns an empty array if there is no section of the given name.

this.GetSections

Full Usage: this.GetSections

Parameters:
    addr : Addr - The address that belongs to a section.

Returns: Section[] An array of sections that contain the given address. This function returns an empty array if there is no section that contains the given address.
Modifiers: abstract

Return a section that contains the given address.

addr : Addr

The address that belongs to a section.

Returns: Section[]

An array of sections that contain the given address. This function returns an empty array if there is no section that contains the given address.

this.GetSections

Full Usage: this.GetSections

Returns: Section[] An array of sections.
Modifiers: abstract

Return a list of all the sections from the binary.

Returns: Section[]

An array of sections.

this.GetSegments

Full Usage: this.GetSegments

Parameters:
Returns: Segment[] An array of segments.
Modifiers: abstract

For a given permission, return a list of segments that satisfy the permission. For a given "READ-only" permission, this function may return a segment whose permission is "READABLE and WRITABLE", as an instance.

arg0 : Permission
Returns: Segment[]

An array of segments.

this.GetSegments

Full Usage: this.GetSegments

Parameters:
    addr : Addr - The address that belongs to segments.

Returns: Segment[] An array of segments.
Modifiers: abstract

Return a list of the segments from the binary, which contain the given address.

addr : Addr

The address that belongs to segments.

Returns: Segment[]

An array of segments.

this.GetSegments

Full Usage: this.GetSegments

Parameters:
    ?isLoadable : bool

Returns: Segment[] An array of segments.
Modifiers: abstract

Return a list of segments from the binary. If the isLoadable parameter is true, it will only return a list of "loadable" segments. Otherwise, it will return all possible segments. By default, this function returns only loadable segments, e.g., PT_LOAD segment of ELF.

?isLoadable : bool
Returns: Segment[]

An array of segments.

this.GetTextSection

Full Usage: this.GetTextSection

Returns: Section An array of text sections.
Modifiers: abstract

Return a text section from the binary. If there's no text section, this function raises an exception.

Returns: Section

An array of text sections.

Type something to start searching.