diff --git a/README.md b/README.md index 172eaa73..f0c23c91 100644 --- a/README.md +++ b/README.md @@ -146,6 +146,7 @@ The following options are shared by most modes: | Option | Description | | ---------------- | --------------------------------------------------------- | | `-w, --wordlist` | Wordlist path; use `-` to read from standard input | +| `--wordlist-offset` | Skip this many initial wordlist entries (`0` by default) | | `-t, --threads` | Number of concurrent workers (default: `10`) | | `-d, --delay` | Delay applied by each worker, such as `250ms` | | `--timeout` | Network timeout, such as `15s` | diff --git a/cli/options.go b/cli/options.go index 4f26f306..9563e526 100644 --- a/cli/options.go +++ b/cli/options.go @@ -257,7 +257,7 @@ func ParseGlobalOptions(c *cli.Context) (libgobuster.Options, error) { if opts.Wordlist == "-" && opts.WordlistOffset > 0 { return opts, errors.New("wordlist-offset is not supported when reading from STDIN") } else if opts.WordlistOffset < 0 { - return opts, errors.New("wordlist-offset must be bigger or equal to 0") + return opts, errors.New("wordlist-offset must be greater than or equal to 0") } opts.OutputFilename = c.String("output")