Skip to content

Commit

Permalink
Merge branch 'hotfix/0.3.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
Terry Franklin committed Nov 10, 2021
2 parents 8e15290 + f218c2c commit f6418a3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN wget https://github.com/findomain/findomain/releases/latest/download/findoma
RUN chmod o+x /usr/local/bin/findomain

ENV GO111MODULE=on
RUN go install -v github.com/projectdiscovery/nuclei/v2/cmd/nuclei@latest
RUN go install -v github.com/projectdiscovery/nuclei/v2/cmd/nuclei@v2.4.3

RUN nuclei -version
RUN nuclei -update-templates
Expand Down
2 changes: 1 addition & 1 deletion scanners/nuclei.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ func ScanNucleiHandler(ctx context.Context, event events.SQSEvent) error {
// utils.Check(err)
// fmt.Printf("initiaiting request from ip: %s\n", ipOut)

nucleiCmd := exec.Command("nuclei", "-u", request.Url, "-silent", "-json", "-tags", nucleiTags, "-ud", "/nuclei-templates", "-timeout", "30")
nucleiCmd := exec.Command("nuclei", "-u", request.Url, "-silent", "-json", "-tags", nucleiTags, "-ud", "/nuclei-templates", "-timeout", "30", "-nut")
fmt.Printf("-> %v\n", nucleiCmd)

var nucleiOut, nucleiErr bytes.Buffer
Expand Down

0 comments on commit f6418a3

Please sign in to comment.