redream/deps/capstone
Anthony Pesch aaecac5902 replace beaengine with capstone 2016-04-21 23:08:58 -07:00
..
arch replace beaengine with capstone 2016-04-21 23:08:58 -07:00
bindings replace beaengine with capstone 2016-04-21 23:08:58 -07:00
contrib replace beaengine with capstone 2016-04-21 23:08:58 -07:00
docs replace beaengine with capstone 2016-04-21 23:08:58 -07:00
include replace beaengine with capstone 2016-04-21 23:08:58 -07:00
msvc replace beaengine with capstone 2016-04-21 23:08:58 -07:00
packages replace beaengine with capstone 2016-04-21 23:08:58 -07:00
suite replace beaengine with capstone 2016-04-21 23:08:58 -07:00
tests replace beaengine with capstone 2016-04-21 23:08:58 -07:00
xcode replace beaengine with capstone 2016-04-21 23:08:58 -07:00
.appveyor.yml replace beaengine with capstone 2016-04-21 23:08:58 -07:00
.gitignore replace beaengine with capstone 2016-04-21 23:08:58 -07:00
.travis.yml replace beaengine with capstone 2016-04-21 23:08:58 -07:00
CMakeLists.txt replace beaengine with capstone 2016-04-21 23:08:58 -07:00
COMPILE.TXT replace beaengine with capstone 2016-04-21 23:08:58 -07:00
COMPILE_CMAKE.TXT replace beaengine with capstone 2016-04-21 23:08:58 -07:00
COMPILE_MSVC.TXT replace beaengine with capstone 2016-04-21 23:08:58 -07:00
CREDITS.TXT replace beaengine with capstone 2016-04-21 23:08:58 -07:00
ChangeLog replace beaengine with capstone 2016-04-21 23:08:58 -07:00
HACK.TXT replace beaengine with capstone 2016-04-21 23:08:58 -07:00
LEB128.h replace beaengine with capstone 2016-04-21 23:08:58 -07:00
LICENSE.TXT replace beaengine with capstone 2016-04-21 23:08:58 -07:00
LICENSE_LLVM.TXT replace beaengine with capstone 2016-04-21 23:08:58 -07:00
MCDisassembler.h replace beaengine with capstone 2016-04-21 23:08:58 -07:00
MCFixedLenDisassembler.h replace beaengine with capstone 2016-04-21 23:08:58 -07:00
MCInst.c replace beaengine with capstone 2016-04-21 23:08:58 -07:00
MCInst.h replace beaengine with capstone 2016-04-21 23:08:58 -07:00
MCInstrDesc.c replace beaengine with capstone 2016-04-21 23:08:58 -07:00
MCInstrDesc.h replace beaengine with capstone 2016-04-21 23:08:58 -07:00
MCRegisterInfo.c replace beaengine with capstone 2016-04-21 23:08:58 -07:00
MCRegisterInfo.h replace beaengine with capstone 2016-04-21 23:08:58 -07:00
MathExtras.h replace beaengine with capstone 2016-04-21 23:08:58 -07:00
README replace beaengine with capstone 2016-04-21 23:08:58 -07:00
RELEASE_NOTES replace beaengine with capstone 2016-04-21 23:08:58 -07:00
SStream.c replace beaengine with capstone 2016-04-21 23:08:58 -07:00
SStream.h replace beaengine with capstone 2016-04-21 23:08:58 -07:00
TODO replace beaengine with capstone 2016-04-21 23:08:58 -07:00
config.mk replace beaengine with capstone 2016-04-21 23:08:58 -07:00
cs.c replace beaengine with capstone 2016-04-21 23:08:58 -07:00
cs_priv.h replace beaengine with capstone 2016-04-21 23:08:58 -07:00
functions.mk replace beaengine with capstone 2016-04-21 23:08:58 -07:00
make.sh replace beaengine with capstone 2016-04-21 23:08:58 -07:00
myinttypes.h replace beaengine with capstone 2016-04-21 23:08:58 -07:00
pkgconfig.mk replace beaengine with capstone 2016-04-21 23:08:58 -07:00
utils.c replace beaengine with capstone 2016-04-21 23:08:58 -07:00
utils.h replace beaengine with capstone 2016-04-21 23:08:58 -07:00

README

Capstone is a disassembly framework with the target of becoming the ultimate
disasm engine for binary analysis and reversing in the security community.

Created by Nguyen Anh Quynh, then developed and maintained by a small community,
Capstone offers some unparalleled features:

- Support multiple hardware architectures: ARM, ARM64 (ARMv8), Mips, PPC, Sparc,
  SystemZ, XCore and X86 (including X86_64).

- Having clean/simple/lightweight/intuitive architecture-neutral API.

- Provide details on disassembled instruction (called “decomposer” by others).

- Provide semantics of the disassembled instruction, such as list of implicit
  registers read & written.

- Implemented in pure C language, with lightweight bindings for Haskell, Perl, Python,
  Ruby, C#, NodeJS, Java, GO, C++, OCaml, Lua, Rust, Delphi, Free Pascal & Vala
  ready either in main code, or provided externally by the community).

- Native support for all popular platforms: Windows, Mac OSX, iOS, Android,
  Linux, *BSD, Solaris, etc.

- Thread-safe by design.

- Special support for embedding into firmware or OS kernel.

- High performance & suitable for malware analysis (capable of handling various
  X86 malware tricks).

- Distributed under the open source BSD license.

Further information is available at http://www.capstone-engine.org


[Compile]

See COMPILE.TXT file for how to compile and install Capstone.


[Documentation]

See docs/README for how to customize & program your own tools with Capstone.


[Hack]

See HACK.TXT file for the structure of the source code.


[License]

This project is released under the BSD license. If you redistribute the binary
or source code of Capstone, please attach file LICENSE.TXT with your products.