mirror of
https://github.com/yogeshojha/rengine.git
synced 2026-09-18 15:57:44 +02:00
92 lines
2.5 KiB
Docker
92 lines
2.5 KiB
Docker
# Base image
|
|
FROM ubuntu:20.04
|
|
|
|
# Labels and Credits
|
|
LABEL \
|
|
name="reNgine" \
|
|
author="Yogesh Ojha <yogesh.ojha11@gmail.com>" \
|
|
description="reNgine is a automated pipeline of recon process, useful for information gathering during web application penetration testing."
|
|
|
|
# Environment Variables
|
|
ENV DEBIAN_FRONTEND="noninteractive" \
|
|
DATABASE="postgres"
|
|
ENV PYTHONDONTWRITEBYTECODE 1
|
|
ENV PYTHONUNBUFFERED 1
|
|
ENV GOROOT="/usr/local/go"
|
|
ENV GOPATH=$HOME/go
|
|
ENV PATH="${PATH}:${GOROOT}/bin:${GOPATH}/bin"
|
|
|
|
# Install essentials
|
|
RUN apt update -y && apt install -y --no-install-recommends \
|
|
build-essential \
|
|
cmake \
|
|
gcc \
|
|
git \
|
|
libpq-dev \
|
|
libpq-dev \
|
|
libpcap-dev \
|
|
netcat \
|
|
nmap \
|
|
python3 \
|
|
python3-dev \
|
|
python3-pip \
|
|
python3-netaddr \
|
|
wget \
|
|
x11-utils \
|
|
xvfb \
|
|
python3-cffi \
|
|
python3-brotli \
|
|
libpango-1.0-0 \
|
|
libpangoft2-1.0-0 \
|
|
geoip-bin \
|
|
geoip-database
|
|
|
|
|
|
# Download and install go 1.20
|
|
RUN wget https://golang.org/dl/go1.20.linux-amd64.tar.gz
|
|
RUN tar -xvf go1.20.linux-amd64.tar.gz
|
|
RUN rm go1.20.linux-amd64.tar.gz
|
|
RUN mv go /usr/local
|
|
|
|
# Make directory for app
|
|
WORKDIR /usr/src/app
|
|
|
|
# Set environment variables
|
|
ENV PYTHONDONTWRITEBYTECODE 1
|
|
ENV PYTHONUNBUFFERED 1
|
|
|
|
# Download Go packages
|
|
RUN go install -v -v github.com/bp0lr/gauplus@latest
|
|
RUN go install -v github.com/jaeles-project/gospider@latest
|
|
RUN go install -v github.com/tomnomnom/gf@latest
|
|
RUN go install -v github.com/tomnomnom/unfurl@latest
|
|
RUN go install -v github.com/tomnomnom/waybackurls@latest
|
|
RUN go install -v github.com/projectdiscovery/httpx/cmd/httpx@latest
|
|
RUN go install -v github.com/projectdiscovery/subfinder/v2/cmd/subfinder@latest
|
|
RUN go install -v github.com/projectdiscovery/nuclei/v2/cmd/nuclei@latest
|
|
RUN go install -v github.com/projectdiscovery/naabu/v2/cmd/naabu@latest
|
|
RUN go install -v github.com/hakluke/hakrawler@latest
|
|
|
|
RUN GO111MODULE=on go install -v -v github.com/bp0lr/gauplus@latest
|
|
|
|
RUN GO111MODULE=on go install -v github.com/jaeles-project/gospider@latest
|
|
|
|
RUN go install -v github.com/owasp-amass/amass/v3/...@latest
|
|
|
|
RUN go install -v github.com/ffuf/ffuf@latest
|
|
|
|
# Update Nuclei and Nuclei-Templates
|
|
RUN nuclei -update
|
|
RUN nuclei -update-templates
|
|
|
|
# Copy requirements
|
|
COPY ./requirements.txt /tmp/requirements.txt
|
|
RUN pip3 install --upgrade setuptools pip && \
|
|
pip3 install -r /tmp/requirements.txt
|
|
|
|
# Copy source code
|
|
COPY . /usr/src/app/
|
|
|
|
# httpx seems to have issue, use alias instead!!!
|
|
RUN echo 'alias httpx="/go/bin/httpx"' >> ~/.bashrc
|