summaryrefslogtreecommitdiff
path: root/view/elf/elfview.cpp
AgeCommit message (Collapse)Author
2024-07-03Add missing GNU_PROPERTY program header typeJosh Ferrell
2024-06-24Add `Elf{32,64}_{Rel,Rela}` table to ELF viewclubby789
2024-06-19Fix up the files.elf.detectARMBE8Binary settingXusheng
2024-06-18More conservative detection of ARM BE8 binaries. Fix ↵Xusheng
https://github.com/Vector35/binaryninja-api/issues/5621
2024-06-11ELF: Fix crash if an entry point function fails to loadGlenn Smith
Just needed a null check around this
2024-05-28Solved issue #1180 by adding new APIsZichuan Li
1. Add two new APIs for multiple entry functions `GetAllAnalysisEntryFunctions` and `AddToEntryFunctions` 2. Add Python APIs `entry_functions` and `add_to_entry_functions`. `entry_functions` resturns a list of functions, which supports parsing functions in `init_array`, `fini_array` and TLS callbacks. 3. Modify bin-info, it now prints all entry functions
2024-05-16Removed loader.architecture override from viewsBrandon Miller
Architecture is derived from platform object and can be overriden using loader.platform
2024-05-06Ignore thumb mapping symbols when defining names in ELFJosh Ferrell
2024-05-03Format added bracesMason Reed
2024-05-03Use LLVM demangler as a fallback for GNU and MS demanglersMason Reed
2024-04-24Define symtab in elf raw viewJosh Ferrell
2024-04-24Do not define symbols from mapping symbolsJosh Ferrell
2024-03-19ELF view: skip 0x0 and -0x1 values when dealing with init/fini arraysXusheng
2024-03-19Avoid creating function symbols with integer typeXusheng
2024-03-19name functions in .init_array/.fini_array/.ctors/.dtors sectionsXusheng
2024-03-06Move view modules into the API repoRusty Wagner