Skip to content

Commit

Permalink
Add frida
Browse files Browse the repository at this point in the history
  • Loading branch information
NasdaqGodzilla committed Nov 24, 2022
1 parent 1ee242a commit dd0669b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,15 @@ RUN brew install python@3.9 pyenv
RUN python3.9 -m pip install --upgrade pip
RUN python3.9 -m pip install --upgrade setuptools

# adb
USER 0
RUN add-apt-repository ppa:nilarimogard/webupd8 && apt update \
&& apt -y install android-tools-adb android-tools-fastboot
USER 1000

# frida
RUN pip3 install frida-tools

# clean
USER 0
RUN apt autoremove --purge -y && apt clean && apt autoclean && rm -rf /var/lib/apt/lists/*
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Docker image for Android reverse engineering tools. Android逆向工程工具Doc
1. V1.0: Add vnc server, jdk 11, Jadx
2. V1.1: Add Homebrew
3. V1.2: Add Python, pyenv, pip3, setuptools
4. V1.3: Add frida

# Usage

Expand Down

0 comments on commit dd0669b

Please sign in to comment.