blob: 53dd63413e53e327eea2cbe79876acc9334440c1 [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
Nguyen Anh Quynhb7155b02013-12-18 00:18:06 +080025Further information is available at http://www.capstone-engine.org
26
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080027
28[Compile]
Nguyen Anh Quynh8afa3dd2013-12-18 00:11:25 +080029
Nguyen Anh Quynh8282dc62014-01-15 21:20:47 +080030See COMPILE.TXT file for how to compile and install Capstone
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080031
32
Nguyen Anh Quynh8afa3dd2013-12-18 00:11:25 +080033[Status]
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080034
Nguyen Anh Quynh8afa3dd2013-12-18 00:11:25 +080035- Capstone can only compile to Windows via Cygwin, or cross-compile using
36MingW. Visual Studio support will be done in the future.
37
38- X86 engine cannot handle many malware tricks yet. Please report all the raw
39binary code that Capstone cannot disassemble, or does that wrongly, so we can
40fix that in the next version
41
42- This package only contains Java & Python bindings. For C#, Go, Ocaml & Ruby,
43refer to the corresponding git repositories.
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080044
45
46[Hack]
47
Nguyen Anh Quynh8282dc62014-01-15 21:20:47 +080048See HACK.TXT file for the structuture of the source code.
Nguyen Anh Quynh8afa3dd2013-12-18 00:11:25 +080049
50
51[License]
52
Nguyen Anh Quynh24ca24c2013-12-18 10:16:07 +080053This project is released under the BSD license. If you redistribute the binary
54or source code of Capstone, please attach file LICENSE.TXT with your products.