NameDateSize

..10-Aug-201812 KiB

.appveyor.yml10-Aug-2018268

.gitignore10-Aug-20181.5 KiB

.travis.yml10-Aug-2018458

Android.bp10-Aug-20181.6 KiB

arch/10-Aug-20184 KiB

bindings/10-Aug-20184 KiB

capstone.pc.in10-Aug-2018294

ChangeLog10-Aug-201815.8 KiB

CMakeLists.txt10-Aug-201812.8 KiB

COMPILE.TXT10-Aug-20185.5 KiB

COMPILE_CMAKE.TXT10-Aug-20183 KiB

COMPILE_MSVC.TXT10-Aug-20184.6 KiB

config.mk10-Aug-20183.3 KiB

contrib/10-Aug-20184 KiB

CREDITS.TXT10-Aug-20181.9 KiB

cs.c10-Aug-201826.6 KiB

cs_priv.h10-Aug-20182.3 KiB

cstool/10-Aug-20184 KiB

docs/10-Aug-20184 KiB

functions.mk10-Aug-2018191

HACK.TXT10-Aug-20182 KiB

include/10-Aug-20184 KiB

LEB128.h10-Aug-20181.1 KiB

LICENSE10-Aug-20181.6 KiB

LICENSE.TXT10-Aug-20181.6 KiB

LICENSE_LLVM.TXT10-Aug-20183.3 KiB

make.sh10-Aug-20184.7 KiB

Makefile10-Aug-201813.1 KiB

MathExtras.h10-Aug-201813.8 KiB

MCDisassembler.h10-Aug-2018286

MCFixedLenDisassembler.h10-Aug-20181.3 KiB

MCInst.c10-Aug-20183 KiB

MCInst.h10-Aug-20183.9 KiB

MCInstrDesc.c10-Aug-2018515

MCInstrDesc.h10-Aug-20185.1 KiB

MCRegisterInfo.c10-Aug-20183.4 KiB

MCRegisterInfo.h10-Aug-20184.5 KiB

METADATA10-Aug-2018478

msvc/10-Aug-20184 KiB

nmake.bat10-Aug-2018235

packages/10-Aug-20184 KiB

pkgconfig.mk10-Aug-2018267

README10-Aug-20181.7 KiB

RELEASE_NOTES10-Aug-20180

SStream.c10-Aug-20183.1 KiB

SStream.h10-Aug-2018751

suite/10-Aug-20184 KiB

tests/10-Aug-20184 KiB

TODO10-Aug-2018427

utils.c10-Aug-20181.8 KiB

utils.h10-Aug-20181.6 KiB

windows/10-Aug-20184 KiB

xcode/10-Aug-20184 KiB

README

1Capstone is a disassembly framework with the target of becoming the ultimate
2disasm engine for binary analysis and reversing in the security community.
3
4Created by Nguyen Anh Quynh, then developed and maintained by a small community,
5Capstone offers some unparalleled features:
6
7- Support multiple hardware architectures: ARM, ARM64 (ARMv8), Mips, PPC, Sparc,
8  SystemZ, XCore and X86 (including X86_64).
9
10- Having clean/simple/lightweight/intuitive architecture-neutral API.
11
12- Provide details on disassembled instruction (called “decomposer” by others).
13
14- Provide semantics of the disassembled instruction, such as list of implicit
15  registers read & written.
16
17- Implemented in pure C language, with lightweight bindings for Visual Basic, PHP,
18  PowerShell, Emacs, Haskell, Perl, Python, Ruby, C#, NodeJS, Java, GO, C++, OCaml,
19  Lua, Rust, Delphi, Free Pascal & Vala ready either in main code, or provided
20  externally by the community).
21
22- Native support for all popular platforms: Windows, Mac OSX, iOS, Android,
23  Linux, *BSD, Solaris, etc.
24
25- Thread-safe by design.
26
27- Special support for embedding into firmware or OS kernel.
28
29- High performance & suitable for malware analysis (capable of handling various
30  X86 malware tricks).
31
32- Distributed under the open source BSD license.
33
34Further information is available at http://www.capstone-engine.org
35
36
37[Compile]
38
39See COMPILE.TXT file for how to compile and install Capstone.
40
41
42[Documentation]
43
44See docs/README for how to customize & program your own tools with Capstone.
45
46
47[Hack]
48
49See HACK.TXT file for the structure of the source code.
50
51
52[License]
53
54This project is released under the BSD license. If you redistribute the binary
55or source code of Capstone, please attach file LICENSE.TXT with your products.
56