Dockerized SSRFmap

pull/18/head
alekkras 2019-10-04 10:30:35 -04:00
parent db4e7c9436
commit 17c2b10788
1 changed files with 9 additions and 0 deletions

9
Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM ubuntu
RUN apt-get update -y && \
apt-get install -y python3-pip python3-dev
COPY ./requirements.txt /requirements.txt
WORKDIR /
RUN pip3 install -r requirements.txt
COPY . /
ENTRYPOINT [ "python3" ]
CMD [ "ssrfmap.py" ]