Skip to content

Commit

Permalink
Create Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
sneakerhax committed Mar 2, 2020
1 parent ef8f3e5 commit d9da04b
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Penetration_Testing/1.Recon/DNS/PyDNSRecon/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM python:3

RUN mkdir PyDNSRecon
COPY PyDNSRecon_docker.py /PyDNSRecon
WORKDIR /PyDNSRecon
RUN mkdir output
RUN wget https://github.com/OWASP/Amass/releases/download/v3.4.4/amass_v3.4.4_linux_amd64.zip && unzip amass_v3.4.4_linux_amd64.zip && mv amass_v3.4.4_linux_amd64 amass
RUN wget https://opendata.rapid7.com/sonar.fdns_v2/2020-02-23-1582480801-fdns_cname.json.gz && mv 2020-02-23-1582480801-fdns_cname.json.gz sonar.json.gz
RUN pip install requests

ENTRYPOINT ["python", "PyDNSRecon_docker.py"]

0 comments on commit d9da04b

Please sign in to comment.