mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-25 06:49:24 +00:00
9f0cdc4be9
Update eflags_nosync.c Update sigill2.c Update ro_mem_test.c Update ro_mem_test.c Update nr_mem_test.c Update mem_fuzz.c Update mem_double_unmap.c Update emu_stop_in_hook_overrun.c Update eflags_nosync.c remove unused Update Makefile Update Makefile Update Makefile Update Makefile Update Makefile Update Makefile Update Makefile Update mem_64_c.c Update mem_64_c.c Update Makefile Update Makefile Update Makefile Update Makefile Update Makefile Update Makefile Update .travis.yml try android ndk build Update unicorn.py Update unicorn.py Update Makefile Update unicorn.py Update unicorn.py remove an untrue comment if a dll/so/dylib gets loaded at runtime is dependent on many different factors, primarily the LD/DYLD paths. Those do not always include the current working directory Update Makefile Update .appveyor.yml Update .travis.yml Update Makefile Update .appveyor.yml Fix bad sample |
||
---|---|---|
.. | ||
unicorn | ||
Makefile | ||
MANIFEST.in | ||
README.TXT | ||
sample_all.sh | ||
sample_arm.py | ||
sample_arm64.py | ||
sample_m68k.py | ||
sample_mips.py | ||
sample_network_auditing.py | ||
sample_sparc.py | ||
sample_x86.py | ||
setup.py | ||
shellcode.py |
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.