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
- Host: GitHub
- URL: https://github.com/toasterbirb/disas
- Owner: Toasterbirb
- License: gpl-3.0
- Created: 2025-01-14T21:48:41.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-02T18:45:40.000Z (about 1 year ago)
- Last Synced: 2025-07-25T06:32:27.657Z (11 months ago)
- Language: C++
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```