summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2024-10-28Blacklist useless instructions used for hot patching in WARPMason Reed
Allows matching for windows (useless set reg) and linux (nop) hot patching
2024-10-28Refactor WARP to use a module workflow for matchingMason Reed
Also flush caches on view destruction and improve performance
2024-10-28Rust: Add `BinaryViewExt::get_code_refs_from` apiMason Reed
2024-10-28Rust: Add object destructor APIMason Reed
2024-10-28Rust: Fix cloning module workflowsMason Reed
2024-10-28Eliminate AST parameter in high level rendering APIs, as it is already part ↵Rusty Wagner
of the HLIL instruction
2024-10-28hlr: expose ability to claim line addressesRyan Snyder
2024-10-28arch: fix text token exprIndex initRyan Snyder
2024-10-28Properly wrap the Activity object returned from 'register_activity'.Brian Potchik
2024-10-28[SharedCache] Warnings Cleanupkat
2024-10-28[SharedCache] Fix UI causing BV leakskat
2024-10-28[SharedCache] Optimizations+fixes for SharedCache function workflow.kat
2024-10-26Fix all low level il function getters leaking in rustMason Reed
2024-10-26MSVC RTTI: misc formattingMason Reed
2024-10-26MSVC RTTI: Inherit virtual function tablesMason Reed
Makes xrefs and base VFT type syncing possible at the expense of correct typing (assuming you have the this param typed for the base class)
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-25Fix crash when opening new fileMason Reed
Thanks glenn
2024-10-25Use module workflows in MSVC RTTIMason Reed
MSVC RTTI information will be applied on open to all windows platforms now
2024-10-25Retrieve view from analysis contextMason Reed
Makes it possible to write module workflows in plugins and scripts
2024-10-25Prevent building test artifacts on cmake buildsMason Reed
For some reason the linker is looking in the target directory of external rust plugins?
2024-10-24Improve documentation for `update_analysis`.Brian Potchik
2024-10-24WARP: Remove misc matcher debug infoMason Reed
2024-10-24WARP: Handle no default architecture gracefully when loading typesMason Reed
2024-10-24Make WARP function guid generation infallibleMason Reed
2024-10-24Add WARP integrationMason Reed
https://github.com/Vector35/warp/
2024-10-24Add virtual function table sweep to MSVC RTTIMason Reed
This will sweep for vfts without relying on the pointer sweep
2024-10-24Fix linux-setup.sh not making a valid desktop icon on 24.04Glenn Smith
2024-10-24Add disassembly setting to allow/disallow rendering of collapse tokensPeter LaFosse
2024-10-24Make PseudoRust collapsablePeter LaFosse
2024-10-24Fix alignment of top level braces in PseudoCPeter LaFosse
2024-10-24Initial implementation of the module-level analysis workflow.Brian Potchik
2024-10-24Remove bad import in __init__.pyJosh Ferrell
2024-10-24Add MSVC RTTI pluginMason Reed
Adds two commands that must be run manually "MSVC\\Find RTTI" and "MSVC\\Find VFTs" both of which will apply their respective data to the view AND store metadata for scripts to use under the "msvc" key.
2024-10-24Add __hash__ method to FunctionViewTypePeter LaFosse
2024-10-24Initial Firmware Ninja core APIBrandon Miller
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-23Calling Conventions for register specific arc functionskat
2024-10-23Linear view function regions collapsePeter LaFosse
Update collapse code to support PseudoC
2024-10-23Fix conditional no-returnPeter LaFosse
2024-10-23Compile demangler plugins directly into the core for P E R FGlenn Smith
Turns out, this is a rather hot path on initial binary loading (>50% runtime), and trying to pipe it all through the FFI makes it really slow. Like 100% slower. Ouch. Now, the demangler plugins are written with a bunch of #ifdef macros to allow for building both as a plugin and directly into the core. There is no functionality change here apart from regaining the lost performance.
2024-10-23Add docs for new plugin manager filter keywords @update_available and ↵KyleMiles
@failed_to_load
2024-10-23Add API to bulk add segments, use it in elf viewJosh Ferrell
2024-10-23upgrade minimum doxygen version to support 1.12.0Jordan Wiens
2024-10-23Fix Database.global_keys not converting bytes to strGlenn Smith
2024-10-22Update rust default workflow instanceMason Reed
Should fix the warning being printed in the log
2024-10-22Add BinaryViewExt::{function_start_before, function_start_after}Mason Reed
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()
2024-10-22fix: implement slicing on TypedDataAccessor for ArrayTypesScott Lagler
2024-10-22fix: BasicBlockList iteration returns a new listScott Lagler
The culprit here is the _n class member which serves as the counter for the __next__ function. That needs to be reset when iterating through the list
2024-10-22add new tool button with backgroundJordan Wiens