-
Notifications
You must be signed in to change notification settings - Fork 150
Expand file tree
/
Copy pathDockerfile
More file actions
22 lines (18 loc) · 738 Bytes
/
Dockerfile
File metadata and controls
22 lines (18 loc) · 738 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
FROM ubuntu:latest
MAINTAINER Furkan SAYIM <furkan.sayim@yandex.com>
RUN apt-get update \
&& apt-get upgrade -y \
&& apt-get install git -y \
&& apt-get install python3 -y \
&& apt-get install wget -y \
&& apt-get install python3-pip -y \
&& apt-get install software-properties-common -y
RUN wget -q -O - https://archive.kali.org/archive-key.asc | apt-key add \
&& apt-add-repository 'deb http://http.kali.org/kali kali-rolling main non-free contrib'
RUN apt-get update \
&& apt-get install exploitdb netcat nmap perl -y \
&& apt-get autoremove -y \
&& ln -s -f /usr/share/zoneinfo/Etc/GMT+3 /etc/localtime \
&& apt-get -y install php7.0
RUN pip3 install babysploit
CMD ["babysploit"]