blob: f66518a402cfe0cad4d0ed89bba972ac2e704df7 [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 Quynh26ee41a2013-11-27 12:11:31 +080030See COMPILE file for how to compile and install Capstone
31
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
48See HACK file for the structuture of the source code.
Nguyen Anh Quynh8afa3dd2013-12-18 00:11:25 +080049
50
51[License]
52
53This project is released under BSD license. If you redistribute the binary or
54source code of Capstone, please attach the LICENSE.TXT file with your products.