Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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` |
Expand Down
2 changes: 1 addition & 1 deletion cli/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down