diff --git a/src/cmd/brute/bruteSpray.go b/src/cmd/brute/bruteSpray.go index d81fd7f..0a75321 100644 --- a/src/cmd/brute/bruteSpray.go +++ b/src/cmd/brute/bruteSpray.go @@ -44,7 +44,7 @@ func init() { BruteSprayCmd.PersistentFlags().StringVarP(&output, "output-file", "o", "", "The out file for valid emails") BruteSprayCmd.PersistentFlags().BoolVarP(&noBruteforce, "no-bruteforce", "n", false, "No spray when using file for username and password (user1 => password1, user2 => password2)") BruteSprayCmd.PersistentFlags().IntVarP(&sleep, "sleep", "s", 0, "Sleep in seconds before sending an authentication request") - BruteSprayCmd.PersistentFlags().StringVar(&proxyString, "proxy", "", "Sleep in seconds before sending an authentication request") + BruteSprayCmd.PersistentFlags().StringVar(&proxyString, "proxy", "", "Proxy to use (ex: http://localhost:8080)") BruteSprayCmd.AddCommand(o365Cmd) BruteSprayCmd.AddCommand(adfsCmd) diff --git a/src/cmd/enum/userenum.go b/src/cmd/enum/userenum.go index f91a1fe..280886f 100644 --- a/src/cmd/enum/userenum.go +++ b/src/cmd/enum/userenum.go @@ -41,7 +41,7 @@ func init() { UserenumCmd.PersistentFlags().StringVarP(&output, "output-file", "o", "", "The out file for valid emails") UserenumCmd.PersistentFlags().BoolVarP(&verbose, "verbose", "v", false, "Verbose") UserenumCmd.PersistentFlags().BoolVar(&debug, "debug", false, "Debug") - UserenumCmd.PersistentFlags().StringVar(&proxyString, "proxy", "", "Sleep in seconds before sending an authentication request") + UserenumCmd.PersistentFlags().StringVar(&proxyString, "proxy", "", "Proxy to use (ex: http://localhost:8080)") // Add child UserenumCmd.AddCommand(azureCmd) diff --git a/src/cmd/gather/gather.go b/src/cmd/gather/gather.go index 4e17d04..5ec0317 100644 --- a/src/cmd/gather/gather.go +++ b/src/cmd/gather/gather.go @@ -40,7 +40,7 @@ func init() { GatherCmd.PersistentFlags().BoolVarP(&verbose, "verbose", "v", false, "Verbose") GatherCmd.PersistentFlags().BoolVar(&debug, "debug", false, "Debug") GatherCmd.PersistentFlags().StringVarP(&output, "output-file", "o", "", "The out file for valid emails") - GatherCmd.PersistentFlags().StringVar(&proxyString, "proxy", "", "Sleep in seconds before sending an authentication request") + GatherCmd.PersistentFlags().StringVar(&proxyString, "proxy", "", "Proxy to use (ex: http://localhost:8080)") GatherCmd.AddCommand(searchEngineCmd) GatherCmd.AddCommand(linkedinCmd)