mirror of https://github.com/daffainfo/nuclei.git
Merge branch 'master' into fix-inconsistent-output
commit
02bf886fca
|
@ -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 -
|
nuclei requires **go1.14+** to install successfully. Run the following command to get the repo -
|
||||||
|
|
||||||
```sh
|
```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
|
### From Github
|
||||||
|
|
|
@ -213,6 +213,8 @@ func (r *Runner) preloadWorkflowTemplates(p progress.IProgress, workflow *workfl
|
||||||
ProxyURL: r.options.ProxyURL,
|
ProxyURL: r.options.ProxyURL,
|
||||||
ProxySocksURL: r.options.ProxySocksURL,
|
ProxySocksURL: r.options.ProxySocksURL,
|
||||||
CustomHeaders: r.options.CustomHeaders,
|
CustomHeaders: r.options.CustomHeaders,
|
||||||
|
JSON: r.options.JSON,
|
||||||
|
JSONRequests: r.options.JSONRequests,
|
||||||
CookieJar: jar,
|
CookieJar: jar,
|
||||||
ColoredOutput: !r.options.NoColor,
|
ColoredOutput: !r.options.NoColor,
|
||||||
Colorizer: r.colorizer,
|
Colorizer: r.colorizer,
|
||||||
|
@ -223,6 +225,8 @@ func (r *Runner) preloadWorkflowTemplates(p progress.IProgress, workflow *workfl
|
||||||
Debug: r.options.Debug,
|
Debug: r.options.Debug,
|
||||||
Template: t,
|
Template: t,
|
||||||
Writer: r.output,
|
Writer: r.output,
|
||||||
|
JSON: r.options.JSON,
|
||||||
|
JSONRequests: r.options.JSONRequests,
|
||||||
ColoredOutput: !r.options.NoColor,
|
ColoredOutput: !r.options.NoColor,
|
||||||
Colorizer: r.colorizer,
|
Colorizer: r.colorizer,
|
||||||
Decolorizer: r.decolorizer,
|
Decolorizer: r.decolorizer,
|
||||||
|
|
Loading…
Reference in New Issue