Skip to content

Commit dd0669b

Browse files
Add frida
1 parent 1ee242a commit dd0669b

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

Dockerfile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,15 @@ RUN brew install [email protected] pyenv
7272
RUN python3.9 -m pip install --upgrade pip
7373
RUN python3.9 -m pip install --upgrade setuptools
7474

75+
# adb
76+
USER 0
77+
RUN add-apt-repository ppa:nilarimogard/webupd8 && apt update \
78+
&& apt -y install android-tools-adb android-tools-fastboot
79+
USER 1000
80+
81+
# frida
82+
RUN pip3 install frida-tools
83+
7584
# clean
7685
USER 0
7786
RUN apt autoremove --purge -y && apt clean && apt autoclean && rm -rf /var/lib/apt/lists/*

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Docker image for Android reverse engineering tools. Android逆向工程工具Doc
66
1. V1.0: Add vnc server, jdk 11, Jadx
77
2. V1.1: Add Homebrew
88
3. V1.2: Add Python, pyenv, pip3, setuptools
9+
4. V1.3: Add frida
910

1011
# Usage
1112

0 commit comments

Comments
 (0)