forked from unicorn-engine/unicorn
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME.TXT
More file actions
37 lines (23 loc) · 934 Bytes
/
README.TXT
File metadata and controls
37 lines (23 loc) · 934 Bytes
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
This documentation explains how to install the Java binding for Unicorn
from source.
0. Install the core engine as dependency
Follow README in the root directory to compile & install the core.
On *nix, this can simply done by:
$ sudo ./make.sh install
1. Install a JDK for your platform. When done, make sure the JDK tools
are in your PATH.
2. Change directories into the java bindings, build and install
$ cd bindings/java
$ make
$ sudo make install
$ make samples
The samples directory contains some sample code to show how to use Unicorn API.
- Sample_<arch>.java
These show how to access architecture-specific information for each
architecture.
- Shellcode.java
This shows how to analyze a Linux shellcode.
- SampleNetworkAuditing.java
Unicorn sample for auditing network connection and file handling in shellcode.
To uninstall Java binding for Unicorn:
$ sudo make uninstall