We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35a9961 commit 8abc972Copy full SHA for 8abc972
runner/options.go
@@ -309,6 +309,7 @@ type Options struct {
309
HeadlessOptionalArguments goflags.StringSlice
310
Protocol string
311
OutputFilterErrorPagePath string
312
+ DisableStdout bool
313
// AssetUpload
314
AssetUpload bool
315
// AssetName
runner/runner.go
@@ -1098,7 +1098,7 @@ func (r *Runner) RunEnumeration() {
1098
}
1099
1100
1101
- if !jsonOrCsv || jsonAndCsv || r.options.OutputAll {
+ if !r.options.DisableStdout && (!jsonOrCsv || jsonAndCsv || r.options.OutputAll) {
1102
gologger.Silent().Msgf("%s\n", resp.str)
1103
1104
0 commit comments