Binary Ninja Python API Reference¶
Welcome to the Binary Ninja API documentation. The below methods are availablefrom the root of thebinaryninja package, but most of the API is organizedinto the modules shown in the left side-bar.
These pages are intended as an API Reference. For a deeper explanation of howdifferent parts of Binary Ninja work, explanations of concepts, or if you’renew to Binary Ninja, you’ll want to check out ourUser Guide.
If you’re new to our API, we also have aDeveloper Guidewhich covers many of the concepts developers should know. There’s also aCookbook which contains manyexamples to get you started using our API.
You can also scroll to the end to view a class list of all available classes.
The search bar on the side works both online and offline.
- exceptionUIPluginInHeadlessError[source]¶
Bases:
ExceptionError thrown when trying to load a UI plugin in a headless Binary Ninja installation.
- classCoreVersionInfo[source]¶
Bases:
objectStructure representing the Binary Ninja Version.
Use
core_version_infoto look up the current version of Binary Ninja loaded.- Example:
>>>frombinaryninjaimportcore_version_info,CoreVersionInfo>>># Check if the current version meets minimum requirements for a plugin>>>ifcore_version_info()>=CoreVersionInfo(5,1,8104):...print("Using new API available in 5.1.8104 and later")>>># Parse and compare against a version string>>>ifcore_version_info()>=CoreVersionInfo("4.2.0"):...print("Version 4.2.0 or later detected")>>># Get individual version components>>>version=core_version_info()>>>print(f"Running Binary Ninja{version.major}.{version.minor}.{version.build}")
- bundled_plugin_path()→str|None[source]¶
bundled_plugin_pathreturns a string containing the current plugin path inside theinstall path- Returns:
current bundled plugin path
- Return type:
str, or None on failure
- connect_pycharm_debugger(port=5678)[source]¶
Connect to PyCharm (Professional Edition) for debugging.
Note
See the user documentationpycharm note for step-by-step instructions on how to set up Python debugging.
- Parameters:
port – Port number for connecting to the debugger.
- connect_vscode_debugger(port=5678)[source]¶
Connect to Visual Studio Code for debugging. This function blocks until the debuggeris connected! Not recommended for use in startup.py
Note
See the user documentationvscode note for step-by-step instructions on how to set up Python debugging.
- Parameters:
port – Port number for connecting to the debugger.
- core_build_id()→int[source]¶
core_build_idreturns a integer containing the current build id- Returns:
current build id
- Return type:
- core_expires()→struct_time[source]¶
License Expiration
- Return type:
- core_serial()→str|None[source]¶
core_serialreturns a string containing the current serial number- Returns:
current serial
- Return type:
str, or None on failure
- core_set_license(licenseData:str)→None[source]¶
core_set_licenseis used to initialize the core with a license file that doesn’t necessarily reside on a file system. This is especially useful for headless environments such as docker where loading the license file via an environment variable allows for greater security of the license file itself.- Parameters:
licenseData (str) – string containing the full contents of a license file
- Return type:
None
- Example:
>>>importos>>>core_set_license(os.environ['BNLICENSE'])#Do this before creating any BinaryViews>>>withload("/bin/ls")asbv:...print(len(list(bv.functions)))128
- core_ui_enabled()→bool[source]¶
Indicates that a UI exists and the UI has invoked BNInitUI
- Return type:
- core_version()→str|None[source]¶
core_versionreturns a string containing the current version- Returns:
current version
- Return type:
str, or None on failure
- core_version_info()→CoreVersionInfo[source]¶
core_version_inforeturns a CoreVersionInfo containing the current version information- Returns:
current version information
- Return type:
- disable_default_log()→None[source]¶
Disable default logging in headless mode for the current session. By default, logging in headless operation is controlled by the ‘python.log.minLevel’ settings.
- Return type:
None
- fuzzy_match_single(target,query)→int|None[source]¶
Fuzzy match a string against a query string. Returns a score that is higher fora more confident match, or None if the query does not match the target string.
- Parameters:
target – Target (larger) string
query – Query (smaller) string
- Returns:
Confidence of match, or None if the string doesn’t match
- Return type:
int |None
- get_install_directory()[source]¶
get_install_directoryreturns a string pointing to the installed binary currently running
- get_memory_usage_info()→Mapping[str,int][source]¶
Get counts of various Binary Ninja objects in memory.
- get_system_cache_directory()→str|None[source]¶
Returns Binary Ninja’s system cache directory on the system.
Supported default locations:
macOS: ~/Library/Caches/Binary Ninja
Linux: $XDG_CACHE_HOME/Binary Ninja or ~/.cache/Binary Ninja
Windows: %LOCALAPPDATA%/Binary Ninja/cache
- Returns:
Returns a string containing the system cache directory, or None on failure.
- Return type:
str |None
- load(*args,**kwargs)→BinaryView[source]¶
Opens a BinaryView object.
- Parameters:
source (Union[str,bytes,bytearray,'databuffer.DataBuffer','os.PathLike']) – a file or byte stream to load into a virtual memory space
update_analysis (bool) – whether or not to run
update_analysis_and_waitafter opening aBinaryView, defaults toTrueprogress_func (callback) – optional function to be called with the current progress and total count for BNDB files only
options (dict) – a dictionary in the form {setting identifier string : object value}
- Returns:
returns a
BinaryViewobject for the given filename- Return type:
BinaryView- Raises:
Exception – When a BinaryView could not be created
Note
The progress_func callbackmust return True to continue the load operation, False will abort the load operation.
Warning
The progress_func willonly be called for BNDB files, not for any other file format due to adesign limitation.
- Example:
>>>frombinaryninjaimport*>>>withload("/bin/ls")asbv:...print(len(list(bv.functions)))...134
>>>withload(bytes.fromhex('5054ebfe'),options={'loader.platform':'x86'})asbv:...print(len(list(bv.functions)))...1
- Return type:
- shutdown()[source]¶
shutdowncleanly shuts down the core, stopping all workers and closing all log files.Note
This will be called automatically on script exit if you import the binaryninja module.
- user_directory()→str|None[source]¶
user_directoryreturns a string containing the path to theuser directory- Returns:
current user path
- Return type:
str, or None on failure
- user_plugin_path()→str|None[source]¶
user_plugin_pathreturns a string containing the current plugin path inside theuser directory- Returns:
current user plugin path
- Return type:
str, or None on failure
Full Class List¶
- architecture
- basedetection
- basicblock
- binaryview
- ActiveAnalysisInfo
- AdvancedILFunctionList
- AnalysisCompletionEvent
- AnalysisInfo
- AnalysisProgress
- BinaryDataNotification
- BinaryDataNotificationCallbacks
- BinaryReader
- BinaryView
- BinaryViewEvent
- BinaryViewType
- BinaryWriter
- CoreDataVariable
- DataVariable
- DataVariableAndName
- DerivedString
- DerivedStringLocation
- FunctionList
- MemoryMap
- ReferenceSource
- Relocation
- RelocationInfo
- Section
- SectionDescriptorList
- Segment
- SegmentDescriptorList
- StringRef
- StringReference
- StructuredDataValue
- SymbolMapping
- Tag
- TagType
- TypeMapping
- TypedDataAccessor
- TypedDataReader
- bncompleter
- callingconvention
- collaboration
- commonil
- AliasedVariableInstruction
- Arithmetic
- BaseILInstruction
- BinaryOperation
- Call
- Carry
- Comparison
- Constant
- ControlFlow
- DoublePrecision
- FloatingPoint
- ILSourceLocation
- Intrinsic
- Load
- Localcall
- Loop
- Memory
- Phi
- RegisterStack
- Return
- SSA
- SSAVariableInstruction
- SetReg
- SetVar
- Signed
- StackOperation
- Store
- Syscall
- Tailcall
- Terminal
- UnaryOperation
- VariableInstruction
- component
- constantrenderer
- database
- databuffer
- datarender
- debugger
- debuginfo
- decorators
- demangle
- deprecation
- downloadprovider
- enterprise
- LicenseCheckout
- authenticate_with_credentials
- authenticate_with_method
- authentication_methods
- cancel_authentication
- connect
- deauthenticate
- initialize
- is_authenticated
- is_connected
- is_floating_license
- is_initialized
- is_license_still_activated
- last_error
- license_duration
- license_expiration_time
- release_license
- reservation_time_limit
- server_build_id
- server_id
- server_name
- server_url
- server_version
- set_server_url
- token
- update_license
- username
- enums
- ActionType
- AnalysisMode
- AnalysisSkipReason
- AnalysisState
- AnalysisWarningActionType
- BaseAddressDetectionConfidence
- BaseAddressDetectionPOISetting
- BaseAddressDetectionPOIType
- BinaryViewEventType
- BraceRequirement
- BranchType
- BuiltinType
- CallingConventionName
- CollaborationPermissionLevel
- DataFlowQueryOption
- DeadStoreElimination
- DerivedStringLocationType
- DisassemblyAddressMode
- DisassemblyBlockLabels
- DisassemblyCallParameterHints
- DisassemblyOption
- EarlyReturn
- EdgePenStyle
- Endianness
- ExprFolding
- FindFlag
- FindRangeType
- FindType
- FirmwareNinjaMemoryAccessType
- FirmwareNinjaMemoryHeuristic
- FirmwareNinjaSectionAnalysisMode
- FirmwareNinjaSectionType
- FlagRole
- FlowGraphOption
- FormInputFieldType
- FunctionAnalysisSkipOverride
- FunctionGraphType
- FunctionUpdateType
- HighLevelILOperation
- HighlightColorStyle
- HighlightStandardColor
- ILBranchDependence
- ILInstructionAttribute
- ImplicitRegisterExtend
- InstructionTextTokenContext
- InstructionTextTokenType
- IntegerDisplayType
- IntrinsicClass
- LinearDisassemblyLineType
- LinearViewObjectIdentifierType
- LogLevel
- LowLevelILFlagCondition
- LowLevelILOperation
- MediumLevelILOperation
- MemberAccess
- MemberScope
- MergeConflictDataType
- MessageBoxButtonResult
- MessageBoxButtonSet
- MessageBoxIcon
- MetadataType
- ModificationStatus
- NameType
- NamedTypeReferenceClass
- OperatorPrecedence
- PluginCommandType
- PluginLoadOrder
- PluginLoadStatus
- PluginOrigin
- PluginStatus
- PluginType
- PointerBaseType
- PointerSuffix
- ReferenceType
- RegisterValueType
- RelocationType
- RemoteFileType
- RenderLayerDefaultEnableState
- ReportType
- SaveOption
- ScopeType
- ScriptingProviderExecuteResult
- ScriptingProviderInputReadyState
- SectionSemantics
- SegmentFlag
- SettingsScope
- StringType
- StructureVariant
- SwitchRecovery
- SymbolBinding
- SymbolDisplayResult
- SymbolDisplayType
- SymbolType
- SyncStatus
- TagReferenceType
- TagTypeType
- ThemeColor
- TokenEscapingType
- TransformCapabilities
- TransformResult
- TransformSessionMode
- TransformType
- TypeClass
- TypeContainerType
- TypeDefinitionLineType
- TypeParserErrorSeverity
- TypeParserOption
- TypeReferenceType
- UpdateResult
- VariableSourceType
- exceptions
- externallibrary
- fileaccessor
- filemetadata
- firmwareninja
- flowgraph
- function
- functionrecognizer
- highlevelil
- CoreHighLevelILInstruction
- GotoLabel
- HighLevelILAdc
- HighLevelILAdd
- HighLevelILAddOverflow
- HighLevelILAddressOf
- HighLevelILAnd
- HighLevelILArrayIndex
- HighLevelILArrayIndexSsa
- HighLevelILAsr
- HighLevelILAssert
- HighLevelILAssertSsa
- HighLevelILAssign
- HighLevelILAssignMemSsa
- HighLevelILAssignUnpack
- HighLevelILAssignUnpackMemSsa
- HighLevelILBasicBlock
- HighLevelILBinaryBase
- HighLevelILBlock
- HighLevelILBoolToInt
- HighLevelILBp
- HighLevelILBreak
- HighLevelILCall
- HighLevelILCallSsa
- HighLevelILCarryBase
- HighLevelILCase
- HighLevelILCeil
- HighLevelILCmpE
- HighLevelILCmpNe
- HighLevelILCmpSge
- HighLevelILCmpSgt
- HighLevelILCmpSle
- HighLevelILCmpSlt
- HighLevelILCmpUge
- HighLevelILCmpUgt
- HighLevelILCmpUle
- HighLevelILCmpUlt
- HighLevelILComparisonBase
- HighLevelILConst
- HighLevelILConstData
- HighLevelILConstPtr
- HighLevelILContinue
- HighLevelILDeref
- HighLevelILDerefField
- HighLevelILDerefFieldSsa
- HighLevelILDerefSsa
- HighLevelILDivs
- HighLevelILDivsDp
- HighLevelILDivu
- HighLevelILDivuDp
- HighLevelILDoWhile
- HighLevelILDoWhileSsa
- HighLevelILExternPtr
- HighLevelILFabs
- HighLevelILFadd
- HighLevelILFcmpE
- HighLevelILFcmpGe
- HighLevelILFcmpGt
- HighLevelILFcmpLe
- HighLevelILFcmpLt
- HighLevelILFcmpNe
- HighLevelILFcmpO
- HighLevelILFcmpUo
- HighLevelILFdiv
- HighLevelILFloatConst
- HighLevelILFloatConv
- HighLevelILFloatToInt
- HighLevelILFloor
- HighLevelILFmul
- HighLevelILFneg
- HighLevelILFor
- HighLevelILForSsa
- HighLevelILForceVer
- HighLevelILForceVerSsa
- HighLevelILFsqrt
- HighLevelILFsub
- HighLevelILFtrunc
- HighLevelILFunction
- HighLevelILGoto
- HighLevelILIf
- HighLevelILImport
- HighLevelILInstruction
- HighLevelILIntToFloat
- HighLevelILIntrinsic
- HighLevelILIntrinsicSsa
- HighLevelILJump
- HighLevelILLabel
- HighLevelILLowPart
- HighLevelILLsl
- HighLevelILLsr
- HighLevelILMemPhi
- HighLevelILMods
- HighLevelILModsDp
- HighLevelILModu
- HighLevelILModuDp
- HighLevelILMul
- HighLevelILMulsDp
- HighLevelILMuluDp
- HighLevelILNeg
- HighLevelILNop
- HighLevelILNoret
- HighLevelILNot
- HighLevelILOperationAndSize
- HighLevelILOr
- HighLevelILRet
- HighLevelILRlc
- HighLevelILRol
- HighLevelILRor
- HighLevelILRoundToInt
- HighLevelILRrc
- HighLevelILSbb
- HighLevelILSplit
- HighLevelILStructField
- HighLevelILSub
- HighLevelILSwitch
- HighLevelILSx
- HighLevelILSyscall
- HighLevelILSyscallSsa
- HighLevelILTailcall
- HighLevelILTestBit
- HighLevelILTrap
- HighLevelILUnaryBase
- HighLevelILUndef
- HighLevelILUnimpl
- HighLevelILUnimplMem
- HighLevelILUnreachable
- HighLevelILVar
- HighLevelILVarDeclare
- HighLevelILVarInit
- HighLevelILVarInitSsa
- HighLevelILVarPhi
- HighLevelILVarSsa
- HighLevelILWhile
- HighLevelILWhileSsa
- HighLevelILXor
- HighLevelILZx
- highlight
- interaction
- AddressField
- CheckboxField
- ChoiceField
- DirectoryNameField
- FlowGraphReport
- HTMLReport
- IntegerField
- InteractionHandler
- LabelField
- MarkdownReport
- MultilineTextField
- OpenFileNameField
- PlainTextReport
- ReportCollection
- SaveFileNameField
- SeparatorField
- TextLineField
- get_address_input
- get_checkbox_input
- get_choice_input
- get_directory_name_input
- get_form_input
- get_int_input
- get_large_choice_input
- get_open_filename_input
- get_save_filename_input
- get_text_line_input
- markdown_to_html
- open_url
- run_progress_dialog
- show_graph_report
- show_html_report
- show_markdown_report
- show_message_box
- show_plain_text_report
- show_report_collection
- languagerepresentation
- lineardisassembly
- lineformatter
- log
- Logger
- close_logs
- is_output_redirected_to_log
- log
- log_alert
- log_alert_for_exception
- log_alert_with_traceback
- log_debug
- log_debug_for_exception
- log_debug_with_traceback
- log_error
- log_error_for_exception
- log_error_with_traceback
- log_for_exception
- log_info
- log_info_for_exception
- log_info_with_traceback
- log_to_file
- log_to_stderr
- log_to_stdout
- log_warn
- log_warn_for_exception
- log_warn_with_traceback
- log_with_traceback
- redirect_output_to_log
- lowlevelil
- CoreLowLevelILInstruction
- ILFlag
- ILIntrinsic
- ILRegister
- ILRegisterStack
- ILSemanticFlagClass
- ILSemanticFlagGroup
- LowLevelILAdc
- LowLevelILAdd
- LowLevelILAddOverflow
- LowLevelILAnd
- LowLevelILAsr
- LowLevelILAssert
- LowLevelILAssertSsa
- LowLevelILBasicBlock
- LowLevelILBinaryBase
- LowLevelILBoolToInt
- LowLevelILBp
- LowLevelILCall
- LowLevelILCallOutputSsa
- LowLevelILCallParam
- LowLevelILCallSsa
- LowLevelILCallStackAdjust
- LowLevelILCallStackSsa
- LowLevelILCarryBase
- LowLevelILCeil
- LowLevelILCmpE
- LowLevelILCmpNe
- LowLevelILCmpSge
- LowLevelILCmpSgt
- LowLevelILCmpSle
- LowLevelILCmpSlt
- LowLevelILCmpUge
- LowLevelILCmpUgt
- LowLevelILCmpUle
- LowLevelILCmpUlt
- LowLevelILComparisonBase
- LowLevelILConst
- LowLevelILConstPtr
- LowLevelILConstantBase
- LowLevelILDivs
- LowLevelILDivsDp
- LowLevelILDivu
- LowLevelILDivuDp
- LowLevelILExpr
- LowLevelILExternPtr
- LowLevelILFabs
- LowLevelILFadd
- LowLevelILFcmpE
- LowLevelILFcmpGe
- LowLevelILFcmpGt
- LowLevelILFcmpLe
- LowLevelILFcmpLt
- LowLevelILFcmpNe
- LowLevelILFcmpO
- LowLevelILFcmpUo
- LowLevelILFdiv
- LowLevelILFlag
- LowLevelILFlagBit
- LowLevelILFlagBitSsa
- LowLevelILFlagCond
- LowLevelILFlagGroup
- LowLevelILFlagPhi
- LowLevelILFlagSsa
- LowLevelILFloatConst
- LowLevelILFloatConv
- LowLevelILFloatToInt
- LowLevelILFloor
- LowLevelILFmul
- LowLevelILFneg
- LowLevelILForceVer
- LowLevelILForceVerSsa
- LowLevelILFsqrt
- LowLevelILFsub
- LowLevelILFtrunc
- LowLevelILFunction
- LowLevelILGoto
- LowLevelILIf
- LowLevelILInstruction
- LowLevelILIntToFloat
- LowLevelILIntrinsic
- LowLevelILIntrinsicSsa
- LowLevelILJump
- LowLevelILJumpTo
- LowLevelILLabel
- LowLevelILLoad
- LowLevelILLoadSsa
- LowLevelILLowPart
- LowLevelILLsl
- LowLevelILLsr
- LowLevelILMemPhi
- LowLevelILMemoryIntrinsicOutputSsa
- LowLevelILMemoryIntrinsicSsa
- LowLevelILMods
- LowLevelILModsDp
- LowLevelILModu
- LowLevelILModuDp
- LowLevelILMul
- LowLevelILMulsDp
- LowLevelILMuluDp
- LowLevelILNeg
- LowLevelILNop
- LowLevelILNoret
- LowLevelILNot
- LowLevelILOperationAndSize
- LowLevelILOr
- LowLevelILPop
- LowLevelILPush
- LowLevelILReg
- LowLevelILRegPhi
- LowLevelILRegSplit
- LowLevelILRegSplitDestSsa
- LowLevelILRegSplitSsa
- LowLevelILRegSsa
- LowLevelILRegSsaPartial
- LowLevelILRegStackAbsSsa
- LowLevelILRegStackDestSsa
- LowLevelILRegStackFreeAbsSsa
- LowLevelILRegStackFreeReg
- LowLevelILRegStackFreeRel
- LowLevelILRegStackFreeRelSsa
- LowLevelILRegStackPhi
- LowLevelILRegStackPop
- LowLevelILRegStackPush
- LowLevelILRegStackRel
- LowLevelILRegStackRelSsa
- LowLevelILRet
- LowLevelILRlc
- LowLevelILRol
- LowLevelILRor
- LowLevelILRoundToInt
- LowLevelILRrc
- LowLevelILSbb
- LowLevelILSeparateParamListSsa
- LowLevelILSetFlag
- LowLevelILSetFlagSsa
- LowLevelILSetReg
- LowLevelILSetRegSplit
- LowLevelILSetRegSplitSsa
- LowLevelILSetRegSsa
- LowLevelILSetRegSsaPartial
- LowLevelILSetRegStackAbsSsa
- LowLevelILSetRegStackRel
- LowLevelILSetRegStackRelSsa
- LowLevelILSharedParamSlotSsa
- LowLevelILStore
- LowLevelILStoreSsa
- LowLevelILSub
- LowLevelILSx
- LowLevelILSyscall
- LowLevelILSyscallSsa
- LowLevelILTailcall
- LowLevelILTailcallSsa
- LowLevelILTestBit
- LowLevelILTrap
- LowLevelILUnaryBase
- LowLevelILUndef
- LowLevelILUnimpl
- LowLevelILUnimplMem
- LowLevelILXor
- LowLevelILZx
- SSAFlag
- SSARegister
- SSARegisterOrFlag
- SSARegisterStack
- LLIL_GET_TEMP_REG_INDEX
- LLIL_REG_IS_TEMP
- LLIL_TEMP
- mainthread
- mediumlevelil
- CoreMediumLevelILInstruction
- LLILSSAToMLILExpressionMap
- MediumLevelILAdc
- MediumLevelILAdd
- MediumLevelILAddOverflow
- MediumLevelILAddressOf
- MediumLevelILAddressOfField
- MediumLevelILAnd
- MediumLevelILAsr
- MediumLevelILAssert
- MediumLevelILAssertSsa
- MediumLevelILBasicBlock
- MediumLevelILBinaryBase
- MediumLevelILBoolToInt
- MediumLevelILBp
- MediumLevelILCall
- MediumLevelILCallBase
- MediumLevelILCallOutput
- MediumLevelILCallOutputSsa
- MediumLevelILCallParam
- MediumLevelILCallParamSsa
- MediumLevelILCallSsa
- MediumLevelILCallUntyped
- MediumLevelILCallUntypedSsa
- MediumLevelILCarryBase
- MediumLevelILCeil
- MediumLevelILCmpE
- MediumLevelILCmpNe
- MediumLevelILCmpSge
- MediumLevelILCmpSgt
- MediumLevelILCmpSle
- MediumLevelILCmpSlt
- MediumLevelILCmpUge
- MediumLevelILCmpUgt
- MediumLevelILCmpUle
- MediumLevelILCmpUlt
- MediumLevelILComparisonBase
- MediumLevelILConst
- MediumLevelILConstBase
- MediumLevelILConstData
- MediumLevelILConstPtr
- MediumLevelILDivs
- MediumLevelILDivsDp
- MediumLevelILDivu
- MediumLevelILDivuDp
- MediumLevelILExpr
- MediumLevelILExternPtr
- MediumLevelILFabs
- MediumLevelILFadd
- MediumLevelILFcmpE
- MediumLevelILFcmpGe
- MediumLevelILFcmpGt
- MediumLevelILFcmpLe
- MediumLevelILFcmpLt
- MediumLevelILFcmpNe
- MediumLevelILFcmpO
- MediumLevelILFcmpUo
- MediumLevelILFdiv
- MediumLevelILFloatConst
- MediumLevelILFloatConv
- MediumLevelILFloatToInt
- MediumLevelILFloor
- MediumLevelILFmul
- MediumLevelILFneg
- MediumLevelILForceVer
- MediumLevelILForceVerSsa
- MediumLevelILFreeVarSlot
- MediumLevelILFreeVarSlotSsa
- MediumLevelILFsqrt
- MediumLevelILFsub
- MediumLevelILFtrunc
- MediumLevelILFunction
- MediumLevelILGoto
- MediumLevelILIf
- MediumLevelILImport
- MediumLevelILInstruction
- MediumLevelILIntToFloat
- MediumLevelILIntrinsic
- MediumLevelILIntrinsicSsa
- MediumLevelILJump
- MediumLevelILJumpTo
- MediumLevelILLabel
- MediumLevelILLoad
- MediumLevelILLoadSsa
- MediumLevelILLoadStruct
- MediumLevelILLoadStructSsa
- MediumLevelILLowPart
- MediumLevelILLsl
- MediumLevelILLsr
- MediumLevelILMemPhi
- MediumLevelILMemoryIntrinsicOutputSsa
- MediumLevelILMemoryIntrinsicSsa
- MediumLevelILMods
- MediumLevelILModsDp
- MediumLevelILModu
- MediumLevelILModuDp
- MediumLevelILMul
- MediumLevelILMulsDp
- MediumLevelILMuluDp
- MediumLevelILNeg
- MediumLevelILNop
- MediumLevelILNoret
- MediumLevelILNot
- MediumLevelILOperationAndSize
- MediumLevelILOr
- MediumLevelILRet
- MediumLevelILRetHint
- MediumLevelILRlc
- MediumLevelILRol
- MediumLevelILRor
- MediumLevelILRoundToInt
- MediumLevelILRrc
- MediumLevelILSbb
- MediumLevelILSeparateParamList
- MediumLevelILSetVar
- MediumLevelILSetVarAliased
- MediumLevelILSetVarAliasedField
- MediumLevelILSetVarField
- MediumLevelILSetVarSplit
- MediumLevelILSetVarSplitSsa
- MediumLevelILSetVarSsa
- MediumLevelILSetVarSsaField
- MediumLevelILSharedParamSlot
- MediumLevelILStore
- MediumLevelILStoreSsa
- MediumLevelILStoreStruct
- MediumLevelILStoreStructSsa
- MediumLevelILSub
- MediumLevelILSx
- MediumLevelILSyscall
- MediumLevelILSyscallSsa
- MediumLevelILSyscallUntyped
- MediumLevelILSyscallUntypedSsa
- MediumLevelILTailcall
- MediumLevelILTailcallSsa
- MediumLevelILTailcallUntyped
- MediumLevelILTailcallUntypedSsa
- MediumLevelILTestBit
- MediumLevelILTrap
- MediumLevelILUnaryBase
- MediumLevelILUndef
- MediumLevelILUnimpl
- MediumLevelILUnimplMem
- MediumLevelILVar
- MediumLevelILVarAliased
- MediumLevelILVarAliasedField
- MediumLevelILVarField
- MediumLevelILVarPhi
- MediumLevelILVarSplit
- MediumLevelILVarSplitSsa
- MediumLevelILVarSsa
- MediumLevelILVarSsaField
- MediumLevelILXor
- MediumLevelILZx
- SSAVariable
- metadata
- platform
- plugin
- pluginmanager
- project
- renderlayer
- scriptingprovider
- secretsprovider
- settings
- stringrecognizer
- transform
- typearchive
- typecontainer
- typelibrary
- typeparser
- typeprinter
- types
- ArrayBuilder
- ArrayType
- BaseStructure
- BoolBuilder
- BoolType
- BoolWithConfidence
- CharBuilder
- CharType
- CoreSymbol
- EnumerationBuilder
- EnumerationMember
- EnumerationType
- FloatBuilder
- FloatType
- FunctionBuilder
- FunctionParameter
- FunctionType
- InheritedStructureMember
- IntegerBuilder
- IntegerType
- MutableTypeBuilder
- NameSpace
- NamedTypeReferenceBuilder
- NamedTypeReferenceType
- OffsetWithConfidence
- PointerBuilder
- PointerType
- QualifiedName
- RegisterSet
- RegisterStackAdjustmentWithConfidence
- StructureBuilder
- StructureMember
- StructureType
- Symbol
- Type
- TypeBuilder
- TypeBuilderAttributes
- TypeDefinitionLine
- TypeFieldReference
- TypeReferenceSource
- VoidBuilder
- VoidType
- WideCharBuilder
- WideCharType
- convert_integer
- undo
- update
- variable
- AddressRange
- ConstantData
- ConstantDataRegisterValue
- ConstantPointerRegisterValue
- ConstantReference
- ConstantRegisterValue
- CoreVariable
- EntryRegisterValue
- ExternalPointerRegisterValue
- ImportedAddressRegisterValue
- IndirectBranchInfo
- LookupTableEntry
- ParameterVariables
- PossibleValueSet
- RegisterValue
- ReturnAddressRegisterValue
- StackFrameOffsetRegisterValue
- StackVariableReference
- Undetermined
- ValueRange
- Variable
- VariableNameAndType
- websocketprovider
- workflow