-
Notifications
You must be signed in to change notification settings - Fork 551
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1261 from projectdiscovery/dev
naabu v2.3.2
- Loading branch information
Showing
24 changed files
with
324 additions
and
219 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
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
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
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
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
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
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
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
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,14 +1,14 @@ | ||
# Build | ||
FROM golang:1.21.0-alpine AS builder | ||
RUN apk add build-base libpcap-dev | ||
FROM golang:1.23.2-alpine AS builder | ||
RUN apk add --no-cache build-base libpcap-dev | ||
WORKDIR /app | ||
COPY . /app | ||
WORKDIR /app/v2 | ||
RUN go mod download | ||
RUN go build ./cmd/naabu | ||
|
||
# Release | ||
FROM alpine:3.18.3 | ||
RUN apk add nmap libpcap-dev bind-tools ca-certificates nmap-scripts | ||
FROM alpine:3.20.3 | ||
RUN apk add --no-cache nmap libpcap-dev bind-tools ca-certificates nmap-scripts | ||
COPY --from=builder /app/v2/naabu /usr/local/bin/ | ||
ENTRYPOINT ["naabu"] |
Oops, something went wrong.