From bdee7744a16958799bc0b9f0e82ad31b3561b3b6 Mon Sep 17 00:00:00 2001 From: Omar Santos Date: Sun, 18 Oct 2020 22:59:30 -0400 Subject: [PATCH] Installing feroxbuster Suggesting to install feroxbuster --- Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Dockerfile b/Dockerfile index 7f22921..c057289 100644 --- a/Dockerfile +++ b/Dockerfile @@ -162,6 +162,12 @@ FROM baseline as recon RUN mkdir /temp WORKDIR /temp/ +# Installing feroxbuster +RUN \ + wget -sLO https://github.com/epi052/feroxbuster/releases/latest/download/feroxbuster_amd64.deb.zip && \ + unzip feroxbuster_amd64.deb.zip && \ + apt install ./feroxbuster_amd64.deb + # Download whatweb RUN \ git clone --depth 1 https://github.com/urbanadventurer/WhatWeb.git && \