Merge pull request #18 from AlekKras/master

Dockerized SSRFmap
pull/19/head
Swissky 2019-10-04 19:36:14 +02:00 committed by GitHub
commit e7bbb65e2b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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" ]