-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
53007d7
commit 4024359
Showing
2 changed files
with
2 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,12 @@ | ||
FROM golang:latest | ||
|
||
RUN apt update -y && apt install -y nmap git vim python3 python3-pip unzip curl screen | ||
RUN apt update -y && apt install -y nmap git vim python3 python3-pip unzip curl | ||
|
||
WORKDIR /recon | ||
|
||
COPY recon.sh /recon | ||
|
||
RUN chmod +x /recon/recon.sh | ||
|
||
RUN go install -v github.com/projectdiscovery/pdtm/cmd/pdtm@latest && go install -v github.com/OJ/gobuster/v3@latest && go install github.com/lc/gau/v2/cmd/gau@latest && go install github.com/ffuf/ffuf/v2@latest && go install -v github.com/tomnomnom/anew@latest | ||
|
||
RUN pdtm -i subfinder,dnsx,httpx,nuclei,katana,chaos-client,notify | ||
|
||
ENV PATH="/root/.local/bin:/root/.pdtm/go/bin:/root/go/bin:/usr/local/bin:${PATH}" | ||
|
||
CMD [ "./recon.sh" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters