binaryninja.binaryview.BinaryView¶
-
class
BinaryView
(file_metadata=None, parent_view=None, handle=None)[source]¶ class BinaryView
implements a view on binary data, and presents a queryable interface of a binary file. One key job of BinaryView is file format parsing which allows Binary Ninja to read, write, insert, remove portions of the file given a virtual address. For the purposes of this documentation we define a virtual address as the memory address that the various pieces of the physical file will be loaded at.A binary file does not have to have just one BinaryView, thus much of the interface to manipulate disassembly exists within or is accessed through a BinaryView. All files are guaranteed to have at least the
Raw
BinaryView. TheRaw
BinaryView is simply a hex editor, but is helpful for manipulating binary files via their absolute addresses.BinaryViews are plugins and thus registered with Binary Ninja at startup, and thus should never be instantiated directly as this is already done. The list of available BinaryViews can be seen in the BinaryViewType class which provides an iterator and map of the various installed BinaryViews:
>>> list(BinaryViewType) [<view type: 'Raw'>, <view type: 'ELF'>, <view type: 'Mach-O'>, <view type: 'PE'>] >>> BinaryViewType['ELF'] <view type: 'ELF'>
To open a file with a given BinaryView the following code can be used:
>>> bv = BinaryViewType.get_view_of_file("/bin/ls") >>> bv <BinaryView: '/bin/ls', start 0x100000000, len 0xa000>
By convention in the rest of this document we will use bv to mean an open BinaryView of an executable file. When a BinaryView is open on an executable view, analysis does not automatically run, this can be done by running the
update_analysis_and_wait
method which disassembles the executable and returns when all disassembly is finished:>>> bv.update_analysis_and_wait() >>>
Since BinaryNinja’s analysis is multi-threaded (depending on version) this can also be done in the background by using the
update_analysis
method instead.By standard python convention methods which start with ‘_’ should be considered private and should not be called externally. Additionally, methods which begin with
perform_
should not be called either and are used explicitly for subclassing the BinaryView.Note
An important note on the
*_user_*()
methods. Binary Ninja makes a distinction between edits performed by the user and actions performed by auto analysis. Auto analysis actions that can quickly be recalculated are not saved to the database. Auto analysis actions that take a long time and all user edits are stored in the database (e.g.remove_user_function
rather thanremove_function
). Thus use_user_
methods if saving to the database is desired.-
__init__
(file_metadata=None, parent_view=None, handle=None)[source]¶ Initialize self. See help(type(self)) for accurate signature.
Methods
__init__
([file_metadata, parent_view, handle])Initialize self.
abort_analysis
will abort the currently running analysis.add_analysis_completion_event
(callback)add_analysis_completion_event
sets up a call back function to be called when analysis has been completed.add_analysis_option
(name)add_analysis_option
adds an analysis option.add_auto_data_tag
(addr, tag)add_auto_data_tag
adds an already-created Tag object at a data address.add_auto_section
(name, start, length[, …])add_auto_segment
(start, length, data_offset, …)add_entry_point
(addr[, plat])add_entry_point
adds an virtual address to start analysis from for a given plat.add_function
(addr[, plat])add_function
add a new function of the givenplat
at the virtual addressaddr
add_type_library
(lib)add_type_library
make the contents of a type library available for type/import resolutionadd_user_data_ref
(from_addr, to_addr)add_user_data_ref
adds a user-specified data cross-reference (xref) from the addressfrom_addr
to the addressto_addr
.add_user_data_tag
(addr, tag)add_user_data_tag
adds an already-created Tag object at a data address.add_user_section
(name, start, length[, …])add_user_section
creates a user-defined section that can help inform analysis by clarifying what types of data exist in what ranges.add_user_segment
(start, length, data_offset, …)add_user_segment
creates a user-defined segment that specifies how data from the raw file is mapped into a virtual address space.always_branch
(addr[, arch])always_branch
convert the instruction of architecturearch
at the virtual addressaddr
to an unconditional branch.begin_undo_actions
start recording actions taken so the can be undone at some point.can_assemble
([arch])can_assemble
queries the architecture plugin to determine if the architecture can assemble instructions.commit_undo_actions
commit the actions taken since the last commit to the undo database.convert_to_nop
(addr[, arch])convert_to_nop
converts the instruction at virtual addressaddr
to a nop of the provided architecture.create_auto_data_tag
(addr, type, data[, unique])create_auto_data_tag
creates and adds a Tag object at a data address.create_auto_tag
(type, data)create_database
(filename[, progress_func, …])create_database
writes the current database (.bndb) out to the specified file.create_structure_member_from_access
(name, offset)create_tag
(type, data[, user])create_tag
creates a new Tag object but does not add it anywhere.create_tag_type
(name, icon)create_tag_type
creates a new Tag Type and adds it to the viewcreate_user_data_tag
(addr, type, data[, unique])create_user_data_tag
creates and adds a Tag object at a data address.create_user_function
(addr[, plat])create_user_function
add a new user function of the givenplat
at the virtual addressaddr
create_user_tag
(type, data)define_auto_symbol
(sym)define_auto_symbol
adds a symbol to the internal list of automatically discovered Symbol objects in a given namespace.define_auto_symbol_and_var_or_function
define_data_var
(addr, var_type)define_data_var
defines a non-user data variablevar_type
at the virtual addressaddr
.define_imported_function
(import_addr_sym, func)define_imported_function
defines an imported Functionfunc
with a ImportedFunctionSymbol type.define_type
(type_id, default_name, type_obj)define_type
registers aType
type_obj
of the givenname
in the global list of types for the currentBinaryView
.define_user_data_var
(addr, var_type)define_user_data_var
defines a user data variablevar_type
at the virtual addressaddr
.define_user_symbol
(sym)define_user_symbol
adds a symbol to the internal list of user added Symbol objects.define_user_type
(name, type_obj)define_user_type
registers aType
type_obj
of the givenname
in the global list of user types for the currentBinaryView
.eval
(expression[, here])Evaluates an string expression to an integer value.
export_object_to_library
(lib, name, type_obj)export_object_to_library
recursively exportstype_obj
intolib
as an object with namename
export_type_to_library
(lib, name, type_obj)export_type_to_library
recursively exportstype_obj
intolib
as a type with namename
External namespace for the current BinaryView
find_all_constant
(start, end, constant[, …])find_all_constant
searches for the integer constantconstant
starting at the virtual addressstart
until the virtual addressend
.find_all_data
(start, end, data[, flags, …])find_all_data
searches for the bytesdata
starting at the virtual addressstart
until the virtual addressend
.find_all_text
(start, end, text[, settings, …])find_all_text
searches for stringtext
occurring in the linear view output starting at the virtual addressstart
until the virtual addressend
.find_next_constant
(start, constant[, …])find_next_constant
searches for integer constantconstant
occurring in the linear view output starting at the virtual addressstart
until the end of the BinaryView.find_next_data
(start, data[, flags])find_next_data
searches for the bytesdata
starting at the virtual addressstart
until the end of the BinaryView.find_next_text
(start, text[, settings, …])find_next_text
searches for stringtext
occurring in the linear view output starting at the virtual addressstart
until the end of the BinaryView.get_address_for_data_offset
(offset)get_address_for_data_offset
returns the virtual address that maps to the specific file offsetget_address_input
(prompt, title[, …])get_all_fields_referenced
returns a list of offsets in the QualifiedName specified by name, which are referenced by code.get_all_sizes_referenced
(name)get_all_sizes_referenced
returns a map from field offset to a list of sizes of the accesses to it.get_all_types_referenced
(name)get_all_types_referenced
returns a map from field offset to a related to the type field access.get_ascii_string_at
(addr[, min_length, …])get_ascii_string_at
returns an ascii string found ataddr
.get_basic_blocks_at
(addr)get_basic_blocks_at
get a list ofBasicBlock
objects which exist at the provided virtual address.get_basic_blocks_starting_at
get a list ofBasicBlock
objects which start at the provided virtual address.get_callees
(addr[, func, arch])get_callees
returns a list of virtual addresses called by the call site in the functionfunc
, of the architecturearch
, and at the addressaddr
.get_callers
(addr)get_callers
returns a list of ReferenceSource objects (xrefs or cross-references) that call the provided virtual address.get_code_refs
(addr[, length])get_code_refs
returns a list of ReferenceSource objects (xrefs or cross-references) that point to the provided virtual address.get_code_refs_for_type
(name)get_code_refs_for_type
returns a list of ReferenceSource objects (xrefs or cross-references) that reference the provided QualifiedName.get_code_refs_for_type_field
(name, offset)get_code_refs_for_type
returns a list of TypeFieldReference objects (xrefs or cross-references) that reference the provided type field.get_code_refs_for_type_fields_from
(addr[, …])get_code_refs_for_type_fields_from
returns a list of type fields referenced by code in the functionfunc
, of the architecturearch
, and at the addressaddr
.get_code_refs_for_type_from
(addr[, func, …])get_code_refs_for_type_from
returns a list of types referenced by code in the functionfunc
, of the architecturearch
, and at the addressaddr
.get_code_refs_from
(addr[, func, arch, length])get_code_refs_from
returns a list of virtual addresses referenced by code in the functionfunc
, of the architecturearch
, and at the addressaddr
.get_comment_at
(addr)get_comment_at
returns the address-based comment attached to the given address in this BinaryView Note that address-based comments are different from function-level comments which are specific to each function.get_data_refs
(addr[, length])get_data_refs
returns a list of virtual addresses of data which referencesaddr
.get_data_refs_for_type
(name)get_data_refs_for_type
returns a list of virtual addresses of data which references the typename
.get_data_refs_for_type_field
(name, offset)get_data_refs_for_type_field
returns a list of virtual addresses of data which references the typename
.get_data_refs_from
(addr[, length])get_data_refs_from
returns a list of virtual addresses referenced by the addressaddr
.get_data_tags_at
(addr)get_data_tags_at
gets a list of all Tags for a data address.get_data_tags_in_range
(address_range)get_data_tags_in_range
gets a list of all data Tags in a given range.get_data_var_at
(addr)get_data_var_at
returns the data type at a given virtual address.get_disassembly
(addr[, arch])get_disassembly
simple helper function for printing disassembly of a given addressget_entropy
(addr, length[, block_size])get_entropy
returns the shannon entropy given the startaddr
,length
in bytes, and optionally inblock_size
chunks.get_function_at
(addr[, plat])get_function_at
gets a Function object for the function that starts at virtual addressaddr
:get_functions_at
(addr)get_functions_at
get a list of binaryninja.Function objects (one for each valid platform) that start at the given virtual address.get_functions_by_name
(name[, plat, …])get_functions_by_name
returns a list of Function objectsget_functions_containing
(addr[, plat])get_functions_containing
returns a list of functions which contain the given address.get_instruction_length
(addr[, arch])get_instruction_length
returns the number of bytes in the instruction of Architecturearch
at the virtual addressaddr
get_linear_disassembly
([settings])get_linear_disassembly
gets an iterator for all lines in the linear disassembly of the view for the given disassembly settings.get_linear_disassembly_position_at
(addr[, …])get_linear_disassembly_position_at
instantiates aLinearViewCursor
object for use inget_previous_linear_disassembly_lines
orget_next_linear_disassembly_lines
.get_load_settings
(type_name)get_load_settings
retrieve aSettings
object which defines the load settings for the givenBinaryViewType
type_name
get_load_settings_type_names
retrieve a listBinaryViewType
names for which load settings exist in thisBinaryView
contextget_modification
(addr[, length])get_modification
returns the modified bytes of up tolength
bytes from virtual addressaddr
, or iflength
is None returns the ModificationStatus.get_next_basic_block_start_after
returns the virtual address of the BasicBlock that occurs after the virtualget_next_data_after
(addr)get_next_data_after
retrieves the virtual address of the next non-code byte.get_next_data_var_after
(addr)get_next_data_var_after
retrieves the nextDataVariable
, or None.get_next_data_var_start_after
retrieves the next virtual address of the nextDataVariable
get_next_disassembly
([arch])get_next_disassembly
simple helper function for printing disassembly of the next instruction.get_next_function_start_after
returns the virtual address of the Function that occurs after the virtual addressaddr
get_next_linear_disassembly_lines
retrieves a list ofLinearDisassemblyLine
objects for the next disassembly lines, and updates the LinearViewCursor passed in.get_previous_basic_block_end_before
get_previous_basic_block_start_before
returns the virtual address of the BasicBlock that occurs prior to the provided virtual addressget_previous_data_before
(addr)get_previous_data_before
get_previous_data_var_before
retrieves the previousDataVariable
, or None.get_previous_data_var_start_before
get_previous_function_start_before
returns the virtual address of the Function that occurs prior to the virtual address providedget_previous_linear_disassembly_lines
retrieves a list ofLinearDisassemblyLine
objects for the previous disassembly lines, and updates the LinearViewCursor passed in.get_recent_function_at
(addr)get_section_by_name
(name)get_sections_at
(addr)get_segment_at
(addr)get_sizes_referenced
(name, offset)get_sizes_referenced
returns a list of sizes of the accesses to it.get_string_at
(addr[, partial])get_string_at
returns the string that falls on given virtual address.get_strings
([start, length])get_strings
returns a list of strings defined in the binary in the optional virtual address range:start-(start+length)
get_symbol_at
(addr[, namespace])get_symbol_at
returns the Symbol at the provided virtual address.get_symbol_by_raw_name
(name[, namespace])get_symbol_by_raw_name
retrieves a Symbol object for the given a raw (mangled) name.get_symbols
([start, length, namespace])get_symbols
retrieves the list of all Symbol objects in the optionally provided range.get_symbols_by_name
(name[, namespace, …])get_symbols_by_name
retrieves a list of Symbol objects for the given symbol name and ordered filterget_symbols_of_type
(sym_type[, start, …])get_symbols_of_type
retrieves a list of all Symbol objects of the provided symbol type in the optionallyget_type_by_id
(id)get_type_by_id
returns the defined type whose unique identifier corresponds with the providedid
get_type_by_name
(name)get_type_by_name
returns the defined type whose name corresponds with the providedname
get_type_id
(name)get_type_id
returns the unique identifier of the defined type whose name corresponds with the providedname
get_type_library
(name)get_type_library
returns the TypeLibraryget_type_name_by_id
returns the defined type name whose unique identifier corresponds with the providedid
get_type_refs_for_type
(name)get_type_refs_for_type
returns a list of TypeReferenceSource objects (xrefs or cross-references) that reference the provided QualifiedName.get_type_refs_for_type_field
(name, offset)get_type_refs_for_type
returns a list of TypeReferenceSource objects (xrefs or cross-references) that reference the provided type field.get_types_referenced
(name, offset)get_types_referenced
returns a list of types related to the type field access.get_unique_section_names
(name_list)get_view_of_type
(name)get_view_of_type
returns the BinaryView associated with the provided name if it exists.has_initial_analysis
check for the presence of an initial analysis in this BinaryView.import_library_object
(name[, lib])import_library_object
recursively imports an object from the specified type library, or, if no library was explicitly provided, the first type library associated with the currentBinaryView
that provides the name requested.import_library_type
(name[, lib])import_library_type
recursively imports a type from the specified type library, or, if no library was explicitly provided, the first type library associated with the currentBinaryView
that provides the name requested.init
()insert
(addr, data)insert
inserts the bytes indata
to the virtual addressaddr
.Internal namespace for the current BinaryView
invert_branch
(addr[, arch])invert_branch
convert the branch instruction of architecturearch
at the virtual addressaddr
to the inverse branch.is_always_branch_patch_available
(addr[, arch])is_always_branch_patch_available
queries the architecture plugin to determine if the instruction ataddr
can be made to always branch.is_invert_branch_patch_available
(addr[, arch])is_invert_branch_patch_available
queries the architecture plugin to determine if the instruction ataddr
is a branch that can be inverted.is_never_branch_patch_available
(addr[, arch])is_never_branch_patch_available
queries the architecture plugin to determine if the instruction at the instruction ataddr
can be made to never branch.is_offset_code_semantics
(addr)is_offset_code_semantics
checks if an virtual addressaddr
is semantically valid for code.is_offset_executable
(addr)is_offset_executable
checks if an virtual addressaddr
is valid for executing.is_offset_extern_semantics
checks if an virtual addressaddr
is semantically valid for external references.is_offset_readable
(addr)is_offset_readable
checks if an virtual addressaddr
is valid for reading.is_offset_writable
(addr)is_offset_writable
checks if an virtual addressaddr
is valid for writing.is_offset_writable_semantics
checks if an virtual addressaddr
is semantically writable.is_skip_and_return_value_patch_available
queries the architecture plugin to determine if the instruction ataddr
is similar to an x86 “call” instruction which can be made to return a value.is_skip_and_return_zero_patch_available
queries the architecture plugin to determine if the instruction ataddr
is similar to an x86 “call” instruction which can be made to return zero.is_type_auto_defined
(name)is_type_auto_defined
queries the user type list of name.is_valid_offset
(addr)is_valid_offset
checks if an virtual addressaddr
is valid .navigate
(view, offset)navigate
navigates the UI to the specified virtual addressnever_branch
(addr[, arch])never_branch
convert the branch instruction of architecturearch
at the virtual addressaddr
to a fall through.new
([data, file_metadata])notify_data_inserted
(offset, length)notify_data_removed
(offset, length)notify_data_written
(offset, length)open
(src[, file_metadata])parse_expression
(expression[, here])Evaluates a string expression to an integer value.
parse_possiblevalueset
(value, state[, here])Evaluates a string representation of a PossibleValueSet into an instance of the
PossibleValueSet
value.parse_type_string
(text)parse_type_string
parses string containing C into a single typeType
.parse_types_from_string
(text)parse_types_from_string
parses string containing C into aTypeParserResult
objects.perform_get_default_endianness
implements a check which returns true if the BinaryView is executable.perform_get_entry_point
implements a query for the initial entry point for code execution.perform_get_length
implements a query for the size of the virtual address range used by the BinaryView.perform_get_modification
(addr)perform_get_modification
implements query to the whether the virtual addressaddr
is modified.perform_get_next_valid_offset
implements a query for the next valid readable, writable, or executable virtual memory address.perform_get_start
implements a query for the first readable, writable, or executable virtual address in the BinaryView.perform_insert
(addr, data)perform_insert
implements a mapping between a virtual address and an absolute file offset, inserting the bytesdata
to rebased addressaddr
.perform_is_executable
implements a check which returns true if the BinaryView is executable.perform_is_offset_executable
implements a check if a virtual addressaddr
is executable.perform_is_offset_readable
(offset)perform_is_offset_readable
implements a check if an virtual address is readable.perform_is_offset_writable
implements a check if a virtual addressaddr
is writable.perform_is_relocatable
implements a check which returns true if the BinaryView is relocatable.perform_is_valid_offset
(addr)perform_is_valid_offset
implements a check if an virtual addressaddr
is valid.perform_read
(addr, length)perform_read
implements a mapping between a virtual address and an absolute file offset, readinglength
bytes from the rebased addressaddr
.perform_remove
(addr, length)perform_remove
implements a mapping between a virtual address and an absolute file offset, removinglength
bytes from the rebased addressaddr
.perform_save
(accessor)perform_write
(addr, data)perform_write
implements a mapping between a virtual address and an absolute file offset, writing the bytesdata
to rebased addressaddr
.query_metadata
(key)query_metadata retrieves a metadata associated with the given key stored in the current BinaryView.
read
(addr, length)read
returns the data reads at mostlength
bytes from virtual addressaddr
.reanalyze
causes all functions to be reanalyzed.rebase
(address[, force, progress_func])rebase
rebase the existingBinaryView
into a newBinaryView
at the specified virtual addressredo
()redo
redo the last committed action in the undo database.register
()register_notification
(notify)register_notification provides a mechanism for receiving callbacks for various analysis events.
register_platform_types
(platform)register_platform_types
ensures that the platform-specific types for aPlatform
are available for the currentBinaryView
.relocation_ranges_at
(addr)List of relocation range tuples for a given address
remove
(addr, length)remove
removes at mostlength
bytes from virtual addressaddr
.remove_auto_data_tag
(addr, tag)remove_auto_data_tag
removes a Tag object at a data address.remove_auto_section
(name)remove_auto_segment
(start, length)remove_auto_segment
removes an automatically generated segment from the current segment mapping.remove_function
(func)remove_function
removes the functionfunc
from the list of functionsremove_metadata
(key)remove_metadata removes the metadata associated with key from the current BinaryView.
remove_tag_type
(tag_type)remove_tag_type
removes a new Tag Type and all tags that use itremove_user_data_ref
(from_addr, to_addr)remove_user_data_ref
removes a user-specified data cross-reference (xref) from the addressfrom_addr
to the addressto_addr
.remove_user_data_tag
(addr, tag)remove_user_data_tag
removes a Tag object at a data address.remove_user_function
(func)remove_user_function
removes the functionfunc
from the list of functions as a user action.remove_user_section
(name)remove_user_segment
(start, length)rename_type
(old_name, new_name)rename_type
renames a type in the global list of types for the currentBinaryView
save
(dest)save
saves the original binary file to the provided destinationdest
along with any modifications.save_auto_snapshot
([progress_func, settings])save_auto_snapshot
saves the current database to the already created file.set_analysis_hold
(enable)set_analysis_hold
control the analysis hold for this BinaryView.set_comment_at
(addr, comment)set_comment_at
sets a comment for the BinaryView at the address specifiedset_default_session_data
(name, value)set_default_session_data
saves a variable to the BinaryView.set_load_settings
(type_name, settings)set_load_settings
set asettings.Settings
object which defines the load settings for the givenBinaryViewType
type_name
show_graph_report
(title, graph)show_graph_report
displays aFlowGraph
object graph in a new tab withtitle
.show_html_report
(title, contents[, plaintext])show_html_report
displays the HTML contents in UI applications and plaintext in command-line applications.show_markdown_report
(title, contents[, …])show_markdown_report
displays the markdown contents in UI applications and plaintext in command-line applications.show_plain_text_report
(title, contents)skip_and_return_value
(addr, value[, arch])skip_and_return_value
convert thecall
instruction of architecturearch
at the virtual addressaddr
to the equivalent of returning a value.store_metadata
(key, md[, isAuto])store_metadata stores an object for the given key in the current BinaryView.
undefine_auto_symbol
(sym)undefine_auto_symbol
removes a symbol from the internal list of automatically discovered Symbol objects.undefine_data_var
(addr)undefine_data_var
removes the non-user data variable at the virtual addressaddr
.undefine_type
(type_id)undefine_type
removes aType
from the global list of types for the currentBinaryView
undefine_user_data_var
(addr)undefine_user_data_var
removes the user data variable at the virtual addressaddr
.undefine_user_symbol
(sym)undefine_user_symbol
removes a symbol from the internal list of user added Symbol objects.undefine_user_type
(name)undefine_user_type
removes aType
from the global list of user types for the currentBinaryView
undo
()undo
undo the last committed action in the undo database.unregister_notification
(notify)unregister_notification unregisters the
BinaryDataNotification
object passed to register_notificationupdate_analysis
asynchronously starts the analysis running and returns immediately.update_analysis_and_wait
blocking call to update the analysis, this call returns when the analysis is complete.write
(addr, data)write
writes the bytes indata
to the virtual addressaddr
.Attributes
Returns a read-only dict of the address comments attached to this BinaryView
Address size of the binary (read-only)
List of valid address ranges for this view (read-only)
boolean analysis state changed of the currently running analysis (read-only)
Provides instantaneous analysis state information and a list of current functions under analysis (read-only).
Status of current analysis (read-only)
The architecture associated with the current
BinaryView
(read/write)Available view types (read-only)
A generator of all BasicBlock objects in the BinaryView
data_tags
gets a list of all data Tags in the view.List of data variables (read-only)
End offset of the binary (read-only)
Endianness of the binary (read-only)
Entry function (read-only)
Entry point of the binary (read-only)
Whether the binary is an executable (read-only)
FileMetadata
backing the BinaryViewList of functions (read-only)
Discovered value of the global pointer register, if the binary uses one (read-only)
Boolean whether the binary has data variables (read-only)
boolean has a database been written to disk (read-only)
Boolean whether the binary has functions (read-only)
Boolean whether the binary has symbols (read-only)
A generator of all HighLevelILBasicBlock objects in the BinaryView
A generator of hlil instructions
A generator of instruction tokens and their start addresses
Iterator for all lines in the linear disassembly of the view
A generator of all LowLevelILBasicBlock objects in the BinaryView
A generator of llil instructions
Maximum size of function (sum of basic block sizes in bytes) for auto analysis
A generator of all MediumLevelILBasicBlock objects in the BinaryView
A generator of mlil instructions
boolean modification state of the BinaryView (read/write)
Returns a list of namespaces for the current BinaryView
Whether or not automatically discovered functions will be analyzed
FileMetadata
backing the BinaryViewView that contains the raw data used by this view (read-only)
The platform associated with the current BinaryView (read/write)
Boolean - is the binary relocatable (read-only)
List of relocation range tuples (read-only)
boolean state of whether or not the file has been saved (read/write)
Dictionary of sections (read-only)
List of segments (read-only)
Dictionary object where plugins can store arbitrary data associated with the view
Start offset of the binary (read-only)
List of strings (read-only)
Dict of symbols (read-only)
tag_types
gets a dictionary of all Tag Types present for the view, structured as {Tag Type Name => Tag Type}.List of imported type libraries (read-only)
List of defined type names (read-only)
List of defined types (read-only)
View type (read-only)
-