• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

arch/22-Nov-2023-768,651760,552

bindings/22-Nov-2023-34,75830,627

contrib/22-Nov-2023-513407

cstool/22-Nov-2023-1,123875

docs/22-Nov-2023-5528

include/22-Nov-2023-8,2157,226

msvc/22-Nov-2023-3,0933,085

packages/22-Nov-2023-317232

suite/22-Nov-2023-21,83521,070

tests/22-Nov-2023-2,9522,260

windows/22-Nov-2023-15595

xcode/22-Nov-2023-3,5753,551

.appveyor.ymlD22-Nov-2023268 1510

.gitD01-Jan-19700

.gitignoreD22-Nov-20231.5 KiB11389

.travis.ymlD22-Nov-2023458 1716

Android.bpD22-Nov-20231.6 KiB7164

CMakeLists.txtD22-Nov-202312.8 KiB418376

COMPILE.TXTD22-Nov-20235.5 KiB194107

COMPILE_CMAKE.TXTD22-Nov-20233 KiB8147

COMPILE_MSVC.TXTD22-Nov-20234.6 KiB10871

CREDITS.TXTD22-Nov-20231.9 KiB6656

ChangeLogD22-Nov-202315.8 KiB555359

HACK.TXTD22-Nov-20232 KiB4737

LEB128.hD22-Nov-20231.1 KiB4119

LICENSED22-Nov-20231.6 KiB3226

LICENSE.TXTD22-Nov-20231.6 KiB3226

LICENSE_LLVM.TXTD22-Nov-20233.3 KiB7257

MCDisassembler.hD22-Nov-2023286 158

MCFixedLenDisassembler.hD22-Nov-20231.3 KiB3112

MCInst.cD22-Nov-20233 KiB177132

MCInst.hD22-Nov-20233.9 KiB13466

MCInstrDesc.cD22-Nov-2023515 199

MCInstrDesc.hD22-Nov-20235.1 KiB14676

MCRegisterInfo.cD22-Nov-20233.4 KiB14498

MCRegisterInfo.hD22-Nov-20234.5 KiB11757

METADATAD22-Nov-2023478 2119

MakefileD22-Nov-202313.1 KiB489391

MathExtras.hD22-Nov-202313.8 KiB442245

READMED22-Nov-20231.7 KiB5631

RELEASE_NOTESD22-Nov-20230

SStream.cD22-Nov-20233.1 KiB170126

SStream.hD22-Nov-2023751 3618

TODOD22-Nov-2023427 179

capstone.pc.inD22-Nov-2023294 87

config.mkD22-Nov-20233.3 KiB838

cs.cD22-Nov-202326.6 KiB1,123864

cs_priv.hD22-Nov-20232.3 KiB7951

functions.mkD22-Nov-2023191 136

make.shD22-Nov-20234.7 KiB170136

nmake.batD22-Nov-2023235 85

pkgconfig.mkD22-Nov-2023267 134

utils.cD22-Nov-20231.8 KiB8957

utils.hD22-Nov-20231.6 KiB6033

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