Skip to content

Commit

Permalink
Merge branch 'master' into fix-inconsistent-output
Browse files Browse the repository at this point in the history
  • Loading branch information
Ice3man543 committed Sep 11, 2020
2 parents 1c222e0 + 63249ef commit 02bf886
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ Download latest binary from https://github.com/projectdiscovery/nuclei/releases
nuclei requires **go1.14+** to install successfully. Run the following command to get the repo -

```sh
▶ GO111MODULE=auto go get -u -v github.com/projectdiscovery/nuclei/v2/cmd/nuclei
▶ GO111MODULE=on go get -u -v github.com/projectdiscovery/nuclei/v2/cmd/nuclei
```

### From Github
Expand Down
4 changes: 4 additions & 0 deletions internal/runner/processor.go
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,8 @@ func (r *Runner) preloadWorkflowTemplates(p progress.IProgress, workflow *workfl
ProxyURL: r.options.ProxyURL,
ProxySocksURL: r.options.ProxySocksURL,
CustomHeaders: r.options.CustomHeaders,
JSON: r.options.JSON,
JSONRequests: r.options.JSONRequests,
CookieJar: jar,
ColoredOutput: !r.options.NoColor,
Colorizer: r.colorizer,
Expand All @@ -223,6 +225,8 @@ func (r *Runner) preloadWorkflowTemplates(p progress.IProgress, workflow *workfl
Debug: r.options.Debug,
Template: t,
Writer: r.output,
JSON: r.options.JSON,
JSONRequests: r.options.JSONRequests,
ColoredOutput: !r.options.NoColor,
Colorizer: r.colorizer,
Decolorizer: r.decolorizer,
Expand Down

0 comments on commit 02bf886

Please sign in to comment.