-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7f76b32
commit a01421f
Showing
1 changed file
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,52 @@ | ||
# ReverseEngineeringInDocker | ||
Docker image for Android reverse engineering tools. Android逆向工程工具Docker镜像 | ||
|
||
# Version | ||
|
||
1. 1.0: Add vnc server, jdk 11, Jadx | ||
|
||
# Usage | ||
|
||
``` | ||
docker run -d --name YourName --shm-size 2G -P -p 8118:5901 -p 8119:6901 -e VNC_RESOLUTION=1920x1080 -e VNC_PW=ppllmmoo -v ~/:/metaworld:cached reverseengineeringindocker:VERSION | ||
``` | ||
|
||
- Jadx | ||
|
||
``` | ||
$HOME/jadx-gui | ||
``` | ||
|
||
- Connect by vnc client | ||
|
||
``` | ||
Port 8118 | ||
``` | ||
|
||
- Connect by Web Browser(HTML client) | ||
|
||
``` | ||
http://HOST:8119/vnc.html | ||
``` | ||
|
||
- Set VNC resolution depth and poassword | ||
|
||
``` | ||
-e VNC_COL_DEPTH=24 | ||
-e VNC_COL_DEPTH=1920x1080 | ||
-e VNC_PW=PASSWD | ||
``` | ||
|
||
- Run docker as root | ||
|
||
``` | ||
--user 0 | ||
``` | ||
|
||
# LICENSE | ||
```text | ||
Apache License | ||
Version 2.0, January 2004 | ||
http://www.apache.org/licenses/ | ||
``` | ||
|