-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
61 lines (59 loc) · 830 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
FROM kalilinux/kali-rolling:amd64
RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y \
ansible \
python3-pip \
snmp \
snmpd \
bind9 \
dnsmasq \
isc-dhcp-client \
net-tools \
rsyslog \
ntp \
apache2 \
isc-dhcp-server \
macchanger \
dhcpig \
yersinia \
aircrack-ng \
iputils-arping \
arp-scan \
bind9-dnsutils \
binwalk \
atftpd \
vsftpd \
dmitry \
dns2tcp \
dnschef \
hashcat \
metasploit-framework \
john \
mitmproxy \
powershell \
powershell-empire \
proxychains4 \
python3-scapy \
samba \
socat \
telnet \
tftp \
vim \
iproute2 \
whois \
vlan \
curl \
dnsutils \
emacs \
iputils-ping \
netcat-openbsd \
nmap \
openssh-client \
openssh-server \
openssl \
smbclient \
traceroute \
wget \
&& apt-get --purge remove -y .\*-doc$ \
&& apt-get clean -y \
&& rm -rf /var/lib/apt/lists/*