diff --git a/cmd/scout/root.go b/cmd/scout/root.go index dac6d84..e6e776d 100644 --- a/cmd/scout/root.go +++ b/cmd/scout/root.go @@ -47,7 +47,7 @@ func init() { statusCodes = append(statusCodes, strconv.Itoa(code)) } - rootCmd.PersistentFlags().IntVarP(¶llelism, "parallelism", "p", parallelism, "Parallel routines to use for sending requests.") + rootCmd.PersistentFlags().IntVarP(¶llelism, "parallelism", "r", parallelism, "Parallel routines to use for sending requests.") rootCmd.PersistentFlags().BoolVarP(&noColours, "no-colours", "n", noColours, "Disable coloured output.") rootCmd.PersistentFlags().StringVarP(&wordlistPath, "wordlist", "w", wordlistPath, "Path to wordlist file. If this is not specified an internal wordlist will be used.") rootCmd.PersistentFlags().BoolVarP(&debug, "debug", "d", debug, "Enable debug logging.") diff --git a/cmd/scout/url.go b/cmd/scout/url.go index 3acf8ca..4521725 100644 --- a/cmd/scout/url.go +++ b/cmd/scout/url.go @@ -191,7 +191,7 @@ func init() { urlCmd.Flags().StringSliceVarP(&extensions, "extensions", "x", extensions, "File extensions to detect.") urlCmd.Flags().StringSliceVarP(&headers, "header", "H", headers, "Extra header to send with requests (can be specified multiple times).") urlCmd.Flags().BoolVarP(&enableSpidering, "spider", "s", enableSpidering, "Spider links within page content") - urlCmd.Flags().StringVarP(&proxy, "proxy", "x", proxy, "HTTP Porxy to use") + urlCmd.Flags().StringVarP(&proxy, "proxy", "p", proxy, "HTTP Proxy to use") rootCmd.AddCommand(urlCmd) }