• Home
Name Date Size #Lines LOC

..--

capstone/03-May-2024-12,50511,852

prebuilt/03-May-2024-

pyx/03-May-2024-436322

.gitignoreD03-May-202488 109

BUILDING.txtD03-May-20242.6 KiB7851

LICENSE.TXTD03-May-20241.6 KiB3226

MANIFEST.inD03-May-2024101 65

MakefileD03-May-20242.1 KiB8261

README.txtD03-May-20242.8 KiB6644

build_wheel.shD03-May-2024361 1611

setup.cfgD03-May-202428 32

setup.pyD03-May-20249.5 KiB282210

setup_cython.pyD03-May-20245.1 KiB145104

test_all.pyD03-May-2024640 2319

test_arm.pyD03-May-20245.9 KiB152123

test_arm64.pyD03-May-20244.8 KiB13098

test_basic.pyD03-May-20246 KiB10884

test_customized_mnem.pyD03-May-2024976 4124

test_detail.pyD03-May-20245.8 KiB10987

test_evm.pyD03-May-2024657 2417

test_lite.pyD03-May-20245.6 KiB10079

test_m680x.pyD03-May-20247.7 KiB160129

test_m68k.pyD03-May-20244.3 KiB12190

test_mips.pyD03-May-20242.5 KiB7252

test_mos65xx.pyD03-May-20242.3 KiB7254

test_ppc.pyD03-May-20242.9 KiB8464

test_skipdata.pyD03-May-20242.3 KiB7432

test_sparc.pyD03-May-20242.6 KiB7655

test_systemz.pyD03-May-20242.5 KiB7856

test_tms320c64x.pyD03-May-20243.9 KiB9473

test_x86.pyD03-May-20249.9 KiB293226

test_xcore.pyD03-May-20242.3 KiB7251

xprint.pyD03-May-20241.1 KiB4233

README.txt

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