Dockerized SSRFmap
parent
db4e7c9436
commit
17c2b10788
|
@ -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" ]
|
Loading…
Reference in New Issue