mvt/Dockerfile

30 lines
827 B
Docker
Raw Normal View History

FROM ubuntu:20.04
# Fixing major OS dependencies
# ----------------------------
RUN apt update \
&& apt install -y python3 python3-pip libusb-1.0-0 \
&& apt install -y wget \
&& apt install -y adb \
&& DEBIAN_FRONTEND=noninteractive apt-get -y install default-jre-headless \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
# Installing MVT
# --------------
RUN pip3 install mvt
# Installing ABE
# --------------
RUN mkdir /opt/abe
RUN wget https://github.com/nelenkov/android-backup-extractor/releases/download/20210709062403-4c55371/abe.jar -O /opt/abe/abe.jar
# Create shortcut for abe
RUN echo "java -jar /opt/abe/abe.jar" > /usr/local/bin/abe && chmod +x /usr/local/bin/abe
# Setup investigations environment
# --------------------------------
RUN mkdir /home/cases
WORKDIR /home/cases
CMD /bin/bash