All Projects → aquynh → Capstone

aquynh / Capstone

Licence: other
Capstone disassembly/disassembler framework: Core (Arm, Arm64, BPF, EVM, M68K, M680X, MOS65xx, Mips, PPC, RISCV, Sparc, SystemZ, TMS320C64x, Web Assembly, X86, X86_64, XCore) + bindings.

Programming Languages

c
50402 projects - #5 most used programming language
C#
18002 projects
java
68154 projects - #9 most used programming language
python
139335 projects - #7 most used programming language
ocaml
1615 projects
C++
36643 projects - #6 most used programming language

Projects that are alternatives of or similar to Capstone

Unicorn
Unicorn CPU emulator framework (ARM, AArch64, M68K, Mips, Sparc, PowerPC, RiscV, X86)
Stars: ✭ 4,934 (-8.19%)
Mutual labels:  framework, arm64, arm, x86, x86-64, mips, reverse-engineering, riscv, sparc, m68k, powerpc
Keystone
Keystone assembler framework: Core (Arm, Arm64, Hexagon, Mips, PowerPC, Sparc, SystemZ & X86) + bindings
Stars: ✭ 1,654 (-69.22%)
Mutual labels:  framework, arm64, arm, x86, x86-64, mips, powerpc, reverse-engineering, sparc, systemz
Keypatch
Multi-architecture assembler for IDA Pro. Powered by Keystone Engine.
Stars: ✭ 939 (-82.53%)
Mutual labels:  arm64, arm, x86, x86-64, mips, powerpc, reverse-engineering
Bap
Binary Analysis Platform
Stars: ✭ 1,385 (-74.23%)
Mutual labels:  disassembler, arm, x86, mips, powerpc, reverse-engineering
Plasma
Plasma is an interactive disassembler for x86/ARM/MIPS. It can generates indented pseudo-code with colored syntax.
Stars: ✭ 2,956 (-44.99%)
Mutual labels:  disassembler, arm, x86, x86-64, mips, reverse-engineering
Cross
“Zero setup” cross compilation and “cross testing” of Rust crates
Stars: ✭ 2,461 (-54.21%)
Mutual labels:  arm, x86, mips, powerpc, sparc
Reko
Reko is a binary decompiler.
Stars: ✭ 942 (-82.47%)
Mutual labels:  disassembler, arm, x86, x86-64, reverse-engineering
cross
“Zero setup” cross compilation and “cross testing” of Rust crates
Stars: ✭ 3,550 (-33.94%)
Mutual labels:  arm, mips, x86, sparc, powerpc
Arm now
arm_now is a qemu powered tool that allows instant setup of virtual machines on arm cpu, mips, powerpc, nios2, x86 and more, for reverse, exploit, fuzzing and programming purpose.
Stars: ✭ 719 (-86.62%)
Mutual labels:  arm, x86, x86-64, mips, powerpc
Capstone.NET
.NET Core and .NET Framework binding for the Capstone Disassembly Framework
Stars: ✭ 108 (-97.99%)
Mutual labels:  arm, x86-64, disassembler, x86, arm64
Gef
GEF (GDB Enhanced Features) - a modern experience for GDB with advanced debugging features for exploit developers & reverse engineers ☢
Stars: ✭ 4,197 (-21.9%)
Mutual labels:  reverse-engineering, mips, sparc, powerpc
Redasm
The OpenSource Disassembler
Stars: ✭ 1,042 (-80.61%)
Mutual labels:  disassembler, arm, mips, reverse-engineering
Steed
[INACTIVE] Rust's standard library, free of C dependencies, for Linux systems
Stars: ✭ 520 (-90.32%)
Mutual labels:  arm, x86, mips, powerpc
Easy Linux Pwn
A set of Linux binary exploitation tasks for beginners on various architectures
Stars: ✭ 353 (-93.43%)
Mutual labels:  arm, x86, mips, powerpc
Corehook
A library that simplifies intercepting application function calls using managed code and the .NET Core runtime
Stars: ✭ 191 (-96.45%)
Mutual labels:  arm64, arm, x86, x86-64
Mandibule
linux elf injector for x86 x86_64 arm arm64
Stars: ✭ 171 (-96.82%)
Mutual labels:  arm64, arm, x86, x86-64
X64dbg
An open-source x64/x32 debugger for windows.
Stars: ✭ 37,825 (+603.85%)
Mutual labels:  disassembler, x86, x86-64, reverse-engineering
asm2cfg
Python command-line tool and GDB extension to view and save x86, ARM and objdump assembly files as control-flow graph (CFG) pdf files
Stars: ✭ 42 (-99.22%)
Mutual labels:  arm, x86-64, disassembler, x86
interp
Interpreter experiment. Testing dispatch methods: Switching, Direct/Indirect Threaded Code, Tail-Calls and Inlining
Stars: ✭ 32 (-99.4%)
Mutual labels:  arm, mips, x86-64, riscv
Tengine
Tengine is a lite, high performance, modular inference engine for embedded device
Stars: ✭ 4,012 (-25.34%)
Mutual labels:  arm, x86-64, mips, riscv

Capstone Engine

Build Status Build status pypi package pypi downloads

Deprecation

The master branch is deprecated. All forward development should be based on the next branch.

To clone a fresh checkout with the next branch:

git clone -b next https://github.com/capstone-engine/capstone

To change to the next branch in an existing checkout:

git checkout next

We moved the original historical repo of Capstone from https://github.com/aquynh/capstone to an organization, where we can add more maintainers to the project, and push Capstone development forward.

Our new home is https://github.com/capstone-engine/capstone

Nov 8th, 2021.


Capstone is a disassembly framework with the target of becoming the ultimate disasm engine for binary analysis and reversing in the security community.

Created by Nguyen Anh Quynh, then developed and maintained by a small community, Capstone offers some unparalleled features:

  • Support multiple hardware architectures: ARM, ARM64 (ARMv8), Ethereum VM, M68K, Mips, MOS65XX, PPC, Sparc, SystemZ, TMS320C64X, M680X, XCore and X86 (including X86_64).

  • Having clean/simple/lightweight/intuitive architecture-neutral API.

  • Provide details on disassembled instruction (called “decomposer” by others).

  • Provide semantics of the disassembled instruction, such as list of implicit registers read & written.

  • Implemented in pure C language, with lightweight bindings for D, Clojure, F#, Common Lisp, Visual Basic, PHP, PowerShell, Emacs, Haskell, Perl, Python, Ruby, C#, NodeJS, Java, GO, C++, OCaml, Lua, Rust, Delphi, Free Pascal & Vala (ready either in main code, or provided externally by the community).

  • Native support for all popular platforms: Windows, macOS, iOS, Android, Linux, *BSD, Solaris, etc.

  • Thread-safe by design.

  • Special support for embedding into firmware or OS kernel.

  • High performance & suitable for malware analysis (capable of handling various X86 malware tricks).

  • Distributed under the open source BSD license.

Further information is available at http://www.capstone-engine.org

Compile

See COMPILE.TXT file for how to compile and install Capstone.

Documentation

See docs/README for how to customize & program your own tools with Capstone.

Hack

See HACK.TXT file for the structure of the source code.

License

This project is released under the BSD license. If you redistribute the binary or source code of Capstone, please attach file LICENSE.TXT with your products.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].