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

..07-May-2022-

arch/H25-Dec-2018-768,658760,571

bindings/H25-Dec-2018-34,55930,496

contrib/H25-Dec-2018-513407

cstool/H25-Dec-2018-1,125877

docs/H03-May-2022-5528

include/H25-Dec-2018-8,2157,226

msvc/H25-Dec-2018-3,0933,085

packages/H25-Dec-2018-317232

suite/H25-Dec-2018-21,83521,070

tests/H25-Dec-2018-2,9522,260

windows/H25-Dec-2018-15595

xcode/H25-Dec-2018-3,5753,551

.appveyor.ymlH A D25-Dec-2018268 1510

.gitignoreH A D25-Dec-20181.5 KiB11389

.travis.ymlH A D25-Dec-2018634 2726

ChangeLogH A D25-Dec-201815.8 KiB555359

LEB128.hH A D25-Dec-20181.1 KiB4119

MCDisassembler.hH A D25-Dec-2018286 158

MCFixedLenDisassembler.hH A D25-Dec-20181.3 KiB3112

MCInst.cH A D25-Dec-20183 KiB177132

MCInst.hH A D25-Dec-20183.9 KiB13466

MCInstrDesc.cH A D25-Dec-2018527 199

MCInstrDesc.hH A D25-Dec-20185.1 KiB14676

MCRegisterInfo.cH A D25-Dec-20183.5 KiB14498

MCRegisterInfo.hH A D25-Dec-20184.6 KiB11757

MakefileH A D25-Dec-201813.3 KiB494396

MathExtras.hH A D25-Dec-201813.8 KiB442245

READMEH A D25-Dec-20181.7 KiB5631

SStream.cH A D25-Dec-20183.1 KiB170126

SStream.hH A D25-Dec-2018757 3618

TODOH A D25-Dec-2018427 179

capstone.pc.inH A D25-Dec-2018348 1311

config.mkH A D25-Dec-20183.3 KiB838

cs.cH A D25-Dec-201826.9 KiB1,135873

cs_priv.hH A D25-Dec-20182.6 KiB8552

functions.mkH A D25-Dec-2018191 136

make.shH A D25-Dec-20184.8 KiB171137

nmake.batH A D25-Dec-2018235 85

pkgconfig.mkH A D25-Dec-2018267 134

utils.cH A D25-Dec-20181.8 KiB8957

utils.hH A D25-Dec-20181.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