blob: 66c13b10fc683b8befab765fb109ddc9d88c6671 [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
Nguyen Anh Quynh92c17502014-01-17 14:59:21 +08007- Support multiple hardware architectures: ARM, ARM64 (ARMv8), Mips, PPC & X86.
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +08008
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
Nguyen Anh Quynh2b254452014-01-22 10:21:25 +080014 registers read & written.
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080015
Nguyen Anh Quynh2b254452014-01-22 10:21:25 +080016- Implemented in pure C language, with lightweight wrappers for C++, C#, Go,
17 Java, Ocaml, Python, Ruby & Vala ready (either available in main code,
18 or provided externally by community).
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080019
Nguyen Anh Quynh92c17502014-01-17 14:59:21 +080020- Native support for Windows & *nix platforms (with OSX, Linux, *BSD & Solaris
21 have been confirmed).
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080022
23- Thread-safe by design.
24
25- Distributed under the open source BSD license.
26
Nguyen Anh Quynhb7155b02013-12-18 00:18:06 +080027Further information is available at http://www.capstone-engine.org
28
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080029
30[Compile]
Nguyen Anh Quynh8afa3dd2013-12-18 00:11:25 +080031
Nguyen Anh Quynh8282dc62014-01-15 21:20:47 +080032See COMPILE.TXT file for how to compile and install Capstone
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080033
34
Nguyen Anh Quynh8afa3dd2013-12-18 00:11:25 +080035[Status]
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080036
Nguyen Anh Quynh8afa3dd2013-12-18 00:11:25 +080037- Capstone can only compile to Windows via Cygwin, or cross-compile using
38MingW. Visual Studio support will be done in the future.
39
40- X86 engine cannot handle many malware tricks yet. Please report all the raw
41binary code that Capstone cannot disassemble, or does that wrongly, so we can
42fix that in the next version
43
44- This package only contains Java & Python bindings. For C#, Go, Ocaml & Ruby,
45refer to the corresponding git repositories.
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080046
47
48[Hack]
49
Nguyen Anh Quynh8282dc62014-01-15 21:20:47 +080050See HACK.TXT file for the structuture of the source code.
Nguyen Anh Quynh8afa3dd2013-12-18 00:11:25 +080051
52
53[License]
54
Nguyen Anh Quynh24ca24c2013-12-18 10:16:07 +080055This project is released under the BSD license. If you redistribute the binary
56or source code of Capstone, please attach file LICENSE.TXT with your products.