1
0
mirror of https://github.com/bitdefender/bddisasm.git synced 2025-04-07 06:56:06 +00:00
bddisasm/pybddisasm
2020-11-17 10:36:26 +02:00
..
_pybddisasm
pybddisasm
LICENSE
MANIFEST.in
README.md
setup.cfg
setup.py As per Intel SDM version 73 released in November 2020, make sure we don't decode 32-bit EVEX instructions that have EVEX.V' cleared, and 64-bit EVEX instructions that don't use EVEX.V' field, but have it cleared. 2020-11-17 10:36:26 +02:00

The Bitdefender disassembler Python wrapper

Build

Building and installing is easy:

python3 setup.py build
python3 setup.py install

Usage

Use it by importing the pybddisasm.disasm module:

from pybddisasm.bddisasm import *

instr = nd_decode_ex2(buff, arch, arch, arch, vendor, current_rip)

Pip

Use pip to install the package:

pip install pybddisasm