An open API service indexing awesome lists of open source software.

https://github.com/toasterbirb/disas

[MIRROR] Disassemble a hex string with capstone
https://github.com/toasterbirb/disas

Last synced: 4 months ago
JSON representation

[MIRROR] Disassemble a hex string with capstone

Awesome Lists containing this project

README

          

# disas

Disassemble the given string of bytes. The code is mostly extracted from the subst project

> **NOTE**
> Only 64-bit capstone mode is supported

## Building
Build the project with g++ by running `make`. To speed up the build, you can try using the -j flag.
```sh
make -j$(nproc)
```

## Installation
To install disas to /usr/local/bin, run the following
```sh
make install
```
You can customize the installation prefix with the PREFIX variable like so
```sh
make PREFIX=/usr install
```

## Uninstall
```sh
make uninstall
```