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

..--

.github/workflows/23-Nov-2023-147129

arch/23-Nov-2023-1,053,5311,042,437

bindings/23-Nov-2023-46,65642,773

contrib/23-Nov-2023-2,5422,204

cstool/23-Nov-2023-2,0951,703

docs/23-Nov-2023-6734

include/23-Nov-2023-12,85811,486

msvc/23-Nov-2023-3,3043,291

packages/23-Nov-2023-283209

suite/23-Nov-2023-26,72823,783

tests/23-Nov-2023-4,7853,792

windows/23-Nov-2023-15595

windowsce/23-Nov-2023-499382

xcode/23-Nov-2023-4,0364,011

.appveyor.ymlD23-Nov-2023266 1510

.gitattributesD23-Nov-202335 21

.gitignoreD23-Nov-20231.7 KiB125101

.travis.ymlD23-Nov-20233 KiB7674

Android.bpD23-Nov-20233.2 KiB115106

CMakeLists.txtD23-Nov-202320.4 KiB630580

COMPILE.TXTD23-Nov-20235.7 KiB201113

COMPILE_CMAKE.TXTD23-Nov-20234.8 KiB11572

COMPILE_MSVC.TXTD23-Nov-20235.2 KiB12280

CREDITS.TXTD23-Nov-20232.8 KiB8474

ChangeLogD23-Nov-202318.8 KiB702437

HACK.TXTD23-Nov-20233.6 KiB10383

LEB128.hD23-Nov-20231.1 KiB3917

LICENSED23-Nov-20231.6 KiB3226

LICENSE.TXTD23-Nov-20231.6 KiB3226

LICENSE_LLVM.TXTD23-Nov-20233.3 KiB7257

MCDisassembler.hD23-Nov-2023286 158

MCFixedLenDisassembler.hD23-Nov-20231.3 KiB3112

MCInst.cD23-Nov-20233.1 KiB183137

MCInst.hD23-Nov-20234.1 KiB13667

MCInstrDesc.cD23-Nov-2023527 199

MCInstrDesc.hD23-Nov-20235.1 KiB14575

MCRegisterInfo.cD23-Nov-20233.5 KiB14498

MCRegisterInfo.hD23-Nov-20234.7 KiB11755

METADATAD23-Nov-2023547 2120

MakefileD23-Nov-202313.9 KiB550434

MathExtras.hD23-Nov-202313.8 KiB443247

OWNERSD23-Nov-202363 32

README.mdD23-Nov-20232.3 KiB6841

RELEASE_NOTESD23-Nov-20230

SPONSORS.TXTD23-Nov-2023637 2115

SStream.cD23-Nov-20233.6 KiB189145

SStream.hD23-Nov-2023797 3819

TODOD23-Nov-2023427 179

capstone.pc.inD23-Nov-2023365 1311

cmake.shD23-Nov-2023988 6451

config.mkD23-Nov-20233.3 KiB838

cs.cD23-Nov-202336.8 KiB1,5811,274

cs_priv.hD23-Nov-20232.8 KiB9060

functions.mkD23-Nov-2023191 136

make.shD23-Nov-20234.2 KiB143111

nmake.batD23-Nov-2023874 2821

pkgconfig.mkD23-Nov-2023263 134

utils.cD23-Nov-20232.5 KiB14092

utils.hD23-Nov-20232.1 KiB7339

README.md

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