diff --git a/shell_completions/_feroxbuster b/shell_completions/_feroxbuster index ebe421ee..43605a29 100644 --- a/shell_completions/_feroxbuster +++ b/shell_completions/_feroxbuster @@ -62,7 +62,7 @@ _feroxbuster() { '--depth=[Maximum recursion depth, a depth of 0 is infinite recursion (default\: 4)]:RECURSION_DEPTH: ' \ '-L+[Limit total number of concurrent scans (default\: 0, i.e. no limit)]:SCAN_LIMIT: ' \ '--scan-limit=[Limit total number of concurrent scans (default\: 0, i.e. no limit)]:SCAN_LIMIT: ' \ -'(-v --verbosity)--parallel=[Run parallel feroxbuster instances (one child process per url passed via stdin)]:PARALLEL_SCANS: ' \ +'(-v --verbosity -u --url)--parallel=[Run parallel feroxbuster instances (one child process per url passed via stdin)]:PARALLEL_SCANS: ' \ '(--auto-tune)--rate-limit=[Limit number of requests per second (per directory) (default\: 0, i.e. no limit)]:RATE_LIMIT: ' \ '--time-limit=[Limit total run time of all scans (ex\: --time-limit 10m)]:TIME_SPEC: ' \ '-w+[Path or URL of the wordlist]:FILE:_files' \ diff --git a/src/parser.rs b/src/parser.rs index 18657824..8b4a2525 100644 --- a/src/parser.rs +++ b/src/parser.rs @@ -486,6 +486,7 @@ pub fn initialize() -> Command { .long("parallel") .value_name("PARALLEL_SCANS") .conflicts_with("verbosity") + .conflicts_with("url") .num_args(1) .requires("stdin") .help_heading("Scan settings")