fork of capstone with a branch for vs2019 and vs2017 https://github.com/aquynh/capstone
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
_xeroxz 4dfeb09b88
Merge branch 'dev' into 'vs2019'
3 years ago
.github/workflows init commit 3 years ago
arch init commit 3 years ago
bindings init commit 3 years ago
contrib init commit 3 years ago
cstool init commit 3 years ago
docs init commit 3 years ago
include init commit 3 years ago
msvc MD support not MT... 3 years ago
packages init commit 3 years ago
suite init commit 3 years ago
tests init commit 3 years ago
windows init commit 3 years ago
windowsce init commit 3 years ago
xcode init commit 3 years ago
.appveyor.yml init commit 3 years ago
.gitattributes init commit 3 years ago
.gitignore added better git ignore... 3 years ago
.travis.yml init commit 3 years ago
CMakeLists.txt init commit 3 years ago
COMPILE.TXT init commit 3 years ago
COMPILE_CMAKE.TXT init commit 3 years ago
COMPILE_MSVC.TXT init commit 3 years ago
CREDITS.TXT init commit 3 years ago
ChangeLog init commit 3 years ago
HACK.TXT init commit 3 years ago
LEB128.h init commit 3 years ago
LICENSE.TXT init commit 3 years ago
LICENSE_LLVM.TXT init commit 3 years ago
MCDisassembler.h init commit 3 years ago
MCFixedLenDisassembler.h init commit 3 years ago
MCInst.c init commit 3 years ago
MCInst.h init commit 3 years ago
MCInstrDesc.c init commit 3 years ago
MCInstrDesc.h init commit 3 years ago
MCRegisterInfo.c init commit 3 years ago
MCRegisterInfo.h init commit 3 years ago
Makefile init commit 3 years ago
MathExtras.h init commit 3 years ago
README.md init commit 3 years ago
RELEASE_NOTES init commit 3 years ago
SPONSORS.TXT init commit 3 years ago
SStream.c init commit 3 years ago
SStream.h init commit 3 years ago
TODO init commit 3 years ago
capstone.pc.in init commit 3 years ago
cmake.sh init commit 3 years ago
config.mk init commit 3 years ago
cs.c init commit 3 years ago
cs_priv.h init commit 3 years ago
functions.mk init commit 3 years ago
make.sh init commit 3 years ago
nmake.bat init commit 3 years ago
pkgconfig.mk init commit 3 years ago
utils.c init commit 3 years ago
utils.h init commit 3 years ago

README.md

Capstone Engine

Build Status Build status pypi package pypi downloads

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, Mac OSX, 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.