Skip to content

Commit 1491f0e

Browse files
committed
proxy fix
1 parent 99719bb commit 1491f0e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cmd/scout/root.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ func init() {
4747
statusCodes = append(statusCodes, strconv.Itoa(code))
4848
}
4949

50-
rootCmd.PersistentFlags().IntVarP(&parallelism, "parallelism", "p", parallelism, "Parallel routines to use for sending requests.")
50+
rootCmd.PersistentFlags().IntVarP(&parallelism, "parallelism", "r", parallelism, "Parallel routines to use for sending requests.")
5151
rootCmd.PersistentFlags().BoolVarP(&noColours, "no-colours", "n", noColours, "Disable coloured output.")
5252
rootCmd.PersistentFlags().StringVarP(&wordlistPath, "wordlist", "w", wordlistPath, "Path to wordlist file. If this is not specified an internal wordlist will be used.")
5353
rootCmd.PersistentFlags().BoolVarP(&debug, "debug", "d", debug, "Enable debug logging.")

cmd/scout/url.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ func init() {
191191
urlCmd.Flags().StringSliceVarP(&extensions, "extensions", "x", extensions, "File extensions to detect.")
192192
urlCmd.Flags().StringSliceVarP(&headers, "header", "H", headers, "Extra header to send with requests (can be specified multiple times).")
193193
urlCmd.Flags().BoolVarP(&enableSpidering, "spider", "s", enableSpidering, "Spider links within page content")
194-
urlCmd.Flags().StringVarP(&proxy, "proxy", "x", proxy, "HTTP Porxy to use")
194+
urlCmd.Flags().StringVarP(&proxy, "proxy", "p", proxy, "HTTP Proxy to use")
195195

196196
rootCmd.AddCommand(urlCmd)
197197
}

0 commit comments

Comments
 (0)