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