summaryrefslogtreecommitdiff
path: root/python
AgeCommit message (Collapse)Author
2025-02-03Fix documentation around `LLIL_MUL`Dusk Banks
`mul` is aligned with at least what x86 returns for tokens. Signed-off-by: Dusk Banks <me@bb010g.com>
2025-01-31Update Render Layer docs and type annotationsGlenn Smith
2025-01-30Render LayersGlenn Smith
2025-01-28Fixes #6370: HighlightColor.__init__ attempts to set a property with no setterGalen Williamson
2025-01-24Update docs for get_save_filename_input to reflect actual api specGlenn Smith
2025-01-24Add line formatter API and a generic line formatter pluginRusty Wagner
2025-01-22Support eligibility callbacks through the API for Workflow actions.Brian Potchik
2025-01-20Revert "Add line formatter API and a generic line formatter plugin"Rusty Wagner
This reverts commit 1699c71999d29d32aba5c9f8fea193a661a4b02b.
2025-01-17Add line formatter API and a generic line formatter pluginRusty Wagner
2025-01-17Firmware Ninja reference tree APIBrandon Miller
2025-01-14Fix docstring in plugin.pyBrian Potchik
2025-01-14add example to plugincommandcontextJordan Wiens
2025-01-09Deprecate `Segment.serialize` and `Section.serialize` in favor of ↵Brian Potchik
descriptor-based classes.
2024-12-27Fix trying to construct a FunctionViewType from a FunctionViewTypeGlenn Smith
2024-12-27Add default implementations to Python TypePrinter to dual C++Glenn Smith
2024-12-14Pass length to free flag conditions list callback and remove libc from rust apiMason Reed
Allows language bindings like rust to free conditions lists sanely
2024-12-14Pass length to free register list callbackMason Reed
Allows language bindings like rust to free register lists sanely
2024-12-05fix documentation around workflow example codeJordan Wiens
2024-12-03Add `Relocation` information to python apiMason Reed
Previously only the relocation ranges were available
2024-12-03Update documentation for add_memory_region.Brian Potchik
2024-11-27Add support for a logical memory map representation.Brian Potchik
2024-11-25Add additional python APIs to query tags by scope.Brian Potchik
2024-11-25Fix placeholder deprecation decorators and versions.Brian Potchik
2024-11-22C++ and Python API for Firmware NinjaBrandon Miller
2024-11-18Minor documentation update for python API workflows.Brian Potchik
2024-11-15Add extra explanation for `export_*_to_library` APIs.Alexander Taylor
2024-11-15Add warnings about silent failures in function APIs.Alexander Taylor
Attempts to partially address #6019.
2024-11-07Add APIs to support bulk segment addition operations.Brian Potchik
2024-11-06Improve documentation for `update_analysis*` methods.Brian Potchik
2024-11-05Add delay support to workflow machine.Brian Potchik
2024-11-05Make Python data renderers backwards compatibleRusty Wagner
2024-11-05Fix python DataRenderer APIPeter LaFosse
2024-11-03Update type hints for BaseILInstruction.add_subgraphKyleMiles
2024-11-03Python API : Update .operands documentationKyleMiles
2024-11-01Fix segment removal APIs.Brian Potchik
2024-10-30Use idiomatic PythonZerotistic
2024-10-30fix: validate input type in TypeLibrary.add_alternate_name to prevent crashesZerotistic
Fixes Vector35/binaryninja-api#5814. The function now checks if the input is of type . This prevents crashes caused by passing null or non-string values.
2024-10-29Small type hint fixesJosh Ferrell
2024-10-28Eliminate AST parameter in high level rendering APIs, as it is already part ↵Rusty Wagner
of the HLIL instruction
2024-10-28Properly wrap the Activity object returned from 'register_activity'.Brian Potchik
2024-10-25Fix not being able to set UIDF on function parametersGlenn Smith
Mirrors the UI code's method for handling this situation: if the variable's index field is 0, then it is a function parameter and it needs to have its value set at the function's entry point.
2024-10-25Retrieve view from analysis contextMason Reed
Makes it possible to write module workflows in plugins and scripts
2024-10-24Improve documentation for `update_analysis`.Brian Potchik
2024-10-24Initial implementation of the module-level analysis workflow.Brian Potchik
2024-10-24Remove bad import in __init__.pyJosh Ferrell
2024-10-24Add __hash__ method to FunctionViewTypePeter LaFosse
2024-10-23Initial commit of the alpha dyld_shared_cache view API Plugin.kat
This is an early release of our DSC processing plugin. We're still hard at work improving this feature. You should be able to just drop in a dyld_shared_cache and use the 'Shared Cache Triage' view to load and analyze images.
2024-10-23Add API to bulk add segments, use it in elf viewJosh Ferrell
2024-10-23Fix Database.global_keys not converting bytes to strGlenn Smith
2024-10-22doc: Add BackgroundTaskThread python exampleriskydissonance
To allow python plugins to do work not on the UI thread. Also allows them to call update_analysis_and_wait()