Skip to content

Commit

Permalink
Enhance command-line flag descriptions for pipe command
Browse files Browse the repository at this point in the history
Signed-off-by: HAHWUL <[email protected]>
  • Loading branch information
hahwul committed Dec 9, 2024
1 parent d90d020 commit 4827866
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cmd/pipe.go
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,8 @@ func runSingleMode(targets []string, sf bool) {

func init() {
rootCmd.AddCommand(pipeCmd)
pipeCmd.Flags().Bool("multicast", false, "Parallel scanning N*Host mode (show only poc code)")
pipeCmd.Flags().Bool("mass", false, "Parallel scanning N*Host mode (show only poc code)")
pipeCmd.Flags().Bool("silence-force", false, "Only print PoC (not print progress)")
pipeCmd.Flags().Int("mass-worker", 10, "Parallel worker of --mass and --multicast option")
pipeCmd.Flags().Bool("multicast", false, "Enable parallel scanning in N*Host mode (only shows PoC code). Example: --multicast")
pipeCmd.Flags().Bool("mass", false, "Enable parallel scanning in N*Host mode (only shows PoC code). Example: --mass")
pipeCmd.Flags().Bool("silence-force", false, "Only print PoC code, suppress progress output. Example: --silence-force")
pipeCmd.Flags().Int("mass-worker", 10, "Set the number of parallel workers for --mass and --multicast options. Example: --mass-worker 10")
}

0 comments on commit 4827866

Please sign in to comment.