Skip to content

Commit

Permalink
proxy fix
Browse files Browse the repository at this point in the history
  • Loading branch information
liamg committed Aug 6, 2020
1 parent 99719bb commit 1491f0e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/scout/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ func init() {
statusCodes = append(statusCodes, strconv.Itoa(code))
}

rootCmd.PersistentFlags().IntVarP(&parallelism, "parallelism", "p", parallelism, "Parallel routines to use for sending requests.")
rootCmd.PersistentFlags().IntVarP(&parallelism, "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.")
Expand Down
2 changes: 1 addition & 1 deletion cmd/scout/url.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}

0 comments on commit 1491f0e

Please sign in to comment.