Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
aaaguirrep committed Feb 9, 2021
2 parents de98def + 9d875d0 commit 518e8cf
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 28 deletions.
23 changes: 9 additions & 14 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,6 @@ RUN \
apache2 \
squid \
python3 \
python \
python-dnspython \
python3-pip \
jq \
libcurl4-openssl-dev \
Expand All @@ -67,6 +65,7 @@ RUN \
steghide \
binwalk \
foremost \
sqlite3 \
# patator dependencies
libmysqlclient-dev \
# evil-winrm dependencies
Expand Down Expand Up @@ -96,11 +95,7 @@ RUN \
evil-winrm && \
apt-get update

# Installing python-pip
RUN curl -O https://raw.githubusercontent.com/pypa/get-pip/master/get-pip.py && \
python get-pip.py && \
echo "PATH=$HOME/.local/bin/:$PATH" >> ~/.bashrc && \
rm get-pip.py
RUN python3 -m pip install --upgrade pip

FROM baseline as builder
# SERVICES
Expand All @@ -125,10 +120,8 @@ RUN \
sed -i '78i autoload -U compinit && compinit' /root/.zshrc

# Install python dependencies
COPY requirements_pip3.txt /tmp
COPY requirements_pip.txt /tmp
RUN \
pip3 install -r /tmp/requirements_pip3.txt && \
pip install -r /tmp/requirements_pip.txt

# DEVELOPER TOOLS
Expand Down Expand Up @@ -321,17 +314,17 @@ RUN \
ln -s /tools/recon/httpx/httpx /usr/bin/httpx

WORKDIR /tools/recon/knock
RUN python setup.py install
RUN python3 setup.py install

# Install linkfinder
WORKDIR /tools/recon/LinkFinder
RUN \
python3 setup.py install && \
pip3 install -r requirements.txt
pip install -r requirements.txt

# Install spiderfoot
WORKDIR /tools/recon/spiderfoot
RUN pip3 install -r requirements.txt
RUN pip install -r requirements.txt

# BUILDER WORDLIST
FROM baseline as wordlist
Expand Down Expand Up @@ -430,7 +423,7 @@ FROM builder5 as builder6
COPY --from=bruteForce /temp/ /tools/bruteForce/

WORKDIR /tools/bruteForce/crowbar
RUN pip3 install -r requirements.txt
RUN pip install -r requirements.txt

# CRACKING
RUN mkdir -p /tools/cracking
Expand Down Expand Up @@ -468,7 +461,9 @@ RUN chmod +x LinEnum.sh
# Download enum4linux
WORKDIR /temp
RUN \
git clone --depth 1 https://github.com/portcullislabs/enum4linux.git && \
git clone --depth 1 https://github.com/CiscoCXSecurity/enum4linux.git && \
# Download enum4linx-ng
git clone https://github.com/cddmp/enum4linux-ng.git && \
# Download PEASS - Privilege Escalation Awesome Scripts SUITE
mkdir -p /temp/peass

Expand Down
17 changes: 16 additions & 1 deletion requirements_pip.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,17 @@
pipenv
py-altdns
py-altdns
dnspython
wfuzz
ldapdomaindump
impacket
hashid
droopescan
spyse.py
#sublist3r dependency
argparse
#photon dependency
tld
#jwt-tool dependency
pycryptodomex
wafw00f
pyyaml
13 changes: 0 additions & 13 deletions requirements_pip3.txt

This file was deleted.

0 comments on commit 518e8cf

Please sign in to comment.