Skip to main content

Python bindings for Zydis library

Project description

pydis

Pydis is a python binding for the Zydis disassembler library.

import pydis

instructions = b'\x51\x8d\x45\xff\x50\xff\x75\x0c\xff\x75\x08\xff\x15\xa0\xa5\x48\x76\x85\xc0\x0f\x88\xfc\xda\x02\x00'
instruction_pointer = 0x007FFFFFFF400000

lines = []
for instruction in pydis.decode(instructions, instruction_pointer):
    print(instruction)

Output:

push rcx
lea eax, [rbp-0x01]
push rax
push [rbp+0x0C]
push [rbp+0x08]
call [0x008000007588A5B1]
test eax, eax
js 0x007FFFFFFF42DB15

The module uses the same field names as Zydis with the exception that snake_case is used instead of camelCase.

Requirements

Pydis requires a python version >=3.6. The package has only been tested on macOS and linux running cpython. Since pydis uses ctypes to interface with zydis it may or may not work on other interpretters.

Installing

Pydis is currently not on PyPi.

A wheel file is provided for macOS and linux distros with manylinux1 support. You can install by running: pip install <wheel file> or you can build from source as described below.

Building

Your machine will need cmake and a C compiler in order to build Zydis. Pydis does not use any python modules beyond ones provided by a default python installation. Once the minimum tooling is installed running python setup.py install will build Zydis and install the package.

Usage

Documentation is currently being worked on. For now the example script pydisinfo is the best place to look for example usage.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

py_dis-0.1.tar.gz (28.4 kB view hashes)

Uploaded Source

Built Distributions

py_dis-0.1-cp36-none-manylinux1_x86_64.whl (151.0 kB view hashes)

Uploaded CPython 3.6

py_dis-0.1-cp36-none-macosx_10_12_x86_64.whl (138.7 kB view hashes)

Uploaded CPython 3.6 macOS 10.12+ x86-64

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page