1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
Documentation of Capstone disassembly framework.
* Switching to 2.1 engine.
http://capstone-engine.org/version_2.1_API.html
* How to compile & install Capstone.
http://capstone-engine.org/documentation.html
* Programming with C language.
http://capstone-engine.org/lang_c.html
* Programming with Python language.
http://capstone-engine.org/lang_python.html
* Programming with Java language.
http://capstone-engine.org/lang_java.html
* Customize instruction mnemonics at run-time.
http://capstone-engine.org/mnemonic.html
* Retrieve access information of instruction operands.
http://capstone-engine.org/op_access.html
* Build compact engine with only selected architectures.
http://capstone-engine.org/compile.html
* Build "diet" engine for even smaller libraries.
http://capstone-engine.org/diet.html
* Build embedded engine for firmware/OS kernel.
http://capstone-engine.org/embed.html
* SKIPDATA mode to keep disassembling after hitting a broken instruction.
http://capstone-engine.org/skipdata.html
* Quickly iterate instructions with cs_disasm_iter().
http://capstone-engine.org/iteration.html
* Build X86-reduce engine for firmware/OS kernel.
http://capstone-engine.org/x86reduce.html
* Sample applications on how to embed Capstone into Windows kernel driver.
https://github.com/aquynh/capstone/tree/master/contrib/cs_driver (in C, basic)
https://github.com/aquynh/KernelProject (in C++)
* Sample application on how to embed Capstone into Mac OSX Kext (kernel).
https://github.com/aquynh/CapstoneTest
* A Micro Capstone-Engine API Documentation in Chinese
https://github.com/kabeor/Micro-Capstone-Engine-API-Documentation/blob/master/Micro%20Capstone-Engine%20API%20Documentation.md
|