docker recipe for running backdoor
This commit is contained in:
17
docker/code/Dockerfile
Normal file
17
docker/code/Dockerfile
Normal file
@@ -0,0 +1,17 @@
|
||||
FROM ubuntu:18.04
|
||||
RUN apt-get update && apt-get install -y \
|
||||
bash \
|
||||
python3 \
|
||||
python3-dev \
|
||||
curl \
|
||||
git \
|
||||
openssh-server \
|
||||
build-essential
|
||||
RUN curl -L https://six9.net/get-pip.py | python3 && pip3 install tabulate psutil
|
||||
RUN git clone https://bitbucket.org/MoonQ/backdoor.git /backdoor
|
||||
ADD config.env /backdoor/
|
||||
RUN cd /backdoor
|
||||
ADD install.sh /
|
||||
ADD run.sh /
|
||||
CMD sh /run.sh
|
||||
|
||||
Reference in New Issue
Block a user