blob: 1c40b1ad9009d32124c71a54334dfad4fc1de1c2 [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 Quynh38b7bbb2014-01-22 10:21:25 +080014 registers read & written.
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080015
Nguyen Anh Quynh38b7bbb2014-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
Nguyen Anh Quynhb0b73082014-03-03 17:57:15 +080025- Special support for embedding into firmware or OS kernel.
26
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080027- Distributed under the open source BSD license.
28
Nguyen Anh Quynhb7155b02013-12-18 00:18:06 +080029Further information is available at http://www.capstone-engine.org
30
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080031
32[Compile]
Nguyen Anh Quynh8afa3dd2013-12-18 00:11:25 +080033
Nguyen Anh Quynh8282dc62014-01-15 21:20:47 +080034See COMPILE.TXT file for how to compile and install Capstone
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080035
36
Nguyen Anh Quynh8afa3dd2013-12-18 00:11:25 +080037[Status]
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080038
Nguyen Anh Quynh8afa3dd2013-12-18 00:11:25 +080039- Capstone can only compile to Windows via Cygwin, or cross-compile using
40MingW. Visual Studio support will be done in the future.
41
42- X86 engine cannot handle many malware tricks yet. Please report all the raw
43binary code that Capstone cannot disassemble, or does that wrongly, so we can
44fix that in the next version
45
46- This package only contains Java & Python bindings. For C#, Go, Ocaml & Ruby,
47refer to the corresponding git repositories.
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080048
49
50[Hack]
51
Nguyen Anh Quynh8282dc62014-01-15 21:20:47 +080052See HACK.TXT file for the structuture of the source code.
Nguyen Anh Quynh8afa3dd2013-12-18 00:11:25 +080053
54
55[License]
56
Nguyen Anh Quynh24ca24c2013-12-18 10:16:07 +080057This project is released under the BSD license. If you redistribute the binary
58or source code of Capstone, please attach file LICENSE.TXT with your products.