• Stars
    star
    169
  • Rank 224,453 (Top 5 %)
  • Language
    JavaScript
  • License
    BSD 3-Clause "New...
  • Created almost 10 years ago
  • Updated about 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Capstone disassembler framework for JavaScript

Capstone.js

Port of the Capstone disassembler framework for JavaScript. Powered by Emscripten.

Notes: Capstone is a lightweight multi-architecture disassembly framework originally developed by Nguyen Anh Quynh and released under BSD license. More information about contributors and license terms can be found in the files CREDITS.TXT and LICENSE.TXT of the capstone submodule in this repository.

Installation

To add Capstone.js to your web application, include it with:

<script src="capstone.min.js"></script>

or install it with the NPM command:

npm install @alexaltea/capstone-js

or install it with the Bower command:

bower install capstonejs

Usage

// Input: Machine code bytes and offset where they are located
var buffer = [0x55, 0x31, 0xD2, 0x89, 0xE5, 0x8B, 0x45, 0x08];
var offset = 0x10000;

// Initialize the decoder
var d = new cs.Capstone(cs.ARCH_X86, cs.MODE_32);

// Output: Array of cs.Instruction objects
var instructions = d.disasm(buffer, offset);

// Display results;
instructions.forEach(function (instr) {
    console.log("0x%s:\t%s\t%s",
        instr.address.toString(16),
        instr.mnemonic,
        instr.op_str
    );
});

// Delete decoder
d.close();

Building

To build the Capstone.js library, clone the master branch of this repository, and do the following:

  1. Initialize the original Capstone submodule: git submodule update --init.

  2. Install the latest Python 2.x (64-bit), CMake and the Emscripten SDK. Follow the respective instructions and make sure all environment variables are configured correctly. Under Windows MinGW (specifically mingw32-make) is required.

  3. Install the development dependencies with: npm install.

  4. Finally, build the source with: grunt build.

Note: To use WebAssembly, change WASM=0 to WASM=1 in build.py.

It will automatically load the .wasm binary, but you should wait for it to load:

cs.MCapstone.then(() => {
    // ... initialize and use Capstone here ....
});

More Repositories

1

orbital

Experimental PlayStation 4 emulator.
C
3,589
star
2

unicorn.js

Unicorn CPU emulator framework port for JavaScript
JavaScript
571
star
3

nucleus

High-performance retargetable emulator
C++
232
star
4

milli-py

Python bindings for Milli, the embeddable Rust-based search engine powering Meilisearch
Rust
123
star
5

keystone.js

Keystone assembler framework for JavaScript
HTML
75
star
6

curator

Automated normalization and curating of media collections
Python
53
star
7

codeql-python

Python bindings for CodeQL CLI
Python
48
star
8

blog

Articles and resources of my blog
HTML
45
star
9

psarc-tool

Port of Matthieu Milan's open PSARC PS3 extractor to Windows
C
40
star
10

cetrainer-unpacker

Extract and decrypt CheatEngine trainers from executables
Python
39
star
11

glslang.js

Real-time GLSL to SPIR-V, powered by Glslang
HTML
27
star
12

libelf.js

LibELF port for JavaScript
C
26
star
13

lv1-reversing

CellOS LV-1 Reverse Engineering
C++
23
star
14

hasher

Automatic detection of hashing algorithms
JavaScript
21
star
15

ntypes

Emulate native integer and floating-point types in Python
Python
20
star
16

nerve

Front-end for debuggers and disassemblers
TypeScript
17
star
17

ps3autotests

Automated PS3 integration tests for emulators
C++
16
star
18

invoice

Template to generate HTML/PDF invoices
JavaScript
14
star
19

pfs-fuse

FUSE driver for the PlayStation File System
13
star
20

ida

Collection of IDA Python plugins/scripts/modules
Python
11
star
21

gitlab-rouge

Static syntax highlighting for custom languages in GitLab CE/EE installations via Rouge hot-patching.
Ruby
4
star
22

dell-spacebar-fix

Software solution for double-space issues in Dell XPS 13/15 laptops
C++
3
star
23

orbital-slides

Orbital slides
JavaScript
3
star
24

nihongo

Random utilities to learn japanese
JavaScript
3
star
25

gitlab-monaco

Dynamic syntax highlighting for custom languages in GitLab CE/EE installations via Monaco hot-patching.
JavaScript
3
star
26

jitter

Random C++ utilities based on JIT-compilation
C++
2
star
27

website

Personal website
JavaScript
1
star
28

nv520-screen-fix

Software solution for random black screens with Nvidia GT520 after Windows 10 boot/wakeup
C++
1
star
29

ddns

Monitor public IPs on routers and update DNS records
Python
1
star
30

vm-tests

Hypervisor testing via QEMU
1
star
31

fakebot-admin

Admin dashboard for the Fakebot botnet monitoring tool
JavaScript
1
star