-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile.dev
54 lines (46 loc) · 1.76 KB
/
Dockerfile.dev
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
FROM kalilinux/kali-linux-docker
MAINTAINER @viyatb [email protected]
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get -y update && apt-get -y dist-upgrade && apt-get clean
RUN apt-get -y install xvfb \
xserver-xephyr \
libxml2-dev \
libxslt-dev \
libssl-dev \
zlib1g-dev \
gcc \
python-all-dev \
python-pip \
postgresql-server-dev-all \
postgresql-client \
postgresql-client-common \
postgresql \
libcurl4-openssl-dev \
proxychains \
tor \
ca-certificates
# Needed for installation of pycurl using pip in kali
ENV PYCURL_SSL_LIBRARY openssl
# Install optional tools (LBD, arachni, gnutls-bin, o-saft and metagoofil)
RUN apt-get -y install lbd \
arachni \
theharvester \
tlssled \
nikto \
dnsrecon \
nmap \
whatweb \
skipfish \
dirbuster \
metasploit-framework \
wpscan \
wapiti \
waffit \
hydra \
metagoofil \
o-saft
# Fix for exporting a SHELL variable in the environment
ENV TERM xterm
ENV SHELL /bin/bash
# Install and create a Python virtualenv
RUN pip install virtualenv && virtualenv env/ && . env/bin/activate