summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2025-07-02[Rust] Make some core handles publicMason Reed
This is a requirement if we want rust plugins to expose sane FFIs
2025-07-01Python: Sample Limoncello CFF unflattening workflowGlenn Smith
Mostly just as a demonstration of rewriting MLIL, less about ACTUALLY deobfuscating the target
2025-07-01Python: Collect and pass mappings when copying MLIL functionsGlenn Smith
2025-07-01Python: Add MLIL to copy_expr test workflowGlenn Smith
2025-07-01Python: MLILFunction translate() and instr copy_toGlenn Smith
2025-07-01Python: Implement MLIL.copy_expr_toGlenn Smith
2025-07-01Python: get_instruction_index_for_expr for all ILsGlenn Smith
2025-07-01Make constructing an MLILFunction require an LLILFunctionGlenn Smith
2025-07-01ui: resolve some more invalid instr casesRyan Snyder
2025-07-01Fix heap corruption in default ABBBrandon Miller
2025-07-01Python bindings for custom basic block analysisBrandon Miller
2025-07-01Python: Add LLILFunction.get_instruction_index_for_exprGlenn Smith
2025-07-01args_render_layer example: Fix python errorsGlenn Smith
2025-07-01Python: Update IL Function repr()sGlenn Smith
2025-07-01Make StackRenderLayer not wait for IL generationGlenn Smith
2025-07-01Python: Report get_instruction_start returns InstructionIndexGlenn Smith
2025-07-01Python: Fix detailed_operands on *callUntypedGlenn Smith
2025-07-01Python: Fix MLIL add_label_mapGlenn Smith
2025-07-01Python: Fix various MLIL expr operand names and typesGlenn Smith
2025-07-01Python: Couple minor typing tweaksGlenn Smith
2025-07-01Python: Fix indentation on some MLIL classesGlenn Smith
2025-07-01Python: Fix MLIL call params typesGlenn Smith
2025-07-01Python: MLIL add assert_expr and force_verGlenn Smith
2025-07-01Python: Fix copy_to for LowLevelILOperation.LLIL_REG_STACK_FREE_RELGlenn Smith
2025-07-01Python: Add LLIL for assert, force_verGlenn Smith
2025-07-01Fix scripting console losing edited text when navigating historyGlenn Smith
2025-06-30[powerpc] Adjust default decoding modes in disassembler.cpp to improve ↵Galen Williamson
coverage of instruction table in assembler.cpp
2025-06-30Fix busted stringify_unicode_data python API.Brian Potchik
2025-06-30[x86] Fixes #6628: "sysret should be considered a terminator #6628" by ↵Galen Williamson
lifting XED_ICLASS_SYSRET* instructions as returns to RCX
2025-06-30Add Checkbox input support to python apiAlexander Khosrowshahi
2025-06-30Add functions for toggling full filesize in project browserAlexander Khosrowshahi
2025-06-30Add raw file size setting to projectbrowserAlexander Khosrowshahi
2025-06-29[powerpc] Full merge of PowerPC disassembler PRs, including:Galen Williamson
* Remove dependency on capstone for PowerPC disassembly #6292 * Add support for PowerPC VLE instruction set #6740 * Add support for paired-single instructions #6821 * Various post-merge fixes and tweaks to disassembly and lifting * Removal of dependence on capstone for assembler's scoring mechanism (capstone currently disabled, but not removed from codebase yet)
2025-06-29Fix invalid memory free for ArchAndAddr list in C++ API.Brian Potchik
2025-06-28Fix psuedo-c semicolon highlighting in ternary operationsAlexander Khosrowshahi
2025-06-28Add support for ternary simplification in Psuedo C and disable in graph viewAlexander Khosrowshahi
2025-06-27Support projects in form file dialogMason Reed
2025-06-27[RTTI] Fix itanium vft analysis adding misaligned functions for thumb2Mason Reed
Fixes https://github.com/Vector35/binaryninja-api/issues/6959
2025-06-27Update docs.Brian Potchik
2025-06-26Add dataflowquery option to allow reading writable memoryGlenn Smith
2025-06-26Fold the base structure fields in the create structure dialog by default. ↵Xusheng
Fix https://github.com/Vector35/binaryninja-api/issues/4268
2025-06-25Add workflow eligibility settings to quick settings menu by default.Brian Potchik
2025-06-25Fix Ref comparison operatorsRusty Wagner
2025-06-25Fix const correctness error on Linux.Alexander Taylor
Apparently GCC will fail the build for this in C++20.
2025-06-25Temporary fix for Rust API.Alexander Taylor
This...should probably not be done this way. But, at least we don't fail clippy now.
2025-06-25Fix compiler warnings in PDB type parser.Alexander Taylor
2025-06-25cmake: binaryninjaui depends on binaryninjaapiEric Kilmer
Fixes building the uinotification example that only links against `binaryninjaui`. Without this fix, there's a compilation error about not finding `binaryninjaapi.h`: ``` In file included from binaryninja-api/examples/uinotification/uinotification.cpp:2: In file included from binaryninja-api/examples/uinotification/uinotification.h:3: binaryninja-api/ui/uicontext.h:8:10: fatal error: 'binaryninjaapi.h' file not found 8 | #include "binaryninjaapi.h" | ^~~~~~~~~~~~~~~~~~ 1 error generated. ```
2025-06-25Fix reported `cargo fmt` errors from Rust CI.Alexander Taylor
2025-06-25Fix build error on Windows due to defined min/max.Alexander Taylor
This is so dumb.
2025-06-25Fix cxx20 build issue on Linux.Alexander Taylor
Apparently the compiler on macOS is less strict about this change?