Skip to content

Commit

Permalink
[release] Ready for a beta release
Browse files Browse the repository at this point in the history
  • Loading branch information
viyatb committed Sep 3, 2017
1 parent 520cdc0 commit 25c2569
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 19 deletions.
48 changes: 30 additions & 18 deletions Dockerfile.dev
@@ -1,9 +1,10 @@
FROM kalilinux/kali-linux-docker

MAINTAINER @viyatb viyat.bhalodia@owasp.org

ENV DEBIAN_FRONTEND noninteractive
RUN apt-get -y update && apt-get -y dist-upgrade && apt-get clean

# Install certificates to ensure https links in wget work
RUN apt-get -y install ca-certificates
RUN apt-get -y update && apt-get -y dist-upgrade && apt-get clean

RUN apt-get -y install xvfb \
xserver-xephyr \
Expand All @@ -13,31 +14,42 @@ RUN apt-get -y install xvfb \
zlib1g-dev \
gcc \
python-all-dev \
python-pip

# Needed for installation of pycurl using pip in kali
ENV PYCURL_SSL_LIBRARY=gnutls

# psycopg2, pycurl dependency
RUN apt-get -y install postgresql-server-dev-all \
python-pip \
postgresql-server-dev-all \
postgresql-client \
postgresql-client-common \
postgresql \
libcurl4-openssl-dev \
proxychains \
tor
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 \
gnutls-bin \
arachni \
o-saft \
metagoofil


# Install sudo, python, and Java for Zest functionality
RUN apt-get -y install sudo git python openjdk-8-jre openjdk-8-jdk
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
g
2 changes: 1 addition & 1 deletion owtf/__init__.py
Expand Up @@ -3,4 +3,4 @@
~~~~~
"""

__version__ = '2.1.0-beta'
__version__ = '2.1.1-beta'

0 comments on commit 25c2569

Please sign in to comment.