deprecated-binaryninja-python
deprecated-binaryninja-python copied to clipboard
Deprecated Binary Ninja prototype written in Python
``` f1 = bv.functions[0] f1b1 = f1.basic_blocks[0] start = f1b1.start end = f1b1.end while start != end: x, size = bv.arch.get_instruction_text(bv.read(start, 4), start) ins.append(x) start += size ``` `print ins`...
So...I was installing this on a test linux box and decided to open notepad.exe from Windows 7 64 bit. Here's what I get when opening: ``` Exception in thread Thread-1:...
I have an ELF file that was converted from RPL (the Wii U's modified ELF format); when trying to view its information in Elf Viewer, I get a blank screen...
can trigger using a hotkey to do something else with a tooltip up
The app crashes when opening "CFF Explorer.exe" or any other executable from NTCore's Explorer Suite. The error: --- Exception in thread Thread-1: Traceback (most recent call last): File "D:\Python27\lib\threading.py", line...
Here is a PR for using PyQt5 instead of PySide. But I found that It maybe somewhat difficult for building PyQt5 under Python2 but not Python3. for example, - the...
There are a couple of hotkeys that aren't documented anywhere/visible in the menus (`g`, for go, `p` for procedure, potentially others) that should either be added to some docs, menus,...
Hi sirs, i've got several questions. Hope the questions are not too n00bish. Binary Ninja Version : ?? My setup: - Python 2.7 - Windows 7 64bit The following are...
Just curious why BinaryNinja has its own disassembler rather than re-using Capstone -- or contributing enhancements when it's insufficient.