2021-02-24 02:31:58 +00:00
|
|
|
FROM ubuntu:latest
|
2021-02-19 10:58:15 +00:00
|
|
|
|
2021-02-24 02:31:58 +00:00
|
|
|
# Update sources and install git
|
2021-11-24 19:13:22 +00:00
|
|
|
RUN apt-get update -y && apt-get install -y git python3-pip
|
2021-02-19 10:58:15 +00:00
|
|
|
|
2021-02-24 02:31:58 +00:00
|
|
|
#Git configuration
|
|
|
|
RUN git config --global user.name "YOUR NAME HERE" \
|
|
|
|
&& git config --global user.email "YOUR EMAIL HERE"
|
2021-02-19 10:58:15 +00:00
|
|
|
|
|
|
|
# Clone SETOOLKIT
|
2021-11-24 19:13:22 +00:00
|
|
|
RUN git clone --depth=1 https://github.com/trustedsec/social-engineer-toolkit.git
|
2021-02-19 10:58:15 +00:00
|
|
|
|
|
|
|
# Change Working Directory
|
2021-02-24 02:31:58 +00:00
|
|
|
WORKDIR /social-engineer-toolkit
|
2021-02-19 10:58:15 +00:00
|
|
|
|
2021-02-24 02:31:58 +00:00
|
|
|
# Install requirements
|
2021-02-19 10:58:15 +00:00
|
|
|
RUN pip3 install -r requirements.txt
|
|
|
|
|
|
|
|
# Install SETOOLKIT
|
2021-02-24 02:31:58 +00:00
|
|
|
RUN python3 setup.py
|
|
|
|
|
|
|
|
ENTRYPOINT [ "./setoolkit" ]
|
2021-02-19 10:58:15 +00:00
|
|
|
|
2021-11-24 19:13:22 +00:00
|
|
|
|