unicorn/bindings/python
2016-09-20 14:22:38 +00:00
..
unicorn Remove version number from shared library filename packaged with python bindings 2016-09-12 14:06:20 -07:00
Makefile Minor tweaks to python setup process; update gitignore 2016-09-12 14:06:50 -07:00
MANIFEST.in Basically, make python builds work as expected 2016-09-12 14:06:20 -07:00
README.TXT Basically, make python builds work as expected 2016-09-12 14:06:20 -07:00
sample_all.sh fix file perms 2015-08-28 21:05:38 -07:00
sample_arm64.py Get Python samples running on Python 3 2016-07-29 00:28:43 -07:00
sample_arm.py Fix #638 for python sample too 2016-09-20 10:29:21 +02:00
sample_m68k.py Get Python samples running on Python 3 2016-07-29 00:28:43 -07:00
sample_mips.py Get Python samples running on Python 3 2016-07-29 00:28:43 -07:00
sample_network_auditing.py Get Python samples running on Python 3 2016-07-29 00:28:43 -07:00
sample_sparc.py Get Python samples running on Python 3 2016-07-29 00:28:43 -07:00
sample_x86.py Add xmm register read/write samples in C and python 2016-08-14 18:45:59 -07:00
setup.py bindings/python: fix install3 2016-09-20 14:22:38 +00:00
shellcode.py uc_hook_add(): add begin & end arguments for all hook types. also update Python binding after this change 2016-02-11 08:02:13 +08:00

This documentation explains how to install the python binding for Unicorn
from source.

1. Installing on Linux:

	$ sudo python setup.py install

	This will build the core C library, package it with the python bindings, 
	and install it to your system.


2. Installing on Windows:

	Run the following command in command prompt:

		C:\> C:\location_to_python\python.exe setup.py install

	Next, copy all the DLL files from the 'Core engine for Windows' package available
	on the Unicorn download page and paste it in the path:

		C:\location_to_python\Lib\site-packages\unicorn\


3. Sample code

	This directory contains some sample code to show how to use Unicorn API.

	- sample_<arch>.py
	  These code show how to access architecture-specific information for each
	  architecture.

	- shellcode.py
	  This shows how to analyze a Linux shellcode.

	- sample_network_auditing.py
	  This shows how to analyze & interpret Linux shellcode.