Home | History | Annotate | only in /external/capstone/bindings/python
Up to higher level directory
NameDateSize
BUILDING.txt21-Aug-20182.6K
capstone/21-Aug-2018
LICENSE.TXT21-Aug-20181.6K
Makefile21-Aug-20181.8K
MANIFEST.in21-Aug-2018101
prebuilt/21-Aug-2018
pyx/21-Aug-2018
README.txt21-Aug-20182.3K
setup.py21-Aug-20187.2K
setup_cython.py21-Aug-20184.8K
test_all.py21-Aug-2018429
test_arm.py21-Aug-20185K
test_arm64.py21-Aug-20184K
test_basic.py21-Aug-20184.9K
test_detail.py21-Aug-20185K
test_lite.py21-Aug-20183.2K
test_mips.py21-Aug-20182.5K
test_ppc.py21-Aug-20182.8K
test_skipdata.py21-Aug-20182.3K
test_sparc.py21-Aug-20182.6K
test_systemz.py21-Aug-20182.6K
test_x86.py21-Aug-20185.2K
test_xcore.py21-Aug-20182.3K
xprint.py21-Aug-2018890

README.txt

      1 To install Capstone, you should run `pip install capstone`.
      2 
      3 If you would like to build Capstone with just the source distribution, without
      4 pip, just run `python setup.py install` in the folder with setup.py in it.
      5 
      6 In order to use this source distribution, you will need an environment that can
      7 compile C code. On Linux, this is usually easy, but on Windows, this involves
      8 installing Visual Studio and using the "Developer Command Prompt" to perform the
      9 installation. See BUILDING.txt for more information.
     10 
     11 If you don't want to build your own copy of Capstone, you can use a precompiled
     12 binary distribution from PyPI. Saying `pip install capstone` should
     13 automatically obtain an appropriate copy for your system. If it does not, please
     14 open an issue at https://github.com/aquynh/capstone and tag @rhelmot - they
     15 will fix this, probably!
     16 
     17 --------------------------------------------------------------------------------
     18 
     19 Capstone is a disassembly framework with the target of becoming the ultimate
     20 disasm engine for binary analysis and reversing in the security community.
     21 
     22 Created by Nguyen Anh Quynh, then developed and maintained by a small community,
     23 Capstone offers some unparalleled features:
     24 
     25 - Support multiple hardware architectures: ARM, ARM64 (ARMv8), Mips, PPC, Sparc,
     26   SystemZ, XCore and X86 (including X86_64).
     27 
     28 - Having clean/simple/lightweight/intuitive architecture-neutral API.
     29 
     30 - Provide details on disassembled instruction (called decomposer by others).
     31 
     32 - Provide semantics of the disassembled instruction, such as list of implicit
     33   registers read & written.
     34 
     35 - Implemented in pure C language, with lightweight wrappers for C++, C#, Go,
     36   Java, NodeJS, Ocaml, Python, Ruby & Vala ready (available in main code,
     37   or provided externally by the community).
     38 
     39 - Native support for all popular platforms: Windows, Mac OSX, iOS, Android,
     40   Linux, *BSD, Solaris, etc.
     41 
     42 - Thread-safe by design.
     43 
     44 - Special support for embedding into firmware or OS kernel.
     45 
     46 - High performance & suitable for malware analysis (capable of handling various
     47   X86 malware tricks).
     48 
     49 - Distributed under the open source BSD license.
     50 
     51 Further information is available at http://www.capstone-engine.org
     52 
     53 
     54 [License]
     55 
     56 This project is released under the BSD license. If you redistribute the binary
     57 or source code of Capstone, please attach file LICENSE.TXT with your products.
     58