• Home
Name Date Size #Lines LOC

..--

.github/workflows/03-May-2024-147129

arch/03-May-2024-1,053,5311,042,437

bindings/03-May-2024-48,15843,857

contrib/03-May-2024-2,5422,204

cstool/03-May-2024-2,0951,703

docs/03-May-2024-6734

include/03-May-2024-12,85811,486

msvc/03-May-2024-3,3043,291

packages/03-May-2024-283209

suite/03-May-2024-26,72823,783

tests/03-May-2024-4,7853,792

windows/03-May-2024-15595

windowsce/03-May-2024-499382

xcode/03-May-2024-4,0364,011

.appveyor.ymlD03-May-2024266 1510

.gitattributesD03-May-202435 21

.gitignoreD03-May-20241.7 KiB125101

.travis.ymlD03-May-20243 KiB7674

Android.bpD03-May-20243.2 KiB115106

CMakeLists.txtD03-May-202420.4 KiB630580

COMPILE.TXTD03-May-20245.7 KiB201113

COMPILE_CMAKE.TXTD03-May-20244.8 KiB11572

COMPILE_MSVC.TXTD03-May-20245.2 KiB12280

CREDITS.TXTD03-May-20242.8 KiB8474

ChangeLogD03-May-202418.8 KiB702437

HACK.TXTD03-May-20243.6 KiB10383

LEB128.hD03-May-20241.1 KiB3917

LICENSED03-May-20241.6 KiB3226

LICENSE.TXTD03-May-20241.6 KiB3226

LICENSE_LLVM.TXTD03-May-20243.3 KiB7257

MCDisassembler.hD03-May-2024286 158

MCFixedLenDisassembler.hD03-May-20241.3 KiB3112

MCInst.cD03-May-20243.1 KiB183137

MCInst.hD03-May-20244.1 KiB13667

MCInstrDesc.cD03-May-2024527 199

MCInstrDesc.hD03-May-20245.1 KiB14575

MCRegisterInfo.cD03-May-20243.5 KiB14498

MCRegisterInfo.hD03-May-20244.7 KiB11755

METADATAD03-May-2024547 2120

MakefileD03-May-202413.9 KiB550434

MathExtras.hD03-May-202413.8 KiB443247

OWNERSD03-May-202463 32

README.mdD03-May-20242.3 KiB6841

RELEASE_NOTESD03-May-20240

SPONSORS.TXTD03-May-2024637 2115

SStream.cD03-May-20243.6 KiB189145

SStream.hD03-May-2024797 3819

TODOD03-May-2024427 179

capstone.pc.inD03-May-2024365 1311

cmake.shD03-May-2024988 6451

config.mkD03-May-20243.3 KiB838

cs.cD03-May-202436.8 KiB1,5811,274

cs_priv.hD03-May-20242.8 KiB9060

functions.mkD03-May-2024191 136

make.shD03-May-20244.2 KiB143111

nmake.batD03-May-2024874 2821

pkgconfig.mkD03-May-2024263 134

utils.cD03-May-20242.5 KiB14092

utils.hD03-May-20242.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