Skip to content

Commit 957fde6

Browse files
committed
FIx help for proxy
1 parent bea91fd commit 957fde6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/cmd/brute/bruteSpray.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ func init() {
4444
BruteSprayCmd.PersistentFlags().StringVarP(&output, "output-file", "o", "", "The out file for valid emails")
4545
BruteSprayCmd.PersistentFlags().BoolVarP(&noBruteforce, "no-bruteforce", "n", false, "No spray when using file for username and password (user1 => password1, user2 => password2)")
4646
BruteSprayCmd.PersistentFlags().IntVarP(&sleep, "sleep", "s", 0, "Sleep in seconds before sending an authentication request")
47-
BruteSprayCmd.PersistentFlags().StringVar(&proxyString, "proxy", "", "Sleep in seconds before sending an authentication request")
47+
BruteSprayCmd.PersistentFlags().StringVar(&proxyString, "proxy", "", "Proxy to use (ex: http://localhost:8080)")
4848

4949
BruteSprayCmd.AddCommand(o365Cmd)
5050
BruteSprayCmd.AddCommand(adfsCmd)

src/cmd/enum/userenum.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ func init() {
4141
UserenumCmd.PersistentFlags().StringVarP(&output, "output-file", "o", "", "The out file for valid emails")
4242
UserenumCmd.PersistentFlags().BoolVarP(&verbose, "verbose", "v", false, "Verbose")
4343
UserenumCmd.PersistentFlags().BoolVar(&debug, "debug", false, "Debug")
44-
UserenumCmd.PersistentFlags().StringVar(&proxyString, "proxy", "", "Sleep in seconds before sending an authentication request")
44+
UserenumCmd.PersistentFlags().StringVar(&proxyString, "proxy", "", "Proxy to use (ex: http://localhost:8080)")
4545

4646
// Add child
4747
UserenumCmd.AddCommand(azureCmd)

src/cmd/gather/gather.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ func init() {
4040
GatherCmd.PersistentFlags().BoolVarP(&verbose, "verbose", "v", false, "Verbose")
4141
GatherCmd.PersistentFlags().BoolVar(&debug, "debug", false, "Debug")
4242
GatherCmd.PersistentFlags().StringVarP(&output, "output-file", "o", "", "The out file for valid emails")
43-
GatherCmd.PersistentFlags().StringVar(&proxyString, "proxy", "", "Sleep in seconds before sending an authentication request")
43+
GatherCmd.PersistentFlags().StringVar(&proxyString, "proxy", "", "Proxy to use (ex: http://localhost:8080)")
4444

4545
GatherCmd.AddCommand(searchEngineCmd)
4646
GatherCmd.AddCommand(linkedinCmd)

0 commit comments

Comments
 (0)