Skip to content

Commit

Permalink
Add new tool - dnssearch
Browse files Browse the repository at this point in the history
  • Loading branch information
infoslack committed Jul 1, 2017
1 parent d8b4315 commit 4a59006
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 0 deletions.
1 change: 1 addition & 0 deletions dnssearch/.dockerignore
@@ -0,0 +1 @@
.git
10 changes: 10 additions & 0 deletions dnssearch/Dockerfile
@@ -0,0 +1,10 @@
FROM golang:1.8 as build-stage
ENV REPO https://github.com/evilsocket/dnssearch.git
WORKDIR /go/src/github.com/evilsocket/dnssearch
RUN git clone $REPO . && go get && CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o dnssearch .

FROM scratch
WORKDIR /app
COPY --from=build-stage /go/src/github.com/evilsocket/dnssearch/dnssearch /app
COPY --from=build-stage /go/src/github.com/evilsocket/dnssearch/names.txt /app
ENTRYPOINT ["/app/dnssearch"]
8 changes: 8 additions & 0 deletions dnssearch/README.md
@@ -0,0 +1,8 @@
dnssearch
=======

Docker image for [dnssearch - A subdomain enumeration tool](https://github.com/evilsocket/dnssearch)

Usage:

$ docker run --rm -it infoslack/dnssearch -domain example.com

0 comments on commit 4a59006

Please sign in to comment.