blob: c18149ff77b316eac1e468ece651c8d6c40c687e [file] [log] [blame]
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +08001Capstone 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 (aka ARMv8), Mips & X86.
8
9- Having clean/simple/lightweight/intuitive architecture-neutral API.
10
11- Provide details on disassembled instruction (called decomposer by others).
12
13- Provide semantics of the disassembled instruction, such as list of implicit
14 registers read & written.
15
16- Implemented in pure C language, with lightweight wrappers for C++, Python,
17 Ruby, OCaml, C#, Java and Go available.
18
Nguyen Anh Quynhb2dc0542013-12-09 16:05:49 +080019- Native support for Windows & *nix platforms (MacOSX, Linux & *BSD confirmed).
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080020
21- Thread-safe by design.
22
23- Distributed under the open source BSD license.
24
25
26[Compile]
Nguyen Anh Quynh8afa3dd2013-12-18 00:11:25 +080027
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080028See COMPILE file for how to compile and install Capstone
29
30
Nguyen Anh Quynh8afa3dd2013-12-18 00:11:25 +080031[Status]
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080032
Nguyen Anh Quynh8afa3dd2013-12-18 00:11:25 +080033- Capstone can only compile to Windows via Cygwin, or cross-compile using
34MingW. Visual Studio support will be done in the future.
35
36- X86 engine cannot handle many malware tricks yet. Please report all the raw
37binary code that Capstone cannot disassemble, or does that wrongly, so we can
38fix that in the next version
39
40- This package only contains Java & Python bindings. For C#, Go, Ocaml & Ruby,
41refer to the corresponding git repositories.
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080042
43
44[Hack]
45
46See HACK file for the structuture of the source code.
Nguyen Anh Quynh8afa3dd2013-12-18 00:11:25 +080047
48
49[License]
50
51This project is released under BSD license. If you redistribute the binary or
52source code of Capstone, please attach the LICENSE.TXT file with your products.