Skip to content

Commit

Permalink
FIx help for proxy
Browse files Browse the repository at this point in the history
  • Loading branch information
nodauf committed Feb 16, 2022
1 parent bea91fd commit 957fde6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/cmd/brute/bruteSpray.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion src/cmd/enum/userenum.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion src/cmd/gather/gather.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 957fde6

Please # to comment.