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 15ee6f6 commit bbab709Copy full SHA for bbab709
pkg/naabu/v2/pkg/runner/validate.go
@@ -27,7 +27,7 @@ func (options *Options) validateOptions() error {
27
// Check if Host, list of domains, or stdin info was provided.
28
// If none was provided, then return.
29
//options.Host = []string{"http://192.168.0.111:8000"}
30
- if options.Host == nil && options.HostsFile == "" && !options.Stdin && len(flag.Args()) == 0 {
+ if !options.Update && options.Host == nil && options.HostsFile == "" && !options.Stdin && len(flag.Args()) == 0 {
31
return errNoInputList
32
}
33
0 commit comments