Name Date Size #Lines LOC

..--

.github/workflows/H25-Apr-2025-147129

arch/H25-Apr-2025-1,053,5321,042,439

bindings/H25-Apr-2025-48,16643,862

contrib/H25-Apr-2025-2,5422,204

cstool/H25-Apr-2025-2,0951,703

docs/H25-Apr-2025-3,4742,617

include/H25-Apr-2025-12,85811,486

msvc/H25-Apr-2025-3,3453,337

packages/H25-Apr-2025-283209

suite/H25-Apr-2025-26,72823,783

tests/H25-Apr-2025-4,7873,794

windows/H25-Apr-2025-15595

windowsce/H25-Apr-2025-499382

xcode/H25-Apr-2025-4,0364,011

.appveyor.ymlH A D25-Apr-2025266 1510

.gitattributesH A D25-Apr-202535 21

.gitignoreH A D25-Apr-20251.7 KiB125101

.travis.ymlH A D25-Apr-20253 KiB7674

Android.bpH A D25-Apr-20253.2 KiB117108

CMakeLists.txtH A D25-Apr-202520.4 KiB630580

COMPILE.TXTH A D25-Apr-20255.7 KiB201113

COMPILE_CMAKE.TXTH A D25-Apr-20254.8 KiB11572

COMPILE_MSVC.TXTH A D25-Apr-20255.2 KiB12280

CREDITS.TXTH A D25-Apr-20252.8 KiB8474

ChangeLogH A D25-Apr-202518.8 KiB702437

HACK.TXTH A D25-Apr-20253.6 KiB10383

LEB128.hH A D25-Apr-20251.1 KiB3917

LICENSEH A D25-Apr-20251.6 KiB3226

LICENSE.TXTH A D25-Apr-20251.6 KiB3226

LICENSE_LLVM.TXTH A D25-Apr-20253.3 KiB7257

MCDisassembler.hH A D25-Apr-2025286 158

MCFixedLenDisassembler.hH A D25-Apr-20251.3 KiB3112

MCInst.cH A D25-Apr-20253.1 KiB183137

MCInst.hH A D25-Apr-20254.1 KiB13667

MCInstrDesc.cH A D25-Apr-2025527 199

MCInstrDesc.hH A D25-Apr-20255.1 KiB14575

MCRegisterInfo.cH A D25-Apr-20253.5 KiB14498

MCRegisterInfo.hH A D25-Apr-20254.7 KiB11755

METADATAH A D25-Apr-2025632 2423

MakefileH A D25-Apr-202513.9 KiB550434

MathExtras.hH A D25-Apr-202513.8 KiB443247

OWNERSH A D25-Apr-202563 32

README.mdH A D25-Apr-20253 KiB9254

RELEASE_NOTESHD25-Apr-20250

SPONSORS.TXTH A D25-Apr-2025637 2115

SStream.cH A D25-Apr-20253.6 KiB189145

SStream.hH A D25-Apr-2025797 3819

TODOH A D25-Apr-2025427 179

capstone.pc.inH A D25-Apr-2025365 1311

cmake.shH A D25-Apr-2025988 6451

config.mkH A D25-Apr-20253.3 KiB838

cs.cH A D25-Apr-202536.8 KiB1,5811,274

cs_priv.hH A D25-Apr-20252.8 KiB9060

functions.mkH A D25-Apr-2025191 136

make.shH A D25-Apr-20254.2 KiB143111

nmake.batH A D25-Apr-2025874 2821

pkgconfig.mkH A D25-Apr-2025263 134

utils.cH A D25-Apr-20252.5 KiB14092

utils.hH A D25-Apr-20252.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
9Deprecation
10===========
11
12The [`master`](https://github.com/capstone-engine/capstone/tree/master) branch is deprecated.
13All forward development should be based on the [`next`](https://github.com/capstone-engine/capstone/tree/next) branch.
14
15To clone a fresh checkout with the `next` branch:
16
17    git clone -b next https://github.com/capstone-engine/capstone
18
19To change to the `next` branch in an existing checkout:
20
21    git checkout next
22
23----
24
25We moved the original historical repo of Capstone from https://github.com/aquynh/capstone to an organization, where we can add more maintainers to the project, and push Capstone development forward.
26
27Our new home is https://github.com/capstone-engine/capstone
28
29Nov 8th, 2021.
30
31----
32
33Capstone is a disassembly framework with the target of becoming the ultimate
34disasm engine for binary analysis and reversing in the security community.
35
36Created by Nguyen Anh Quynh, then developed and maintained by a small community,
37Capstone offers some unparalleled features:
38
39- Support multiple hardware architectures: ARM, ARM64 (ARMv8), Ethereum VM, M68K,
40  Mips, MOS65XX, PPC, Sparc, SystemZ, TMS320C64X, M680X, XCore and X86 (including X86_64).
41
42- Having clean/simple/lightweight/intuitive architecture-neutral API.
43
44- Provide details on disassembled instruction (called “decomposer” by others).
45
46- Provide semantics of the disassembled instruction, such as list of implicit
47  registers read & written.
48
49- Implemented in pure C language, with lightweight bindings for D, Clojure, F#,
50  Common Lisp, Visual Basic, PHP, PowerShell, Emacs, Haskell, Perl, Python,
51  Ruby, C#, NodeJS, Java, GO, C++, OCaml, Lua, Rust, Delphi, Free Pascal & Vala
52  (ready either in main code, or provided externally by the community).
53
54- Native support for all popular platforms: Windows, macOS, iOS, Android,
55  Linux, \*BSD, Solaris, etc.
56
57- Thread-safe by design.
58
59- Special support for embedding into firmware or OS kernel.
60
61- High performance & suitable for malware analysis (capable of handling various
62  X86 malware tricks).
63
64- Distributed under the open source BSD license.
65
66Further information is available at http://www.capstone-engine.org
67
68
69Compile
70-------
71
72See COMPILE.TXT file for how to compile and install Capstone.
73
74
75Documentation
76-------------
77
78See docs/README for how to customize & program your own tools with Capstone.
79
80
81Hack
82----
83
84See HACK.TXT file for the structure of the source code.
85
86
87License
88-------
89
90This project is released under the BSD license. If you redistribute the binary
91or source code of Capstone, please attach file LICENSE.TXT with your products.
92